[PATCH] block: fix argument order for capacity change info print

From: Klaus Jensen
Date: Fri Feb 26 2021 - 02:17:24 EST


From: Klaus Jensen <k.jensen@xxxxxxxxxxx>

Swap "before" and "after" capacities in the info print in
set_capacity_and_notify.

Signed-off-by: Klaus Jensen <k.jensen@xxxxxxxxxxx>
---
block/genhd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/genhd.c b/block/genhd.c
index 304f8dcc9a9b..de8ecc402f69 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -73,7 +73,7 @@ bool set_capacity_and_notify(struct gendisk *disk, sector_t size)
return false;

pr_info("%s: detected capacity change from %lld to %lld\n",
- disk->disk_name, size, capacity);
+ disk->disk_name, capacity, size);

/*
* Historically we did not send a uevent for changes to/from an empty
--
2.30.1