I don't have any archives from that time, and I'm sure others were involved, but that whole init_name_hash / partial_name_hash / end_name_hash pattern in 2.1.50 looks like code I remember. So I was at least part of it. The design, if you haven't figured it out yet, is that filesystems that have case-independent name comparisons can do their own hash functions and their own name comparison functions, exactly so that one dentry can match multiple different strings (and different strings can hash to the same bucket). If you get dentry aliases, you may be doing something wrong. Also, originally this was all in the same core dcache lookup path. So the whole "we have to check if the filesystem has its own hash function" ended up slowing down the normal case. It's obviously been massively modified since 1997 ("No, really?"), and now the code is very much set up so that the straight-line normal case is all the non-CI cases, and then case idnependence ends up out-of-line with its own dcache hash lookup loops so that it doesn't affect the normal good case. Linus