All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sched/headers: make object_is_on_stack() argument const
@ 2017-12-05 10:44 Sascha Hauer
  2017-12-06 20:31 ` [tip:sched/core] sched/headers: Constify object_is_on_stack() tip-bot for Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Sascha Hauer @ 2017-12-05 10:44 UTC (permalink / raw)
  To: linux-kernel; +Cc: kernel, Sascha Hauer, Ingo Molnar, FUJITA Tomonori

object_is_on_stack() doesn't modify its argument and should never have
to. Make it const.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
---
 include/linux/sched/task_stack.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/sched/task_stack.h b/include/linux/sched/task_stack.h
index cb4828aaa34f..6a841929073f 100644
--- a/include/linux/sched/task_stack.h
+++ b/include/linux/sched/task_stack.h
@@ -78,7 +78,7 @@ static inline void put_task_stack(struct task_struct *tsk) {}
 #define task_stack_end_corrupted(task) \
 		(*(end_of_stack(task)) != STACK_END_MAGIC)
 
-static inline int object_is_on_stack(void *obj)
+static inline int object_is_on_stack(const void *obj)
 {
 	void *stack = task_stack_page(current);
 
-- 
2.11.0

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

end of thread, other threads:[~2017-12-06 20:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-05 10:44 [PATCH] sched/headers: make object_is_on_stack() argument const Sascha Hauer
2017-12-06 20:31 ` [tip:sched/core] sched/headers: Constify object_is_on_stack() tip-bot for Sascha Hauer

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.