Commit 564577df authored by Marc Kleine-Budde's avatar Marc Kleine-Budde

can: netns: remove "can_" prefix from members struct netns_can

This patch improves the code reability by removing the redundant "can_"
prefix from the members of struct netns_can (as the struct netns_can itself
is the member "can" of the struct net.)

The conversion is done with:

	sed -i \
		-e "s/struct can_dev_rcv_lists \*can_rx_alldev_list;/struct can_dev_rcv_lists *rx_alldev_list;/" \
		-e "s/spinlock_t can_rcvlists_lock;/spinlock_t rcvlists_lock;/" \
		-e "s/struct timer_list can_stattimer;/struct timer_list stattimer; /" \
		-e "s/can\.can_rx_alldev_list/can.rx_alldev_list/g" \
		-e "s/can\.can_rcvlists_lock/can.rcvlists_lock/g" \
		-e "s/can\.can_stattimer/can.stattimer/g" \
		include/net/netns/can.h \
		net/can/*.[ch]
Signed-off-by: default avatarOleksij Rempel <o.rempel@pengutronix.de>
Acked-by: default avatarOliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 448c7074
...@@ -28,9 +28,9 @@ struct netns_can { ...@@ -28,9 +28,9 @@ struct netns_can {
#endif #endif
/* receive filters subscribed for 'all' CAN devices */ /* receive filters subscribed for 'all' CAN devices */
struct can_dev_rcv_lists *can_rx_alldev_list; struct can_dev_rcv_lists *rx_alldev_list;
spinlock_t can_rcvlists_lock; spinlock_t rcvlists_lock;
struct timer_list can_stattimer;/* timer for statistics update */ struct timer_list stattimer; /* timer for statistics update */
struct can_pkg_stats *pkg_stats; struct can_pkg_stats *pkg_stats;
struct can_rcv_lists_stats *rcv_lists_stats; struct can_rcv_lists_stats *rcv_lists_stats;
......
...@@ -302,7 +302,7 @@ static struct can_dev_rcv_lists *find_dev_rcv_lists(struct net *net, ...@@ -302,7 +302,7 @@ static struct can_dev_rcv_lists *find_dev_rcv_lists(struct net *net,
struct net_device *dev) struct net_device *dev)
{ {
if (!dev) if (!dev)
return net->can.can_rx_alldev_list; return net->can.rx_alldev_list;
else else
return (struct can_dev_rcv_lists *)dev->ml_priv; return (struct can_dev_rcv_lists *)dev->ml_priv;
} }
...@@ -456,7 +456,7 @@ int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id, ...@@ -456,7 +456,7 @@ int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id,
if (!r) if (!r)
return -ENOMEM; return -ENOMEM;
spin_lock(&net->can.can_rcvlists_lock); spin_lock(&net->can.rcvlists_lock);
d = find_dev_rcv_lists(net, dev); d = find_dev_rcv_lists(net, dev);
if (d) { if (d) {
...@@ -481,7 +481,7 @@ int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id, ...@@ -481,7 +481,7 @@ int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id,
err = -ENODEV; err = -ENODEV;
} }
spin_unlock(&net->can.can_rcvlists_lock); spin_unlock(&net->can.rcvlists_lock);
return err; return err;
} }
...@@ -524,7 +524,7 @@ void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id, ...@@ -524,7 +524,7 @@ void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id,
if (dev && !net_eq(net, dev_net(dev))) if (dev && !net_eq(net, dev_net(dev)))
return; return;
spin_lock(&net->can.can_rcvlists_lock); spin_lock(&net->can.rcvlists_lock);
d = find_dev_rcv_lists(net, dev); d = find_dev_rcv_lists(net, dev);
if (!d) { if (!d) {
...@@ -569,7 +569,7 @@ void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id, ...@@ -569,7 +569,7 @@ void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id,
} }
out: out:
spin_unlock(&net->can.can_rcvlists_lock); spin_unlock(&net->can.rcvlists_lock);
/* schedule the receiver item for deletion */ /* schedule the receiver item for deletion */
if (r) { if (r) {
...@@ -669,7 +669,7 @@ static void can_receive(struct sk_buff *skb, struct net_device *dev) ...@@ -669,7 +669,7 @@ static void can_receive(struct sk_buff *skb, struct net_device *dev)
rcu_read_lock(); rcu_read_lock();
/* deliver the packet to sockets listening on all devices */ /* deliver the packet to sockets listening on all devices */
matches = can_rcv_filter(net->can.can_rx_alldev_list, skb); matches = can_rcv_filter(net->can.rx_alldev_list, skb);
/* find receive list for this device */ /* find receive list for this device */
d = find_dev_rcv_lists(net, dev); d = find_dev_rcv_lists(net, dev);
...@@ -807,7 +807,7 @@ static int can_notifier(struct notifier_block *nb, unsigned long msg, ...@@ -807,7 +807,7 @@ static int can_notifier(struct notifier_block *nb, unsigned long msg,
break; break;
case NETDEV_UNREGISTER: case NETDEV_UNREGISTER:
spin_lock(&dev_net(dev)->can.can_rcvlists_lock); spin_lock(&dev_net(dev)->can.rcvlists_lock);
d = dev->ml_priv; d = dev->ml_priv;
if (d) { if (d) {
...@@ -822,7 +822,7 @@ static int can_notifier(struct notifier_block *nb, unsigned long msg, ...@@ -822,7 +822,7 @@ static int can_notifier(struct notifier_block *nb, unsigned long msg,
dev->name); dev->name);
} }
spin_unlock(&dev_net(dev)->can.can_rcvlists_lock); spin_unlock(&dev_net(dev)->can.rcvlists_lock);
break; break;
} }
...@@ -832,10 +832,10 @@ static int can_notifier(struct notifier_block *nb, unsigned long msg, ...@@ -832,10 +832,10 @@ static int can_notifier(struct notifier_block *nb, unsigned long msg,
static int can_pernet_init(struct net *net) static int can_pernet_init(struct net *net)
{ {
spin_lock_init(&net->can.can_rcvlists_lock); spin_lock_init(&net->can.rcvlists_lock);
net->can.can_rx_alldev_list = net->can.rx_alldev_list =
kzalloc(sizeof(*net->can.can_rx_alldev_list), GFP_KERNEL); kzalloc(sizeof(*net->can.rx_alldev_list), GFP_KERNEL);
if (!net->can.can_rx_alldev_list) if (!net->can.rx_alldev_list)
goto out; goto out;
net->can.pkg_stats = kzalloc(sizeof(*net->can.pkg_stats), GFP_KERNEL); net->can.pkg_stats = kzalloc(sizeof(*net->can.pkg_stats), GFP_KERNEL);
if (!net->can.pkg_stats) if (!net->can.pkg_stats)
...@@ -847,9 +847,9 @@ static int can_pernet_init(struct net *net) ...@@ -847,9 +847,9 @@ static int can_pernet_init(struct net *net)
if (IS_ENABLED(CONFIG_PROC_FS)) { if (IS_ENABLED(CONFIG_PROC_FS)) {
/* the statistics are updated every second (timer triggered) */ /* the statistics are updated every second (timer triggered) */
if (stats_timer) { if (stats_timer) {
timer_setup(&net->can.can_stattimer, can_stat_update, timer_setup(&net->can.stattimer, can_stat_update,
0); 0);
mod_timer(&net->can.can_stattimer, mod_timer(&net->can.stattimer,
round_jiffies(jiffies + HZ)); round_jiffies(jiffies + HZ));
} }
net->can.pkg_stats->jiffies_init = jiffies; net->can.pkg_stats->jiffies_init = jiffies;
...@@ -861,7 +861,7 @@ static int can_pernet_init(struct net *net) ...@@ -861,7 +861,7 @@ static int can_pernet_init(struct net *net)
out_free_pkg_stats: out_free_pkg_stats:
kfree(net->can.pkg_stats); kfree(net->can.pkg_stats);
out_free_rx_alldev_list: out_free_rx_alldev_list:
kfree(net->can.can_rx_alldev_list); kfree(net->can.rx_alldev_list);
out: out:
return -ENOMEM; return -ENOMEM;
} }
...@@ -873,7 +873,7 @@ static void can_pernet_exit(struct net *net) ...@@ -873,7 +873,7 @@ static void can_pernet_exit(struct net *net)
if (IS_ENABLED(CONFIG_PROC_FS)) { if (IS_ENABLED(CONFIG_PROC_FS)) {
can_remove_proc(net); can_remove_proc(net);
if (stats_timer) if (stats_timer)
del_timer_sync(&net->can.can_stattimer); del_timer_sync(&net->can.stattimer);
} }
/* remove created dev_rcv_lists from still registered CAN devices */ /* remove created dev_rcv_lists from still registered CAN devices */
...@@ -889,7 +889,7 @@ static void can_pernet_exit(struct net *net) ...@@ -889,7 +889,7 @@ static void can_pernet_exit(struct net *net)
} }
rcu_read_unlock(); rcu_read_unlock();
kfree(net->can.can_rx_alldev_list); kfree(net->can.rx_alldev_list);
kfree(net->can.pkg_stats); kfree(net->can.pkg_stats);
kfree(net->can.rcv_lists_stats); kfree(net->can.rcv_lists_stats);
} }
......
...@@ -118,7 +118,7 @@ static unsigned long calc_rate(unsigned long oldjif, unsigned long newjif, ...@@ -118,7 +118,7 @@ static unsigned long calc_rate(unsigned long oldjif, unsigned long newjif,
void can_stat_update(struct timer_list *t) void can_stat_update(struct timer_list *t)
{ {
struct net *net = from_timer(net, t, can.can_stattimer); struct net *net = from_timer(net, t, can.stattimer);
struct can_pkg_stats *pkg_stats = net->can.pkg_stats; struct can_pkg_stats *pkg_stats = net->can.pkg_stats;
unsigned long j = jiffies; /* snapshot */ unsigned long j = jiffies; /* snapshot */
...@@ -177,7 +177,7 @@ void can_stat_update(struct timer_list *t) ...@@ -177,7 +177,7 @@ void can_stat_update(struct timer_list *t)
pkg_stats->matches_delta = 0; pkg_stats->matches_delta = 0;
/* restart timer (one second) */ /* restart timer (one second) */
mod_timer(&net->can.can_stattimer, round_jiffies(jiffies + HZ)); mod_timer(&net->can.stattimer, round_jiffies(jiffies + HZ));
} }
/* /*
...@@ -222,7 +222,7 @@ static int can_stats_proc_show(struct seq_file *m, void *v) ...@@ -222,7 +222,7 @@ static int can_stats_proc_show(struct seq_file *m, void *v)
seq_putc(m, '\n'); seq_putc(m, '\n');
if (net->can.can_stattimer.function == can_stat_update) { if (net->can.stattimer.function == can_stat_update) {
seq_printf(m, " %8ld %% total match ratio (RXMR)\n", seq_printf(m, " %8ld %% total match ratio (RXMR)\n",
pkg_stats->total_rx_match_ratio); pkg_stats->total_rx_match_ratio);
...@@ -279,7 +279,7 @@ static int can_reset_stats_proc_show(struct seq_file *m, void *v) ...@@ -279,7 +279,7 @@ static int can_reset_stats_proc_show(struct seq_file *m, void *v)
user_reset = 1; user_reset = 1;
if (net->can.can_stattimer.function == can_stat_update) { if (net->can.stattimer.function == can_stat_update) {
seq_printf(m, "Scheduled statistic reset #%ld.\n", seq_printf(m, "Scheduled statistic reset #%ld.\n",
rcv_lists_stats->stats_reset + 1); rcv_lists_stats->stats_reset + 1);
} else { } else {
...@@ -323,7 +323,7 @@ static int can_rcvlist_proc_show(struct seq_file *m, void *v) ...@@ -323,7 +323,7 @@ static int can_rcvlist_proc_show(struct seq_file *m, void *v)
rcu_read_lock(); rcu_read_lock();
/* receive list for 'all' CAN devices (dev == NULL) */ /* receive list for 'all' CAN devices (dev == NULL) */
d = net->can.can_rx_alldev_list; d = net->can.rx_alldev_list;
can_rcvlist_proc_show_one(m, idx, NULL, d); can_rcvlist_proc_show_one(m, idx, NULL, d);
/* receive list for registered CAN devices */ /* receive list for registered CAN devices */
...@@ -375,7 +375,7 @@ static int can_rcvlist_sff_proc_show(struct seq_file *m, void *v) ...@@ -375,7 +375,7 @@ static int can_rcvlist_sff_proc_show(struct seq_file *m, void *v)
rcu_read_lock(); rcu_read_lock();
/* sff receive list for 'all' CAN devices (dev == NULL) */ /* sff receive list for 'all' CAN devices (dev == NULL) */
d = net->can.can_rx_alldev_list; d = net->can.rx_alldev_list;
can_rcvlist_proc_show_array(m, NULL, d->rx_sff, ARRAY_SIZE(d->rx_sff)); can_rcvlist_proc_show_array(m, NULL, d->rx_sff, ARRAY_SIZE(d->rx_sff));
/* sff receive list for registered CAN devices */ /* sff receive list for registered CAN devices */
...@@ -405,7 +405,7 @@ static int can_rcvlist_eff_proc_show(struct seq_file *m, void *v) ...@@ -405,7 +405,7 @@ static int can_rcvlist_eff_proc_show(struct seq_file *m, void *v)
rcu_read_lock(); rcu_read_lock();
/* eff receive list for 'all' CAN devices (dev == NULL) */ /* eff receive list for 'all' CAN devices (dev == NULL) */
d = net->can.can_rx_alldev_list; d = net->can.rx_alldev_list;
can_rcvlist_proc_show_array(m, NULL, d->rx_eff, ARRAY_SIZE(d->rx_eff)); can_rcvlist_proc_show_array(m, NULL, d->rx_eff, ARRAY_SIZE(d->rx_eff));
/* eff receive list for registered CAN devices */ /* eff receive list for registered CAN devices */
......
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