break;
        case F_ADD_SEALS:
        case F_GET_SEALS:
-               err = shmem_fcntl(filp, cmd, arg);
+               err = memfd_fcntl(filp, cmd, arg);
                break;
        case F_GET_RW_HINT:
        case F_SET_RW_HINT:
 
 
 #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
 
-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;
 }
 
                     F_SEAL_GROW | \
                     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 shmem_inode_info *info = SHMEM_I(inode);
        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)
                return -EINVAL;
        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;
 
                if (arg > UINT_MAX)
                        return -EINVAL;
 
-               error = shmem_add_seals(file, arg);
+               error = memfd_add_seals(file, arg);
                break;
        case F_GET_SEALS:
-               error = shmem_get_seals(file);
+               error = memfd_get_seals(file);
                break;
        default:
                error = -EINVAL;