swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 4a10c2ac2f368583138b774ca41fac4207911983 authored by Linus Torvalds on 23 September 2013, 22:41:09 UTC
Linux 3.12-rc2
Tip revision: 4a10c2a
packet.h
/*
 * Packet network namespace
 */
#ifndef __NETNS_PACKET_H__
#define __NETNS_PACKET_H__

#include <linux/rculist.h>
#include <linux/mutex.h>

struct netns_packet {
	struct mutex		sklist_lock;
	struct hlist_head	sklist;
};

#endif /* __NETNS_PACKET_H__ */
back to top