All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] arm64: preempt: Add NEED_RESCHED to the preempt_count()
@ 2022-09-05 14:18 ` wonder_rock
  0 siblings, 0 replies; 6+ messages in thread
From: wonder_rock @ 2022-09-05 14:18 UTC (permalink / raw)
  To: catalin.marinas, will
  Cc: frederic, ardb, wonder_rock, mark.rutland, linux-arm-kernel,
	linux-kernel

From: Deyan Wang <wonder_rock@126.com>

preempt_count() will be checked in preempt_schedule_irq(),
we need check if NEED_RESCHED in preempt point.

Signed-off-by: Deyan Wang <wonder_rock@126.com>
---
 arch/arm64/include/asm/preempt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/include/asm/preempt.h b/arch/arm64/include/asm/preempt.h
index 0159b625cc7f..083b0fd3c52a 100644
--- a/arch/arm64/include/asm/preempt.h
+++ b/arch/arm64/include/asm/preempt.h
@@ -10,7 +10,7 @@
 
 static inline int preempt_count(void)
 {
-	return READ_ONCE(current_thread_info()->preempt.count);
+	return READ_ONCE(current_thread_info()->preempt_count);
 }
 
 static inline void preempt_count_set(u64 pc)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-09-06 12:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-05 14:18 [PATCH 1/1] arm64: preempt: Add NEED_RESCHED to the preempt_count() wonder_rock
2022-09-05 14:18 ` wonder_rock
2022-09-05 15:50 ` wonder_rock
2022-09-05 15:50   ` wonder_rock
2022-09-06 12:11   ` Will Deacon
2022-09-06 12:11     ` Will Deacon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.