From: Kaixu Xia Date: Tue, 26 May 2020 18:42:30 +0000 (-0400) Subject: mkfs: simplify the configured sector sizes setting in validate_sectorsize X-Git-Tag: xfsprogs-5.7-fixes_2020-06-25~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f9ee751f2ca7e8635ac71ceee3eb78377305e05;p=thirdparty%2Fxfsprogs-dev.git mkfs: simplify the configured sector sizes setting in validate_sectorsize There are two places that set the configured sector sizes in validate_sectorsize, actually we can simplify them and combine into one if statement. Use the default value structure to set the topology sectors when probing fails. Signed-off-by: Kaixu Xia Reviewed-by: Eric Sandeen Signed-off-by: Eric Sandeen --- diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c index 4aa7563f9..2e6cd280e 100644 --- a/mkfs/xfs_mkfs.c +++ b/mkfs/xfs_mkfs.c @@ -1696,14 +1696,6 @@ validate_sectorsize( int dry_run, int force_overwrite) { - /* set configured sector sizes in preparation for checks */ - if (!cli->sectorsize) { - cfg->sectorsize = dft->sectorsize; - } else { - cfg->sectorsize = cli->sectorsize; - } - cfg->sectorlog = libxfs_highbit32(cfg->sectorsize); - /* * Before anything else, verify that we are correctly operating on * files or block devices and set the control parameters correctly. @@ -1730,6 +1722,7 @@ validate_sectorsize( memset(ft, 0, sizeof(*ft)); get_topology(cli->xi, ft, force_overwrite); + /* set configured sector sizes in preparation for checks */ if (!cli->sectorsize) { /* * Unless specified manually on the command line use the @@ -1741,9 +1734,8 @@ validate_sectorsize( * Set the topology sectors if they were not probed to the * minimum supported sector size. */ - if (!ft->lsectorsize) - ft->lsectorsize = XFS_MIN_SECTORSIZE; + ft->lsectorsize = dft->sectorsize; /* Older kernels may not have physical/logical distinction */ if (!ft->psectorsize) @@ -1759,9 +1751,10 @@ _("specified blocksize %d is less than device physical sector size %d\n" ft->lsectorsize); cfg->sectorsize = ft->lsectorsize; } + } else + cfg->sectorsize = cli->sectorsize; - cfg->sectorlog = libxfs_highbit32(cfg->sectorsize); - } + cfg->sectorlog = libxfs_highbit32(cfg->sectorsize); /* validate specified/probed sector size */ if (cfg->sectorsize < XFS_MIN_SECTORSIZE ||