From: Andreas Dilger Date: Wed, 21 Oct 2020 02:42:29 +0000 (-0600) Subject: LU-13745 tests: skip sanity test_426 for 4.18+ X-Git-Tag: 2.13.57~128 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=010425898fa4b2abc6325a8073e20cb994ce7947;hp=56526a90aef91ac957ccce5622f11c06fdf49abd LU-13745 tests: skip sanity test_426 for 4.18+ Add sanity test_426 to ALWAYS_EXCEPT for newer client kernels because it is crashing 100% since "LU-13745 test: add splice test for lustre" was landed. Unable to handle NULL pointer dereference at address 0000000000000004 user pgtable: 64k pages, 48-bit VAs, pgdp = 000000009f14b2d0 Internal error: Oops: 96000005 [#1] SMP CPU: 1 PID: 11273 Comm: ptlrpcd_01_01 4.18.0-147.8.1.el8_1.aarch64 #1 Process ptlrpcd_01_01 (pid: 11273, stack limit = 0x00000000f9135a93) Call trace: mempool_free+0x24/0xe0 llcrypt_free_bounce_page.part.1+0x38/0x48 [libcfs] llcrypt_free_bounce_page+0x24/0x30 [libcfs] brw_interpret+0x124/0x10c8 [osc] ptlrpc_check_set+0x688/0x3318 [ptlrpc] ptlrpcd_check+0x470/0x820 [ptlrpc] ptlrpcd+0x3d4/0x5c8 [ptlrpc] kthread+0x130/0x138 Test-Parameters: trivial clientdistro=el8.1 clientarch=aarch64 Signed-off-by: Andreas Dilger Change-Id: I8f7b1d5e3ee69a3e0a6dfe3944949741a74cb62a Reviewed-on: https://review.whamcloud.com/40326 Reviewed-by: Wang Shilong Tested-by: jenkins Reviewed-by: Sebastien Buisson Reviewed-by: Faccini Bruno Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 4117554..891acb2 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -63,6 +63,11 @@ if [[ $(uname -m) = aarch64 ]]; then ALWAYS_EXCEPT+=" 45 317" fi +# skip splice tests on kernels >= 4.18.0 until they are fixed +if [ $LINUX_VERSION_CODE -ge $(version_code 4.18.0) ]; then + # bug number: LU-14045 + ALWAYS_EXCEPT+=" 426" +fi # skip nfs tests on kernels >= 4.12.0 until they are fixed if [ $LINUX_VERSION_CODE -ge $(version_code 4.12.0) ]; then # bug number: LU-12661