Message ID | 20240425233517.2125142-4-bmarzins@redhat.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Delegated to: | christophe varoqui |
Headers | show |
Series | multipath: fix hang in flush_map_nopaths | expand |
diff --git a/libmultipath/hwtable.c b/libmultipath/hwtable.c index ce600030..51b15eab 100644 --- a/libmultipath/hwtable.c +++ b/libmultipath/hwtable.c @@ -1160,7 +1160,6 @@ static struct hwentry default_hw[] = { .no_path_retry = NO_PATH_RETRY_FAIL, .minio = 1, .minio_rq = 1, - .flush_on_last_del = FLUSH_ALWAYS, .fast_io_fail = 15, }, /*
The InfiniBox config already sets no_path_retry to "fail", so it won't ever queue IO. That means setting flush_on_last_del to "always" is redundant, since queueing is always disabled. Remove the flush_on_last_del parameter, to make it easier for users to override the default behavior if desired. Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com> --- libmultipath/hwtable.c | 1 - 1 file changed, 1 deletion(-)