On Fri, 2017-09-01 at 20:36 +0900, Damien Le Moal wrote: > Introduce sd_zbc.h for zbc related declarations (avoid cluttering sd.h). > > Fix comments style in sd_zbc.c (do not use documentation format) and > add/fix comments to enhance explanations. Also remove a useless blank > line in sd_zbc_read_zones(). > > Rearrange sd_zbc_setup() to include use_16_for_rw and use_10_for_rw > assignment and simplify nr_zones calculation. > > Finally, use the min() macro sd_zbc_check_zone_size() to get a report > zone reply size instead of the open coded version. Hello Damien, Should this patch perhaps be split into multiple patches to make review easier? > +static inline void sd_zbc_remove(struct scsi_disk *sdkp) {} Please use the same coding style as in other Linux kernel header files, namely '{' and '}' both at the start of a line. See e.g. include/linux/sysfs.h. Thanks, Bart.