Skip to content
Merged
Changes from 1 commit
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 src/schedule/schedule.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Comment thread
lyakh marked this conversation as resolved.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The 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...?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The 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,
Expand Down