You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
634 B
23 lines
634 B
![]()
5 years ago
|
tools/dmsetup.c | 6 ++++--
|
||
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/tools/dmsetup.c b/tools/dmsetup.c
|
||
|
index 60e0638..15a09c6 100644
|
||
|
--- a/tools/dmsetup.c
|
||
|
+++ b/tools/dmsetup.c
|
||
|
@@ -941,10 +941,12 @@ static int _display_info_cols(struct dm_task *dmt, struct dm_info *info)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
- /* group report with no groups? */
|
||
|
+ /* Group report with no groups is not an error */
|
||
|
if ((walk_flags == DM_STATS_WALK_GROUP)
|
||
|
- && !dm_stats_get_nr_groups(obj.stats))
|
||
|
+ && !dm_stats_get_nr_groups(obj.stats)) {
|
||
|
+ r = 1;
|
||
|
goto out;
|
||
|
+ }
|
||
|
|
||
|
dm_stats_walk_init(obj.stats, walk_flags);
|
||
|
dm_stats_walk_do(obj.stats) {
|