Received: by 10.192.165.148 with SMTP id m20csp2584796imm; Sun, 6 May 2018 19:16:25 -0700 (PDT) X-Google-Smtp-Source: AB8JxZpAi5T/lBcnEUDUygSbn3OlmU3OcM8YOdrHgBUZi2aVDBJps8A8XqH5DLR52+Nn6kExutT+ X-Received: by 10.98.233.3 with SMTP id j3mr2883558pfh.196.1525659385561; Sun, 06 May 2018 19:16:25 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1525659385; cv=none; d=google.com; s=arc-20160816; b=Lzj1Wd6DGwe+AutggFl0KjxexdhmKHTjT5w/rMOwgDERcg9lKXaiKxY/K0G2ncSJCA KD6Msspw6AnAaVYY5wjKngWU3qKNiX+8LMo3MACpN4hFcYYJo3Nv/bNEzznCyyG59e1Z 9O0yKSN+M4tUIPWoLe6vkDUaR9akRYQOQm0QK3BRquVYbUxdDriRpLlKS3v9SS2PZmsp DwfR6lhFwzm4cV+/Gh/AnN4KkAGLSP21021PrpMp19g++ckjc6MvoxqDmilpaAQmeSwJ CW4LtGxt7mjCQcGbiuxSfNgnIDRCFQK+JYtp3GxlCLpCHOqHN2tSZYpIMnrpcr10fjTx 93Xg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:arc-authentication-results; bh=UoW/sD/vlvrWNratxNpfv4aIU3WtFghvXJT0/nSDlHM=; b=b2NQzGS2jN5OHLH5kzntsf5VQSCCBZEKq9e5KfhHKEiJlbuCGBiNhunYU7Ubn4JzZn uOWblzjOIoXxjh37dYDzqKoIWAn2QtU+/1/LtXEsFfe82lAc2Rv/n32G2VDJppKYOT9X 5khJ1fAdjoeo+fojRL4kwkQwGgQCyyzjIjCVSFFH7aBEQTsXPTKLZe9nsY+QZ+LryzC1 0t3yAeUr8keSNMiyve1jQd3/JYXFr2Qyf/GS+Dz+OyEOhuCGEEUEstWDC9UqodCKsXHQ YE1Ia8qlb7nQsrnCvSm6uJsh5Po9YM1VUgyDlEErvUlABwWar+16h0lnlAzNRR7qY+4A eiTA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i65si22698574pfb.343.2018.05.06.19.16.08; Sun, 06 May 2018 19:16:25 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751890AbeEGCP5 (ORCPT + 99 others); Sun, 6 May 2018 22:15:57 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:60198 "EHLO huawei.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751831AbeEGCPy (ORCPT ); Sun, 6 May 2018 22:15:54 -0400 Received: from DGGEMS406-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 0CDE894FB7D52; Mon, 7 May 2018 10:15:51 +0800 (CST) Received: from huawei.com (10.113.189.234) by DGGEMS406-HUB.china.huawei.com (10.3.19.206) with Microsoft SMTP Server id 14.3.361.1; Mon, 7 May 2018 10:15:43 +0800 From: Yunlong Song To: , , , , CC: , , , , , Subject: [PATCH v2] f2fs-tools: fix to match with the start_sector Date: Mon, 7 May 2018 10:15:36 +0800 Message-ID: <1525659336-145433-1-git-send-email-yunlong.song@huawei.com> X-Mailer: git-send-email 1.8.5.2 In-Reply-To: <1525425645-127945-1-git-send-email-yunlong.song@huawei.com> References: <1525425645-127945-1-git-send-email-yunlong.song@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.113.189.234] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org f2fs-tools uses ioctl BLKSSZGET to get sector_size, however, this ioctl will return a value which may be larger than 512 (according to the value of q->limits.logical_block_size), then this will be inconsistent with the start_sector, since start_sector is got from ioctl HDIO_GETGEO and is always in 512 size unit for a sector. To fix this problem, just change the sector_size to the default value when computing with start_sector. And fix sectors_per_blk as well. Signed-off-by: Yunlong Song --- fsck/resize.c | 4 ++-- mkfs/f2fs_format.c | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/fsck/resize.c b/fsck/resize.c index d285dd7..ada2155 100644 --- a/fsck/resize.c +++ b/fsck/resize.c @@ -27,10 +27,10 @@ static int get_new_sb(struct f2fs_super_block *sb) zone_size_bytes = segment_size_bytes * segs_per_zone; zone_align_start_offset = - (c.start_sector * c.sector_size + + (c.start_sector * DEFAULT_SECTOR_SIZE + 2 * F2FS_BLKSIZE + zone_size_bytes - 1) / zone_size_bytes * zone_size_bytes - - c.start_sector * c.sector_size; + c.start_sector * DEFAULT_SECTOR_SIZE; set_sb(segment_count, (c.target_sectors * c.sector_size - zone_align_start_offset) / segment_size_bytes / diff --git a/mkfs/f2fs_format.c b/mkfs/f2fs_format.c index 0a99a77..ced5fea 100644 --- a/mkfs/f2fs_format.c +++ b/mkfs/f2fs_format.c @@ -212,18 +212,18 @@ static int f2fs_prepare_super_block(void) set_sb(block_count, c.total_sectors >> log_sectors_per_block); zone_align_start_offset = - (c.start_sector * c.sector_size + + (c.start_sector * DEFAULT_SECTOR_SIZE + 2 * F2FS_BLKSIZE + zone_size_bytes - 1) / zone_size_bytes * zone_size_bytes - - c.start_sector * c.sector_size; + c.start_sector * DEFAULT_SECTOR_SIZE; - if (c.start_sector % c.sectors_per_blk) { + if (c.start_sector % DEFAULT_SECTORS_PER_BLOCK) { MSG(1, "\t%s: Align start sector number to the page unit\n", c.zoned_mode ? "FAIL" : "WARN"); MSG(1, "\ti.e., start sector: %d, ofs:%d (sects/page: %d)\n", c.start_sector, - c.start_sector % c.sectors_per_blk, - c.sectors_per_blk); + c.start_sector % DEFAULT_SECTORS_PER_BLOCK, + DEFAULT_SECTORS_PER_BLOCK); if (c.zoned_mode) return -1; } @@ -235,7 +235,7 @@ static int f2fs_prepare_super_block(void) get_sb(segment0_blkaddr)); if (c.zoned_mode && (get_sb(segment0_blkaddr) + c.start_sector / - c.sectors_per_blk) % c.zone_blocks) { + DEFAULT_SECTORS_PER_BLOCK) % c.zone_blocks) { MSG(1, "\tError: Unaligned segment0 block address %u\n", get_sb(segment0_blkaddr)); return -1; -- 1.8.5.2