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

Commit a5192c52 authored by Lawrence Brakmo's avatar Lawrence Brakmo Committed by David S. Miller
Browse files

bpf: fix to bpf_setsockops



Fixed build error due to misplaced "#ifdef CONFIG_INET" (moved 1
statement up).

Signed-off-by: default avatarLawrence Brakmo <brakmo@fb.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bcdb239b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2717,9 +2717,9 @@ BPF_CALL_5(bpf_setsockopt, struct bpf_sock_ops_kern *, bpf_sock,
		default:
			ret = -EINVAL;
		}
#ifdef CONFIG_INET
	} else if (level == SOL_TCP &&
		   sk->sk_prot->setsockopt == tcp_setsockopt) {
#ifdef CONFIG_INET
		if (optname == TCP_CONGESTION) {
			char name[TCP_CA_NAME_MAX];

@@ -2757,7 +2757,6 @@ BPF_CALL_5(bpf_setsockopt, struct bpf_sock_ops_kern *, bpf_sock,
				ret = -EINVAL;
			}
		}
#else
		ret = -EINVAL;
#endif
	} else {