Received: by 2002:a05:6a10:1a4d:0:0:0:0 with SMTP id nk13csp37677pxb; Mon, 31 Jan 2022 14:34:40 -0800 (PST) X-Google-Smtp-Source: ABdhPJwC3934jGkKG0AUjcxyi3vF/xoqtizlE3bCzz30rwkWmPxVkDc/fxgAsOInSbKL7bsvwJYD X-Received: by 2002:a17:907:1b1c:: with SMTP id mp28mr19102939ejc.624.1643668480589; Mon, 31 Jan 2022 14:34:40 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1643668480; cv=none; d=google.com; s=arc-20160816; b=w6T7zRnltCEWVGTPFfgmR9GaoAIsrE2ymxjpCiUb0jy1eLbVoafR2mXEgPhxcaHzoj G7ahH/AUku1DUVaTkUK13FezISeqWOWaTNGeMNtIGv9jOzalLRHXA+1nfZObMcrdO6Ky XvbJwuC5QiRJMSJFQwIwZOuy3k82Oh2aKwct8W0mqIDRrLlZ2hezDTljxNjDpG/CxkJR 24/EKKHDO5bmE5e5FwNfXzH0+QOJHMmKDAj5FRJkMwYs2AyFq9YkhNSGjC3J78CdDEyb DoRcP7tGCyJi7XgHi0wtDWa3fxrfFDEdVAFoBx7L8cZecxrzaltaE3jOM73ugzlRsWIG u76g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=xMoVt9xgHkcV8QIOTP5x0neVqUj8vl0pIaTjqP2kzmM=; b=pqgw0b1nsFM6HXWvbUCAudNUNqHWZBKpmIPKbtf5b9DHSrMr+58a3m4EHilHOqQSTK bnbeP02XYfqLAJfS3B6g5aY4E8dqM5+5fpaqlS7TqKiBTEeop0vNuDxpU2//1HJbRL+t cYTO6EWYZ/qSkzlWf1TEZLGn2JQc7so6CEwGBQRfvUGtrWX02Z3neS/m4S/edWDF/R0t f+z/y+OFe9ARVXvBVHCjDBNlTrYqiwl7ebH+pKfQf8HEkvBuSlCp+9blaD8O3M2FcdW6 +kjB3+bbOhQdk6bgPimaJHTsd0l0cQYFYjyVjQeWJMxlDz0/dtW3Yx8U5+YWaha3i+aX 0tTQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id k20si8592649ejj.714.2022.01.31.14.34.15; Mon, 31 Jan 2022 14:34:40 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352014AbiA2BPD (ORCPT + 99 others); Fri, 28 Jan 2022 20:15:03 -0500 Received: from out30-43.freemail.mail.aliyun.com ([115.124.30.43]:36496 "EHLO out30-43.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229812AbiA2BOy (ORCPT ); Fri, 28 Jan 2022 20:14:54 -0500 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R151e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04407;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=8;SR=0;TI=SMTPD_---0V34G8yp_1643418891; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0V34G8yp_1643418891) by smtp.aliyun-inc.com(127.0.0.1); Sat, 29 Jan 2022 09:14:52 +0800 From: Yang Li To: bhe@redhat.com Cc: vgoyal@redhat.com, dyoung@redhat.com, kexec@lists.infradead.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] proc/vmcore: Fix vmcore_alloc_buf() kernel-doc comment Date: Sat, 29 Jan 2022 09:14:49 +0800 Message-Id: <20220129011449.105278-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix a spelling problem to remove warnings found by running scripts/kernel-doc, which is caused by using 'make W=1'. fs/proc/vmcore.c:492: warning: Function parameter or member 'size' not described in 'vmcore_alloc_buf' fs/proc/vmcore.c:492: warning: Excess function parameter 'sizez' description in 'vmcore_alloc_buf' Reported-by: Abaci Robot Signed-off-by: Yang Li --- fs/proc/vmcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c index edeb01dfe05d..6f1b8ddc6f7a 100644 --- a/fs/proc/vmcore.c +++ b/fs/proc/vmcore.c @@ -480,7 +480,7 @@ static const struct vm_operations_struct vmcore_mmap_ops = { /** * vmcore_alloc_buf - allocate buffer in vmalloc memory - * @sizez: size of buffer + * @size: size of buffer * * If CONFIG_MMU is defined, use vmalloc_user() to allow users to mmap * the buffer to user-space by means of remap_vmalloc_range(). -- 2.20.1.7.g153144c