diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 77e28f77c59f..d4cebb38709b 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c @@ -3080,6 +3080,11 @@ static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn, goto out; ti = dm_table_get_target(table, 0); + if (dm_suspended_md(md)) { + ret = -EAGAIN; + goto out; + } + ret = -EINVAL; if (!ti->type->iterate_devices) goto out;