diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-12 09:58:10 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-09 14:12:58 -0400 |
commit | 599a0ac14e065b7c08471ef2e75a504b7dec9267 (patch) | |
tree | 21f9caef768eb84dad3ce19f76e646af0a5e4dfa /include/linux/fs.h | |
parent | f776c738883bc949e654568a565aee5a7d3fe133 (diff) | |
download | linux-3.10-599a0ac14e065b7c08471ef2e75a504b7dec9267.tar.gz linux-3.10-599a0ac14e065b7c08471ef2e75a504b7dec9267.tar.bz2 linux-3.10-599a0ac14e065b7c08471ef2e75a504b7dec9267.zip |
pipe: fold file_operations instances in one
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 578a66e6ee7..b1f28b02ede 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2080,7 +2080,6 @@ extern int sync_filesystem(struct super_block *); extern const struct file_operations def_blk_fops; extern const struct file_operations def_chr_fops; extern const struct file_operations bad_sock_fops; -extern const struct file_operations def_fifo_fops; #ifdef CONFIG_BLOCK extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long); extern int blkdev_ioctl(struct block_device *, fmode_t, unsigned, unsigned long); @@ -2152,10 +2151,6 @@ extern void init_special_inode(struct inode *, umode_t, dev_t); extern void make_bad_inode(struct inode *); extern int is_bad_inode(struct inode *); -extern const struct file_operations read_pipefifo_fops; -extern const struct file_operations write_pipefifo_fops; -extern const struct file_operations rdwr_pipefifo_fops; - #ifdef CONFIG_BLOCK /* * return READ, READA, or WRITE |