Re: [PATCH v18 01/10] fs/ntfs3: Add headers and misc files

2021-01-27 Thread Kari Argillander
On Fri, Jan 22, 2021 at 02:55:30PM +, Mark Harmstone wrote: > On 22/1/21 2:01 pm, Konstantin Komarov wrote: > > diff --git a/fs/ntfs3/upcase.c b/fs/ntfs3/upcase.c > > +static inline u16 upcase_unicode_char(const u16 *upcase, u16 chr) > > +{ > > + if (chr < 'a') > > + return chr; >

[PATCH v18 01/10] fs/ntfs3: Add headers and misc files

2021-01-22 Thread Konstantin Komarov
This adds headers and misc files Signed-off-by: Konstantin Komarov --- fs/ntfs3/debug.h | 62 +++ fs/ntfs3/ntfs.h| 1238 fs/ntfs3/ntfs_fs.h | 1056 + fs/ntfs3/upcase.c | 100 4 files changed, 2456

Re: [PATCH v18 01/10] fs/ntfs3: Add headers and misc files

2021-01-22 Thread Mark Harmstone
Hi Konstantin, Shouldn't upcase_unicode_char be using the NTFS pseudo-file $UpCase? That way you should also be covered for other bicameral alphabets. Mark On 22/1/21 2:01 pm, Konstantin Komarov wrote: > This adds headers and misc files > > Signed-off-by: Konstantin Komarov > --- >