summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrian Gerst <bgerst@didntduck.org>2002-11-20 22:52:04 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-11-20 22:52:04 -0800
commit3408a276c58dba9b8c5fe035ead630294cd8e790 (patch)
tree382faf3620f33c89de912d9a690bbe5be32fa38e /include
parent4873923351897a21d09ae180dc3594c8a384be5e (diff)
[PATCH] break up fs/devices.c
This patch breaks up and removes fs/devices.c, moving functions to more logical places. character device functions -> char_dev.c init_special_inode() -> inode.c kdevname() -> libfs.c (this should die, but that's another patch) bad_sock_fops -> socket.c
Diffstat (limited to 'include')
-rw-r--r--include/linux/fs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index bbb4e2cacecc..7234a60f85a5 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1089,6 +1089,8 @@ extern int blkdev_open(struct inode *, struct file *);
extern int blkdev_close(struct inode *, struct file *);
extern struct file_operations def_blk_fops;
extern struct address_space_operations def_blk_aops;
+extern struct file_operations def_chr_fops;
+extern struct file_operations bad_sock_fops;
extern struct file_operations def_fifo_fops;
extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long);
extern int blkdev_ioctl(struct inode *, struct file *, unsigned, unsigned long);