All of lore.kernel.org
 help / color / mirror / Atom feed
* main - remove unused variables
@ 2022-09-27 20:46 David Teigland
  0 siblings, 0 replies; only message in thread
From: David Teigland @ 2022-09-27 20:46 UTC (permalink / raw)
  To: lvm-devel

Gitweb:        https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=7f1ef25b46cc96a2f8dce5beac57362370274261
Commit:        7f1ef25b46cc96a2f8dce5beac57362370274261
Parent:        50281e5710dd8cb50208614066ca52ac4574eda6
Author:        David Teigland <teigland@redhat.com>
AuthorDate:    Tue Sep 27 15:40:39 2022 -0500
Committer:     David Teigland <teigland@redhat.com>
CommitterDate: Tue Sep 27 15:42:18 2022 -0500

remove unused variables

---
 lib/device/dev-type.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/lib/device/dev-type.c b/lib/device/dev-type.c
index eb9e169bb..bb8925483 100644
--- a/lib/device/dev-type.c
+++ b/lib/device/dev-type.c
@@ -893,7 +893,6 @@ int fs_get_blkid(const char *pathname, struct fs_info *fsi)
 	size_t len;
 	uint64_t fslastblock = 0;
 	unsigned int fsblocksize = 0;
-	int no_block_size = 0, no_fslastblock = 0, no_fsblocksize = 0;
 	int rc;
 
 	if (!(probe = blkid_new_probe_from_filename(pathname))) {
@@ -933,18 +932,12 @@ int fs_get_blkid(const char *pathname, struct fs_info *fsi)
 
 	if (!blkid_probe_lookup_value(probe, "BLOCK_SIZE", &str, &len) && len)
 		fsi->fs_block_size_bytes = atoi(str);
-	else
-		no_block_size = 1;
 
 	if (!blkid_probe_lookup_value(probe, "FSLASTBLOCK", &str, &len) && len)
 		fslastblock = strtoull(str, NULL, 0);
-	else
-		no_fslastblock = 1;
 
 	if (!blkid_probe_lookup_value(probe, "FSBLOCKSIZE", &str, &len) && len)
 		fsblocksize = (unsigned int)atoi(str);
-	else
-		no_fsblocksize = 1;
 
 	blkid_free_probe(probe);
 


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-27 20:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27 20:46 main - remove unused variables David Teigland

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.