diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-27 17:55:52 -0400 |
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:28:23 -0400 |
| commit | d626f62b11e00c16e81e4308ab93d3f13551812a (patch) | |
| tree | fac4af6ced853755e12fc709d55f0c2bec51265d /net/bluetooth/cmtp | |
| parent | 2a123b86e2b242a4a6db990d2851d45e192f88e5 (diff) | |
[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>
Diffstat (limited to 'net/bluetooth/cmtp')
| -rw-r--r-- | net/bluetooth/cmtp/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/cmtp/core.c b/net/bluetooth/cmtp/core.c index 3933608a92..66bef1ccee 100644 --- a/net/bluetooth/cmtp/core.c +++ b/net/bluetooth/cmtp/core.c | |||
| @@ -124,7 +124,7 @@ static inline void cmtp_add_msgpart(struct cmtp_session *session, int id, const | |||
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | if (skb && (skb->len > 0)) | 126 | if (skb && (skb->len > 0)) |
| 127 | memcpy(skb_put(nskb, skb->len), skb->data, skb->len); | 127 | skb_copy_from_linear_data(skb, skb_put(nskb, skb->len), skb->len); |
| 128 | 128 | ||
| 129 | memcpy(skb_put(nskb, count), buf, count); | 129 | memcpy(skb_put(nskb, count), buf, count); |
| 130 | 130 | ||
| @@ -256,7 +256,7 @@ static void cmtp_process_transmit(struct cmtp_session *session) | |||
| 256 | hdr[2] = size >> 8; | 256 | hdr[2] = size >> 8; |
| 257 | } | 257 | } |
| 258 | 258 | ||
| 259 | memcpy(skb_put(nskb, size), skb->data, size); | 259 | skb_copy_from_linear_data(skb, skb_put(nskb, size), size); |
| 260 | skb_pull(skb, size); | 260 | skb_pull(skb, size); |
| 261 | 261 | ||
| 262 | if (skb->len > 0) { | 262 | if (skb->len > 0) { |
