Blob Blame History Raw
From: Randy Dunlap <rdunlap@infradead.org>
Date: Sat, 18 Nov 2017 17:43:38 -0800
Subject: [PATCH] block: genhd.c: fix message typo
Git-commit: 7fb526212f16fcec4e92121ea86dc28fba493177
Patch-mainline: v4.15-rc2
References: bsc#1104967,FATE#325924

Fix typo in error message.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Acked-by: Hannes Reinecke <hare@suse.com>
---
 block/genhd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/genhd.c b/block/genhd.c
index c143a2274238..96a66f671720 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -1392,7 +1392,7 @@ struct gendisk *__alloc_disk_node(int minors, int node_id)
 
 	if (minors > DISK_MAX_PARTS) {
 		printk(KERN_ERR
-			"block: can't allocated more than %d partitions\n",
+			"block: can't allocate more than %d partitions\n",
 			DISK_MAX_PARTS);
 		minors = DISK_MAX_PARTS;
 	}
-- 
2.16.4