Re: [PATCH 1/2 v3] exfat: write multiple sectors at once

2020-06-18 Thread Christoph Hellwig
> + for (i = 0; i < es->num_bh; i++) > + err ? bforget(es->bh[i]):brelse(es->bh[i]); Please use a good old if / else instead of obsfucating the code. Also even without that this seems to be missing a few whitespaces.

[PATCH 1/2 v3] exfat: write multiple sectors at once

2020-06-17 Thread Tetsuhiro Kohada
Write multiple sectors at once when updating dir-entries. Add exfat_update_bhs() for that. It wait for write completion once instead of sector by sector. It's only effective if sync enabled. Signed-off-by: Tetsuhiro Kohada --- Changes in v2: - Split into 'write multiple sectors at once' and '