return fscrypt_get_symlink(inode, ui->data, ui->data_len, done);
 }
 
+static int ubifs_symlink_getattr(struct user_namespace *mnt_userns,
+                                const struct path *path, struct kstat *stat,
+                                u32 request_mask, unsigned int query_flags)
+{
+       ubifs_getattr(mnt_userns, path, stat, request_mask, query_flags);
+
+       if (IS_ENCRYPTED(d_inode(path->dentry)))
+               return fscrypt_symlink_getattr(path, stat);
+       return 0;
+}
+
 const struct address_space_operations ubifs_file_address_operations = {
        .readpage       = ubifs_readpage,
        .writepage      = ubifs_writepage,
 const struct inode_operations ubifs_symlink_inode_operations = {
        .get_link    = ubifs_get_link,
        .setattr     = ubifs_setattr,
-       .getattr     = ubifs_getattr,
+       .getattr     = ubifs_symlink_getattr,
        .listxattr   = ubifs_listxattr,
        .update_time = ubifs_update_time,
 };