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 Received: from lists.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 407CDCFB43F for ; Mon, 7 Oct 2024 11:47:07 +0000 (UTC) Received: from [127.0.0.1] (helo=sfs-ml-1.v29.lw.sourceforge.com) by sfs-ml-1.v29.lw.sourceforge.com with esmtp (Exim 4.95) (envelope-from ) id 1sxmCe-0007P4-T4; Mon, 07 Oct 2024 11:47:05 +0000 Received: from [172.30.29.66] (helo=mx.sourceforge.net) by sfs-ml-1.v29.lw.sourceforge.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1sxmCd-0007Ow-6m for linux-f2fs-devel@lists.sourceforge.net; Mon, 07 Oct 2024 11:47:03 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=Content-Transfer-Encoding:MIME-Version:Message-ID: Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: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=xI5pJ0sea7IKzkBw+m/YUJfJHhAPmQx7k7R0WfJFwcY=; b=CX/8bMlYTBlL7shV9FlkEWDO+x uvPm8lJgQyaK+JbfMDk1LOehSQ6ryypL5LKYlyQD8RKaC1pxcfHsLpXmmY5/q1aV4ajBegkeQayej ICTImYNJFnZLQCa/lUpLrDoH2tpQuwY4tUSayc/CVLP1lyvKUB9uQ4f19UjRkZBoLiBM=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=Content-Transfer-Encoding:MIME-Version:Message-ID:Date:Subject:Cc:To:From :Sender:Reply-To:Content-Type: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=xI5pJ0sea7IKzkBw+m/YUJfJHhAPmQx7k7R0WfJFwcY=; b=S Oi/WbZN16X11vlkVI93IGI4QJQpqSxEAdxOvlLnViOJkE5KOoIkOz+L0/f9G8UvirTeoEUSVbhcuL I9x3IIFk8pi420Fu5FVsYqjftXbioq3Y4kdE2EBg0i7A7qLzD5RUJxldVeqt4qf9hDhsMaNNvwoLT YjKcADo+i8LC7gBU=; Received: from out-180.mta0.migadu.com ([91.218.175.180]) by sfi-mx-2.v28.lw.sourceforge.com with esmtps (TLS1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.95) id 1sxmCc-0001cs-C8 for linux-f2fs-devel@lists.sourceforge.net; Mon, 07 Oct 2024 11:47:03 +0000 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1728301610; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xI5pJ0sea7IKzkBw+m/YUJfJHhAPmQx7k7R0WfJFwcY=; b=P1QnB3s1jNHMoJzfQ5QSUUyUVQc0hHQOI9RIyF1XlH59b8CRoMARTdkvC+euwT5MjR+5KF /SLiYYZHuMVNFePzpFb1EI5yF0+46/r5yvzlxWK5gKiXwPH8gQsWICu8Z6YlsPsTCW+Wzr 6+JzbTcKzPO6fmZ/ihPmEr0lkghnUUE= From: Thorsten Blum To: Jaegeuk Kim , Chao Yu Date: Mon, 7 Oct 2024 13:46:37 +0200 Message-ID: <20241007114638.1337-1-thorsten.blum@linux.dev> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-Headers-End: 1sxmCc-0001cs-C8 Subject: [f2fs-dev] [RESEND PATCH] f2fs: Use struct_size() to improve f2fs_acl_clone() X-BeenThere: linux-f2fs-devel@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-kernel@vger.kernel.org, Thorsten Blum , linux-f2fs-devel@lists.sourceforge.net Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-f2fs-devel-bounces@lists.sourceforge.net Use struct_size() to calculate the number of bytes to allocate for a cloned acl. Signed-off-by: Thorsten Blum --- fs/f2fs/acl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c index 8bffdeccdbc3..1fbc0607363b 100644 --- a/fs/f2fs/acl.c +++ b/fs/f2fs/acl.c @@ -296,9 +296,8 @@ static struct posix_acl *f2fs_acl_clone(const struct posix_acl *acl, struct posix_acl *clone = NULL; if (acl) { - int size = sizeof(struct posix_acl) + acl->a_count * - sizeof(struct posix_acl_entry); - clone = kmemdup(acl, size, flags); + clone = kmemdup(acl, struct_size(acl, a_entries, acl->a_count), + flags); if (clone) refcount_set(&clone->a_refcount, 1); } -- 2.46.2 _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-179.mta0.migadu.com (out-179.mta0.migadu.com [91.218.175.179]) (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 C056818A6AD for ; Mon, 7 Oct 2024 11:46:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.179 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728301614; cv=none; b=mkHObswV2yxzc2iaCMewGJiM4Z0uy9HboDBjxIz+te+7jLdpZf8CQWvXjfUjJ13SSCrWbWRm8uzHHXW258WNSxD2g+ORfkvOFyNNBeyeG0oey8fgqKBpJ7M/flp3whMkH/G8RsQhcebsJOJRk8X0JQzcgNvUxZgIrhlO39ClFto= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728301614; c=relaxed/simple; bh=+FgrIbE/YvDLp+WWfmzWSJOntTSQcjxrlHLLvoQZAv0=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=cZEdql9q/pYiG2S3kZgYgyP/FeckX1HPozeeKo5zSDWHE+ptOiV5bvMepzUjCQOpTKa1e+5YHTuvFXN/kPiN2IGgGq4gsjy/WHoao4Q4PJbHp0I6447AB3vc/rvtpmJT7nGgFy5mTDXRlG/1dSsYXV4rDz7eq1nGuxid56iHKTo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=P1QnB3s1; arc=none smtp.client-ip=91.218.175.179 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="P1QnB3s1" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1728301610; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xI5pJ0sea7IKzkBw+m/YUJfJHhAPmQx7k7R0WfJFwcY=; b=P1QnB3s1jNHMoJzfQ5QSUUyUVQc0hHQOI9RIyF1XlH59b8CRoMARTdkvC+euwT5MjR+5KF /SLiYYZHuMVNFePzpFb1EI5yF0+46/r5yvzlxWK5gKiXwPH8gQsWICu8Z6YlsPsTCW+Wzr 6+JzbTcKzPO6fmZ/ihPmEr0lkghnUUE= From: Thorsten Blum To: Jaegeuk Kim , Chao Yu Cc: Thorsten Blum , linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: [RESEND PATCH] f2fs: Use struct_size() to improve f2fs_acl_clone() Date: Mon, 7 Oct 2024 13:46:37 +0200 Message-ID: <20241007114638.1337-1-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Use struct_size() to calculate the number of bytes to allocate for a cloned acl. Signed-off-by: Thorsten Blum --- fs/f2fs/acl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c index 8bffdeccdbc3..1fbc0607363b 100644 --- a/fs/f2fs/acl.c +++ b/fs/f2fs/acl.c @@ -296,9 +296,8 @@ static struct posix_acl *f2fs_acl_clone(const struct posix_acl *acl, struct posix_acl *clone = NULL; if (acl) { - int size = sizeof(struct posix_acl) + acl->a_count * - sizeof(struct posix_acl_entry); - clone = kmemdup(acl, size, flags); + clone = kmemdup(acl, struct_size(acl, a_entries, acl->a_count), + flags); if (clone) refcount_set(&clone->a_refcount, 1); } -- 2.46.2