resize2fs 후 LUKS/ext4 매핑된 드라이브 섹터 번호 불일치

resize2fs 후 LUKS/ext4 매핑된 드라이브 섹터 번호 불일치

e2resize를 사용하고 luks 컨테이너 내부에서 ext4 fs를 다시 파티션한 후 몇 가지 이상한 결과가 나타났습니다.

# e2fsck /dev/mapper/a 
e2fsck 1.44.1 (24-Mar-2018)
The filesystem size (according to the superblock) is 356487715 blocks
The physical size of the device is 356487205 blocks
Either the superblock or the partition table is likely to be corrupt!
Abort<y>? yes

# fdisk -l /dev/sdc
Disk /dev/sdc: 2.7 TiB, 3000558944256 bytes, 732558336 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0xe520dd91

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sdc1             256 356487972 356487717  1.3T 83 Linux


Disk /dev/mapper/a: 1.3 TiB, 1460171591680 bytes, 356487205 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes

파일 시스템 크기를 다시 조정해도 작동하지 않습니다.

# e2fsck -f /dev/mapper/a 
e2fsck 1.44.1 (24-Mar-2018)
The filesystem size (according to the superblock) is 356487715 blocks
The physical size of the device is 356487205 blocks
Either the superblock or the partition table is likely to be corrupt!
Abort<y>? no
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/mapper/a: 145786/89128960 files (4.8% non-contiguous), 354794507/356487715 blocks

# resize2fs /dev/mapper/a 
resize2fs 1.44.1 (24-Mar-2018)
Resizing the filesystem on /dev/mapper/a to 356487205 (4k) blocks.
resize2fs: Attempt to read block from filesystem resulted in short read while trying to resize /dev/mapper/a
Please run 'e2fsck -fy /dev/mapper/a' to fix the filesystem
after the aborted resize operation.

어떻게 든 매핑된 드라이브의 섹터 수가 이제 파일 시스템의 섹터 수보다 적습니까? 차이점은조금만2MB(2MB가 luks 헤더의 크기인 것 같은데요?)

현재 상황은 fs를 마운트할 수 없다는 것입니다. 하지만 e2fsck를 사용하면 오류가 보고되지 않습니다.

그렇다면 이 길이는 어디에 설정되어 있나요? 어떻게든 "올바른" 값으로 변경할 수 있나요?

관련 정보