scsi: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
This commit is contained in:
@@ -1515,7 +1515,7 @@ static int fcoe_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(skb_frag_page(frag), KM_SKB_DATA_SOFTIRQ)
|
||||
cp = kmap_atomic(skb_frag_page(frag))
|
||||
+ frag->page_offset;
|
||||
} else {
|
||||
cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
|
||||
@@ -1526,7 +1526,7 @@ static int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
|
||||
cp->fcoe_crc32 = cpu_to_le32(~crc);
|
||||
|
||||
if (skb_is_nonlinear(skb)) {
|
||||
kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
|
||||
kunmap_atomic(cp);
|
||||
cp = NULL;
|
||||
}
|
||||
|
||||
|
@@ -210,10 +210,9 @@ u32 fcoe_fc_crc(struct fc_frame *fp)
|
||||
while (len > 0) {
|
||||
clen = min(len, PAGE_SIZE - (off & ~PAGE_MASK));
|
||||
data = kmap_atomic(
|
||||
skb_frag_page(frag) + (off >> PAGE_SHIFT),
|
||||
KM_SKB_DATA_SOFTIRQ);
|
||||
skb_frag_page(frag) + (off >> PAGE_SHIFT));
|
||||
crc = crc32(crc, data + (off & ~PAGE_MASK), clen);
|
||||
kunmap_atomic(data, KM_SKB_DATA_SOFTIRQ);
|
||||
kunmap_atomic(data);
|
||||
off += clen;
|
||||
len -= clen;
|
||||
}
|
||||
|
Reference in New Issue
Block a user