locking: Add missing __sched attributes
authorMinchan Kim <minchan@kernel.org>
Sat, 15 Jan 2022 23:16:57 +0000 (15:16 -0800)
committerPeter Zijlstra <peterz@infradead.org>
Fri, 11 Feb 2022 11:13:55 +0000 (12:13 +0100)
This patch adds __sched attributes to a few missing places
to show blocked function rather than locking function
in get_wchan.

Signed-off-by: Minchan Kim <minchan@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20220115231657.84828-1-minchan@kernel.org
kernel/locking/percpu-rwsem.c
kernel/locking/rwsem.c

index 70a32a576f3f249c7fd4ffd8f27f8d4e0cd5e3c7..c9fdae94e098ebd92fa612d3ce2cae0bbaf40f34 100644 (file)
@@ -7,6 +7,7 @@
 #include <linux/rcupdate.h>
 #include <linux/sched.h>
 #include <linux/sched/task.h>
+#include <linux/sched/debug.h>
 #include <linux/errno.h>
 
 int __percpu_init_rwsem(struct percpu_rw_semaphore *sem,
@@ -162,7 +163,7 @@ static void percpu_rwsem_wait(struct percpu_rw_semaphore *sem, bool reader)
        __set_current_state(TASK_RUNNING);
 }
 
-bool __percpu_down_read(struct percpu_rw_semaphore *sem, bool try)
+bool __sched __percpu_down_read(struct percpu_rw_semaphore *sem, bool try)
 {
        if (__percpu_down_read_trylock(sem))
                return true;
@@ -211,7 +212,7 @@ static bool readers_active_check(struct percpu_rw_semaphore *sem)
        return true;
 }
 
-void percpu_down_write(struct percpu_rw_semaphore *sem)
+void __sched percpu_down_write(struct percpu_rw_semaphore *sem)
 {
        might_sleep();
        rwsem_acquire(&sem->dep_map, 0, 0, _RET_IP_);
index 69aba4abe1047f49b2bfc89448f1a2213f88c76a..acde5d6f125463025ab8680da5fa98bffd612cfa 100644 (file)
@@ -1048,7 +1048,7 @@ out_nolock:
 /*
  * Wait until we successfully acquire the write lock
  */
-static struct rw_semaphore *
+static struct rw_semaphore __sched *
 rwsem_down_write_slowpath(struct rw_semaphore *sem, int state)
 {
        long count;