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=-5.0 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 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 F1DC1C10F14 for ; Tue, 8 Oct 2019 20:36:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BBF3C218AC for ; Tue, 8 Oct 2019 20:36:12 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="qe0vhPeT" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730916AbfJHUgM (ORCPT ); Tue, 8 Oct 2019 16:36:12 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:52962 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727835AbfJHUgM (ORCPT ); Tue, 8 Oct 2019 16:36:12 -0400 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:Cc:To:Sender:Reply-To: 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=ZlXOPDGdWnZCwluNug0aJjYzAAN0QvHnKg8apMogRTM=; b=qe0vhPeTm79VWLdgH1qc7EyET QeoJeGO+azpsOEToTKQ765YKA9PRyC1FLbVcW1iKm3HLABHpMNgCxnWUf4qHnw7yX9PRy/NTm5IXW L2tyDC+QHicCpOov5Fa+0mkJGPpAavmFEjZ0IXBjC7MkcBjakXNlc1L18bxfwfaiGaa7OXPB7xwqg I4bQgshhhydsVMDfu06dkErEAK+0m8rfIp3FhB/FS2zMjWdMgyuP+/ckQGrPnuJkHdsGvuseH/u4R XHZZzwEa829ON0UgF28nua88UanfMfdAvMS/jnpTSgzOYV6q9f/qOm1QhqGR7ECKSdqZhRk8gD+Da GC+ldgoYQ==; Received: from [2601:1c0:6280:3f0::9ef4] by bombadil.infradead.org with esmtpsa (Exim 4.92.2 #3 (Red Hat Linux)) id 1iHwDJ-00023z-7M; Tue, 08 Oct 2019 20:36:10 +0000 To: Linux FS Devel , Al Viro Cc: Andrew Morton , Tejun Heo , Jens Axboe From: Randy Dunlap Subject: [PATCH] fs: fs-writeback.c: fix kernel-doc warning Message-ID: <756645ac-0ce8-d47e-d30a-04d9e4923a4f@infradead.org> Date: Tue, 8 Oct 2019 13:36:08 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: Randy Dunlap Fix kernel-doc warning in fs/fs-writeback.c: ../fs/fs-writeback.c:913: warning: Excess function parameter 'nr_pages' description in 'cgroup_writeback_by_id' Fixes: d62241c7a406 ("writeback, memcg: Implement cgroup_writeback_by_id()") Signed-off-by: Randy Dunlap Cc: Tejun Heo Cc: Jens Axboe --- fs/fs-writeback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20191008.orig/fs/fs-writeback.c +++ linux-next-20191008/fs/fs-writeback.c @@ -905,7 +905,7 @@ restart: * cgroup_writeback_by_id - initiate cgroup writeback from bdi and memcg IDs * @bdi_id: target bdi id * @memcg_id: target memcg css id - * @nr_pages: number of pages to write, 0 for best-effort dirty flushing + * @nr: number of pages to write, 0 for best-effort dirty flushing * @reason: reason why some writeback work initiated * @done: target wb_completion *