Re: [PATCH v3 04/12] ext2fs: Implement faster CI comparison of strings
From: "Theodore Ts'o" <tytso@mit.edu>
Date: 2021-01-28 02:59:56
From: "Theodore Ts'o" <tytso@mit.edu>
Date: 2021-01-28 02:59:56
On Thu, Dec 17, 2020 at 06:35:36PM +0100, Arnaud Ferraris wrote:
From: Gabriel Krisman Bertazi <redacted> Instead of calling casefold two times and memcmp the result, which require allocating a temporary buffer for the casefolded version, add a strcasecmp-like method to perform the comparison of each code-point during the casefold itself. This method is exposed because it needs to be used directly by fsck. Signed-off-by: Gabriel Krisman Bertazi <redacted> Signed-off-by: Arnaud Ferraris <redacted>
Thanks, applied. - Ted