From: David Teigland <teigland@sourceware.org>
To: lvm-devel@redhat.com
Subject: master - improve get_fs_block_size string to number
Date: Thu, 11 Jun 2020 20:06:40 +0000 (GMT) [thread overview]
Message-ID: <20200611200640.79947386F442@sourceware.org> (raw)
Gitweb: https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=8e2938c963bb8226b72297647bef89895e5ae548
Commit: 8e2938c963bb8226b72297647bef89895e5ae548
Parent: 9f38e95a2f84f148dae1a8ec440adc29eb12d513
Author: David Teigland <teigland@redhat.com>
AuthorDate: Thu Jun 11 15:05:47 2020 -0500
Committer: David Teigland <teigland@redhat.com>
CommitterDate: Thu Jun 11 15:05:47 2020 -0500
improve get_fs_block_size string to number
---
lib/device/dev-type.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/lib/device/dev-type.c b/lib/device/dev-type.c
index e3fa9babb..896821de8 100644
--- a/lib/device/dev-type.c
+++ b/lib/device/dev-type.c
@@ -650,11 +650,9 @@ out:
int get_fs_block_size(struct device *dev, uint32_t *fs_block_size)
{
char *block_size_str = NULL;
- uint64_t block_size_val;
if ((block_size_str = blkid_get_tag_value(NULL, "BLOCK_SIZE", dev_name(dev)))) {
- block_size_val = strtoull(block_size_str, NULL, 10);
- *fs_block_size = (uint32_t)block_size_val;
+ *fs_block_size = (uint32_t)atoi(block_size_str);
free(block_size_str);
log_debug("Found blkid BLOCK_SIZE %u for fs on %s", *fs_block_size, dev_name(dev));
return 1;
reply other threads:[~2020-06-11 20:06 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20200611200640.79947386F442@sourceware.org \
--to=teigland@sourceware.org \
--cc=lvm-devel@redhat.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.