Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux-2.6-block.git] / net / packet / internal.h
CommitLineData
2787b04b
PE
1#ifndef __PACKET_INTERNAL_H__
2#define __PACKET_INTERNAL_H__
3
4struct packet_mclist {
5 struct packet_mclist *next;
6 int ifindex;
7 int count;
8 unsigned short type;
9 unsigned short alen;
10 unsigned char addr[MAX_ADDR_LEN];
11};
12
13/* kbdq - kernel block descriptor queue */
14struct tpacket_kbdq_core {
15 struct pgv *pkbdq;
16 unsigned int feature_req_word;
17 unsigned int hdrlen;
18 unsigned char reset_pending_on_curr_blk;
19 unsigned char delete_blk_timer;
20 unsigned short kactive_blk_num;
21 unsigned short blk_sizeof_priv;
22
23 /* last_kactive_blk_num:
24 * trick to see if user-space has caught up
25 * in order to avoid refreshing timer when every single pkt arrives.
26 */
27 unsigned short last_kactive_blk_num;
28
29 char *pkblk_start;
30 char *pkblk_end;
31 int kblk_size;
dc808110 32 unsigned int max_frame_len;
2787b04b
PE
33 unsigned int knum_blocks;
34 uint64_t knxt_seq_num;
35 char *prev;
36 char *nxt_offset;
37 struct sk_buff *skb;
38
39 atomic_t blk_fill_in_prog;
40
41 /* Default is set to 8ms */
42#define DEFAULT_PRB_RETIRE_TOV (8)
43
44 unsigned short retire_blk_tov;
45 unsigned short version;
46 unsigned long tov_in_jiffies;
47
48 /* timer to retire an outstanding block */
49 struct timer_list retire_blk_timer;
50};
51
52struct pgv {
53 char *buffer;
54};
55
56struct packet_ring_buffer {
57 struct pgv *pg_vec;
0578edc5 58
2787b04b
PE
59 unsigned int head;
60 unsigned int frames_per_block;
61 unsigned int frame_size;
62 unsigned int frame_max;
63
64 unsigned int pg_vec_order;
65 unsigned int pg_vec_pages;
66 unsigned int pg_vec_len;
67
b0138408 68 unsigned int __percpu *pending_refcnt;
0578edc5
DB
69
70 struct tpacket_kbdq_core prb_bdqc;
2787b04b
PE
71};
72
fff3321d
PE
73extern struct mutex fanout_mutex;
74#define PACKET_FANOUT_MAX 256
75
76struct packet_fanout {
0c5c9fb5 77 possible_net_t net;
fff3321d
PE
78 unsigned int num_members;
79 u16 id;
80 u8 type;
77f65ebd 81 u8 flags;
fff3321d
PE
82 atomic_t rr_cur;
83 struct list_head list;
84 struct sock *arr[PACKET_FANOUT_MAX];
85 spinlock_t lock;
86 atomic_t sk_ref;
87 struct packet_type prot_hook ____cacheline_aligned_in_smp;
88};
89
0648ab70
WB
90struct packet_rollover {
91 int sock;
59f21118 92 struct rcu_head rcu;
a9b63918
WB
93 atomic_long_t num;
94 atomic_long_t num_huge;
95 atomic_long_t num_failed;
3b3a5b0a
WB
96#define ROLLOVER_HLEN (L1_CACHE_BYTES / sizeof(u32))
97 u32 history[ROLLOVER_HLEN] ____cacheline_aligned;
0648ab70
WB
98} ____cacheline_aligned_in_smp;
99
2787b04b
PE
100struct packet_sock {
101 /* struct sock has to be the first member of packet_sock */
102 struct sock sk;
103 struct packet_fanout *fanout;
ee80fbf3 104 union tpacket_stats_u stats;
2787b04b
PE
105 struct packet_ring_buffer rx_ring;
106 struct packet_ring_buffer tx_ring;
107 int copy_thresh;
108 spinlock_t bind_lock;
109 struct mutex pg_vec_lock;
110 unsigned int running:1, /* prot_hook is attached*/
111 auxdata:1,
112 origdev:1,
113 has_vnet_hdr:1;
2ccdbaa6 114 int pressure;
2787b04b
PE
115 int ifindex; /* bound device */
116 __be16 num;
0648ab70 117 struct packet_rollover *rollover;
2787b04b
PE
118 struct packet_mclist *mclist;
119 atomic_t mapped;
120 enum tpacket_versions tp_version;
121 unsigned int tp_hdrlen;
122 unsigned int tp_reserve;
123 unsigned int tp_loss:1;
5920cd3a 124 unsigned int tp_tx_has_off:1;
2787b04b 125 unsigned int tp_tstamp;
e40526cb 126 struct net_device __rcu *cached_dev;
d346a3fa 127 int (*xmit)(struct sk_buff *skb);
2787b04b
PE
128 struct packet_type prot_hook ____cacheline_aligned_in_smp;
129};
130
131static struct packet_sock *pkt_sk(struct sock *sk)
132{
133 return (struct packet_sock *)sk;
134}
135
136#endif