On Wed, Jul 24, 2019 at 1:37 PM Matthew Wilcox <wi...@infradead.org> wrote: > > From: "Matthew Wilcox (Oracle)" <wi...@infradead.org> > > I missed a few places. One is in some ifdeffed code which will probably > never be re-enabled; the others are in drivers which can't currently be > compiled on x86. > > Signed-off-by: Matthew Wilcox (Oracle) <wi...@infradead.org>
> diff --git a/drivers/staging/octeon/ethernet-tx.c > b/drivers/staging/octeon/ethernet-tx.c > index cc12c78f73f1..46a6fcf1414d 100644 > --- a/drivers/staging/octeon/ethernet-tx.c > +++ b/drivers/staging/octeon/ethernet-tx.c > @@ -284,7 +284,7 @@ int cvm_oct_xmit(struct sk_buff *skb, struct net_device > *dev) > > hw_buffer.s.addr = > XKPHYS_TO_PHYS((u64)skb_frag_address(fs)); > - hw_buffer.s.size = fs->size; > + hw_buffer.s.size = skb_drag_size(fs); > CVM_OCT_SKB_CB(skb)[i + 1] = hw_buffer.u64; > } > hw_buffer.s.addr = XKPHYS_TO_PHYS((u64)CVM_OCT_SKB_CB(skb)); Kernelci noticed a build failure from a typo here: https://kernelci.org/build/id/5d3943f859b514103f688918/logs/ Arnd