mirror of
https://github.com/JakeHillion/scx.git
synced 2024-11-30 04:50:24 +00:00
Fix error typo
ENONET means "Machine is not on the network" - this was supposed to be ENOENT "No such file or directory"
This commit is contained in:
parent
f53c29759e
commit
6eefc8c27f
@ -997,7 +997,7 @@ s32 BPF_STRUCT_OPS_SLEEPABLE(layered_init)
|
||||
return ret;
|
||||
|
||||
if (!(cpumaskw = bpf_map_lookup_elem(&layer_cpumasks, &i)))
|
||||
return -ENONET;
|
||||
return -ENOENT;
|
||||
|
||||
cpumask = bpf_cpumask_create();
|
||||
if (!cpumask)
|
||||
|
Loading…
Reference in New Issue
Block a user