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

Commit 833e0e2f authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller
Browse files

net: dst: move cpu inside ifdef to avoid compilation warning



If CONFIG_DST_CACHE is not selected cpu variable
will be unused and we will see a compilation warning.
Move it under the ifdef.

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Fixes: d66f2b91 ("bpf: don't rely on the verifier lock for metadata_dst allocation")
Signed-off-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f44dea34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -325,9 +325,9 @@ EXPORT_SYMBOL_GPL(metadata_dst_alloc_percpu);

void metadata_dst_free_percpu(struct metadata_dst __percpu *md_dst)
{
#ifdef CONFIG_DST_CACHE
	int cpu;

#ifdef CONFIG_DST_CACHE
	for_each_possible_cpu(cpu) {
		struct metadata_dst *one_md_dst = per_cpu_ptr(md_dst, cpu);