diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-11-21 14:51:34 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-22 15:15:57 -0500 |
commit | 570e57bcbcc4df5581b1e9c806ab2b16e96ea7d3 (patch) | |
tree | ce1275a45614d7249b2fbf55f87f423a409e7b50 | |
parent | a2d7ec58ac09f30ab726f216827f7c7095b2a98f (diff) |
atm: use SKB_TRUESIZE() in atm_guess_pdu2truesize()
SKB_TRUESIZE() provides a better approximation of expected skb truesize.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/atmdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h index 49a83ca900ba..43ea1b2de3ee 100644 --- a/include/linux/atmdev.h +++ b/include/linux/atmdev.h | |||
@@ -452,7 +452,7 @@ void atm_dev_release_vccs(struct atm_dev *dev); | |||
452 | 452 | ||
453 | static inline int atm_guess_pdu2truesize(int size) | 453 | static inline int atm_guess_pdu2truesize(int size) |
454 | { | 454 | { |
455 | return SKB_DATA_ALIGN(size) + sizeof(struct skb_shared_info); | 455 | return SKB_TRUESIZE(size); |
456 | } | 456 | } |
457 | 457 | ||
458 | 458 | ||