selftests/bpf: Correct two typos
When wrapping code, use ';' better than using ',' which is more in line with the coding habits of most engineers. Signed-off-by: Lu Hongfei <luhongfei@vivo.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Hou Tao <houtao1@huawei.com> Acked-by: Stanislav Fomichev <sdf@google.com> Link: https://lore.kernel.org/bpf/20230707081253.34638-1-luhongfei@vivo.com
This commit is contained in:
committed by
Daniel Borkmann
parent
56baeeba0a
commit
856fe03d92
@@ -399,7 +399,7 @@ static void perfbuf_libbpf_setup(void)
|
||||
ctx->skel = perfbuf_setup_skeleton();
|
||||
|
||||
memset(&attr, 0, sizeof(attr));
|
||||
attr.config = PERF_COUNT_SW_BPF_OUTPUT,
|
||||
attr.config = PERF_COUNT_SW_BPF_OUTPUT;
|
||||
attr.type = PERF_TYPE_SOFTWARE;
|
||||
attr.sample_type = PERF_SAMPLE_RAW;
|
||||
/* notify only every Nth sample */
|
||||
|
||||
@@ -347,7 +347,7 @@ static void syncookie_estab(void)
|
||||
exp_active_estab_in.max_delack_ms = 22;
|
||||
|
||||
exp_passive_hdr_stg.syncookie = true;
|
||||
exp_active_hdr_stg.resend_syn = true,
|
||||
exp_active_hdr_stg.resend_syn = true;
|
||||
|
||||
prepare_out();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user