summaryrefslogtreecommitdiffstats
path: root/net/xdp/xsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/xdp/xsk.h')
-rw-r--r--net/xdp/xsk.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/xdp/xsk.h b/net/xdp/xsk.h
new file mode 100644
index 000000000000..ba8120610426
--- /dev/null
+++ b/net/xdp/xsk.h
@@ -0,0 +1,12 @@
1/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright(c) 2019 Intel Corporation. */
3
4#ifndef XSK_H_
5#define XSK_H_
6
7static inline struct xdp_sock *xdp_sk(struct sock *sk)
8{
9 return (struct xdp_sock *)sk;
10}
11
12#endif /* XSK_H_ */