Hi all,
I have partitioned a 500GB nvme drive and fromatted it’s partition with XFS :
type or pcapella{~}# fdisk /dev/nvme1n1 -l
Disk /dev/nvme1n1: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk model: CT500P3PSSD8
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xfebfcd6e
Device Boot Start End Sectors Size Id Type
/dev/nvme1n1p1 2048 976773167 976771120 465.8G 83 Linux
capella{~}# mkfs.xfs -f /dev/nvme1n1p1
meta-data=/dev/nvme1n1p1 isize=512 agcount=16, agsize=7631024 blks
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=1, sparse=1, rmapbt=1
= reflink=1 bigtime=1 inobtcount=1 nrext64=1
= exchange=0
data = bsize=4096 blocks=122096384, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0, ftype=1, parent=0
log =internal log bsize=4096 blocks=59617, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
Discarding blocks...Done.
However when I come to mount it I get the following error :
capella{~}# mount /dev/nvme1n1p1 /mnt
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/nvme1n1p1, missing codepage or helper program, or other error.
dmesg(1) may have more information after failed mount system call.
dmesg errors :
type or paste code here[21597.116432] [ T18197] XFS (nvme1n1p1): Superblock has unknown incompatible features (0x20) enabled.
[21597.116438] [ T18197] XFS (nvme1n1p1): Filesystem cannot be safely mounted by this kernel.
[21597.116443] [ T23018] XFS (nvme1n1p1): SB validate failed with error -22.
[21884.084366] [ T1442] nvme1n1: p1
[22044.325811] [ T18197] XFS (nvme1n1p1): Superblock has unknown incompatible features (0x20) enabled.
[22044.325817] [ T18197] XFS (nvme1n1p1): Filesystem cannot be safely mounted by this kernel.
[22044.325821] [ T24621] XFS (nvme1n1p1): SB validate failed with error -22.
As a test I just tried making the filesystem with mkfs.ext4 and it makes and mounts without problems so pretty sure the drive is OK.
Machine is running latest tumbleweed (did a zypper dup earlier today).
Any idea what is wrong?
Cheers.
Phill.