ASoC: ssm2602: Support setting the oscillator and the clock output state
[linux-2.6/btrfs-unstable.git] / include / linux / netfilter / xt_quota.h
blob9314723f39ca19bb4f257e60f711ffedaaa52ee1
1 #ifndef _XT_QUOTA_H
2 #define _XT_QUOTA_H
4 #include <linux/types.h>
6 enum xt_quota_flags {
7 XT_QUOTA_INVERT = 0x1,
8 };
9 #define XT_QUOTA_MASK 0x1
11 struct xt_quota_priv;
13 struct xt_quota_info {
14 __u32 flags;
15 __u32 pad;
16 __aligned_u64 quota;
18 /* Used internally by the kernel */
19 struct xt_quota_priv *master;
22 #endif /* _XT_QUOTA_H */