diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pipe_fs_i.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h index 3c5ac3147428..bb27d7ec2fb9 100644 --- a/include/linux/pipe_fs_i.h +++ b/include/linux/pipe_fs_i.h | |||
@@ -160,17 +160,6 @@ void generic_pipe_buf_release(struct pipe_inode_info *, struct pipe_buffer *); | |||
160 | 160 | ||
161 | /* for F_SETPIPE_SZ and F_GETPIPE_SZ */ | 161 | /* for F_SETPIPE_SZ and F_GETPIPE_SZ */ |
162 | long pipe_fcntl(struct file *, unsigned int, unsigned long arg); | 162 | long pipe_fcntl(struct file *, unsigned int, unsigned long arg); |
163 | 163 | struct pipe_inode_info *get_pipe_info(struct file *file); | |
164 | /* | ||
165 | * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same | ||
166 | * location, so checking ->i_pipe is not enough to verify that this is a | ||
167 | * pipe. | ||
168 | */ | ||
169 | static inline struct pipe_inode_info *get_pipe_info(struct file *file) | ||
170 | { | ||
171 | struct inode *i = file->f_path.dentry->d_inode; | ||
172 | |||
173 | return S_ISFIFO(i->i_mode) ? i->i_pipe : NULL; | ||
174 | } | ||
175 | 164 | ||
176 | #endif | 165 | #endif |