1 2 3 4 5 6 7 8 9 10 11 12
/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright(c) 2019 Intel Corporation. */ #ifndef XSK_H_ #define XSK_H_ static inline struct xdp_sock *xdp_sk(struct sock *sk) { return (struct xdp_sock *)sk; } #endif /* XSK_H_ */