Commit e3d3917f authored by Oliver Hartkopp's avatar Oliver Hartkopp Committed by Marc Kleine-Budde

can: proc: make array printing function indenpendent from sff frames

The can_rcvlist_sff_proc_show_one() function which prints the array of filters
for the single SFF CAN identifiers is prepared to be used by a second caller.
Therefore it is also renamed to properly describe its future functionality.
Signed-off-by: default avatarOliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 42193e3e
...@@ -59,12 +59,14 @@ struct receiver { ...@@ -59,12 +59,14 @@ struct receiver {
char *ident; char *ident;
}; };
#define CAN_SFF_RCV_ARRAY_SZ (1 << CAN_SFF_ID_BITS)
enum { RX_ERR, RX_ALL, RX_FIL, RX_INV, RX_EFF, RX_MAX }; enum { RX_ERR, RX_ALL, RX_FIL, RX_INV, RX_EFF, RX_MAX };
/* per device receive filters linked at dev->ml_priv */ /* per device receive filters linked at dev->ml_priv */
struct dev_rcv_lists { struct dev_rcv_lists {
struct hlist_head rx[RX_MAX]; struct hlist_head rx[RX_MAX];
struct hlist_head rx_sff[0x800]; struct hlist_head rx_sff[CAN_SFF_RCV_ARRAY_SZ];
int remove_on_zero_entries; int remove_on_zero_entries;
int entries; int entries;
}; };
......
...@@ -389,25 +389,26 @@ static const struct file_operations can_rcvlist_proc_fops = { ...@@ -389,25 +389,26 @@ static const struct file_operations can_rcvlist_proc_fops = {
.release = single_release, .release = single_release,
}; };
static inline void can_rcvlist_sff_proc_show_one(struct seq_file *m, static inline void can_rcvlist_proc_show_array(struct seq_file *m,
struct net_device *dev, struct net_device *dev,
struct dev_rcv_lists *d) struct hlist_head *rcv_array,
unsigned int rcv_array_sz)
{ {
int i; unsigned int i;
int all_empty = 1; int all_empty = 1;
/* check whether at least one list is non-empty */ /* check whether at least one list is non-empty */
for (i = 0; i < 0x800; i++) for (i = 0; i < rcv_array_sz; i++)
if (!hlist_empty(&d->rx_sff[i])) { if (!hlist_empty(&rcv_array[i])) {
all_empty = 0; all_empty = 0;
break; break;
} }
if (!all_empty) { if (!all_empty) {
can_print_recv_banner(m); can_print_recv_banner(m);
for (i = 0; i < 0x800; i++) { for (i = 0; i < rcv_array_sz; i++) {
if (!hlist_empty(&d->rx_sff[i])) if (!hlist_empty(&rcv_array[i]))
can_print_rcvlist(m, &d->rx_sff[i], dev); can_print_rcvlist(m, &rcv_array[i], dev);
} }
} else } else
seq_printf(m, " (%s: no entry)\n", DNAME(dev)); seq_printf(m, " (%s: no entry)\n", DNAME(dev));
...@@ -425,12 +426,15 @@ static int can_rcvlist_sff_proc_show(struct seq_file *m, void *v) ...@@ -425,12 +426,15 @@ static int can_rcvlist_sff_proc_show(struct seq_file *m, void *v)
/* sff receive list for 'all' CAN devices (dev == NULL) */ /* sff receive list for 'all' CAN devices (dev == NULL) */
d = &can_rx_alldev_list; d = &can_rx_alldev_list;
can_rcvlist_sff_proc_show_one(m, NULL, d); 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 */
for_each_netdev_rcu(&init_net, dev) { for_each_netdev_rcu(&init_net, dev) {
if (dev->type == ARPHRD_CAN && dev->ml_priv) if (dev->type == ARPHRD_CAN && dev->ml_priv) {
can_rcvlist_sff_proc_show_one(m, dev, dev->ml_priv); d = dev->ml_priv;
can_rcvlist_proc_show_array(m, dev, d->rx_sff,
ARRAY_SIZE(d->rx_sff));
}
} }
rcu_read_unlock(); rcu_read_unlock();
......
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