Re: [PATCH -next] net/ixgbevf: fix a compilation error of skb_frag_t

2019-07-24 Thread Jeff Kirsher
On Wed, 2019-07-24 at 09:32 -0400, Qian Cai wrote: > The linux-next commit "net: Rename skb_frag_t size to bv_len" [1] > introduced a compilation error on powerpc as it forgot to rename > "size" > to "bv_len" for ixgbevf. > > [1] > https://lore.kernel.org/netdev/20190723030831.11879-1-wi...@infra

Re: [PATCH -next] net/ixgbevf: fix a compilation error of skb_frag_t

2019-07-24 Thread Matthew Wilcox
On Wed, Jul 24, 2019 at 09:32:37AM -0400, Qian Cai wrote: > for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) > - count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size); > + count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].bv_len); > #else No, this is the wrong fix. U

[PATCH -next] net/ixgbevf: fix a compilation error of skb_frag_t

2019-07-24 Thread Qian Cai
The linux-next commit "net: Rename skb_frag_t size to bv_len" [1] introduced a compilation error on powerpc as it forgot to rename "size" to "bv_len" for ixgbevf. [1] https://lore.kernel.org/netdev/20190723030831.11879-1-wi...@infradead.org/T/#md052f1c7de965ccd1bdcb6f92e1990a52298eac5 In file in