diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-11-28 17:09:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-11-28 17:09:57 -0500 |
commit | c66fb347946ebdd5b10908866ecc9fa05ee2cf3d (patch) | |
tree | 1891142352d75dcf58a1e90d8dde4d4a99c6e266 /fs/pipe.c | |
parent | 71993e62a47dabddf10302807d6aa260455503f4 (diff) |
Export 'get_pipe_info()' to other users
And in particular, use it in 'pipe_fcntl()'.
The other pipe functions do not need to use the 'careful' version, since
they are only ever called for things that are already known to be pipes.
The normal read/write/ioctl functions are called through the file
operations structures, so if a file isn't a pipe, they'd never get
called. But pipe_fcntl() is special, and called directly from the
generic fcntl code, and needs to use the same careful function that the
splice code is using.
Cc: Jens Axboe <jaxboe@fusionio.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/pipe.c')
-rw-r--r-- | fs/pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1204,7 +1204,7 @@ long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg) | |||
1204 | struct pipe_inode_info *pipe; | 1204 | struct pipe_inode_info *pipe; |
1205 | long ret; | 1205 | long ret; |
1206 | 1206 | ||
1207 | pipe = file->f_path.dentry->d_inode->i_pipe; | 1207 | pipe = get_pipe_info(file); |
1208 | if (!pipe) | 1208 | if (!pipe) |
1209 | return -EBADF; | 1209 | return -EBADF; |
1210 | 1210 | ||