From: Jan Engelhardt Date: Sun, 5 Jul 2009 13:55:06 +0000 (+0200) Subject: netfilter: xtables: realign struct xt_target_param X-Git-Tag: v2.6.32-rc1~703^2~21^2~11^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98d89b4198cf7273968e9217a62ec7ccfd760171;p=thirdparty%2Fkernel%2Fstable.git netfilter: xtables: realign struct xt_target_param This commit gets rid of a padding hole as reported by pahole(1). Saves 8 bytes on x86_64. Signed-off-by: Jan Engelhardt --- diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index 1030b7593898d..4fa6e4c263e07 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h @@ -238,9 +238,9 @@ struct xt_mtdtor_param { */ struct xt_target_param { const struct net_device *in, *out; - unsigned int hooknum; const struct xt_target *target; const void *targinfo; + unsigned int hooknum; u_int8_t family; };