Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78812
b: refs/heads/master
c: 8b6f3f6
h: refs/heads/master
v: v3
  • Loading branch information
Jan Engelhardt authored and David S. Miller committed Jan 28, 2008
1 parent b055e70 commit 9ae1ba0
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cdfe8b9797f1a47fe24a9bf9e98a351bae11ab99
refs/heads/master: 8b6f3f62fea7b85fce8f7d12aabba7b191bf60d2
2 changes: 2 additions & 0 deletions trunk/include/linux/netfilter/xt_RATEEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ struct xt_rateest_target_info {
char name[IFNAMSIZ];
int8_t interval;
u_int8_t ewma_log;

/* Used internally by the kernel */
struct xt_rateest *est __attribute__((aligned(8)));
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/netfilter/xt_connlimit.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct xt_connlimit_info {
};
unsigned int limit, inverse;

/* this needs to be at the end */
/* Used internally by the kernel */
struct xt_connlimit_data *data __attribute__((aligned(8)));
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/netfilter/xt_hashlimit.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ struct hashlimit_cfg {
struct xt_hashlimit_info {
char name [IFNAMSIZ]; /* name */
struct hashlimit_cfg cfg;
struct xt_hashlimit_htable *hinfo;

/* Used internally by the kernel */
struct xt_hashlimit_htable *hinfo;
union {
void *ptr;
struct xt_hashlimit_info *master;
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/netfilter/xt_quota.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ enum xt_quota_flags {
struct xt_quota_info {
u_int32_t flags;
u_int32_t pad;

/* Used internally by the kernel */
aligned_u64 quota;
struct xt_quota_info *master;
};
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/netfilter/xt_rateest.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ struct xt_rateest_match_info {
u_int32_t pps1;
u_int32_t bps2;
u_int32_t pps2;

/* Used internally by the kernel */
struct xt_rateest *est1 __attribute__((aligned(8)));
struct xt_rateest *est2 __attribute__((aligned(8)));
};
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/netfilter/xt_statistic.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ struct xt_statistic_info {
struct {
u_int32_t every;
u_int32_t packet;
/* Used internally by the kernel */
u_int32_t count;
} nth;
} u;
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/netfilter/xt_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ struct xt_string_info
char pattern[XT_STRING_MAX_PATTERN_SIZE];
u_int8_t patlen;
u_int8_t invert;

/* Used internally by the kernel */
struct ts_config __attribute__((aligned(8))) *config;
};

Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ struct ipt_clusterip_tgt_info {
u_int32_t hash_mode;
u_int32_t hash_initval;

/* Used internally by the kernel */
struct clusterip_config *config;
};

Expand Down

0 comments on commit 9ae1ba0

Please sign in to comment.