blob: 4a5889f80f3c424a55f1abefbee0ffe4d81f46d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
typedef struct {} raw_spinlock_t;
typedef struct {
raw_spinlock_t raw_lock;
} spinlock_t;
struct sk_buff_head {
int i;
spinlock_t lock;
};
struct sk_buff_head audit_skb_queue;
void audit_init(void)
{
struct sk_buff_head *list = &audit_skb_queue;
audit_skb_queue.lock = (spinlock_t) { .raw_lock = { } };
}
|