Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
};