From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DDA961BDEC; Mon, 15 Jan 2024 23:26:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LpnOxmdY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 84802C43399; Mon, 15 Jan 2024 23:26:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1705361176; bh=fX2Z+o1ROV5wMcL/txt8N6Dwd1S7nNyfxL5JKs4aazM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LpnOxmdY3C9Pgvcgtnt/NvFINfWCO/piOdaiTqtnm1YdIBN4/6UOgKZfnT5yiQA+k 0tvvMlY1wvgtvSgBos8ol/DiNW7kEmWuHkXH6TVJHHisyhzioN+XAm+fd4RTUA/PZz 1GekioqnBjp9UVh6kV+s07rxi+RU3haqsQ66/tpYECXgkDJwZPkxyPg/QAJdJeROGi uuzEPQSzb4TGMGEEDH9M/bkqVOgRbUFGR9tLR9FRbizuJwHT2cqT3AiF72VfJbpDP4 NWB8/BfvgF/Nv/FpFICVTVfzwdrQK+KxVXg+Q7sxRejMDELer84vY2Fsz6zMc/OOIj D/LLxxw1hKFcw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Dmitry Antipov , Christian Brauner , Sasha Levin , dhowells@redhat.com, nick.alcock@oracle.com, keescook@chromium.org, ddiss@suse.de, pstanner@redhat.com, code@siddh.me Subject: [PATCH AUTOSEL 6.1 02/14] watch_queue: fix kcalloc() arguments order Date: Mon, 15 Jan 2024 18:25:36 -0500 Message-ID: <20240115232611.209265-2-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240115232611.209265-1-sashal@kernel.org> References: <20240115232611.209265-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.1.73 Content-Transfer-Encoding: 8bit From: Dmitry Antipov [ Upstream commit 1bfc466b13cf6652ba227c282c27a30ffede69a5 ] When compiling with gcc version 14.0.0 20231220 (experimental) and W=1, I've noticed the following warning: kernel/watch_queue.c: In function 'watch_queue_set_size': kernel/watch_queue.c:273:32: warning: 'kcalloc' sizes specified with 'sizeof' in the earlier argument and not in the later argument [-Wcalloc-transposed-args] 273 | pages = kcalloc(sizeof(struct page *), nr_pages, GFP_KERNEL); | ^~~~~~ Since 'n' and 'size' arguments of 'kcalloc()' are multiplied to calculate the final size, their actual order doesn't affect the result and so this is not a bug. But it's still worth to fix it. Signed-off-by: Dmitry Antipov Link: https://lore.kernel.org/r/20231221090139.12579-1-dmantipov@yandex.ru Signed-off-by: Christian Brauner Signed-off-by: Sasha Levin --- kernel/watch_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/watch_queue.c b/kernel/watch_queue.c index 442bb92212f2..9bdcfdef0509 100644 --- a/kernel/watch_queue.c +++ b/kernel/watch_queue.c @@ -271,7 +271,7 @@ long watch_queue_set_size(struct pipe_inode_info *pipe, unsigned int nr_notes) goto error; ret = -ENOMEM; - pages = kcalloc(sizeof(struct page *), nr_pages, GFP_KERNEL); + pages = kcalloc(nr_pages, sizeof(struct page *), GFP_KERNEL); if (!pages) goto error; -- 2.43.0