aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netns/can.h
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2018-10-08 09:02:27 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2019-09-04 13:29:13 +0200
commit2341086df44802550a6c4efcc45f6131a74a923d (patch)
tree722d9e7d9bf61a79046bb53fb4f379f0b1091cd2 /include/net/netns/can.h
parentcan: netns: give structs holding the CAN statistics a sensible name (diff)
downloadlinux-dev-2341086df44802550a6c4efcc45f6131a74a923d.tar.xz
linux-dev-2341086df44802550a6c4efcc45f6131a74a923d.zip
can: netns: give members of struct netns_can holding the statistics a sensible name
This patch gives the members of the struct netns_can that are holding the statistics a sensible name, by renaming struct netns_can::can_stats into struct netns_can::pkg_stats and struct netns_can::can_pstats into struct netns_can::rcv_lists_stats. The conversion is done with: sed -i \ -e "s:\(struct[^*]*\*\)can_stats;.*:\1pkg_stats;:" \ -e "s:\(struct[^*]*\*\)can_pstats;.*:\1rcv_lists_stats;:" \ -e "s/can\.can_stats/can.pkg_stats/g" \ -e "s/can\.can_pstats/can.rcv_lists_stats/g" \ net/can/*.[ch] \ include/net/netns/can.h Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de> Acked-by: Oliver Hartkopp <socketcan@hartkopp.net> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'include/net/netns/can.h')
-rw-r--r--include/net/netns/can.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/netns/can.h b/include/net/netns/can.h
index f2e5646e36f2..f684dea0a83e 100644
--- a/include/net/netns/can.h
+++ b/include/net/netns/can.h
@@ -31,8 +31,8 @@ struct netns_can {
struct can_dev_rcv_lists *can_rx_alldev_list;
spinlock_t can_rcvlists_lock;
struct timer_list can_stattimer;/* timer for statistics update */
- struct can_pkg_stats *can_stats; /* packet statistics */
- struct can_rcv_lists_stats *can_pstats; /* receive list statistics */
+ struct can_pkg_stats *pkg_stats;
+ struct can_rcv_lists_stats *rcv_lists_stats;
/* CAN GW per-net gateway jobs */
struct hlist_head cgw_list;