repo.or.cz
/
linux-ginger.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
OMAP3: SR: Replace printk's with pr_* calls
[linux-ginger.git]
/
include
/
linux
/
netfilter
/
xt_quota.h
blob
8dc89dfc1361761578ef2c73fd6dcdce74327f0f
1
#ifndef _XT_QUOTA_H
2
#define _XT_QUOTA_H
3
4
enum
xt_quota_flags
{
5
XT_QUOTA_INVERT
=
0x1
,
6
};
7
#define XT_QUOTA_MASK 0x1
8
9
struct
xt_quota_priv
;
10
11
struct
xt_quota_info
{
12
u_int32_t flags
;
13
u_int32_t pad
;
14
15
/* Used internally by the kernel */
16
aligned_u64 quota
;
17
struct
xt_quota_priv
*
master
;
18
};
19
20
#endif
/* _XT_QUOTA_H */