Daniel Rosenberg <dro...@google.com> writes:

> -
>  const struct dentry_operations ext4_dentry_ops = {
> -     .d_hash = ext4_d_hash,
> -     .d_compare = ext4_d_compare,
> +     .d_hash = generic_ci_d_hash,
> +     .d_compare = generic_ci_d_compare,
>  };
>  #endif

Can you make the structure generic since it is the same for f2fs and
ext4, which let you drop the code guards?  Unless that becomes a problem for
d_revalidate with fscrypt, it is fine like this.

>  #ifdef CONFIG_UNICODE
> -     sbi = EXT4_SB(sb);
> -     if (ext4_has_strict_mode(sbi) && IS_CASEFOLDED(dir) &&
> -         sbi->s_encoding && utf8_validate(sbi->s_encoding, &dentry->d_name))
> +     if (sb_has_enc_strict_mode(sb) && IS_CASEFOLDED(dir) &&

I keep reading the 'enc' in sb_has_enc_strict_mode() as 'encryption'.  What do
you think about renaming it to sb_has_strict_encoding()?

These comments apply equally to patches 3 and 4.  Other than that,

Reviewed-by: Gabriel Krisman Bertazi <kris...@collabora.com>

-- 
Gabriel Krisman Bertazi

Reply via email to