This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #222 from sched-ext/yield
Check for NULL for @to field in ops.yield()
- Loading branch information
Showing
5 changed files
with
74 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
tools/testing/selftests/sched_ext/maybe_null_fail_yld.bpf.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. | ||
*/ | ||
|
||
#include <scx/common.bpf.h> | ||
|
||
char _license[] SEC("license") = "GPL"; | ||
|
||
u64 vtime_test; | ||
|
||
void BPF_STRUCT_OPS(maybe_null_running, struct task_struct *p) | ||
{} | ||
|
||
bool BPF_STRUCT_OPS(maybe_null_fail_yield, struct task_struct *from, | ||
struct task_struct *to) | ||
{ | ||
bpf_printk("Yielding to %s[%d]", to->comm, to->pid); | ||
|
||
return false; | ||
} | ||
|
||
SEC(".struct_ops.link") | ||
struct sched_ext_ops maybe_null_fail = { | ||
.yield = maybe_null_fail_yield, | ||
.enable = maybe_null_running, | ||
.name = "maybe_null_fail_yield", | ||
}; |