Re: [PATCH net-next] hv_netvsc: simplify receive side calling arguments

2018-04-27 Thread David Miller
From: Stephen Hemminger Date: Thu, 26 Apr 2018 14:34:25 -0700 > The calls up from the napi poll reading the receive ring had many > places where an argument was being recreated. I.e the caller already > had the value and wasn't passing it, then the callee would use > known relationship to determi

[PATCH net-next] hv_netvsc: simplify receive side calling arguments

2018-04-26 Thread Stephen Hemminger
The calls up from the napi poll reading the receive ring had many places where an argument was being recreated. I.e the caller already had the value and wasn't passing it, then the callee would use known relationship to determine the same value. Simpler and faster to just pass arguments needed. Al