aboutsummaryrefslogtreecommitdiff
path: root/fs/unicode/utf8data.c_shipped
AgeCommit message (Collapse)AuthorFilesLines
2024-10-09unicode: Don't special case ignorable code pointsGabriel Krisman Bertazi1-3357/+3346
We don't need to handle them separately. Instead, just let them decompose/casefold to themselves. Signed-off-by: Gabriel Krisman Bertazi <[email protected]>
2024-06-20unicode: add MODULE_DESCRIPTION() macrosJeff Johnson1-0/+1
Currently 'make W=1' reports: WARNING: modpost: missing MODULE_DESCRIPTION() in fs/unicode/utf8data.o WARNING: modpost: missing MODULE_DESCRIPTION() in fs/unicode/utf8-selftest.o Add a MODULE_DESCRIPTION() to utf8-selftest.c and utf8data.c_shipped, and update mkutf8data.c to add a MODULE_DESCRIPTION() to any future generated utf8data file. Signed-off-by: Jeff Johnson <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Gabriel Krisman Bertazi <[email protected]>
2021-10-12unicode: Add utf8-data moduleChristoph Hellwig1-0/+4123
utf8data.h contains a large database table which is an auto-generated decodification trie for the unicode normalization functions. Allow building it into a separate module. Based on a patch from Shreeya Patel <[email protected]>. Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Gabriel Krisman Bertazi <[email protected]>