gcov: add support for GCC 10.1
[linux/fpc-iii.git] / include / net / netns / packet.h
blobaae69bb43cdef95c61d69bb989e8a3ffb5897f3d
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Packet network namespace
4 */
5 #ifndef __NETNS_PACKET_H__
6 #define __NETNS_PACKET_H__
8 #include <linux/rculist.h>
9 #include <linux/mutex.h>
11 struct netns_packet {
12 struct mutex sklist_lock;
13 struct hlist_head sklist;
16 #endif /* __NETNS_PACKET_H__ */