Commit e7fe2336 authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller

sunrpc: assign PDE->data before gluing PDE into /proc tree

Simply replace proc_create and further data assigned with proc_create_data.
Signed-off-by: default avatarDenis V. Lunev <den@openvz.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fb65f180
...@@ -316,31 +316,28 @@ static int create_cache_proc_entries(struct cache_detail *cd) ...@@ -316,31 +316,28 @@ static int create_cache_proc_entries(struct cache_detail *cd)
cd->proc_ent->owner = cd->owner; cd->proc_ent->owner = cd->owner;
cd->channel_ent = cd->content_ent = NULL; cd->channel_ent = cd->content_ent = NULL;
p = proc_create("flush", S_IFREG|S_IRUSR|S_IWUSR, p = proc_create_data("flush", S_IFREG|S_IRUSR|S_IWUSR,
cd->proc_ent, &cache_flush_operations); cd->proc_ent, &cache_flush_operations, cd);
cd->flush_ent = p; cd->flush_ent = p;
if (p == NULL) if (p == NULL)
goto out_nomem; goto out_nomem;
p->owner = cd->owner; p->owner = cd->owner;
p->data = cd;
if (cd->cache_request || cd->cache_parse) { if (cd->cache_request || cd->cache_parse) {
p = proc_create("channel", S_IFREG|S_IRUSR|S_IWUSR, p = proc_create_data("channel", S_IFREG|S_IRUSR|S_IWUSR,
cd->proc_ent, &cache_file_operations); cd->proc_ent, &cache_file_operations, cd);
cd->channel_ent = p; cd->channel_ent = p;
if (p == NULL) if (p == NULL)
goto out_nomem; goto out_nomem;
p->owner = cd->owner; p->owner = cd->owner;
p->data = cd;
} }
if (cd->cache_show) { if (cd->cache_show) {
p = proc_create("content", S_IFREG|S_IRUSR|S_IWUSR, p = proc_create_data("content", S_IFREG|S_IRUSR|S_IWUSR,
cd->proc_ent, &content_file_operations); cd->proc_ent, &content_file_operations, cd);
cd->content_ent = p; cd->content_ent = p;
if (p == NULL) if (p == NULL)
goto out_nomem; goto out_nomem;
p->owner = cd->owner; p->owner = cd->owner;
p->data = cd;
} }
return 0; return 0;
out_nomem: out_nomem:
......
...@@ -224,16 +224,10 @@ EXPORT_SYMBOL_GPL(rpc_print_iostats); ...@@ -224,16 +224,10 @@ EXPORT_SYMBOL_GPL(rpc_print_iostats);
static inline struct proc_dir_entry * static inline struct proc_dir_entry *
do_register(const char *name, void *data, const struct file_operations *fops) do_register(const char *name, void *data, const struct file_operations *fops)
{ {
struct proc_dir_entry *ent;
rpc_proc_init(); rpc_proc_init();
dprintk("RPC: registering /proc/net/rpc/%s\n", name); dprintk("RPC: registering /proc/net/rpc/%s\n", name);
ent = proc_create(name, 0, proc_net_rpc, fops); return proc_create_data(name, 0, proc_net_rpc, fops, data);
if (ent) {
ent->data = data;
}
return ent;
} }
struct proc_dir_entry * struct proc_dir_entry *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment