mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -07:00
net: proc: change proc_net_fops_create to proc_create
Right now, some modules such as bonding use proc_create to create proc entries under /proc/net/, and other modules such as ipv4 use proc_net_fops_create. It looks a little chaos.this patch changes all of proc_net_fops_create to proc_create. we can remove proc_net_fops_create after this patch. Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
510a1e7249
commit
d4beaa66ad
@@ -276,7 +276,7 @@ static int cn_init(void)
|
||||
|
||||
cn_already_initialized = 1;
|
||||
|
||||
proc_net_fops_create(&init_net, "connector", S_IRUGO, &cn_file_ops);
|
||||
proc_create("connector", S_IRUGO, init_net.proc_net, &cn_file_ops);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -586,7 +586,8 @@ static int bpq_device_event(struct notifier_block *this,unsigned long event, voi
|
||||
static int __init bpq_init_driver(void)
|
||||
{
|
||||
#ifdef CONFIG_PROC_FS
|
||||
if (!proc_net_fops_create(&init_net, "bpqether", S_IRUGO, &bpq_info_fops)) {
|
||||
if (!proc_create("bpqether", S_IRUGO, init_net.proc_net,
|
||||
&bpq_info_fops)) {
|
||||
printk(KERN_ERR
|
||||
"bpq: cannot create /proc/net/bpqether entry.\n");
|
||||
return -ENOENT;
|
||||
|
||||
@@ -2118,7 +2118,7 @@ static int __init scc_init_driver (void)
|
||||
}
|
||||
rtnl_unlock();
|
||||
|
||||
proc_net_fops_create(&init_net, "z8530drv", 0, &scc_net_seq_fops);
|
||||
proc_create("z8530drv", 0, init_net.proc_net, &scc_net_seq_fops);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1167,7 +1167,7 @@ static int __init yam_init_driver(void)
|
||||
yam_timer.expires = jiffies + HZ / 100;
|
||||
add_timer(&yam_timer);
|
||||
|
||||
proc_net_fops_create(&init_net, "yam", S_IRUGO, &yam_info_fops);
|
||||
proc_create("yam", S_IRUGO, init_net.proc_net, &yam_info_fops);
|
||||
return 0;
|
||||
error:
|
||||
while (--i >= 0) {
|
||||
|
||||
@@ -1134,7 +1134,7 @@ static __net_init int pppoe_init_net(struct net *net)
|
||||
|
||||
rwlock_init(&pn->hash_lock);
|
||||
|
||||
pde = proc_net_fops_create(net, "pppoe", S_IRUGO, &pppoe_seq_fops);
|
||||
pde = proc_create("pppoe", S_IRUGO, net->proc_net, &pppoe_seq_fops);
|
||||
#ifdef CONFIG_PROC_FS
|
||||
if (!pde)
|
||||
return -ENOMEM;
|
||||
|
||||
@@ -1992,9 +1992,10 @@ static int __init ax25_init(void)
|
||||
dev_add_pack(&ax25_packet_type);
|
||||
register_netdevice_notifier(&ax25_dev_notifier);
|
||||
|
||||
proc_net_fops_create(&init_net, "ax25_route", S_IRUGO, &ax25_route_fops);
|
||||
proc_net_fops_create(&init_net, "ax25", S_IRUGO, &ax25_info_fops);
|
||||
proc_net_fops_create(&init_net, "ax25_calls", S_IRUGO, &ax25_uid_fops);
|
||||
proc_create("ax25_route", S_IRUGO, init_net.proc_net,
|
||||
&ax25_route_fops);
|
||||
proc_create("ax25", S_IRUGO, init_net.proc_net, &ax25_info_fops);
|
||||
proc_create("ax25_calls", S_IRUGO, init_net.proc_net, &ax25_uid_fops);
|
||||
out:
|
||||
return rc;
|
||||
}
|
||||
|
||||
@@ -641,7 +641,7 @@ int bt_procfs_init(struct module* module, struct net *net, const char *name,
|
||||
sk_list->fops.llseek = seq_lseek;
|
||||
sk_list->fops.release = seq_release_private;
|
||||
|
||||
pde = proc_net_fops_create(net, name, 0, &sk_list->fops);
|
||||
pde = proc_create(name, 0, net->proc_net, &sk_list->fops);
|
||||
if (!pde)
|
||||
return -ENOMEM;
|
||||
|
||||
|
||||
@@ -4518,11 +4518,12 @@ static int __net_init dev_proc_net_init(struct net *net)
|
||||
{
|
||||
int rc = -ENOMEM;
|
||||
|
||||
if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops))
|
||||
if (!proc_create("dev", S_IRUGO, net->proc_net, &dev_seq_fops))
|
||||
goto out;
|
||||
if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops))
|
||||
if (!proc_create("softnet_stat", S_IRUGO, net->proc_net,
|
||||
&softnet_seq_fops))
|
||||
goto out_dev;
|
||||
if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops))
|
||||
if (!proc_create("ptype", S_IRUGO, net->proc_net, &ptype_seq_fops))
|
||||
goto out_softnet;
|
||||
|
||||
if (wext_proc_init(net))
|
||||
|
||||
@@ -780,7 +780,7 @@ static const struct file_operations dev_mc_seq_fops = {
|
||||
|
||||
static int __net_init dev_mc_net_init(struct net *net)
|
||||
{
|
||||
if (!proc_net_fops_create(net, "dev_mcast", 0, &dev_mc_seq_fops))
|
||||
if (!proc_create("dev_mcast", 0, net->proc_net, &dev_mc_seq_fops))
|
||||
return -ENOMEM;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -2836,7 +2836,7 @@ static const struct file_operations proto_seq_fops = {
|
||||
|
||||
static __net_init int proto_init_net(struct net *net)
|
||||
{
|
||||
if (!proc_net_fops_create(net, "protocols", S_IRUGO, &proto_seq_fops))
|
||||
if (!proc_create("protocols", S_IRUGO, net->proc_net, &proto_seq_fops))
|
||||
return -ENOMEM;
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -171,7 +171,7 @@ static __init int dccpprobe_init(void)
|
||||
spin_lock_init(&dccpw.lock);
|
||||
if (kfifo_alloc(&dccpw.fifo, bufsize, GFP_KERNEL))
|
||||
return ret;
|
||||
if (!proc_net_fops_create(&init_net, procname, S_IRUSR, &dccpprobe_fops))
|
||||
if (!proc_create(procname, S_IRUSR, init_net.proc_net, &dccpprobe_fops))
|
||||
goto err0;
|
||||
|
||||
ret = setup_jprobe();
|
||||
|
||||
@@ -2384,7 +2384,7 @@ static int __init decnet_init(void)
|
||||
dev_add_pack(&dn_dix_packet_type);
|
||||
register_netdevice_notifier(&dn_dev_notifier);
|
||||
|
||||
proc_net_fops_create(&init_net, "decnet", S_IRUGO, &dn_socket_seq_fops);
|
||||
proc_create("decnet", S_IRUGO, init_net.proc_net, &dn_socket_seq_fops);
|
||||
dn_register_sysctl();
|
||||
out:
|
||||
return rc;
|
||||
|
||||
@@ -1412,7 +1412,7 @@ void __init dn_dev_init(void)
|
||||
rtnl_register(PF_DECnet, RTM_DELADDR, dn_nl_deladdr, NULL, NULL);
|
||||
rtnl_register(PF_DECnet, RTM_GETADDR, NULL, dn_nl_dump_ifaddr, NULL);
|
||||
|
||||
proc_net_fops_create(&init_net, "decnet_dev", S_IRUGO, &dn_dev_seq_fops);
|
||||
proc_create("decnet_dev", S_IRUGO, init_net.proc_net, &dn_dev_seq_fops);
|
||||
|
||||
#ifdef CONFIG_SYSCTL
|
||||
{
|
||||
|
||||
@@ -590,7 +590,8 @@ static const struct file_operations dn_neigh_seq_fops = {
|
||||
void __init dn_neigh_init(void)
|
||||
{
|
||||
neigh_table_init(&dn_neigh_table);
|
||||
proc_net_fops_create(&init_net, "decnet_neigh", S_IRUGO, &dn_neigh_seq_fops);
|
||||
proc_create("decnet_neigh", S_IRUGO, init_net.proc_net,
|
||||
&dn_neigh_seq_fops);
|
||||
}
|
||||
|
||||
void __exit dn_neigh_cleanup(void)
|
||||
|
||||
@@ -1901,7 +1901,8 @@ void __init dn_route_init(void)
|
||||
|
||||
dn_dst_ops.gc_thresh = (dn_rt_hash_mask + 1);
|
||||
|
||||
proc_net_fops_create(&init_net, "decnet_cache", S_IRUGO, &dn_rt_cache_seq_fops);
|
||||
proc_create("decnet_cache", S_IRUGO, init_net.proc_net,
|
||||
&dn_rt_cache_seq_fops);
|
||||
|
||||
#ifdef CONFIG_DECNET_ROUTER
|
||||
rtnl_register(PF_DECnet, RTM_GETROUTE, dn_cache_getroute,
|
||||
|
||||
@@ -1405,7 +1405,7 @@ static const struct file_operations arp_seq_fops = {
|
||||
|
||||
static int __net_init arp_net_init(struct net *net)
|
||||
{
|
||||
if (!proc_net_fops_create(net, "arp", S_IRUGO, &arp_seq_fops))
|
||||
if (!proc_create("arp", S_IRUGO, net->proc_net, &arp_seq_fops))
|
||||
return -ENOMEM;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -2607,14 +2607,14 @@ static const struct file_operations fib_route_fops = {
|
||||
|
||||
int __net_init fib_proc_init(struct net *net)
|
||||
{
|
||||
if (!proc_net_fops_create(net, "fib_trie", S_IRUGO, &fib_trie_fops))
|
||||
if (!proc_create("fib_trie", S_IRUGO, net->proc_net, &fib_trie_fops))
|
||||
goto out1;
|
||||
|
||||
if (!proc_net_fops_create(net, "fib_triestat", S_IRUGO,
|
||||
&fib_triestat_fops))
|
||||
if (!proc_create("fib_triestat", S_IRUGO, net->proc_net,
|
||||
&fib_triestat_fops))
|
||||
goto out2;
|
||||
|
||||
if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_route_fops))
|
||||
if (!proc_create("route", S_IRUGO, net->proc_net, &fib_route_fops))
|
||||
goto out3;
|
||||
|
||||
return 0;
|
||||
|
||||
@@ -2646,10 +2646,11 @@ static int __net_init igmp_net_init(struct net *net)
|
||||
{
|
||||
struct proc_dir_entry *pde;
|
||||
|
||||
pde = proc_net_fops_create(net, "igmp", S_IRUGO, &igmp_mc_seq_fops);
|
||||
pde = proc_create("igmp", S_IRUGO, net->proc_net, &igmp_mc_seq_fops);
|
||||
if (!pde)
|
||||
goto out_igmp;
|
||||
pde = proc_net_fops_create(net, "mcfilter", S_IRUGO, &igmp_mcf_seq_fops);
|
||||
pde = proc_create("mcfilter", S_IRUGO, net->proc_net,
|
||||
&igmp_mcf_seq_fops);
|
||||
if (!pde)
|
||||
goto out_mcfilter;
|
||||
return 0;
|
||||
|
||||
@@ -1394,7 +1394,7 @@ static int __init ip_auto_config(void)
|
||||
unsigned int i;
|
||||
|
||||
#ifdef CONFIG_PROC_FS
|
||||
proc_net_fops_create(&init_net, "pnp", S_IRUGO, &pnp_seq_fops);
|
||||
proc_create("pnp", S_IRUGO, init_net.proc_net, &pnp_seq_fops);
|
||||
#endif /* CONFIG_PROC_FS */
|
||||
|
||||
if (!ic_enable)
|
||||
|
||||
@@ -2703,9 +2703,9 @@ static int __net_init ipmr_net_init(struct net *net)
|
||||
|
||||
#ifdef CONFIG_PROC_FS
|
||||
err = -ENOMEM;
|
||||
if (!proc_net_fops_create(net, "ip_mr_vif", 0, &ipmr_vif_fops))
|
||||
if (!proc_create("ip_mr_vif", 0, net->proc_net, &ipmr_vif_fops))
|
||||
goto proc_vif_fail;
|
||||
if (!proc_net_fops_create(net, "ip_mr_cache", 0, &ipmr_mfc_fops))
|
||||
if (!proc_create("ip_mr_cache", 0, net->proc_net, &ipmr_mfc_fops))
|
||||
goto proc_cache_fail;
|
||||
#endif
|
||||
return 0;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user