提交 fc244475 编写于 作者: J Jan Blunck 提交者: Linus Torvalds

frv: remove "struct file *" argument from sysctl ->proc_handler

Signed-off-by: NJan Blunck <jblunck@suse.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 e1c54b64
...@@ -46,8 +46,9 @@ static void frv_change_dcache_mode(unsigned long newmode) ...@@ -46,8 +46,9 @@ static void frv_change_dcache_mode(unsigned long newmode)
/* /*
* handle requests to dynamically switch the write caching mode delivered by /proc * handle requests to dynamically switch the write caching mode delivered by /proc
*/ */
static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp, static int procctl_frv_cachemode(ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos) void __user *buffer, size_t *lenp,
loff_t *ppos)
{ {
unsigned long hsr0; unsigned long hsr0;
char buff[8]; char buff[8];
...@@ -84,7 +85,7 @@ static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp, ...@@ -84,7 +85,7 @@ static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp,
} }
/* read the state */ /* read the state */
if (filp->f_pos > 0) { if (*ppos > 0) {
*lenp = 0; *lenp = 0;
return 0; return 0;
} }
...@@ -110,7 +111,7 @@ static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp, ...@@ -110,7 +111,7 @@ static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp,
return -EFAULT; return -EFAULT;
*lenp = len; *lenp = len;
filp->f_pos = len; *ppos = len;
return 0; return 0;
} /* end procctl_frv_cachemode() */ } /* end procctl_frv_cachemode() */
...@@ -120,8 +121,9 @@ static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp, ...@@ -120,8 +121,9 @@ static int procctl_frv_cachemode(ctl_table *table, int write, struct file *filp,
* permit the mm_struct the nominated process is using have its MMU context ID pinned * permit the mm_struct the nominated process is using have its MMU context ID pinned
*/ */
#ifdef CONFIG_MMU #ifdef CONFIG_MMU
static int procctl_frv_pin_cxnr(ctl_table *table, int write, struct file *filp, static int procctl_frv_pin_cxnr(ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos) void __user *buffer, size_t *lenp,
loff_t *ppos)
{ {
pid_t pid; pid_t pid;
char buff[16], *p; char buff[16], *p;
...@@ -150,7 +152,7 @@ static int procctl_frv_pin_cxnr(ctl_table *table, int write, struct file *filp, ...@@ -150,7 +152,7 @@ static int procctl_frv_pin_cxnr(ctl_table *table, int write, struct file *filp,
} }
/* read the currently pinned CXN */ /* read the currently pinned CXN */
if (filp->f_pos > 0) { if (*ppos > 0) {
*lenp = 0; *lenp = 0;
return 0; return 0;
} }
...@@ -163,7 +165,7 @@ static int procctl_frv_pin_cxnr(ctl_table *table, int write, struct file *filp, ...@@ -163,7 +165,7 @@ static int procctl_frv_pin_cxnr(ctl_table *table, int write, struct file *filp,
return -EFAULT; return -EFAULT;
*lenp = len; *lenp = len;
filp->f_pos = len; *ppos = len;
return 0; return 0;
} /* end procctl_frv_pin_cxnr() */ } /* end procctl_frv_pin_cxnr() */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册