Re: [PATCH] hfsplus: prevent negative dentries when casefolded

2021-04-16 Thread Al Viro
On Sat, Apr 17, 2021 at 01:20:12AM +0800, Chung-Chiang Cheng wrote: > hfsplus uses the case-insensitive filenames by default, but VFS negative > dentries are incompatible with case-insensitive. For example, the > following instructions will get a cached filename 'aaa' which isn't > expected. There

[PATCH] hfsplus: prevent negative dentries when casefolded

2021-04-16 Thread Chung-Chiang Cheng
hfsplus uses the case-insensitive filenames by default, but VFS negative dentries are incompatible with case-insensitive. For example, the following instructions will get a cached filename 'aaa' which isn't expected. There is no such problem in macOS. touch aaa rm aaa touch AAA This patch j