[SK_BUFF]: Introduce skb_copy_from_linear_data{_offset}
To clearly state the intent of copying from linear sk_buffs, _offset being a overly long variant but interesting for the sake of saving some bytes. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
David S. Miller

parent
2a123b86e2
commit
d626f62b11
@@ -1927,7 +1927,8 @@ static void ql_process_macip_rx_intr(struct ql3_adapter *qdev,
|
||||
* Copy the ethhdr from first buffer to second. This
|
||||
* is necessary for 3022 IP completions.
|
||||
*/
|
||||
memcpy(skb_push(skb2, size), skb1->data + VLAN_ID_LEN, size);
|
||||
skb_copy_from_linear_data_offset(skb1, VLAN_ID_LEN,
|
||||
skb_push(skb2, size), size);
|
||||
} else {
|
||||
u16 checksum = le16_to_cpu(ib_ip_rsp_ptr->checksum);
|
||||
if (checksum &
|
||||
|
Reference in New Issue
Block a user