You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'sched-wait-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull wait_var_event updates from Ingo Molnar: "This introduces the new wait_var_event() API, which is a more flexible waiting primitive than wait_on_atomic_t(). All wait_on_atomic_t() users are migrated over to the new API and wait_on_atomic_t() is removed. The migration fixes one bug and should result in no functional changes for the other usecases" * 'sched-wait-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: sched/wait: Improve __var_waitqueue() code generation sched/wait: Remove the wait_on_atomic_t() API sched/wait, arch/mips: Fix and convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, fs/ocfs2: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, fs/nfs: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, fs/fscache: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, fs/btrfs: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, fs/afs: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, drivers/media: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait, drivers/drm: Convert wait_on_atomic_t() usage to the new wait_var_event() API sched/wait: Introduce wait_var_event()
This commit is contained in:
@@ -106,8 +106,8 @@ int hfi_core_deinit(struct venus_core *core, bool blocking)
|
||||
|
||||
if (!empty) {
|
||||
mutex_unlock(&core->lock);
|
||||
wait_on_atomic_t(&core->insts_count, atomic_t_wait,
|
||||
TASK_UNINTERRUPTIBLE);
|
||||
wait_var_event(&core->insts_count,
|
||||
!atomic_read(&core->insts_count));
|
||||
mutex_lock(&core->lock);
|
||||
}
|
||||
|
||||
@@ -229,8 +229,8 @@ void hfi_session_destroy(struct venus_inst *inst)
|
||||
|
||||
mutex_lock(&core->lock);
|
||||
list_del_init(&inst->list);
|
||||
atomic_dec(&core->insts_count);
|
||||
wake_up_atomic_t(&core->insts_count);
|
||||
if (atomic_dec_and_test(&core->insts_count))
|
||||
wake_up_var(&core->insts_count);
|
||||
mutex_unlock(&core->lock);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(hfi_session_destroy);
|
||||
|
||||
Reference in New Issue
Block a user