Commit 98d89b41 authored by Jan Engelhardt's avatar Jan Engelhardt

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: default avatarJan Engelhardt <jengelh@medozas.de>
parent f88e6a8a
...@@ -238,9 +238,9 @@ struct xt_mtdtor_param { ...@@ -238,9 +238,9 @@ struct xt_mtdtor_param {
*/ */
struct xt_target_param { struct xt_target_param {
const struct net_device *in, *out; const struct net_device *in, *out;
unsigned int hooknum;
const struct xt_target *target; const struct xt_target *target;
const void *targinfo; const void *targinfo;
unsigned int hooknum;
u_int8_t family; u_int8_t family;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment