From a487d599820ef6b2e053f676883248898a532b6a Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 7 Nov 2016 11:52:02 +0100 Subject: socket: use more reasonable skb padding --- src/socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.h b/src/socket.h index d7c9df4..36cb4ed 100644 --- a/src/socket.h +++ b/src/socket.h @@ -10,7 +10,7 @@ struct wireguard_device; -#define SKB_HEADER_LEN (max(sizeof(struct iphdr), sizeof(struct ipv6hdr)) + sizeof(struct udphdr) + ETH_HLEN + VLAN_HLEN + 16) +#define SKB_HEADER_LEN (max(sizeof(struct iphdr), sizeof(struct ipv6hdr)) + sizeof(struct udphdr) + NET_SKB_PAD) int socket_init(struct wireguard_device *wg); void socket_uninit(struct wireguard_device *wg); -- cgit v1.2.3-59-g8ed1b