summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2012-03-11 12:19:58 +0000
committerkib <kib@FreeBSD.org>2012-03-11 12:19:58 +0000
commit8adabb0356f0bb9d2681f2b8641d303ff20116f1 (patch)
tree2f329a4d66d341eb7a690b2d1dfb1e5424699cfb /sys/fs
parent3cb00e347a6d3134d8cc77576a9aa19ed4375839 (diff)
downloadFreeBSD-src-8adabb0356f0bb9d2681f2b8641d303ff20116f1.zip
FreeBSD-src-8adabb0356f0bb9d2681f2b8641d303ff20116f1.tar.gz
Remove fifo.h. The only used function declaration from the header is
migrated to sys/vnode.h. Submitted by: gianni
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/cd9660/cd9660_vnops.c1
-rw-r--r--sys/fs/ext2fs/ext2_vnops.c2
-rw-r--r--sys/fs/fifofs/fifo.h38
-rw-r--r--sys/fs/fifofs/fifo_vnops.c1
-rw-r--r--sys/fs/nfs/nfsport.h1
-rw-r--r--sys/fs/tmpfs/tmpfs_vnops.c1
-rw-r--r--sys/fs/udf/udf_vnops.c1
7 files changed, 0 insertions, 45 deletions
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c
index ab59640..21ee0fc 100644
--- a/sys/fs/cd9660/cd9660_vnops.c
+++ b/sys/fs/cd9660/cd9660_vnops.c
@@ -47,7 +47,6 @@ __FBSDID("$FreeBSD$");
#include <sys/buf.h>
#include <sys/mount.h>
#include <sys/vnode.h>
-#include <fs/fifofs/fifo.h>
#include <sys/malloc.h>
#include <sys/dirent.h>
#include <sys/unistd.h>
diff --git a/sys/fs/ext2fs/ext2_vnops.c b/sys/fs/ext2fs/ext2_vnops.c
index 136654c..5e2e318 100644
--- a/sys/fs/ext2fs/ext2_vnops.c
+++ b/sys/fs/ext2fs/ext2_vnops.c
@@ -71,8 +71,6 @@
#include "opt_directio.h"
-#include <fs/fifofs/fifo.h>
-
#include <ufs/ufs/dir.h>
#include <fs/ext2fs/fs.h>
diff --git a/sys/fs/fifofs/fifo.h b/sys/fs/fifofs/fifo.h
deleted file mode 100644
index da85ae2..0000000
--- a/sys/fs/fifofs/fifo.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*-
- * Copyright (c) 1991, 1993
- * The Regents of the University of California. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * @(#)fifo.h 8.6 (Berkeley) 5/21/95
- * $FreeBSD$
- */
-
-/*
- * Prototypes for fifo operations on vnodes.
- */
-int fifo_vnoperate(struct vop_generic_args *);
-int fifo_printinfo(struct vnode *);
-
diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c
index 65c44ae..6b5d5f2 100644
--- a/sys/fs/fifofs/fifo_vnops.c
+++ b/sys/fs/fifofs/fifo_vnops.c
@@ -52,7 +52,6 @@
#include <sys/un.h>
#include <sys/unistd.h>
#include <sys/vnode.h>
-#include <fs/fifofs/fifo.h>
/*
* This structure is associated with the FIFO vnode and stores
diff --git a/sys/fs/nfs/nfsport.h b/sys/fs/nfs/nfsport.h
index 763e2bd..eb026bc 100644
--- a/sys/fs/nfs/nfsport.h
+++ b/sys/fs/nfs/nfsport.h
@@ -78,7 +78,6 @@
#include <sys/priv.h>
#include <sys/kthread.h>
#include <sys/syscallsubr.h>
-#include <fs/fifofs/fifo.h>
#include <net/if.h>
#include <net/radix.h>
#include <net/route.h>
diff --git a/sys/fs/tmpfs/tmpfs_vnops.c b/sys/fs/tmpfs/tmpfs_vnops.c
index d5cae29..704f127 100644
--- a/sys/fs/tmpfs/tmpfs_vnops.c
+++ b/sys/fs/tmpfs/tmpfs_vnops.c
@@ -54,7 +54,6 @@ __FBSDID("$FreeBSD$");
#include <vm/vm_page.h>
#include <vm/vm_pager.h>
-#include <fs/fifofs/fifo.h>
#include <fs/tmpfs/tmpfs_vnops.h>
#include <fs/tmpfs/tmpfs.h>
diff --git a/sys/fs/udf/udf_vnops.c b/sys/fs/udf/udf_vnops.c
index 7a99fcb..b1a3b1d 100644
--- a/sys/fs/udf/udf_vnops.c
+++ b/sys/fs/udf/udf_vnops.c
@@ -48,7 +48,6 @@
#include <vm/uma.h>
-#include <fs/fifofs/fifo.h>
#include <fs/udf/ecma167-udf.h>
#include <fs/udf/osta.h>
#include <fs/udf/udf.h>
OpenPOWER on IntegriCloud