Messages in this thread Patch in this message |  | | From | Denis Kirjanov <> | Subject | [PATCH] fs: export kern_path_locked | Date | Mon, 25 Jan 2021 18:49:37 +0300 |
| |
the function is used outside and we have a prototype defined in namei.h
Signed-off-by: Denis Kirjanov <kda@linux-powerpc.org> --- fs/namei.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/fs/namei.c b/fs/namei.c index 78443a85480a..3de3b3642302 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -2450,6 +2450,7 @@ struct dentry *kern_path_locked(const char *name, struct path *path) putname(filename); return d; } +EXPORT_SYMBOL(kern_path_locked); int kern_path(const char *name, unsigned int flags, struct path *path) { -- 2.16.4
|  |