mirror of https://gitee.com/openkylin/linux.git
bnx2fc: convert to SKB paged frag API.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Bhanu Prakash Gollapudi <bprakash@broadcom.com> Cc: "James E.J. Bottomley" <JBottomley@parallels.com> Cc: linux-scsi@vger.kernel.org Cc: netdev@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f55c957247
commit
94b06fdbfc
|
@ -302,7 +302,7 @@ static int bnx2fc_xmit(struct fc_lport *lport, struct fc_frame *fp)
|
|||
return -ENOMEM;
|
||||
}
|
||||
frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
|
||||
cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ)
|
||||
cp = kmap_atomic(skb_frag_page(frag), KM_SKB_DATA_SOFTIRQ)
|
||||
+ frag->page_offset;
|
||||
} else {
|
||||
cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
|
||||
|
|
Loading…
Reference in New Issue