mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
proc: convert everything to "struct proc_ops"
The most notable change is DEFINE_SHOW_ATTRIBUTE macro split in seq_file.h. Conversion rule is: llseek => proc_lseek unlocked_ioctl => proc_ioctl xxx => proc_xxx delete ".owner = THIS_MODULE" line [akpm@linux-foundation.org: fix drivers/isdn/capi/kcapi_proc.c] [sfr@canb.auug.org.au: fix kernel/sched/psi.c] Link: http://lkml.kernel.org/r/20200122180545.36222f50@canb.auug.org.au Link: http://lkml.kernel.org/r/20191225172546.GB13378@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d56c0d45f0
commit
97a32539b9
100 changed files with 960 additions and 1005 deletions
14
ipc/util.c
14
ipc/util.c
|
@ -126,7 +126,7 @@ void ipc_init_ids(struct ipc_ids *ids)
|
|||
}
|
||||
|
||||
#ifdef CONFIG_PROC_FS
|
||||
static const struct file_operations sysvipc_proc_fops;
|
||||
static const struct proc_ops sysvipc_proc_ops;
|
||||
/**
|
||||
* ipc_init_proc_interface - create a proc interface for sysipc types using a seq_file interface.
|
||||
* @path: Path in procfs
|
||||
|
@ -151,7 +151,7 @@ void __init ipc_init_proc_interface(const char *path, const char *header,
|
|||
pde = proc_create_data(path,
|
||||
S_IRUGO, /* world readable */
|
||||
NULL, /* parent dir */
|
||||
&sysvipc_proc_fops,
|
||||
&sysvipc_proc_ops,
|
||||
iface);
|
||||
if (!pde)
|
||||
kfree(iface);
|
||||
|
@ -884,10 +884,10 @@ static int sysvipc_proc_release(struct inode *inode, struct file *file)
|
|||
return seq_release_private(inode, file);
|
||||
}
|
||||
|
||||
static const struct file_operations sysvipc_proc_fops = {
|
||||
.open = sysvipc_proc_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = sysvipc_proc_release,
|
||||
static const struct proc_ops sysvipc_proc_ops = {
|
||||
.proc_open = sysvipc_proc_open,
|
||||
.proc_read = seq_read,
|
||||
.proc_lseek = seq_lseek,
|
||||
.proc_release = sysvipc_proc_release,
|
||||
};
|
||||
#endif /* CONFIG_PROC_FS */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue