mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
Fixes subtle bug in zio_handle_io_delay()
Fixed bug introduced in commit #c35b1882. Hinted by gcc: zio_inject.c: In function ‘zio_handle_io_delay’: zio_inject.c:382:3: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] if (handler->zi_record.zi_freq != 0 && ^~ zio_inject.c:384:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’ continue; ^~~~~~~~ Signed-off-by: Marcel Huber <marcelhuberfoo@gmail.com> Signed-off-by: Chunwei Chen <tuxoko@gmail.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #4632
This commit is contained in:
parent
ebecfcd699
commit
2587cd8f93
@ -380,8 +380,9 @@ zio_handle_io_delay(zio_t *zio)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (handler->zi_record.zi_freq != 0 &&
|
if (handler->zi_record.zi_freq != 0 &&
|
||||||
spa_get_random(100) >= handler->zi_record.zi_freq);
|
spa_get_random(100) >= handler->zi_record.zi_freq) {
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (vd->vdev_guid == handler->zi_record.zi_guid) {
|
if (vd->vdev_guid == handler->zi_record.zi_guid) {
|
||||||
seconds = handler->zi_record.zi_timer;
|
seconds = handler->zi_record.zi_timer;
|
||||||
|
Loading…
Reference in New Issue
Block a user