aboutsummaryrefslogtreecommitdiff
path: root/fs/read_write.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2013-06-16 20:27:42 +0400
committerAl Viro <viro@zeniv.linux.org.uk>2013-06-29 12:57:26 +0400
commit1bf9d14dff4a2c4de6152c6f751bdaf6896b68bb (patch)
tree9f4f52547bc8cbdc934126344edeb96d441c0383 /fs/read_write.c
parent0747fdb2bd59d9404ae2345cbddd7d837c5c4648 (diff)
new helper: fixed_size_llseek()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/read_write.c')
-rw-r--r--fs/read_write.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/fs/read_write.c b/fs/read_write.c
index f646c8b565b..782dfc3aceb 100644
--- a/fs/read_write.c
+++ b/fs/read_write.c
@@ -145,6 +145,26 @@ loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
EXPORT_SYMBOL(generic_file_llseek);
/**
+ * fixed_size_llseek - llseek implementation for fixed-sized devices
+ * @file: file structure to seek on
+ * @offset: file offset to seek to
+ * @whence: type of seek
+ * @size: size of the file
+ *
+ */
+loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
+{
+ switch (whence) {
+ case SEEK_SET: case SEEK_CUR: case SEEK_END:
+ return generic_file_llseek_size(file, offset, whence,
+ size, size);
+ default:
+ return -EINVAL;
+ }
+}
+EXPORT_SYMBOL(fixed_size_llseek);
+
+/**
* noop_llseek - No Operation Performed llseek implementation
* @file: file structure to seek on
* @offset: file offset to seek to