packet: convert socket list to RCU (v3)
[deliverable/linux.git] / include / net / netns / packet.h
CommitLineData
2aaef4e4
DL
1/*
2 * Packet network namespace
3 */
4#ifndef __NETNS_PACKET_H__
5#define __NETNS_PACKET_H__
6
808f5114 7#include <linux/rculist.h>
2aaef4e4
DL
8#include <linux/spinlock.h>
9
10struct netns_packet {
808f5114 11 spinlock_t sklist_lock;
2aaef4e4
DL
12 struct hlist_head sklist;
13};
14
15#endif /* __NETNS_PACKET_H__ */
This page took 0.211277 seconds and 5 git commands to generate.