* [PATCH] fs: mark string returned by get_mounted_path as const
@ 2025-04-02 8:13 Ahmad Fatoum
2025-04-02 8:24 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2025-04-02 8:13 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
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
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] fs: mark string returned by get_mounted_path as const
2025-04-02 8:13 [PATCH] fs: mark string returned by get_mounted_path as const Ahmad Fatoum
@ 2025-04-02 8:24 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2025-04-02 8:24 UTC (permalink / raw)
To: barebox, Ahmad Fatoum
On Wed, 02 Apr 2025 10:13:18 +0200, Ahmad Fatoum wrote:
> The string returned is not freshly allocated and modifying it is a bad
> idea, so mark it const.
>
> This breaks no in-tree users.
>
>
Applied, thanks!
[1/1] fs: mark string returned by get_mounted_path as const
https://git.pengutronix.de/cgit/barebox/commit/?id=d30c2777306c (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-02 8:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-02 8:13 [PATCH] fs: mark string returned by get_mounted_path as const Ahmad Fatoum
2025-04-02 8:24 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox