diff options
| -rw-r--r-- | fs/read_write.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/read_write.c b/fs/read_write.c index 324ec271cc4e..0c8782aa3d71 100644 --- a/fs/read_write.c +++ b/fs/read_write.c | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/splice.h> | 17 | #include <linux/splice.h> |
| 18 | #include <linux/compat.h> | 18 | #include <linux/compat.h> |
| 19 | #include <linux/mount.h> | 19 | #include <linux/mount.h> |
| 20 | #include <linux/fs.h> | ||
| 20 | #include "internal.h" | 21 | #include "internal.h" |
| 21 | 22 | ||
| 22 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
| @@ -183,7 +184,7 @@ loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence) | |||
| 183 | switch (whence) { | 184 | switch (whence) { |
| 184 | case SEEK_SET: case SEEK_CUR: | 185 | case SEEK_SET: case SEEK_CUR: |
| 185 | return generic_file_llseek_size(file, offset, whence, | 186 | return generic_file_llseek_size(file, offset, whence, |
| 186 | ~0ULL, 0); | 187 | OFFSET_MAX, 0); |
| 187 | default: | 188 | default: |
| 188 | return -EINVAL; | 189 | return -EINVAL; |
| 189 | } | 190 | } |
