summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorMimi Zohar <zohar@linux.vnet.ibm.com>2017-09-12 22:45:33 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-09-14 20:18:45 -0700
commit711aab1dbb324d321e3d84368a435a78908c7bce (patch)
tree59f2bfbe02d994f4f69dc8d44fc8a4a4bd12228b /fs
parent6ed0529fef09f50ef41d396cb55c5519e4936b16 (diff)
downloadlinux-0-day-711aab1dbb324d321e3d84368a435a78908c7bce.tar.gz
linux-0-day-711aab1dbb324d321e3d84368a435a78908c7bce.tar.xz
vfs: constify path argument to kernel_read_file_from_path
This patch constifies the path argument to kernel_read_file_from_path(). Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com> Cc: Christoph Hellwig <hch@infradead.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exec.c b/fs/exec.c
index 69a543259aa52..ac34d97246848 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -955,7 +955,7 @@ out:
}
EXPORT_SYMBOL_GPL(kernel_read_file);
-int kernel_read_file_from_path(char *path, void **buf, loff_t *size,
+int kernel_read_file_from_path(const char *path, void **buf, loff_t *size,
loff_t max_size, enum kernel_read_file_id id)
{
struct file *file;