Re: [PATCH v3 0/3] fat: Added functions to determine the FAT variant (12/16/32bit)

2018-12-25 Thread Sergey Senozhatsky
On (12/24/18 21:04), OGAWA Hirofumi wrote: > FWIW, > > Acked-by: OGAWA Hirofumi > > for all of this patchset. Looks good to me. FWIW, Reviewed-by: Sergey Senozhatsky -ss

Re: [PATCH v3 0/3] fat: Added functions to determine the FAT variant (12/16/32bit)

2018-12-24 Thread OGAWA Hirofumi
Carmeli Tamir writes: > Along the FAT FS code, the FAT variant (whether this is FAT12, FAT16 or > FAT32) is > determined by checking the fat_bits field of struct msdos_sb_info. > This is somewhat error prone as it forces the usage of magics (12, 16, 32) > multiple times in the code. > > This ser

[PATCH v3 0/3] fat: Added functions to determine the FAT variant (12/16/32bit)

2018-12-16 Thread Carmeli Tamir
Along the FAT FS code, the FAT variant (whether this is FAT12, FAT16 or FAT32) is determined by checking the fat_bits field of struct msdos_sb_info. This is somewhat error prone as it forces the usage of magics (12, 16, 32) multiple times in the code. This series replaces the places in which the