Linux Audio

Check our new training course

Loading...
v3.1
 
 1/*
 2 * Packet network namespace
 3 */
 4#ifndef __NETNS_PACKET_H__
 5#define __NETNS_PACKET_H__
 6
 7#include <linux/rculist.h>
 8#include <linux/spinlock.h>
 9
10struct netns_packet {
11	spinlock_t		sklist_lock;
12	struct hlist_head	sklist;
13};
14
15#endif /* __NETNS_PACKET_H__ */
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/*
 3 * Packet network namespace
 4 */
 5#ifndef __NETNS_PACKET_H__
 6#define __NETNS_PACKET_H__
 7
 8#include <linux/rculist.h>
 9#include <linux/mutex.h>
10
11struct netns_packet {
12	struct mutex		sklist_lock;
13	struct hlist_head	sklist;
14};
15
16#endif /* __NETNS_PACKET_H__ */