Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

scx: Spaces -> tabs in a couple places #176

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kernel/sched/ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -5309,7 +5309,7 @@ static int __init scx_init(void)
&scx_kfunc_set_any)) ||
(ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_TRACING,
&scx_kfunc_set_any)) ||
(ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_SYSCALL,
(ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_SYSCALL,
&scx_kfunc_set_any))) {
pr_err("sched_ext: Failed to register kfunc sets (%d)\n", ret);
return ret;
Expand Down
2 changes: 1 addition & 1 deletion tools/testing/selftests/sched_ext/prog_run.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static enum scx_test_status run(void *ctx)
return SCX_TEST_FAIL;
}

LIBBPF_OPTS(bpf_test_run_opts, topts);
LIBBPF_OPTS(bpf_test_run_opts, topts);

link = bpf_map__attach_struct_ops(skel->maps.prog_run_ops);
if (!link) {
Expand Down