Searched refs:pkg_stats (Results 1 – 3 of 3) sorted by relevance
81 struct can_pkg_stats *pkg_stats = net->can.pkg_stats; in can_init_stats() local88 memset(pkg_stats, 0, sizeof(struct can_pkg_stats)); in can_init_stats()89 pkg_stats->jiffies_init = jiffies; in can_init_stats()122 struct can_pkg_stats *pkg_stats = net->can.pkg_stats; in can_stat_update() local130 if (j < pkg_stats->jiffies_init) in can_stat_update()134 if (pkg_stats->rx_frames > (ULONG_MAX / HZ)) in can_stat_update()138 if (pkg_stats->tx_frames > (ULONG_MAX / HZ)) in can_stat_update()142 if (pkg_stats->matches > (ULONG_MAX / 100)) in can_stat_update()146 if (pkg_stats->rx_frames) in can_stat_update()147 pkg_stats->total_rx_match_ratio = (pkg_stats->matches * 100) / in can_stat_update()[all …]
203 struct can_pkg_stats *pkg_stats = dev_net(skb->dev)->can.pkg_stats; in can_send() local290 pkg_stats->tx_frames++; in can_send()291 pkg_stats->tx_frames_delta++; in can_send()647 struct can_pkg_stats *pkg_stats = net->can.pkg_stats; in can_receive() local651 pkg_stats->rx_frames++; in can_receive()652 pkg_stats->rx_frames_delta++; in can_receive()673 pkg_stats->matches++; in can_receive()674 pkg_stats->matches_delta++; in can_receive()800 net->can.pkg_stats = kzalloc(sizeof(*net->can.pkg_stats), GFP_KERNEL); in can_pernet_init()801 if (!net->can.pkg_stats) in can_pernet_init()[all …]
33 struct can_pkg_stats *pkg_stats; member