Re: [PATCH] b44: add 64 bit stats
From: Kevin Groeneveld <hidden>
Date: 2012-07-21 02:22:41
On Fri, Jul 20, 2012 at 2:56 PM, Kevin Groeneveld [off-list ref] wrote:
quoted
In fact all network drivers should use the _bh version. Could you send a patch for all of them, based on net-next tree ?Sure, I can work on that. It should be a relatively easy thing to update. I can probably send a patch within the next couple days.
As I have been working on the patch I have been trying convince myself that each case I change actually needs the _bh version of the functions instead of blindly changing them. So far I have found the following where the change seems to make sense: drivers/net/dummy.c drivers/net/ethernet/neterion/vxge/vxge-main.c drivers/net/loopback.c drivers/net/virtio_net.c net/bridge/br_device.c The only two other places in the networking code that use u64_stats_fetch_begin/u64_stats_fetch_retry are: net/l2tp/l2tp_netlink.c net/netfilter/ipvs/ip_vs_est.c Do these need to be updated as well? Looking at these files quickly and with my limited knowledge of the kernel I am not sure if they update the stats in a BH context or not. Kevin