Commit 0bec8c88 authored by Tobias Klauser's avatar Tobias Klauser Committed by David S. Miller

net: skbuff: Use ALIGN macro instead of open coding it

Use ALIGN from linux/kernel.h to define SKB_DATA_ALIGN instead of open
coding it.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 526cbef7
...@@ -112,8 +112,7 @@ ...@@ -112,8 +112,7 @@
#define CHECKSUM_COMPLETE 2 #define CHECKSUM_COMPLETE 2
#define CHECKSUM_PARTIAL 3 #define CHECKSUM_PARTIAL 3
#define SKB_DATA_ALIGN(X) (((X) + (SMP_CACHE_BYTES - 1)) & \ #define SKB_DATA_ALIGN(X) ALIGN(X, SMP_CACHE_BYTES)
~(SMP_CACHE_BYTES - 1))
#define SKB_WITH_OVERHEAD(X) \ #define SKB_WITH_OVERHEAD(X) \
((X) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info))) ((X) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
#define SKB_MAX_ORDER(X, ORDER) \ #define SKB_MAX_ORDER(X, ORDER) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment