Commit 5aadc431 authored by Marc-André Lureau's avatar Marc-André Lureau Committed by Linus Torvalds

shmem: rename functions that are memfd-related

Those functions are called for memfd files, backed by shmem or hugetlb
(the next patches will handle hugetlb).

Link: http://lkml.kernel.org/r/20171107122800.25517-3-marcandre.lureau@redhat.comSigned-off-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: default avatarMike Kravetz <mike.kravetz@oracle.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e9d586a8
...@@ -418,7 +418,7 @@ static long do_fcntl(int fd, unsigned int cmd, unsigned long arg, ...@@ -418,7 +418,7 @@ static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
break; break;
case F_ADD_SEALS: case F_ADD_SEALS:
case F_GET_SEALS: case F_GET_SEALS:
err = shmem_fcntl(filp, cmd, arg); err = memfd_fcntl(filp, cmd, arg);
break; break;
case F_GET_RW_HINT: case F_GET_RW_HINT:
case F_SET_RW_HINT: case F_SET_RW_HINT:
......
...@@ -112,11 +112,11 @@ extern void shmem_uncharge(struct inode *inode, long pages); ...@@ -112,11 +112,11 @@ extern void shmem_uncharge(struct inode *inode, long pages);
#ifdef CONFIG_TMPFS #ifdef CONFIG_TMPFS
extern long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg); extern long memfd_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
#else #else
static inline long shmem_fcntl(struct file *f, unsigned int c, unsigned long a) static inline long memfd_fcntl(struct file *f, unsigned int c, unsigned long a)
{ {
return -EINVAL; return -EINVAL;
} }
......
...@@ -2722,7 +2722,7 @@ static int shmem_wait_for_pins(struct address_space *mapping) ...@@ -2722,7 +2722,7 @@ static int shmem_wait_for_pins(struct address_space *mapping)
F_SEAL_GROW | \ F_SEAL_GROW | \
F_SEAL_WRITE) F_SEAL_WRITE)
static int shmem_add_seals(struct file *file, unsigned int seals) static int memfd_add_seals(struct file *file, unsigned int seals)
{ {
struct inode *inode = file_inode(file); struct inode *inode = file_inode(file);
struct shmem_inode_info *info = SHMEM_I(inode); struct shmem_inode_info *info = SHMEM_I(inode);
...@@ -2792,7 +2792,7 @@ static int shmem_add_seals(struct file *file, unsigned int seals) ...@@ -2792,7 +2792,7 @@ static int shmem_add_seals(struct file *file, unsigned int seals)
return error; return error;
} }
static int shmem_get_seals(struct file *file) static int memfd_get_seals(struct file *file)
{ {
if (file->f_op != &shmem_file_operations) if (file->f_op != &shmem_file_operations)
return -EINVAL; return -EINVAL;
...@@ -2800,7 +2800,7 @@ static int shmem_get_seals(struct file *file) ...@@ -2800,7 +2800,7 @@ static int shmem_get_seals(struct file *file)
return SHMEM_I(file_inode(file))->seals; return SHMEM_I(file_inode(file))->seals;
} }
long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg) long memfd_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
{ {
long error; long error;
...@@ -2810,10 +2810,10 @@ long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -2810,10 +2810,10 @@ long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
if (arg > UINT_MAX) if (arg > UINT_MAX)
return -EINVAL; return -EINVAL;
error = shmem_add_seals(file, arg); error = memfd_add_seals(file, arg);
break; break;
case F_GET_SEALS: case F_GET_SEALS:
error = shmem_get_seals(file); error = memfd_get_seals(file);
break; break;
default: default:
error = -EINVAL; error = -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment