Re: [PATCH v6 4/4] fs: unicode: Add utf8 module and a unicode layer

2021-04-01 Thread Eric Biggers
On Thu, Apr 01, 2021 at 02:37:51AM +0530, Shreeya Patel wrote: > +# utf8data.h_shipped has a large database table which is an auto-generated > +# decodification trie for the unicode normalization functions and it is not > +# necessary to carry this large table in the kernel. > +# Enabling UNICODE_U

[PATCH v6 4/4] fs: unicode: Add utf8 module and a unicode layer

2021-03-31 Thread Shreeya Patel
utf8data.h_shipped has a large database table which is an auto-generated decodification trie for the unicode normalization functions. It is not necessary to load this large table in the kernel if no filesystem is using it, hence make UTF-8 encoding loadable by converting it into a module. Modify t