-
Notifications
You must be signed in to change notification settings - Fork 364
subset of #10945 #10984
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
subset of #10945 #10984
Changes from 1 commit
c859e78
7b8e7dd
13af60a
1e64869
99237ce
c5a179c
4f8d93a
13dc8d0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,7 +30,7 @@ static inline bool scheduler_is_user(int type) | |
| * to user-space and only keep Zephyr scheduler logic in | ||
| * kernel | ||
| */ | ||
| return type == SOF_SCHEDULE_LL_TIMER; | ||
| return type == SOF_SCHEDULE_LL_TIMER || type == SOF_SCHEDULE_DP; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, this is a static helper and only used in LL-specific logic, so not sure if this is correct. Arguably this could be clarified, but do you intend to use this later for new logic...?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kv2019i yes, it's needed for the large set (at least its today's version). We can drop it here now, since the current "main" anyway doesn't work with DP modules if built with userspace LL. And this commit alone doesn't fix that. Would that be preferred? |
||
| } | ||
|
|
||
| int schedule_task_init(struct task *task, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.