Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 640eb7e7 authored by Mickaël Salaün's avatar Mickaël Salaün Committed by Al Viro
Browse files

fs: Constify path_is_under()'s arguments



The function path_is_under() doesn't modify the paths pointed by its
arguments but only browse them. Constifying this pointers make a cleaner
interface to be used by (future) code which may only have access to
const struct path pointers (e.g. LSM hooks).

Signed-off-by: default avatarMickaël Salaün <mic@digikod.net>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent e5517c2a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2997,7 +2997,7 @@ bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
	return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
}

bool path_is_under(struct path *path1, struct path *path2)
bool path_is_under(const struct path *path1, const struct path *path2)
{
	bool res;
	read_seqlock_excl(&mount_lock);
+1 −1
Original line number Diff line number Diff line
@@ -2709,7 +2709,7 @@ extern struct file * open_exec(const char *);
 
/* fs/dcache.c -- generic fs support functions */
extern bool is_subdir(struct dentry *, struct dentry *);
extern bool path_is_under(struct path *, struct path *);
extern bool path_is_under(const struct path *, const struct path *);

extern char *file_path(struct file *, char *, int);