Re: [PATCH net-next v2 1/2] net: make ndo_get_stats64 a void function

2017-01-08 Thread David Miller
From: Stephen Hemminger Date: Fri, 6 Jan 2017 19:12:52 -0800 > The network device operation for reading statistics is only called > in one place, and it ignores the return value. Having a structure > return value is potentially confusing because some future driver could > incorrectly assume that

[PATCH net-next v2 1/2] net: make ndo_get_stats64 a void function

2017-01-06 Thread Stephen Hemminger
The network device operation for reading statistics is only called in one place, and it ignores the return value. Having a structure return value is potentially confusing because some future driver could incorrectly assume that the return value was used. Fix all drivers with ndo_get_stats64 to hav