mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 02:15:57 +00:00
13 lines
225 B
C
13 lines
225 B
C
|
/* 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_ */
|