summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2011-09-15 16:06:50 -0700
committerroot <root@serles.lst.de>2011-10-28 14:58:59 +0200
commit5760495a872d63a182962680a13c2af29235237c (patch)
treeab7ac2b0ec66006efbc27c318c89474a63d6e4d1 /include
parentef3d0fd27e90f67e35da516dafc1482c82939a60 (diff)
downloadlinux-3.10-5760495a872d63a182962680a13c2af29235237c.tar.gz
linux-3.10-5760495a872d63a182962680a13c2af29235237c.tar.bz2
linux-3.10-5760495a872d63a182962680a13c2af29235237c.zip
vfs: add generic_file_llseek_size
Add a generic_file_llseek variant to the VFS that allows passing in the maximum file size of the file system, instead of always using maxbytes from the superblock. This can be used to eliminate some cut'n'paste seek code in ext4. Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/fs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index db85196f630..d055cc7d724 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2403,6 +2403,8 @@ file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping);
extern loff_t noop_llseek(struct file *file, loff_t offset, int origin);
extern loff_t no_llseek(struct file *file, loff_t offset, int origin);
extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin);
+extern loff_t generic_file_llseek_size(struct file *file, loff_t offset,
+ int origin, loff_t maxsize);
extern int generic_file_open(struct inode * inode, struct file * filp);
extern int nonseekable_open(struct inode * inode, struct file * filp);