All of lore.kernel.org
 help / color / mirror / Atom feed
From: tip-bot for Sascha Hauer <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: tglx@linutronix.de, hpa@zytor.com, s.hauer@pengutronix.de,
	mingo@kernel.org, fujita.tomonori@lab.ntt.co.jp,
	peterz@infradead.org, torvalds@linux-foundation.org,
	linux-kernel@vger.kernel.org
Subject: [tip:sched/core] sched/headers: Constify object_is_on_stack()
Date: Wed, 6 Dec 2017 12:31:11 -0800	[thread overview]
Message-ID: <tip-00ef0ef2cccb0350eae368e565c98453a9305b05@git.kernel.org> (raw)
In-Reply-To: <20171205104415.17147-1-s.hauer@pengutronix.de>

Commit-ID:  00ef0ef2cccb0350eae368e565c98453a9305b05
Gitweb:     https://git.kernel.org/tip/00ef0ef2cccb0350eae368e565c98453a9305b05
Author:     Sascha Hauer <s.hauer@pengutronix.de>
AuthorDate: Tue, 5 Dec 2017 11:44:15 +0100
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 6 Dec 2017 20:50:02 +0100

sched/headers: Constify object_is_on_stack()

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

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Cc: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: kernel@pengutronix.de
Link: http://lkml.kernel.org/r/20171205104415.17147-1-s.hauer@pengutronix.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 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 cb4828a..6a84192 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);
 

      reply	other threads:[~2017-12-06 20:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-05 10:44 [PATCH] sched/headers: make object_is_on_stack() argument const Sascha Hauer
2017-12-06 20:31 ` tip-bot for Sascha Hauer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=tip-00ef0ef2cccb0350eae368e565c98453a9305b05@git.kernel.org \
    --to=tipbot@zytor.com \
    --cc=fujita.tomonori@lab.ntt.co.jp \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=peterz@infradead.org \
    --cc=s.hauer@pengutronix.de \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.