From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9DB79C43617 for ; Thu, 1 Apr 2021 18:10:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 801FE61155 for ; Thu, 1 Apr 2021 18:10:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238854AbhDASKP (ORCPT ); Thu, 1 Apr 2021 14:10:15 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:15458 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236663AbhDARzF (ORCPT ); Thu, 1 Apr 2021 13:55:05 -0400 Received: from DGGEMS401-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4FB3P96W1NzqSQh; Thu, 1 Apr 2021 21:07:09 +0800 (CST) Received: from localhost.localdomain (10.175.104.82) by DGGEMS401-HUB.china.huawei.com (10.3.19.201) with Microsoft SMTP Server id 14.3.498.0; Thu, 1 Apr 2021 21:09:05 +0800 From: Qiheng Lin To: Andrew Morton CC: , , Qiheng Lin Subject: [PATCH -next] mm/vmalloc: Fix non-conforming function headers Date: Thu, 1 Apr 2021 21:22:48 +0800 Message-ID: <20210401132248.396947-1-linqiheng@huawei.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.104.82] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix the following W=1 kernel build warning(s): mm/vmalloc.c:425: warning: expecting prototype for vunmap_range_noflush(). Prototype was for vunmap_range() instead Signed-off-by: Qiheng Lin --- mm/vmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 8b564f91a610..4238e407eb2d 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -413,7 +413,7 @@ void vunmap_range_noflush(unsigned long start, unsigned long end) } /** - * vunmap_range_noflush - unmap kernel virtual addresses + * vunmap_range - unmap kernel virtual addresses * @addr: start of the VM area to unmap * @end: end of the VM area to unmap (non-inclusive) * -- 2.25.1