From nobody Thu Dec 18 18:32:59 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 35FA3C77B61 for ; Tue, 25 Apr 2023 11:44:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233919AbjDYLoi (ORCPT ); Tue, 25 Apr 2023 07:44:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45202 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233922AbjDYLof (ORCPT ); Tue, 25 Apr 2023 07:44:35 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B1EF3468A for ; Tue, 25 Apr 2023 04:43:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1682423027; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vFQziVpAX6XaFGXqO40sBdWG90AbxvK36TAoQxxNkWo=; b=GgepjmAX5XZDbs2iWgz7WO0AkEgp8pYpWEMR9O3VbW1AkBDyFdMZgLMXklCB2lXg6P3adW BoKM+yBR7X8jQR3blI0qJyOgCc/+x0A05Q4xxUoFykYISnuk795v+n0G/HbwqPUD75GpMW 9x88WOx7UYQ119qagw5NU1xvrKE+0SQ= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-131-UQkMa4ztO0O8A3npY_Q1aA-1; Tue, 25 Apr 2023 07:43:43 -0400 X-MC-Unique: UQkMa4ztO0O8A3npY_Q1aA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 5506F1C08786; Tue, 25 Apr 2023 11:43:42 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.22.32.181]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5A307C15BA0; Tue, 25 Apr 2023 11:43:35 +0000 (UTC) From: Wander Lairson Costa To: Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Ian Rogers , Adrian Hunter , Will Deacon , Waiman Long , Boqun Feng , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Ben Segall , Mel Gorman , Daniel Bristot de Oliveira , Valentin Schneider , "Eric W. Biederman" , Wander Lairson Costa , Kefeng Wang , Michael Ellerman , Oleg Nesterov , Andrew Morton , "Liam R. Howlett" , Christian Brauner , Kees Cook , Andrei Vagin , Shakeel Butt , linux-kernel@vger.kernel.org (open list), linux-perf-users@vger.kernel.org (open list:PERFORMANCE EVENTS SUBSYSTEM) Cc: Sebastian Andrzej Siewior Subject: [PATCH v7 1/3] sched/core: warn on call put_task_struct in invalid context Date: Tue, 25 Apr 2023 08:43:01 -0300 Message-Id: <20230425114307.36889-2-wander@redhat.com> In-Reply-To: <20230425114307.36889-1-wander@redhat.com> References: <20230425114307.36889-1-wander@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Under PREEMPT_RT, spinlocks become sleepable locks. put_task_struct() indirectly acquires a spinlock. Therefore, it can't be called in atomic/interrupt context in RT kernels. To prevent such conditions, add a check for atomic/interrupt context before calling put_task_struct(). Signed-off-by: Wander Lairson Costa Suggested-by: Sebastian Andrzej Siewior Acked-by: Waiman Long Reviewed-by: Valentin Schneider --- include/linux/sched/task.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h index 357e0068497c..b597b97b1f8f 100644 --- a/include/linux/sched/task.h +++ b/include/linux/sched/task.h @@ -113,14 +113,28 @@ static inline struct task_struct *get_task_struct(str= uct task_struct *t) =20 extern void __put_task_struct(struct task_struct *t); =20 +#define PUT_TASK_RESCHED_OFFSETS \ + (rcu_preempt_depth() << MIGHT_RESCHED_RCU_SHIFT) + +#define __put_task_might_resched() \ + __might_resched(__FILE__, __LINE__, PUT_TASK_RESCHED_OFFSETS) + +#define put_task_might_resched() \ + do { \ + if (IS_ENABLED(CONFIG_PREEMPT_RT)) \ + __put_task_might_resched(); \ + } while (0) + static inline void put_task_struct(struct task_struct *t) { + put_task_might_resched(); if (refcount_dec_and_test(&t->usage)) __put_task_struct(t); } =20 static inline void put_task_struct_many(struct task_struct *t, int nr) { + put_task_might_resched(); if (refcount_sub_and_test(nr, &t->usage)) __put_task_struct(t); } --=20 2.40.0 From nobody Thu Dec 18 18:32:59 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 90FC3C6FD18 for ; Tue, 25 Apr 2023 11:45:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233953AbjDYLpB (ORCPT ); Tue, 25 Apr 2023 07:45:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45254 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233774AbjDYLo7 (ORCPT ); Tue, 25 Apr 2023 07:44:59 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6E97B49E2 for ; Tue, 25 Apr 2023 04:44:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1682423039; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=U265zX8tq5WfRp+xioeBIGxCCS4jZo0GQceEaEesDaM=; b=i9ApcuX9AGzIohD4pz/ye8b+e3GNVllF/7HCx1kL8mTywDFJEE5ASclP6yb+AzEBebZ9DJ ZoovtnYnNJ2Lq76Eik8VAkhDj6c1XdLGvzeYWTxNZyJjWu6iyQHaItMIt8P0khMpFtHiKn s6h0uoirtZWFHLqrs6id/odVkx8o8AE= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-536-Wt_spITUMDODh06iTe24Og-1; Tue, 25 Apr 2023 07:43:54 -0400 X-MC-Unique: Wt_spITUMDODh06iTe24Og-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 4A6DE3C11783; Tue, 25 Apr 2023 11:43:53 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.22.32.181]) by smtp.corp.redhat.com (Postfix) with ESMTP id C629DC15BA0; Tue, 25 Apr 2023 11:43:45 +0000 (UTC) From: Wander Lairson Costa To: Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Ian Rogers , Adrian Hunter , Will Deacon , Waiman Long , Boqun Feng , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Ben Segall , Mel Gorman , Daniel Bristot de Oliveira , Valentin Schneider , "Eric W. Biederman" , Wander Lairson Costa , Oleg Nesterov , Brian Cain , Kefeng Wang , Andrew Morton , "Liam R. Howlett" , Vlastimil Babka , Christian Brauner , Andrei Vagin , Shakeel Butt , linux-kernel@vger.kernel.org (open list), linux-perf-users@vger.kernel.org (open list:PERFORMANCE EVENTS SUBSYSTEM) Cc: Hu Chunyu , Paul McKenney , Thomas Gleixner Subject: [PATCH v7 2/3] sched/task: Add the put_task_struct_atomic_safe() function Date: Tue, 25 Apr 2023 08:43:02 -0300 Message-Id: <20230425114307.36889-3-wander@redhat.com> In-Reply-To: <20230425114307.36889-1-wander@redhat.com> References: <20230425114307.36889-1-wander@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Due to the possibility of indirectly acquiring sleeping locks, it is unsafe to call put_task_struct() in atomic contexts when the kernel is compiled with PREEMPT_RT. To mitigate this issue, this commit introduces put_task_struct_atomic_safe(), which schedules __put_task_struct() through call_rcu() when PREEMPT_RT is enabled. While a workqueue would be a more natural approach, we cannot allocate dynamic memory from atomic context in PREEMPT_RT, making the code more complex. This implementation ensures safe execution in atomic contexts and avoids any potential issues that may arise from using the non-atomic version. Signed-off-by: Wander Lairson Costa Reported-by: Hu Chunyu Reviewed-by: Paul McKenney Cc: Thomas Gleixner Acked-by: Waiman Long Reviewed-by: Valentin Schneider --- include/linux/sched/task.h | 35 +++++++++++++++++++++++++++++++++++ kernel/fork.c | 8 ++++++++ 2 files changed, 43 insertions(+) diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h index b597b97b1f8f..cf774b83b2ec 100644 --- a/include/linux/sched/task.h +++ b/include/linux/sched/task.h @@ -141,6 +141,41 @@ static inline void put_task_struct_many(struct task_st= ruct *t, int nr) =20 void put_task_struct_rcu_user(struct task_struct *task); =20 +extern void __delayed_put_task_struct(struct rcu_head *rhp); + +static inline void put_task_struct_atomic_safe(struct task_struct *task) +{ + if (IS_ENABLED(CONFIG_PREEMPT_RT)) { + /* + * Decrement the refcount explicitly to avoid unnecessarily + * calling call_rcu. + */ + if (refcount_dec_and_test(&task->usage)) + /* + * under PREEMPT_RT, we can't call put_task_struct + * in atomic context because it will indirectly + * acquire sleeping locks. + * call_rcu() will schedule __delayed_put_task_struct() + * to be called in process context. + * + * __put_task_struct() is called when + * refcount_dec_and_test(&t->usage) succeeds. + * + * This means that it can't conflict with + * put_task_struct_rcu_user() which abuses ->rcu the same + * way; rcu_users has a reference so task->usage can't be + * zero after rcu_users 1 -> 0 transition. + * + * delayed_free_task() also uses ->rcu, but it is only called + * when it fails to fork a process. Therefore, there is no + * way it can conflict with put_task_struct(). + */ + call_rcu(&task->rcu, __delayed_put_task_struct); + } else { + put_task_struct(task); + } +} + /* Free all architecture-specific resources held by a thread. */ void release_thread(struct task_struct *dead_task); =20 diff --git a/kernel/fork.c b/kernel/fork.c index ea332319dffe..7f016b691b1d 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -854,6 +854,14 @@ void __put_task_struct(struct task_struct *tsk) } EXPORT_SYMBOL_GPL(__put_task_struct); =20 +void __delayed_put_task_struct(struct rcu_head *rhp) +{ + struct task_struct *task =3D container_of(rhp, struct task_struct, rcu); + + __put_task_struct(task); +} +EXPORT_SYMBOL_GPL(__delayed_put_task_struct); + void __init __weak arch_task_cache_init(void) { } =20 /* --=20 2.40.0 From nobody Thu Dec 18 18:32:59 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 98F16C6FD18 for ; Tue, 25 Apr 2023 11:45:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233727AbjDYLpM (ORCPT ); Tue, 25 Apr 2023 07:45:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45252 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233972AbjDYLpH (ORCPT ); Tue, 25 Apr 2023 07:45:07 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A42166A45 for ; Tue, 25 Apr 2023 04:44:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1682423049; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EIn6jOD/NeIKj2oP7nKtWE4+cRY7zlmSfjRegYEWY78=; b=O5fSBrrjWFAFn4BhQ+kU29pmHIAZa8A5HHq21XBHpAVfxj0HnBObkB9r8va9SdsgQGQ9F5 pyqQ9BAyNlNaPygMl7487x4Fc80sLVV0sav3fu1R/z7w8GIAD+rQHliKzF0P/KIi4eo4Q0 N/CYP3PyofaZhFjGtbbFYY0Dj5rN9S0= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-620-k5AQPd14OvSQiUNg_thmAA-1; Tue, 25 Apr 2023 07:44:04 -0400 X-MC-Unique: k5AQPd14OvSQiUNg_thmAA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 85060884EC0; Tue, 25 Apr 2023 11:44:03 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.22.32.181]) by smtp.corp.redhat.com (Postfix) with ESMTP id A3A30C15BA0; Tue, 25 Apr 2023 11:43:56 +0000 (UTC) From: Wander Lairson Costa To: Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Ian Rogers , Adrian Hunter , Will Deacon , Waiman Long , Boqun Feng , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Ben Segall , Mel Gorman , Daniel Bristot de Oliveira , Valentin Schneider , "Eric W. Biederman" , Wander Lairson Costa , Huacai Chen , Kefeng Wang , Oleg Nesterov , Andrew Morton , "Liam R. Howlett" , Vlastimil Babka , Andrei Vagin , Shakeel Butt , linux-kernel@vger.kernel.org (open list), linux-perf-users@vger.kernel.org (open list:PERFORMANCE EVENTS SUBSYSTEM) Subject: [PATCH v7 3/3] treewide: replace put_task_struct() with the atomic safe version Date: Tue, 25 Apr 2023 08:43:03 -0300 Message-Id: <20230425114307.36889-4-wander@redhat.com> In-Reply-To: <20230425114307.36889-1-wander@redhat.com> References: <20230425114307.36889-1-wander@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" In places where put_task_struct() is called in a non-sleepable context, we replace those calls by put_task_struct_atomic_safe(). These call sites were found by running internal regression tests and looking for warnings generated by put_task_might_resched(). Signed-off-by: Wander Lairson Costa Cc: Valentin Schneider Acked-by: Waiman Long Reviewed-by: Valentin Schneider --- kernel/events/core.c | 6 +++--- kernel/locking/rtmutex.c | 10 +++++----- kernel/sched/core.c | 6 +++--- kernel/sched/deadline.c | 16 ++++++++-------- kernel/sched/rt.c | 4 ++-- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/kernel/events/core.c b/kernel/events/core.c index 435815d3be3f..8f823da02324 100644 --- a/kernel/events/core.c +++ b/kernel/events/core.c @@ -1181,7 +1181,7 @@ static void put_ctx(struct perf_event_context *ctx) if (ctx->parent_ctx) put_ctx(ctx->parent_ctx); if (ctx->task && ctx->task !=3D TASK_TOMBSTONE) - put_task_struct(ctx->task); + put_task_struct_atomic_safe(ctx->task); call_rcu(&ctx->rcu_head, free_ctx); } } @@ -13019,7 +13019,7 @@ static void perf_event_exit_task_context(struct tas= k_struct *child) RCU_INIT_POINTER(child->perf_event_ctxp, NULL); put_ctx(child_ctx); /* cannot be last */ WRITE_ONCE(child_ctx->task, TASK_TOMBSTONE); - put_task_struct(current); /* cannot be last */ + put_task_struct_atomic_safe(current); /* cannot be last */ =20 clone_ctx =3D unclone_ctx(child_ctx); raw_spin_unlock_irq(&child_ctx->lock); @@ -13124,7 +13124,7 @@ void perf_event_free_task(struct task_struct *task) */ RCU_INIT_POINTER(task->perf_event_ctxp, NULL); WRITE_ONCE(ctx->task, TASK_TOMBSTONE); - put_task_struct(task); /* cannot be last */ + put_task_struct_atomic_safe(task); /* cannot be last */ raw_spin_unlock_irq(&ctx->lock); =20 =20 diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index 728f434de2bb..3ecb8d6ae039 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -509,7 +509,7 @@ static __always_inline void rt_mutex_wake_up_q(struct r= t_wake_q_head *wqh) { if (IS_ENABLED(CONFIG_PREEMPT_RT) && wqh->rtlock_task) { wake_up_state(wqh->rtlock_task, TASK_RTLOCK_WAIT); - put_task_struct(wqh->rtlock_task); + put_task_struct_atomic_safe(wqh->rtlock_task); wqh->rtlock_task =3D NULL; } =20 @@ -649,7 +649,7 @@ static int __sched rt_mutex_adjust_prio_chain(struct ta= sk_struct *task, "task: %s (%d)\n", max_lock_depth, top_task->comm, task_pid_nr(top_task)); } - put_task_struct(task); + put_task_struct_atomic_safe(task); =20 return -EDEADLK; } @@ -817,7 +817,7 @@ static int __sched rt_mutex_adjust_prio_chain(struct ta= sk_struct *task, * No requeue[7] here. Just release @task [8] */ raw_spin_unlock(&task->pi_lock); - put_task_struct(task); + put_task_struct_atomic_safe(task); =20 /* * [9] check_exit_conditions_3 protected by lock->wait_lock. @@ -886,7 +886,7 @@ static int __sched rt_mutex_adjust_prio_chain(struct ta= sk_struct *task, =20 /* [8] Release the task */ raw_spin_unlock(&task->pi_lock); - put_task_struct(task); + put_task_struct_atomic_safe(task); =20 /* * [9] check_exit_conditions_3 protected by lock->wait_lock. @@ -990,7 +990,7 @@ static int __sched rt_mutex_adjust_prio_chain(struct ta= sk_struct *task, out_unlock_pi: raw_spin_unlock_irq(&task->pi_lock); out_put_task: - put_task_struct(task); + put_task_struct_atomic_safe(task); =20 return ret; } diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 0d18c3969f90..a4783f0c9f01 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -1007,7 +1007,7 @@ void wake_up_q(struct wake_q_head *head) * the queueing in wake_q_add() so as not to miss wakeups. */ wake_up_process(task); - put_task_struct(task); + put_task_struct_atomic_safe(task); } } =20 @@ -2528,7 +2528,7 @@ int push_cpu_stop(void *arg) raw_spin_rq_unlock(rq); raw_spin_unlock_irq(&p->pi_lock); =20 - put_task_struct(p); + put_task_struct_atomic_safe(p); return 0; } =20 @@ -9316,7 +9316,7 @@ static int __balance_push_cpu_stop(void *arg) rq_unlock(rq, &rf); raw_spin_unlock_irq(&p->pi_lock); =20 - put_task_struct(p); + put_task_struct_atomic_safe(p); =20 return 0; } diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c index 71b24371a6f7..0f8b8a490dc0 100644 --- a/kernel/sched/deadline.c +++ b/kernel/sched/deadline.c @@ -327,7 +327,7 @@ static void dl_change_utilization(struct task_struct *p= , u64 new_bw) * so we are still safe. */ if (hrtimer_try_to_cancel(&p->dl.inactive_timer) =3D=3D 1) - put_task_struct(p); + put_task_struct_atomic_safe(p); } __sub_rq_bw(p->dl.dl_bw, &rq->dl); __add_rq_bw(new_bw, &rq->dl); @@ -467,7 +467,7 @@ static void task_contending(struct sched_dl_entity *dl_= se, int flags) * so we are still safe. */ if (hrtimer_try_to_cancel(&dl_se->inactive_timer) =3D=3D 1) - put_task_struct(dl_task_of(dl_se)); + put_task_struct_atomic_safe(dl_task_of(dl_se)); } else { /* * Since "dl_non_contending" is not set, the @@ -1207,7 +1207,7 @@ static enum hrtimer_restart dl_task_timer(struct hrti= mer *timer) * This can free the task_struct, including this hrtimer, do not touch * anything related to that after this. */ - put_task_struct(p); + put_task_struct_atomic_safe(p); =20 return HRTIMER_NORESTART; } @@ -1442,7 +1442,7 @@ static enum hrtimer_restart inactive_task_timer(struc= t hrtimer *timer) dl_se->dl_non_contending =3D 0; unlock: task_rq_unlock(rq, p, &rf); - put_task_struct(p); + put_task_struct_atomic_safe(p); =20 return HRTIMER_NORESTART; } @@ -1899,7 +1899,7 @@ static void migrate_task_rq_dl(struct task_struct *p,= int new_cpu __maybe_unused * so we are still safe. */ if (hrtimer_try_to_cancel(&p->dl.inactive_timer) =3D=3D 1) - put_task_struct(p); + put_task_struct_atomic_safe(p); } sub_rq_bw(&p->dl, &rq->dl); rq_unlock(rq, &rf); @@ -2351,7 +2351,7 @@ static int push_dl_task(struct rq *rq) /* No more tasks */ goto out; =20 - put_task_struct(next_task); + put_task_struct_atomic_safe(next_task); next_task =3D task; goto retry; } @@ -2366,7 +2366,7 @@ static int push_dl_task(struct rq *rq) double_unlock_balance(rq, later_rq); =20 out: - put_task_struct(next_task); + put_task_struct_atomic_safe(next_task); =20 return ret; } @@ -2633,7 +2633,7 @@ static void switched_from_dl(struct rq *rq, struct ta= sk_struct *p) static void switched_to_dl(struct rq *rq, struct task_struct *p) { if (hrtimer_try_to_cancel(&p->dl.inactive_timer) =3D=3D 1) - put_task_struct(p); + put_task_struct_atomic_safe(p); =20 /* If p is not queued we will update its parameters at next wakeup. */ if (!task_on_rq_queued(p)) { diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c index 0a11f44adee5..e58a84535f61 100644 --- a/kernel/sched/rt.c +++ b/kernel/sched/rt.c @@ -2150,7 +2150,7 @@ static int push_rt_task(struct rq *rq, bool pull) /* * Something has shifted, try again. */ - put_task_struct(next_task); + put_task_struct_atomic_safe(next_task); next_task =3D task; goto retry; } @@ -2163,7 +2163,7 @@ static int push_rt_task(struct rq *rq, bool pull) =20 double_unlock_balance(rq, lowest_rq); out: - put_task_struct(next_task); + put_task_struct_atomic_safe(next_task); =20 return ret; } --=20 2.40.0