]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kernel_read: redefine offset type
authorMimi Zohar <zohar@linux.vnet.ibm.com>
Fri, 21 Aug 2009 18:32:48 +0000 (14:32 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 9 Sep 2009 03:33:22 +0000 (20:33 -0700)
commit 6777d773a463ac045d333b989d4e44660f8d92ad upstream.

vfs_read() offset is defined as loff_t, but kernel_read()
offset is only defined as unsigned long. Redefine
kernel_read() offset as loff_t.

Signed-off-by: Mimi Zohar <zohar@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/exec.c
include/linux/fs.h

index 895823d0149d9cfbd75bb34b670662dafb7f9ef6..42414e5a1a1dfc6f086c0f39abba18d21ab0f8a2 100644 (file)
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -677,8 +677,8 @@ exit:
 }
 EXPORT_SYMBOL(open_exec);
 
-int kernel_read(struct file *file, unsigned long offset,
-       char *addr, unsigned long count)
+int kernel_read(struct file *file, loff_t offset,
+               char *addr, unsigned long count)
 {
        mm_segment_t old_fs;
        loff_t pos = offset;
index 3b534e527e09922aa0d89b1854ba60a4e5871f5a..3b3f7713fe2e9a306503c41fce592498622cd084 100644 (file)
@@ -2121,7 +2121,7 @@ extern struct file *do_filp_open(int dfd, const char *pathname,
                int open_flag, int mode, int acc_mode);
 extern int may_open(struct path *, int, int);
 
-extern int kernel_read(struct file *, unsigned long, char *, unsigned long);
+extern int kernel_read(struct file *, loff_t, char *, unsigned long);
 extern struct file * open_exec(const char *);
  
 /* fs/dcache.c -- generic fs support functions */