From patchwork Sun Nov 19 01:43:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10064975 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id A24BF6023A for ; Sun, 19 Nov 2017 01:43:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 852A329575 for ; Sun, 19 Nov 2017 01:43:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6622C29577; Sun, 19 Nov 2017 01:43:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D26A929575 for ; Sun, 19 Nov 2017 01:43:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750764AbdKSBnk (ORCPT ); Sat, 18 Nov 2017 20:43:40 -0500 Received: from bombadil.infradead.org ([65.50.211.133]:40141 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750732AbdKSBnj (ORCPT ); Sat, 18 Nov 2017 20:43:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:To:Sender:Reply-To:Cc: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=iuri1v9n7gd061uZ8CG9abj9FFypJxmsWKPB2yBQbHk=; b=OePUel3J/jP3v4etYkYQi3vpa QH+XEyH1u87sYq9IP0JpoAPMPzNprPhl9yLrT3nlplsBP7HOEowuTBxopvnz5L6h8gO4UWU5xdkZj vqm1b51K2wXkz5yGfEaXt2CnkwQ3y9KkLViVFV0EfHTnhtHPAys2bhOxbkvtgarW7IJQs1pA3dVhG f/gytntmWxyAuHeBZ4b7q+e7rY2YPbFtu4fpOXWzkBCOw1L7GvEnOqe7pYKfFfE2eLCdg95B/yEPi VHvwZ1DvEf9DbWOnUbB0vr5ane1RCLL5HRDoBl23J8PmkyJtW3x14rjM7w7SA0TZKJqDIGrir3rew HDhyhQoeA==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlap) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1eGEe3-00015P-3u; Sun, 19 Nov 2017 01:43:39 +0000 To: linux-block@vger.kernel.org, axboe From: Randy Dunlap Subject: [PATCH] block: genhd.c: fix message typo Message-ID: <68b919d0-870f-feb4-d92f-03ae3ed77dce@infradead.org> Date: Sat, 18 Nov 2017 17:43:38 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix typo in error message. Signed-off-by: Randy Dunlap --- block/genhd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-414.orig/block/genhd.c +++ lnx-414/block/genhd.c @@ -1367,7 +1367,7 @@ struct gendisk *alloc_disk_node(int mino 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; }