public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Bill O'Donnell <bodonnel@redhat.com>
To: linux-xfs@vger.kernel.org
Cc: cmaiolino@redhat.com, Bill O'Donnell <bodonnel@redhat.com>
Subject: [PATCH 1/4] mkfs.xfs: avoid potential overflowing expression in xfs_mkfs.c
Date: Thu, 13 Jun 2024 13:07:05 -0500	[thread overview]
Message-ID: <20240613181745.1052423-2-bodonnel@redhat.com> (raw)
In-Reply-To: <20240613181745.1052423-1-bodonnel@redhat.com>

Cast max_tx_bytes to uint64_t to avoid overflowing expression in
calc_concurrency_logblocks().

Coverity-id: 1596603

Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
---
 mkfs/xfs_mkfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index f4a9bf20..2f801dd4 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -3678,7 +3678,7 @@ calc_concurrency_logblocks(
 	 * without blocking for space.  Increase the figure by 50% so that
 	 * background threads can also run.
 	 */
-	log_bytes = max_tx_bytes * 3 * cli->log_concurrency / 2;
+	log_bytes = (uint64_t)max_tx_bytes * 3 * cli->log_concurrency / 2;
 	new_logblocks = min(XFS_MAX_LOG_BYTES >> cfg->blocklog,
 				log_bytes >> cfg->blocklog);
 
-- 
2.45.2


  reply	other threads:[~2024-06-13 18:18 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-13 18:07 [PATCH 0/4] xfsprogs: coverity fixes Bill O'Donnell
2024-06-13 18:07 ` Bill O'Donnell [this message]
2024-06-13 18:35   ` [PATCH 1/4] mkfs.xfs: avoid potential overflowing expression in xfs_mkfs.c Christoph Hellwig
2024-06-13 18:07 ` [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels Bill O'Donnell
2024-06-13 18:36   ` Christoph Hellwig
2024-06-13 18:58     ` Bill O'Donnell
2024-06-13 18:07 ` [PATCH 3/4] xfs_fsr: correct type in fsrprintf() call Bill O'Donnell
2024-06-13 18:37   ` Christoph Hellwig
2024-06-13 18:07 ` [PATCH 4/4] xfs_repair: correct type of variable global_msgs.interval to time_t Bill O'Donnell
2024-06-13 18:38   ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240613181745.1052423-2-bodonnel@redhat.com \
    --to=bodonnel@redhat.com \
    --cc=cmaiolino@redhat.com \
    --cc=linux-xfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox