Message ID | 901a579d-f43a-157a-72df-6725cd391599@sandeen.net (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | xfsprogs: nrext64 option should be in [inode] section of mkfs conf files | expand |
On Thu, Apr 20, 2023 at 09:01:01 AM -0500, Eric Sandeen wrote: > nrext64 is an inode (-i) section option, not a metadata (-m) section option. > > Reported-by: Marcos Mello <marcosfrm@gmail.com> > Fixes: 69e7272213 ("mkfs: Add option to create filesystem with large extent counters") > Signed-off-by: Eric Sandeen <sandeen@redhat.com> Thanks for fixing this. Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
diff --git a/mkfs/lts_4.19.conf b/mkfs/lts_4.19.conf index 751be45e..8b2bdd7a 100644 --- a/mkfs/lts_4.19.conf +++ b/mkfs/lts_4.19.conf @@ -2,7 +2,6 @@ # kernel was released at the end of 2018. [metadata] -nrext64=0 bigtime=0 crc=1 finobt=1 @@ -12,3 +11,4 @@ rmapbt=0 [inode] sparse=1 +nrext64=0 diff --git a/mkfs/lts_5.10.conf b/mkfs/lts_5.10.conf index a1c991ce..40189310 100644 --- a/mkfs/lts_5.10.conf +++ b/mkfs/lts_5.10.conf @@ -2,7 +2,6 @@ # kernel was released at the end of 2020. [metadata] -nrext64=0 bigtime=0 crc=1 finobt=1 @@ -12,3 +11,4 @@ rmapbt=0 [inode] sparse=1 +nrext64=0 diff --git a/mkfs/lts_5.15.conf b/mkfs/lts_5.15.conf index d751f4c4..aeecc035 100644 --- a/mkfs/lts_5.15.conf +++ b/mkfs/lts_5.15.conf @@ -2,7 +2,6 @@ # kernel was released at the end of 2021. [metadata] -nrext64=0 bigtime=1 crc=1 finobt=1 @@ -12,3 +11,4 @@ rmapbt=0 [inode] sparse=1 +nrext64=0 diff --git a/mkfs/lts_5.4.conf b/mkfs/lts_5.4.conf index 7e8a0ff0..0a40718b 100644 --- a/mkfs/lts_5.4.conf +++ b/mkfs/lts_5.4.conf @@ -2,7 +2,6 @@ # kernel was released at the end of 2019. [metadata] -nrext64=0 bigtime=0 crc=1 finobt=1 @@ -12,3 +11,4 @@ rmapbt=0 [inode] sparse=1 +nrext64=0 diff --git a/mkfs/lts_6.1.conf b/mkfs/lts_6.1.conf index 08bbe9f3..452abdf8 100644 --- a/mkfs/lts_6.1.conf +++ b/mkfs/lts_6.1.conf @@ -2,7 +2,6 @@ # kernel was released at the end of 2022. [metadata] -nrext64=0 bigtime=1 crc=1 finobt=1 @@ -12,3 +11,4 @@ rmapbt=0 [inode] sparse=1 +nrext64=0
nrext64 is an inode (-i) section option, not a metadata (-m) section option. Reported-by: Marcos Mello <marcosfrm@gmail.com> Fixes: 69e7272213 ("mkfs: Add option to create filesystem with large extent counters") Signed-off-by: Eric Sandeen <sandeen@redhat.com> ---