mirror of https://gitee.com/openkylin/linux.git
ehea: fix skb_frag_size typo
Commit 9e903e0852
("net: add skb frag size accessors") introduced a
typo in ehea driver.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ef78cc75f1
commit
0110bba5e7
|
@ -1689,7 +1689,7 @@ static inline void write_swqe2_data(struct sk_buff *skb, struct net_device *dev,
|
|||
sgentry = &sg_list[i - sg1entry_contains_frag_data];
|
||||
|
||||
sgentry->l_key = lkey;
|
||||
sgentry->len = frag_size(frag);
|
||||
sgentry->len = skb_frag_size(frag);
|
||||
sgentry->vaddr = ehea_map_vaddr(skb_frag_address(frag));
|
||||
swqe->descriptors++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue