struct dentry *unused, struct inode *inode,
                                   const char *name, void *buffer, size_t size)
 {
-       struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
-
-       switch (handler->flags) {
-       case EROFS_XATTR_INDEX_USER:
-               if (!test_opt(&sbi->opt, XATTR_USER))
-                       return -EOPNOTSUPP;
-               break;
-       case EROFS_XATTR_INDEX_TRUSTED:
-               break;
-       case EROFS_XATTR_INDEX_SECURITY:
-               break;
-       default:
-               return -EINVAL;
-       }
+       if (handler->flags == EROFS_XATTR_INDEX_USER &&
+           !test_opt(&EROFS_I_SB(inode)->opt, XATTR_USER))
+               return -EOPNOTSUPP;
 
        return erofs_getxattr(inode, handler->flags, name, buffer, size);
 }