return count;
 }
 
+static int is_unsupported_fs(struct dentry *dentry)
+{
+       struct inode *inode = d_backing_inode(dentry);
+
+       if (inode->i_sb->s_iflags & SB_I_EVM_UNSUPPORTED) {
+               pr_info_once("%s not supported\n", inode->i_sb->s_type->name);
+               return 1;
+       }
+       return 0;
+}
+
 /*
  * evm_verify_hmac - calculate and compare the HMAC with the EVM xattr
  *
                     iint->evm_status == INTEGRITY_PASS_IMMUTABLE))
                return iint->evm_status;
 
+       if (is_unsupported_fs(dentry))
+               return INTEGRITY_UNKNOWN;
+
        /* if status is not PASS, try to check again - against -ENOMEM */
 
        /* first need to know the sig type */
        if (!evm_key_loaded() || !evm_protected_xattr(xattr_name))
                return INTEGRITY_UNKNOWN;
 
+       if (is_unsupported_fs(dentry))
+               return INTEGRITY_UNKNOWN;
+
        if (!iint) {
                iint = integrity_iint_find(d_backing_inode(dentry));
                if (!iint)
        if (strcmp(xattr_name, XATTR_NAME_EVM) == 0) {
                if (!capable(CAP_SYS_ADMIN))
                        return -EPERM;
+               if (is_unsupported_fs(dentry))
+                       return -EPERM;
        } else if (!evm_protected_xattr(xattr_name)) {
                if (!posix_xattr_acl(xattr_name))
                        return 0;
+               if (is_unsupported_fs(dentry))
+                       return 0;
+
                evm_status = evm_verify_current_integrity(dentry);
                if ((evm_status == INTEGRITY_PASS) ||
                    (evm_status == INTEGRITY_NOXATTRS))
                        return 0;
                goto out;
-       }
+       } else if (is_unsupported_fs(dentry))
+               return 0;
 
        evm_status = evm_verify_current_integrity(dentry);
        if (evm_status == INTEGRITY_NOXATTRS) {
        if (!(evm_initialized & EVM_INIT_HMAC))
                return;
 
+       if (is_unsupported_fs(dentry))
+               return;
+
        evm_update_evmxattr(dentry, xattr_name, xattr_value, xattr_value_len);
 }
 
        if (evm_initialized & EVM_ALLOW_METADATA_WRITES)
                return 0;
 
+       if (is_unsupported_fs(dentry))
+               return 0;
+
        if (!(ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID)))
                return 0;
+
        evm_status = evm_verify_current_integrity(dentry);
        /*
         * Writing attrs is safe for portable signatures, as portable signatures
        if (!(evm_initialized & EVM_INIT_HMAC))
                return;
 
+       if (is_unsupported_fs(dentry))
+               return;
+
        if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
                evm_update_evmxattr(dentry, NULL, NULL, 0);
 }