All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext4: test partial blocksize defrag integrity issue
@ 2016-02-10 15:17 Eryu Guan
  2016-02-10 23:16 ` Dave Chinner
  0 siblings, 1 reply; 5+ messages in thread
From: Eryu Guan @ 2016-02-10 15:17 UTC (permalink / raw)
  To: fstests; +Cc: linux-ext4, Eryu Guan

Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and
block size is smaller than page size would cause integrity issue on the
partial-blocksize part when copying data between orign file and donor
file.

This ext4 kernel patch would fix it, titled
"ext4: don't read blocks from disk after extents being swapped in
move_extent_per_page())"

Though this bug only happens in the blocksize smaller than pagesize
case, there's no harm to test on various block size fs, so no block size
is specified in the test, it depends on the test configurations.

Signed-off-by: Eryu Guan <eguan@redhat.com>
---
 tests/ext4/020     | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/ext4/020.out |  6 ++++
 tests/ext4/group   |  1 +
 3 files changed, 96 insertions(+)
 create mode 100755 tests/ext4/020
 create mode 100644 tests/ext4/020.out

diff --git a/tests/ext4/020 b/tests/ext4/020
new file mode 100755
index 0000000..6740c7e
--- /dev/null
+++ b/tests/ext4/020
@@ -0,0 +1,89 @@
+#! /bin/bash
+# FS QA Test 020
+#
+# Test partial blocksize defrag integrity issue.
+#
+# Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and block
+# size is smaller than page size would cause integrity issue on the
+# partial-blocksize part when copying data between orign file and donor file.
+#
+#-----------------------------------------------------------------------
+# Copyright (c) 2016 Red Hat Inc. All Rights Reserved.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it would be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write the Free Software Foundation,
+# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+#-----------------------------------------------------------------------
+#
+
+seq=`basename $0`
+seqres=$RESULT_DIR/$seq
+echo "QA output created by $seq"
+
+here=`pwd`
+tmp=/tmp/$$
+status=1	# failure is the default!
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+_cleanup()
+{
+	cd /
+	rm -f $tmp.*
+}
+
+# get standard environment, filters and checks
+. ./common/rc
+. ./common/filter
+. ./common/defrag
+
+# remove previous $seqres.full before test
+rm -f $seqres.full
+
+# real QA test starts here
+_supported_fs ext4
+_supported_os Linux
+_require_scratch
+_require_defrag
+
+e4compact=$here/src/e4compact
+if [ ! -x $d4compact ]; then
+	_notrun "$e4compact executable not found"
+fi
+
+testfile=$SCRATCH_MNT/$seq.orig
+donorfile=$SCRATCH_MNT/$seq.donor
+_scratch_mkfs >>$seqres.full 2>&1
+_scratch_mount
+
+# reserve space for donor file, written by 0xaa and sync to disk to avoid
+# EBUSY on EXT4_IOC_MOVE_EXT
+$XFS_IO_PROG -fc "pwrite -S 0xaa 0 1m" -c "fsync" $donorfile | _filter_xfs_io
+
+# create test file with 1023 in size, written by 0xbb
+# 1023 is smaller than 1k and works for any block size filesystems
+$XFS_IO_PROG -fc "pwrite -S 0xbb 0 1023" -c "fsync" $testfile | _filter_xfs_io
+
+# compute initial md5sum
+md5sum $testfile > $tmp.md5sum
+
+# drop cache, force e4compact to read data from disk
+echo 3 > /proc/sys/vm/drop_caches
+
+# test defrag
+echo "$testfile" | $e4compact -i -v -f $donorfile >>$seqres.full
+
+# check md5sum
+md5sum -c $tmp.md5sum | _filter_scratch
+
+# success, all done
+status=0
+exit
diff --git a/tests/ext4/020.out b/tests/ext4/020.out
new file mode 100644
index 0000000..74d0543
--- /dev/null
+++ b/tests/ext4/020.out
@@ -0,0 +1,6 @@
+QA output created by 020
+wrote 1048576/1048576 bytes at offset 0
+XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
+wrote 1023/1023 bytes at offset 0
+XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
+SCRATCH_MNT/020.orig: OK
diff --git a/tests/ext4/group b/tests/ext4/group
index 1191441..9e28159 100644
--- a/tests/ext4/group
+++ b/tests/ext4/group
@@ -22,6 +22,7 @@
 017 fuzzers
 018 fuzzers
 019 fuzzers
+020 auto quick ioctl rw
 271 auto rw quick
 301 aio auto ioctl rw stress
 302 aio auto ioctl rw stress
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] ext4: test partial blocksize defrag integrity issue
  2016-02-10 15:17 [PATCH] ext4: test partial blocksize defrag integrity issue Eryu Guan
@ 2016-02-10 23:16 ` Dave Chinner
  2016-02-11  3:36   ` Eryu Guan
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Chinner @ 2016-02-10 23:16 UTC (permalink / raw)
  To: Eryu Guan; +Cc: fstests, linux-ext4

On Wed, Feb 10, 2016 at 11:17:44PM +0800, Eryu Guan wrote:
> Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and
> block size is smaller than page size would cause integrity issue on the
> partial-blocksize part when copying data between orign file and donor
> file.
> 
> This ext4 kernel patch would fix it, titled
> "ext4: don't read blocks from disk after extents being swapped in
> move_extent_per_page())"
> 
> Though this bug only happens in the blocksize smaller than pagesize
> case, there's no harm to test on various block size fs, so no block size
> is specified in the test, it depends on the test configurations.
> 
> Signed-off-by: Eryu Guan <eguan@redhat.com>
> ---
>  tests/ext4/020     | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  tests/ext4/020.out |  6 ++++
>  tests/ext4/group   |  1 +
>  3 files changed, 96 insertions(+)
>  create mode 100755 tests/ext4/020
>  create mode 100644 tests/ext4/020.out
> 
> diff --git a/tests/ext4/020 b/tests/ext4/020
> new file mode 100755
> index 0000000..6740c7e
> --- /dev/null
> +++ b/tests/ext4/020
> @@ -0,0 +1,89 @@
> +#! /bin/bash
> +# FS QA Test 020
> +#
> +# Test partial blocksize defrag integrity issue.
> +#
> +# Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and block
> +# size is smaller than page size would cause integrity issue on the
> +# partial-blocksize part when copying data between orign file and donor file.
> +#
> +#-----------------------------------------------------------------------
> +# Copyright (c) 2016 Red Hat Inc. All Rights Reserved.
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation.
> +#
> +# This program is distributed in the hope that it would be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; if not, write the Free Software Foundation,
> +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> +#-----------------------------------------------------------------------
> +#
> +
> +seq=`basename $0`
> +seqres=$RESULT_DIR/$seq
> +echo "QA output created by $seq"
> +
> +here=`pwd`
> +tmp=/tmp/$$
> +status=1	# failure is the default!
> +trap "_cleanup; exit \$status" 0 1 2 3 15
> +
> +_cleanup()
> +{
> +	cd /
> +	rm -f $tmp.*
> +}
> +
> +# get standard environment, filters and checks
> +. ./common/rc
> +. ./common/filter
> +. ./common/defrag
> +
> +# remove previous $seqres.full before test
> +rm -f $seqres.full
> +
> +# real QA test starts here
> +_supported_fs ext4
> +_supported_os Linux
> +_require_scratch
> +_require_defrag
> +
> +e4compact=$here/src/e4compact
> +if [ ! -x $d4compact ]; then
              ^^^^^^^^^
> +	_notrun "$e4compact executable not found"
> +fi

And, yes, we really need that _requires_test_command function that
Darrick was adding to his patchset...

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ext4: test partial blocksize defrag integrity issue
  2016-02-10 23:16 ` Dave Chinner
@ 2016-02-11  3:36   ` Eryu Guan
  2016-02-11 16:55     ` Darrick J. Wong
  0 siblings, 1 reply; 5+ messages in thread
From: Eryu Guan @ 2016-02-11  3:36 UTC (permalink / raw)
  To: Dave Chinner; +Cc: fstests, linux-ext4

On Thu, Feb 11, 2016 at 10:16:14AM +1100, Dave Chinner wrote:
> On Wed, Feb 10, 2016 at 11:17:44PM +0800, Eryu Guan wrote:
> > Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and
> > block size is smaller than page size would cause integrity issue on the
> > partial-blocksize part when copying data between orign file and donor
> > file.
> > 
> > This ext4 kernel patch would fix it, titled
> > "ext4: don't read blocks from disk after extents being swapped in
> > move_extent_per_page())"
> > 
> > Though this bug only happens in the blocksize smaller than pagesize
> > case, there's no harm to test on various block size fs, so no block size
> > is specified in the test, it depends on the test configurations.
> > 
> > Signed-off-by: Eryu Guan <eguan@redhat.com>
> > ---
> >  tests/ext4/020     | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
> >  tests/ext4/020.out |  6 ++++
> >  tests/ext4/group   |  1 +
> >  3 files changed, 96 insertions(+)
> >  create mode 100755 tests/ext4/020
> >  create mode 100644 tests/ext4/020.out
> > 
> > diff --git a/tests/ext4/020 b/tests/ext4/020
> > new file mode 100755
> > index 0000000..6740c7e
> > --- /dev/null
> > +++ b/tests/ext4/020
> > @@ -0,0 +1,89 @@
> > +#! /bin/bash
> > +# FS QA Test 020
> > +#
> > +# Test partial blocksize defrag integrity issue.
> > +#
> > +# Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and block
> > +# size is smaller than page size would cause integrity issue on the
> > +# partial-blocksize part when copying data between orign file and donor file.
> > +#
> > +#-----------------------------------------------------------------------
> > +# Copyright (c) 2016 Red Hat Inc. All Rights Reserved.
> > +#
> > +# This program is free software; you can redistribute it and/or
> > +# modify it under the terms of the GNU General Public License as
> > +# published by the Free Software Foundation.
> > +#
> > +# This program is distributed in the hope that it would be useful,
> > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > +# GNU General Public License for more details.
> > +#
> > +# You should have received a copy of the GNU General Public License
> > +# along with this program; if not, write the Free Software Foundation,
> > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > +#-----------------------------------------------------------------------
> > +#
> > +
> > +seq=`basename $0`
> > +seqres=$RESULT_DIR/$seq
> > +echo "QA output created by $seq"
> > +
> > +here=`pwd`
> > +tmp=/tmp/$$
> > +status=1	# failure is the default!
> > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > +
> > +_cleanup()
> > +{
> > +	cd /
> > +	rm -f $tmp.*
> > +}
> > +
> > +# get standard environment, filters and checks
> > +. ./common/rc
> > +. ./common/filter
> > +. ./common/defrag
> > +
> > +# remove previous $seqres.full before test
> > +rm -f $seqres.full
> > +
> > +# real QA test starts here
> > +_supported_fs ext4
> > +_supported_os Linux
> > +_require_scratch
> > +_require_defrag
> > +
> > +e4compact=$here/src/e4compact
> > +if [ ! -x $d4compact ]; then
>               ^^^^^^^^^

My test run didn't complain about missing the binary and I found out
that I should have added quotes around $d4compact, that way test _notrun
as expect and catches the typo. Thanks for the review!

> > +	_notrun "$e4compact executable not found"
> > +fi
> 
> And, yes, we really need that _requires_test_command function that
> Darrick was adding to his patchset...

I'll wait for the new patch from Darrick and send v2 then.

Thanks,
Eryu

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ext4: test partial blocksize defrag integrity issue
  2016-02-11  3:36   ` Eryu Guan
@ 2016-02-11 16:55     ` Darrick J. Wong
  0 siblings, 0 replies; 5+ messages in thread
From: Darrick J. Wong @ 2016-02-11 16:55 UTC (permalink / raw)
  To: Eryu Guan; +Cc: Dave Chinner, fstests, linux-ext4

On Thu, Feb 11, 2016 at 11:36:28AM +0800, Eryu Guan wrote:
> On Thu, Feb 11, 2016 at 10:16:14AM +1100, Dave Chinner wrote:
> > On Wed, Feb 10, 2016 at 11:17:44PM +0800, Eryu Guan wrote:
> > > Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and
> > > block size is smaller than page size would cause integrity issue on the
> > > partial-blocksize part when copying data between orign file and donor
> > > file.
> > > 
> > > This ext4 kernel patch would fix it, titled
> > > "ext4: don't read blocks from disk after extents being swapped in
> > > move_extent_per_page())"
> > > 
> > > Though this bug only happens in the blocksize smaller than pagesize
> > > case, there's no harm to test on various block size fs, so no block size
> > > is specified in the test, it depends on the test configurations.
> > > 
> > > Signed-off-by: Eryu Guan <eguan@redhat.com>
> > > ---
> > >  tests/ext4/020     | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > >  tests/ext4/020.out |  6 ++++
> > >  tests/ext4/group   |  1 +
> > >  3 files changed, 96 insertions(+)
> > >  create mode 100755 tests/ext4/020
> > >  create mode 100644 tests/ext4/020.out
> > > 
> > > diff --git a/tests/ext4/020 b/tests/ext4/020
> > > new file mode 100755
> > > index 0000000..6740c7e
> > > --- /dev/null
> > > +++ b/tests/ext4/020
> > > @@ -0,0 +1,89 @@
> > > +#! /bin/bash
> > > +# FS QA Test 020
> > > +#
> > > +# Test partial blocksize defrag integrity issue.
> > > +#
> > > +# Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and block
> > > +# size is smaller than page size would cause integrity issue on the
> > > +# partial-blocksize part when copying data between orign file and donor file.
> > > +#
> > > +#-----------------------------------------------------------------------
> > > +# Copyright (c) 2016 Red Hat Inc. All Rights Reserved.
> > > +#
> > > +# This program is free software; you can redistribute it and/or
> > > +# modify it under the terms of the GNU General Public License as
> > > +# published by the Free Software Foundation.
> > > +#
> > > +# This program is distributed in the hope that it would be useful,
> > > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > > +# GNU General Public License for more details.
> > > +#
> > > +# You should have received a copy of the GNU General Public License
> > > +# along with this program; if not, write the Free Software Foundation,
> > > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > > +#-----------------------------------------------------------------------
> > > +#
> > > +
> > > +seq=`basename $0`
> > > +seqres=$RESULT_DIR/$seq
> > > +echo "QA output created by $seq"
> > > +
> > > +here=`pwd`
> > > +tmp=/tmp/$$
> > > +status=1	# failure is the default!
> > > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > > +
> > > +_cleanup()
> > > +{
> > > +	cd /
> > > +	rm -f $tmp.*
> > > +}
> > > +
> > > +# get standard environment, filters and checks
> > > +. ./common/rc
> > > +. ./common/filter
> > > +. ./common/defrag
> > > +
> > > +# remove previous $seqres.full before test
> > > +rm -f $seqres.full
> > > +
> > > +# real QA test starts here
> > > +_supported_fs ext4
> > > +_supported_os Linux
> > > +_require_scratch
> > > +_require_defrag
> > > +
> > > +e4compact=$here/src/e4compact
> > > +if [ ! -x $d4compact ]; then
> >               ^^^^^^^^^
> 
> My test run didn't complain about missing the binary and I found out
> that I should have added quotes around $d4compact, that way test _notrun
> as expect and catches the typo. Thanks for the review!
> 
> > > +	_notrun "$e4compact executable not found"
> > > +fi
> > 
> > And, yes, we really need that _requires_test_command function that
> > Darrick was adding to his patchset...
> 
> I'll wait for the new patch from Darrick and send v2 then.

I'll have it out later today -- I'm planning to spot-check the patches for
obvious errors after breakfast.

--D

> 
> Thanks,
> Eryu
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] ext4: test partial blocksize defrag integrity issue
@ 2016-02-10 14:48 Eryu Guan
  0 siblings, 0 replies; 5+ messages in thread
From: Eryu Guan @ 2016-02-10 14:48 UTC (permalink / raw)
  To: fstests; +Cc: ext4, Eryu Guan

Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and
block size is smaller than page size would cause integrity issue on the
partial-blocksize part when copying data between orign file and donor
file.

This ext4 kernel patch would fix it, titled
"ext4: don't read blocks from disk after extents being swapped in
move_extent_per_page())"

Though this bug only happens in the blocksize smaller than pagesize
case, there's no harm to test on various block size fs, so no block size
is specified in the test, it depends on the test configurations.

Signed-off-by: Eryu Guan <eguan@redhat.com>
---
 tests/ext4/020     | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 tests/ext4/020.out |  6 ++++
 tests/ext4/group   |  1 +
 3 files changed, 96 insertions(+)
 create mode 100755 tests/ext4/020
 create mode 100644 tests/ext4/020.out

diff --git a/tests/ext4/020 b/tests/ext4/020
new file mode 100755
index 0000000..6740c7e
--- /dev/null
+++ b/tests/ext4/020
@@ -0,0 +1,89 @@
+#! /bin/bash
+# FS QA Test 020
+#
+# Test partial blocksize defrag integrity issue.
+#
+# Calling EXT4_IOC_MOVE_EXTENT on file not aligned with block size and block
+# size is smaller than page size would cause integrity issue on the
+# partial-blocksize part when copying data between orign file and donor file.
+#
+#-----------------------------------------------------------------------
+# Copyright (c) 2016 Red Hat Inc. All Rights Reserved.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it would be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write the Free Software Foundation,
+# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+#-----------------------------------------------------------------------
+#
+
+seq=`basename $0`
+seqres=$RESULT_DIR/$seq
+echo "QA output created by $seq"
+
+here=`pwd`
+tmp=/tmp/$$
+status=1	# failure is the default!
+trap "_cleanup; exit \$status" 0 1 2 3 15
+
+_cleanup()
+{
+	cd /
+	rm -f $tmp.*
+}
+
+# get standard environment, filters and checks
+. ./common/rc
+. ./common/filter
+. ./common/defrag
+
+# remove previous $seqres.full before test
+rm -f $seqres.full
+
+# real QA test starts here
+_supported_fs ext4
+_supported_os Linux
+_require_scratch
+_require_defrag
+
+e4compact=$here/src/e4compact
+if [ ! -x $d4compact ]; then
+	_notrun "$e4compact executable not found"
+fi
+
+testfile=$SCRATCH_MNT/$seq.orig
+donorfile=$SCRATCH_MNT/$seq.donor
+_scratch_mkfs >>$seqres.full 2>&1
+_scratch_mount
+
+# reserve space for donor file, written by 0xaa and sync to disk to avoid
+# EBUSY on EXT4_IOC_MOVE_EXT
+$XFS_IO_PROG -fc "pwrite -S 0xaa 0 1m" -c "fsync" $donorfile | _filter_xfs_io
+
+# create test file with 1023 in size, written by 0xbb
+# 1023 is smaller than 1k and works for any block size filesystems
+$XFS_IO_PROG -fc "pwrite -S 0xbb 0 1023" -c "fsync" $testfile | _filter_xfs_io
+
+# compute initial md5sum
+md5sum $testfile > $tmp.md5sum
+
+# drop cache, force e4compact to read data from disk
+echo 3 > /proc/sys/vm/drop_caches
+
+# test defrag
+echo "$testfile" | $e4compact -i -v -f $donorfile >>$seqres.full
+
+# check md5sum
+md5sum -c $tmp.md5sum | _filter_scratch
+
+# success, all done
+status=0
+exit
diff --git a/tests/ext4/020.out b/tests/ext4/020.out
new file mode 100644
index 0000000..74d0543
--- /dev/null
+++ b/tests/ext4/020.out
@@ -0,0 +1,6 @@
+QA output created by 020
+wrote 1048576/1048576 bytes at offset 0
+XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
+wrote 1023/1023 bytes at offset 0
+XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
+SCRATCH_MNT/020.orig: OK
diff --git a/tests/ext4/group b/tests/ext4/group
index 1191441..9e28159 100644
--- a/tests/ext4/group
+++ b/tests/ext4/group
@@ -22,6 +22,7 @@
 017 fuzzers
 018 fuzzers
 019 fuzzers
+020 auto quick ioctl rw
 271 auto rw quick
 301 aio auto ioctl rw stress
 302 aio auto ioctl rw stress
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-11 16:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-10 15:17 [PATCH] ext4: test partial blocksize defrag integrity issue Eryu Guan
2016-02-10 23:16 ` Dave Chinner
2016-02-11  3:36   ` Eryu Guan
2016-02-11 16:55     ` Darrick J. Wong
  -- strict thread matches above, loose matches on Subject: below --
2016-02-10 14:48 Eryu Guan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.