On 2020-02-20 04:05, Ming Lei wrote: > submit_bio(bio); > - wait_for_completion_io(&done); > + > + /* Prevent hang_check timer from firing at us during very long I/O */ > + hang_check = sysctl_hung_task_timeout_secs; > + if (hang_check) > + while (!wait_for_completion_io_timeout(&done, hang_check * (HZ/2))); > + else > + wait_for_completion_io(&done); > > return blk_status_to_errno(bio->bi_status); > } Please make this patch compliant with the kernel coding style. Checkpatch reports the following about the above patch: WARNING: line over 80 characters #152: FILE: block/bio.c:1032: + while (!wait_for_completion_io_timeout(&done, hang_check * (HZ/2))); ERROR: trailing statements should be on next line #152: FILE: block/bio.c:1032: + while (!wait_for_completion_io_timeout(&done, hang_check * (HZ/2))); Thanks, Bart.