Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.2-rc3 15 lines 257 B view raw
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__ */