---- 在 星期三, 2019-10-30 13:33:59 Amir Goldstein <amir73il@xxxxxxxxx> 撰写 ---- > On Wed, Oct 30, 2019 at 6:46 AM Chengguang Xu <cgxu519@xxxxxxxxxxxx> wrote: > > > > ---- 在 星期二, 2019-10-29 20:32:43 Amir Goldstein <amir73il@xxxxxxxxx> 撰写 ---- > > > On Tue, Oct 29, 2019 at 1:58 PM Amir Goldstein <amir73il@xxxxxxxxx> wrote: > > > > > > > > On Tue, Oct 29, 2019 at 1:17 PM Chengguang Xu <cgxu519@xxxxxxxxxxxx> wrote: > > > > > > > > > > ---- 在 星期二, 2019-10-29 16:32:32 Amir Goldstein <amir73il@xxxxxxxxx> 撰写 ---- > > > > > > On Tue, Oct 29, 2019 at 7:57 AM Chengguang Xu <cgxu519@xxxxxxxxxxxx> wrote: > > > > > > > > > > > > > > > > > > > Can you please send the patch as plain/text. > > > > > > Your mailer has sent it with quoted printable encoding and git am > > > > > > fails to apply the patch: > > > > > > https://lore.kernel.org/fstests/20191029055713.28191-1-cgxu519@xxxxxxxxxxxx/raw > > > > > > > > > > > > > > > > Sorry for that, I'm not clear for the reason, so I send you the patch in attachment first. > > > > > > > > > > > > > > > OK, I can verify that test runs quick (5s) on my VM. > > > > > > But there is one more issue that I think needs to be addressed, either > > > in this fix patch or in a follow up patch. > > > > > > If the test ever fails on some run with a specific random holes sequence, > > > it is going to be quite hard for reporter to report this sequence or for > > > developers to reproduce the same random sequence. > > > > IMO, it's not so hard as you thought, I prefer to use filefrag to check it. > > > > I think below tidy info is very clear and easy to understand what had happened. > > > > [root@hades ovl-lower]# filefrag -k -e copyup_sparse_test_random_small_holefile > > Filesystem type is: 58465342 > > File size of copyup_sparse_test_random_small_holefile is 10485760 (10240 blocks of 1024 bytes) > > ext: logical_offset: physical_offset: length: expected: flags: > > 0: 4.. 411: 2625148.. 2625555: 408: 4: > > 1: 816.. 1259: 2626172.. 2626615: 444: 2625960: > > 2: 1696.. 1783: 2627196.. 2627283: 88: 2627052: > > 3: 1872.. 2207: 2627372.. 2627707: 336: > > 4: 2544.. 3019: 2629244.. 2629719: 476: 2628044: > > 5: 3496.. 3599: 2629720.. 2629823: 104: > > 6: 3704.. 3819: 2629928.. 2630043: 116: > > 7: 3936.. 3959: 2630044.. 2630067: 24: > > 8: 3980.. 4487: 2631292.. 2631799: 508: 2630088: > > 9: 4992.. 5235: 2631800.. 2632043: 244: > > 10: 5472.. 5715: 2632044.. 2632287: 244: > > 11: 5956.. 6355: 2633340.. 2633739: 400: 2632528: > > 12: 6752.. 6787: 2633740.. 2633775: 36: > > 13: 6820.. 6907: 2633808.. 2633895: 88: > > 14: 6996.. 7447: 2633896.. 2634347: 452: > > 15: 7900.. 8211: 2637436.. 2637747: 312: 2634800: > > 16: 8516.. 8867: 2638052.. 2638403: 352: > > 17: 9216.. 9703: 2638752.. 2639239: 488: last > > copyup_sparse_test_random_small_holefile: 7 extents found > > > > There is a difference between understanding what happened and > reproducing, but there is no reason to choose one method over > the other. > > As a developer, when I get a bug report I would rather have both > an easy reproducer and all the postmortem information available. > Therefore, please echo xfs_io commands, at least for creation of > random files to full log AND filefrag info, at least for the random > files to full log. > Actually, xfs_io itself will leave detail information for write operation (pos+write size) See below, IMO, it is almost no difference compare to echo xfs_io command. So I just added title for those write scenarios in v2. --- iosize=2048K hole test write scenarios --- (This is what I added in v2) wrote 2097152/2097152 bytes at offset 2097152 2 MiB, 512 ops; 0.0007 sec (2.732 GiB/sec and 716083.9161 ops/sec) wrote 2097152/2097152 bytes at offset 6291456 2 MiB, 512 ops; 0.0006 sec (2.889 GiB/sec and 757396.4497 ops/sec) wrote 2097152/2097152 bytes at offset 10485760 2 MiB, 512 ops; 0.0007 sec (2.728 GiB/sec and 715083.7989 ops/sec) wrote 2097152/2097152 bytes at offset 14680064 2 MiB, 512 ops; 0.0007 sec (2.778 GiB/sec and 728307.2546 ops/sec) Thanks, Chengguang