From: Dave.Martin@arm.com (Dave Martin)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 1/3] arm64: stacktrace: Constify stacktrace.h functions
Date: Fri, 20 Apr 2018 11:46:17 +0100 [thread overview]
Message-ID: <1524221179-19473-2-git-send-email-Dave.Martin@arm.com> (raw)
In-Reply-To: <1524221179-19473-1-git-send-email-Dave.Martin@arm.com>
on_accessible_stack() and on_task_stack() shouldn't (and don't)
modify their task argument, so it can be const.
This patch adds the appropriate modifiers.
No functional change.
Signed-off-by: Dave Martin <Dave.Martin@arm.com>
---
arch/arm64/include/asm/stacktrace.h | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/include/asm/stacktrace.h b/arch/arm64/include/asm/stacktrace.h
index 902f9ed..63c0379 100644
--- a/arch/arm64/include/asm/stacktrace.h
+++ b/arch/arm64/include/asm/stacktrace.h
@@ -50,7 +50,8 @@ static inline bool on_irq_stack(unsigned long sp)
return (low <= sp && sp < high);
}
-static inline bool on_task_stack(struct task_struct *tsk, unsigned long sp)
+static inline bool on_task_stack(struct task_struct const *tsk,
+ unsigned long sp)
{
unsigned long low = (unsigned long)task_stack_page(tsk);
unsigned long high = low + THREAD_SIZE;
@@ -76,7 +77,8 @@ static inline bool on_overflow_stack(unsigned long sp) { return false; }
* We can only safely access per-cpu stacks from current in a non-preemptible
* context.
*/
-static inline bool on_accessible_stack(struct task_struct *tsk, unsigned long sp)
+static inline bool on_accessible_stack(struct task_struct const *tsk,
+ unsigned long sp)
{
if (on_task_stack(tsk, sp))
return true;
--
2.1.4
next prev parent reply other threads:[~2018-04-20 10:46 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-20 10:46 [RFC PATCH 0/3] arm64: stacktrace: Improve robustness and ensure termination of backtraces Dave Martin
2018-04-20 10:46 ` Dave Martin [this message]
2018-04-20 11:00 ` [RFC PATCH 1/3] arm64: stacktrace: Constify stacktrace.h functions Mark Rutland
2018-04-20 10:46 ` [RFC PATCH 2/3] arm64: stacktrace: Factor out backtrace initialisation Dave Martin
2018-04-20 11:02 ` Mark Rutland
2018-04-20 10:46 ` [RFC PATCH 3/3] arm64: stacktrace: Prevent looping and invalid stack transitions Dave Martin
2018-04-20 10:58 ` Mark Rutland
2018-04-20 11:19 ` Dave Martin
2018-04-20 11:41 ` Mark Rutland
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=1524221179-19473-2-git-send-email-Dave.Martin@arm.com \
--to=dave.martin@arm.com \
--cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).