-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net/wireguard: merge ba45dd6fbfe9f94baf3634a965bcfe6c2c41f4c8 from wi…
…reguard-linux-compat Signed-off-by: engstk <eng.stk@sapo.pt>
- Loading branch information
Showing
24 changed files
with
604 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#ifndef skb_valid_dst | ||
#define skb_valid_dst(skb) (!!skb_dst(skb)) | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#ifndef _WG_SKB_ARRAY_H | ||
#define _WG_SKB_ARRAY_H | ||
|
||
#include <linux/skbuff.h> | ||
|
||
static void __skb_array_destroy_skb(void *ptr) | ||
{ | ||
kfree_skb(ptr); | ||
} | ||
|
||
#endif |
Oops, something went wrong.