From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH] fs: mark string returned by get_mounted_path as const
Date: Wed, 2 Apr 2025 10:13:18 +0200 [thread overview]
Message-ID: <20250402081318.2566082-1-a.fatoum@pengutronix.de> (raw)
The string returned is not freshly allocated and modifying it is a bad
idea, so mark it const.
This breaks no in-tree users.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
fs/fs.c | 2 +-
include/fs.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/fs.c b/fs/fs.c
index 4e23aef79771..f73128ae2067 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -305,7 +305,7 @@ struct cdev *get_cdev_by_mountpath(const char *path)
return fsdev->cdev;
}
-char *get_mounted_path(const char *path)
+const char *get_mounted_path(const char *path)
{
struct fs_device *fdev;
diff --git a/include/fs.h b/include/fs.h
index bf927da4207e..e72f9bac174c 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -155,7 +155,7 @@ char *canonicalize_path(int dirfd, const char *pathname);
struct fs_device *get_fsdevice_by_path(int dirfd, const char *path);
-char *get_mounted_path(const char *path);
+const char *get_mounted_path(const char *path);
struct cdev *get_cdev_by_mountpath(const char *path);
--
2.39.5
next reply other threads:[~2025-04-02 8:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-02 8:13 Ahmad Fatoum [this message]
2025-04-02 8:24 ` Sascha Hauer
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=20250402081318.2566082-1-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@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