diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2008-07-01 08:16:09 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-07-26 20:53:06 -0400 |
commit | d2d9648ec6858e19d16a0b16da62534e85888653 (patch) | |
tree | ba3d66e3ed90ef56ec58e699beeb487db930375b /include | |
parent | d70b67c8bc72ee23b55381bd6a884f4796692f77 (diff) |
[PATCH] reuse xxx_fifo_fops for xxx_pipe_fops
Merge fifo and pipe file_operations.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 53d2edb709b3..7721a2ac9c0e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1696,9 +1696,9 @@ extern void init_special_inode(struct inode *, umode_t, dev_t); | |||
1696 | extern void make_bad_inode(struct inode *); | 1696 | extern void make_bad_inode(struct inode *); |
1697 | extern int is_bad_inode(struct inode *); | 1697 | extern int is_bad_inode(struct inode *); |
1698 | 1698 | ||
1699 | extern const struct file_operations read_fifo_fops; | 1699 | extern const struct file_operations read_pipefifo_fops; |
1700 | extern const struct file_operations write_fifo_fops; | 1700 | extern const struct file_operations write_pipefifo_fops; |
1701 | extern const struct file_operations rdwr_fifo_fops; | 1701 | extern const struct file_operations rdwr_pipefifo_fops; |
1702 | 1702 | ||
1703 | extern int fs_may_remount_ro(struct super_block *); | 1703 | extern int fs_may_remount_ro(struct super_block *); |
1704 | 1704 | ||