Re: [PATCH] Documentation/filesystems/vfat.txt: fix a remark that implies UCS2

2017-12-18 Thread OGAWA Hirofumi
ach Unicode > -character takes two bytes. > +character takes either two or four bytes, UTF-16LE encoded. Acked-by: OGAWA Hirofumi Thanks. -- OGAWA Hirofumi -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCHv2] fat: add config option to set UTF-8 mount option by default

2016-03-08 Thread OGAWA Hirofumi
system "utf8" mount option > had to be added manually to most FAT mounts. > > This patch adds config option to set such default value. > > Signed-off-by: Maciej S. Szmigiero Acked-by: OGAWA Hirofumi > --- > Changes from v1: use IS_ENABLED() macro

Re: [PATCH] fat: add config option to set UTF-8 mount option by default

2016-03-07 Thread OGAWA Hirofumi
"Maciej S. Szmigiero" writes: > +#ifdef CONFIG_FAT_DEFAULT_UTF8 > + opts->utf8 = is_vfat; > +#else > + opts->utf8 = 0; > +#endif > + Maybe, better to use IS_ENABLED(CONFIG_FAT_DEFAULT_UTF8)? I.e., opts->utf8 = IS_ENABLED(CONFIG_FAT_DEFAULT