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

Commit efaea94a authored by Pablo Neira Ayuso's avatar Pablo Neira Ayuso
Browse files

netfilter: nft_ct: keep counters away from CONFIG_NF_CONNTRACK_LABELS



This is accidental, they don't depend on the label infrastructure.

Fixes: 48f66c90 ("netfilter: nft_ct: add byte/packet counter support")
Reported-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
Acked-by: default avatarFlorian Westphal <fw@strlen.de>
parent f90d2d37
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,6 +127,7 @@ static void nft_ct_get_eval(const struct nft_expr *expr,
			       NF_CT_LABELS_MAX_SIZE - size);
		return;
	}
#endif
	case NFT_CT_BYTES: /* fallthrough */
	case NFT_CT_PKTS: {
		const struct nf_conn_acct *acct = nf_conn_acct_find(ct);
@@ -138,7 +139,6 @@ static void nft_ct_get_eval(const struct nft_expr *expr,
		memcpy(dest, &count, sizeof(count));
		return;
	}
#endif
	default:
		break;
	}