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

Commit 0a026046 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Patrick McHardy
Browse files

netfilter: xtables: consistent struct compat_xt_counters definition



There is compat_u64 type which deals with different u64 type alignment
on different compat-capable platforms, so use it and removed some
hardcoded assumptions.

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 9ab99d5a
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -562,11 +562,7 @@ struct compat_xt_entry_target {
 * current task alignment */

struct compat_xt_counters {
#if defined(CONFIG_X86_64) || defined(CONFIG_IA64)
	u_int32_t cnt[4];
#else
	u_int64_t cnt[2];
#endif
	compat_u64 pcnt, bcnt;			/* Packet and byte counters */
};

struct compat_xt_counters_info {