diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-06-16 12:27:42 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-06-29 04:57:26 -0400 |
commit | 1bf9d14dff4a2c4de6152c6f751bdaf6896b68bb (patch) | |
tree | 9f4f52547bc8cbdc934126344edeb96d441c0383 /include/linux/fs.h | |
parent | 0747fdb2bd59d9404ae2345cbddd7d837c5c4648 (diff) |
new helper: fixed_size_llseek()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 1db01c13ddce..803b7fa2520a 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -2428,6 +2428,8 @@ extern loff_t no_llseek(struct file *file, loff_t offset, int whence); | |||
2428 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int whence); | 2428 | extern loff_t generic_file_llseek(struct file *file, loff_t offset, int whence); |
2429 | extern loff_t generic_file_llseek_size(struct file *file, loff_t offset, | 2429 | extern loff_t generic_file_llseek_size(struct file *file, loff_t offset, |
2430 | int whence, loff_t maxsize, loff_t eof); | 2430 | int whence, loff_t maxsize, loff_t eof); |
2431 | extern loff_t fixed_size_llseek(struct file *file, loff_t offset, | ||
2432 | int whence, loff_t size); | ||
2431 | extern int generic_file_open(struct inode * inode, struct file * filp); | 2433 | extern int generic_file_open(struct inode * inode, struct file * filp); |
2432 | extern int nonseekable_open(struct inode * inode, struct file * filp); | 2434 | extern int nonseekable_open(struct inode * inode, struct file * filp); |
2433 | 2435 | ||