Message ID | 1641840653-23059-1-git-send-email-dai.ngo@oracle.com (mailing list archive) |
---|---|
Headers | show |
Series | nfsd: Initial implementation of NFSv4 Courteous Server | expand |
> On Jan 10, 2022, at 1:50 PM, Dai Ngo <dai.ngo@oracle.com> wrote: > > Hi Bruce, Chuck > > This series of patches implement the NFSv4 Courteous Server. > > A server which does not immediately expunge the state on lease expiration > is known as a Courteous Server. A Courteous Server continues to recognize > previously generated state tokens as valid until conflict arises between > the expired state and the requests from another client, or the server > reboots. > > The v2 patch includes the following: > > . add new callback, lm_expire_lock, to lock_manager_operations to > allow the lock manager to take appropriate action with conflict lock. > > . handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. > > . expire courtesy client after 24hr if client has not reconnected. > > . do not allow expired client to become courtesy client if there are > waiters for client's locks. > > . modify client_info_show to show courtesy client and seconds from > last renew. > > . fix a problem with NFSv4.1 server where the it keeps returning > SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after > the courtesy client re-connects, causing the client to keep sending > BCTS requests to server. > > The v3 patch includes the following: > > . modified posix_test_lock to check and resolve conflict locks > to handle NLM TEST and NFSv4 LOCKT requests. > > . separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > > The v4 patch includes: > > . rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock > by asking the laudromat thread to destroy the courtesy client. > > . handle NFSv4 share reservation conflicts with courtesy client. This > includes conflicts between access mode and deny mode and vice versa. > > . drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > > The v5 patch includes: > > . fix recursive locking of file_rwsem from posix_lock_file. > > . retest with LOCKDEP enabled. > > The v6 patch includes: > > . merge witn 5.15-rc7 > > . fix a bug in nfs4_check_deny_bmap that did not check for matched > nfs4_file before checking for access/deny conflict. This bug causes > pynfs OPEN18 to fail since the server taking too long to release > lots of un-conflict clients' state. > > . enhance share reservation conflict handler to handle case where > a large number of conflict courtesy clients need to be expired. > The 1st 100 clients are expired synchronously and the rest are > expired in the background by the laundromat and NFS4ERR_DELAY > is returned to the NFS client. This is needed to prevent the > NFS client from timing out waiting got the reply. > > The v7 patch includes: > > . Fix race condition in posix_test_lock and posix_lock_inode after > dropping spinlock. > > . Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock > callback > > . Always resolve share reservation conflicts asynchrously. > > . Fix bug in nfs4_laundromat where spinlock is not used when > scanning cl_ownerstr_hashtbl. > > . Fix bug in nfs4_laundromat where idr_get_next was called > with incorrect 'id'. > > . Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. > > The v8 patch includes: > > . Fix warning in nfsd4_fl_expire_lock reported by test robot. > > The V9 patch include: > > . Simplify lm_expire_lock API by (1) remove the 'testonly' flag > and (2) specifying return value as true/false to indicate > whether conflict was succesfully resolved. > > . Rework nfsd4_fl_expire_lock to mark client with > NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire > the client in the background. > > . Add a spinlock in nfs4_client to synchronize access to the > NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to > handle race conditions when resolving lock and share reservation > conflict. > > . Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT > are now consisdered 'dead', waiting for the laundromat to expire > it. This client is no longer allowed to use its states if it > re-connects before the laundromat finishes expiring the client. > > For v4.1 client, the detection is done in the processing of the > SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client > to re-establish new clientid and session. > For v4.0 client, the detection is done in the processing of the > RENEW and state-related ops and return NFS4ERR_EXPIRE to force > the client to re-establish new clientid. I've made v9 available for testing and review in the nfsd-courteous-server topic branch at: git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git -- Chuck Lever
Could you look back over previous comments? I notice there's a couple unaddressed (circular locking dependency, Documentation/filesystems/). I agree with Chuck that we don't need to reschedule the laundromat, it's OK if it takes longer to get around to cleaning up a dead client. --b. On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: > Hi Bruce, Chuck > > This series of patches implement the NFSv4 Courteous Server. > > A server which does not immediately expunge the state on lease expiration > is known as a Courteous Server. A Courteous Server continues to recognize > previously generated state tokens as valid until conflict arises between > the expired state and the requests from another client, or the server > reboots. > > The v2 patch includes the following: > > . add new callback, lm_expire_lock, to lock_manager_operations to > allow the lock manager to take appropriate action with conflict lock. > > . handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. > > . expire courtesy client after 24hr if client has not reconnected. > > . do not allow expired client to become courtesy client if there are > waiters for client's locks. > > . modify client_info_show to show courtesy client and seconds from > last renew. > > . fix a problem with NFSv4.1 server where the it keeps returning > SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after > the courtesy client re-connects, causing the client to keep sending > BCTS requests to server. > > The v3 patch includes the following: > > . modified posix_test_lock to check and resolve conflict locks > to handle NLM TEST and NFSv4 LOCKT requests. > > . separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > > The v4 patch includes: > > . rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock > by asking the laudromat thread to destroy the courtesy client. > > . handle NFSv4 share reservation conflicts with courtesy client. This > includes conflicts between access mode and deny mode and vice versa. > > . drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > > The v5 patch includes: > > . fix recursive locking of file_rwsem from posix_lock_file. > > . retest with LOCKDEP enabled. > > The v6 patch includes: > > . merge witn 5.15-rc7 > > . fix a bug in nfs4_check_deny_bmap that did not check for matched > nfs4_file before checking for access/deny conflict. This bug causes > pynfs OPEN18 to fail since the server taking too long to release > lots of un-conflict clients' state. > > . enhance share reservation conflict handler to handle case where > a large number of conflict courtesy clients need to be expired. > The 1st 100 clients are expired synchronously and the rest are > expired in the background by the laundromat and NFS4ERR_DELAY > is returned to the NFS client. This is needed to prevent the > NFS client from timing out waiting got the reply. > > The v7 patch includes: > > . Fix race condition in posix_test_lock and posix_lock_inode after > dropping spinlock. > > . Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock > callback > > . Always resolve share reservation conflicts asynchrously. > > . Fix bug in nfs4_laundromat where spinlock is not used when > scanning cl_ownerstr_hashtbl. > > . Fix bug in nfs4_laundromat where idr_get_next was called > with incorrect 'id'. > > . Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. > > The v8 patch includes: > > . Fix warning in nfsd4_fl_expire_lock reported by test robot. > > The V9 patch include: > > . Simplify lm_expire_lock API by (1) remove the 'testonly' flag > and (2) specifying return value as true/false to indicate > whether conflict was succesfully resolved. > > . Rework nfsd4_fl_expire_lock to mark client with > NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire > the client in the background. > > . Add a spinlock in nfs4_client to synchronize access to the > NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to > handle race conditions when resolving lock and share reservation > conflict. > > . Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT > are now consisdered 'dead', waiting for the laundromat to expire > it. This client is no longer allowed to use its states if it > re-connects before the laundromat finishes expiring the client. > > For v4.1 client, the detection is done in the processing of the > SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client > to re-establish new clientid and session. > For v4.0 client, the detection is done in the processing of the > RENEW and state-related ops and return NFS4ERR_EXPIRE to force > the client to re-establish new clientid.
On 1/12/22 10:59 AM, J. Bruce Fields wrote: > Could you look back over previous comments? I notice there's a couple > unaddressed (circular locking dependency, Documentation/filesystems/). I think v9 addresses the circular locking dependency. I will update the Documentation/filesystems/locking.rst in v10. > > I agree with Chuck that we don't need to reschedule the laundromat, it's > OK if it takes longer to get around to cleaning up a dead client. Yes, it is now implemented for lock conflict and share reservation resolution. I'm doing the same for delegation conflict. -Dai > > --b. > > On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: >> Hi Bruce, Chuck >> >> This series of patches implement the NFSv4 Courteous Server. >> >> A server which does not immediately expunge the state on lease expiration >> is known as a Courteous Server. A Courteous Server continues to recognize >> previously generated state tokens as valid until conflict arises between >> the expired state and the requests from another client, or the server >> reboots. >> >> The v2 patch includes the following: >> >> . add new callback, lm_expire_lock, to lock_manager_operations to >> allow the lock manager to take appropriate action with conflict lock. >> >> . handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. >> >> . expire courtesy client after 24hr if client has not reconnected. >> >> . do not allow expired client to become courtesy client if there are >> waiters for client's locks. >> >> . modify client_info_show to show courtesy client and seconds from >> last renew. >> >> . fix a problem with NFSv4.1 server where the it keeps returning >> SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after >> the courtesy client re-connects, causing the client to keep sending >> BCTS requests to server. >> >> The v3 patch includes the following: >> >> . modified posix_test_lock to check and resolve conflict locks >> to handle NLM TEST and NFSv4 LOCKT requests. >> >> . separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. >> >> The v4 patch includes: >> >> . rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock >> by asking the laudromat thread to destroy the courtesy client. >> >> . handle NFSv4 share reservation conflicts with courtesy client. This >> includes conflicts between access mode and deny mode and vice versa. >> >> . drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. >> >> The v5 patch includes: >> >> . fix recursive locking of file_rwsem from posix_lock_file. >> >> . retest with LOCKDEP enabled. >> >> The v6 patch includes: >> >> . merge witn 5.15-rc7 >> >> . fix a bug in nfs4_check_deny_bmap that did not check for matched >> nfs4_file before checking for access/deny conflict. This bug causes >> pynfs OPEN18 to fail since the server taking too long to release >> lots of un-conflict clients' state. >> >> . enhance share reservation conflict handler to handle case where >> a large number of conflict courtesy clients need to be expired. >> The 1st 100 clients are expired synchronously and the rest are >> expired in the background by the laundromat and NFS4ERR_DELAY >> is returned to the NFS client. This is needed to prevent the >> NFS client from timing out waiting got the reply. >> >> The v7 patch includes: >> >> . Fix race condition in posix_test_lock and posix_lock_inode after >> dropping spinlock. >> >> . Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock >> callback >> >> . Always resolve share reservation conflicts asynchrously. >> >> . Fix bug in nfs4_laundromat where spinlock is not used when >> scanning cl_ownerstr_hashtbl. >> >> . Fix bug in nfs4_laundromat where idr_get_next was called >> with incorrect 'id'. >> >> . Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. >> >> The v8 patch includes: >> >> . Fix warning in nfsd4_fl_expire_lock reported by test robot. >> >> The V9 patch include: >> >> . Simplify lm_expire_lock API by (1) remove the 'testonly' flag >> and (2) specifying return value as true/false to indicate >> whether conflict was succesfully resolved. >> >> . Rework nfsd4_fl_expire_lock to mark client with >> NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire >> the client in the background. >> >> . Add a spinlock in nfs4_client to synchronize access to the >> NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to >> handle race conditions when resolving lock and share reservation >> conflict. >> >> . Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT >> are now consisdered 'dead', waiting for the laundromat to expire >> it. This client is no longer allowed to use its states if it >> re-connects before the laundromat finishes expiring the client. >> >> For v4.1 client, the detection is done in the processing of the >> SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client >> to re-establish new clientid and session. >> For v4.0 client, the detection is done in the processing of the >> RENEW and state-related ops and return NFS4ERR_EXPIRE to force >> the client to re-establish new clientid.
On Wed, Jan 12, 2022 at 11:05:03AM -0800, dai.ngo@oracle.com wrote: > > On 1/12/22 10:59 AM, J. Bruce Fields wrote: > >Could you look back over previous comments? I notice there's a couple > >unaddressed (circular locking dependency, Documentation/filesystems/). > > I think v9 addresses the circular locking dependency. The below is on 5.16 + these two v9 patches. --b. [ 335.595143] ====================================================== [ 335.596176] WARNING: possible circular locking dependency detected [ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted [ 335.597903] ------------------------------------------------------ [ 335.598845] kworker/u8:0/7 is trying to acquire lock: [ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] [ 335.601111] but task is already holding lock: [ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] [ 335.602896] which lock already depends on the new lock. [ 335.603378] the existing dependency chain (in reverse order) is: [ 335.603897] -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: [ 335.604305] _raw_spin_lock+0x2f/0x40 [ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] [ 335.605078] posix_lock_inode+0x9b8/0x1a50 [ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] [ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] [ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] [ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] [ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] [ 335.607604] nfsd+0x306/0x530 [nfsd] [ 335.607923] kthread+0x3b1/0x490 [ 335.608199] ret_from_fork+0x22/0x30 [ 335.608512] -> #1 (&ctx->flc_lock){+.+.}-{2:2}: [ 335.608878] _raw_spin_lock+0x2f/0x40 [ 335.609187] check_for_locks+0xcf/0x200 [nfsd] [ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] [ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] [ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] [ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] [ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] [ 335.611863] nfsd+0x306/0x530 [nfsd] [ 335.612193] kthread+0x3b1/0x490 [ 335.612463] ret_from_fork+0x22/0x30 [ 335.612764] -> #0 (&clp->cl_lock){+.+.}-{2:2}: [ 335.613120] __lock_acquire+0x29f8/0x5b80 [ 335.613469] lock_acquire+0x1a6/0x4b0 [ 335.613763] _raw_spin_lock+0x2f/0x40 [ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] [ 335.614477] process_one_work+0x7ec/0x1320 [ 335.614813] worker_thread+0x59e/0xf90 [ 335.615135] kthread+0x3b1/0x490 [ 335.615409] ret_from_fork+0x22/0x30 [ 335.615695] other info that might help us debug this: [ 335.616135] Chain exists of: &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock [ 335.616806] Possible unsafe locking scenario: [ 335.617140] CPU0 CPU1 [ 335.617467] ---- ---- [ 335.617793] lock(&clp->cl_cs_lock); [ 335.618036] lock(&ctx->flc_lock); [ 335.618531] lock(&clp->cl_cs_lock); [ 335.619037] lock(&clp->cl_lock); [ 335.619256] *** DEADLOCK *** [ 335.619487] 4 locks held by kworker/u8:0/7: [ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 [ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 [ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] [ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] [ 335.623462] stack backtrace: [ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 [ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 [ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] [ 335.625514] Call Trace: [ 335.625641] <TASK> [ 335.625734] dump_stack_lvl+0x45/0x59 [ 335.625981] check_noncircular+0x23e/0x2e0 [ 335.626268] ? print_circular_bug+0x450/0x450 [ 335.626583] ? mark_lock+0xf1/0x30c0 [ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 [ 335.627156] __lock_acquire+0x29f8/0x5b80 [ 335.627463] ? lock_chain_count+0x20/0x20 [ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 [ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 [ 335.628555] lock_acquire+0x1a6/0x4b0 [ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] [ 335.629184] ? lock_release+0x6d0/0x6d0 [ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] [ 335.629825] ? do_raw_spin_lock+0x11e/0x240 [ 335.630120] ? rwlock_bug.part.0+0x90/0x90 [ 335.630409] _raw_spin_lock+0x2f/0x40 [ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] [ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] [ 335.631450] ? lock_release+0x6d0/0x6d0 [ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] [ 335.632110] process_one_work+0x7ec/0x1320 [ 335.632411] ? lock_release+0x6d0/0x6d0 [ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 [ 335.633002] ? rwlock_bug.part.0+0x90/0x90 [ 335.633290] worker_thread+0x59e/0xf90 [ 335.633548] ? process_one_work+0x1320/0x1320 [ 335.633860] kthread+0x3b1/0x490 [ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 [ 335.634396] ? set_kthread_struct+0x100/0x100 [ 335.634709] ret_from_fork+0x22/0x30 [ 335.634961] </TASK> [ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left [ 751.769042] nfsd: last server has exited, flushing export cache [ 751.957555] NFSD: Using nfsdcld client tracking operations. [ 751.958050] NFSD: starting 15-second grace period (net f0000098) [ 773.101065] nfsd: last server has exited, flushing export cache [ 773.341554] NFSD: Using nfsdcld client tracking operations. [ 773.342404] NFSD: starting 15-second grace period (net f0000098) [ 795.757041] nfsd: last server has exited, flushing export cache [ 795.881057] NFSD: Using nfsdcld client tracking operations. [ 795.881637] NFSD: starting 15-second grace period (net f0000098) [ 816.968871] nfsd: last server has exited, flushing export cache [ 817.199987] NFSD: Using nfsdcld client tracking operations. [ 817.201123] NFSD: starting 15-second grace period (net f0000098) [ 817.696746] nfsd: last server has exited, flushing export cache [ 817.925616] NFSD: Using nfsdcld client tracking operations. [ 817.926073] NFSD: starting 15-second grace period (net f0000098) [ 839.080820] nfsd: last server has exited, flushing export cache [ 839.321569] NFSD: Using nfsdcld client tracking operations. [ 839.322562] NFSD: starting 15-second grace period (net f0000098) [ 860.492782] nfsd: last server has exited, flushing export cache [ 860.749705] NFSD: Using nfsdcld client tracking operations. [ 860.751710] NFSD: starting 15-second grace period (net f0000098) [ 882.889711] nfsd: last server has exited, flushing export cache [ 883.125502] NFSD: Using nfsdcld client tracking operations. [ 883.126399] NFSD: starting 15-second grace period (net f0000098) [ 904.224662] nfsd: last server has exited, flushing export cache [ 904.342387] NFSD: Using nfsdcld client tracking operations. [ 904.342962] NFSD: starting 15-second grace period (net f0000098) [ 947.528620] nfsd: last server has exited, flushing export cache [ 947.763520] NFSD: Using nfsdcld client tracking operations. [ 947.764569] NFSD: starting 15-second grace period (net f0000098) [ 1442.187410] nfsd: last server has exited, flushing export cache [ 1442.430496] NFSD: Using nfsdcld client tracking operations. [ 1442.430974] NFSD: starting 15-second grace period (net f0000098) [ 1483.739309] nfsd: last server has exited, flushing export cache [ 1483.864102] NFSD: Using nfsdcld client tracking operations. [ 1483.864606] NFSD: starting 15-second grace period (net f0000098) [ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success [ 1508.807419] nfsd: last server has exited, flushing export cache [ 1508.925396] NFSD: Using nfsdcld client tracking operations. [ 1508.925905] NFSD: starting 15-second grace period (net f0000098) [ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1530.667340] nfsd: last server has exited, flushing export cache [ 1530.803387] NFSD: Using nfsdcld client tracking operations. [ 1530.804150] NFSD: starting 15-second grace period (net f0000098) [ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1552.563368] nfsd: last server has exited, flushing export cache [ 1552.794957] NFSD: Using nfsdcld client tracking operations. [ 1552.797092] NFSD: starting 15-second grace period (net f0000098) [ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1594.943247] nfsd: last server has exited, flushing export cache [ 1595.175609] NFSD: Using nfsdcld client tracking operations. [ 1595.177610] NFSD: starting 15-second grace period (net f0000098) [ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1618.323178] nfsd: last server has exited, flushing export cache [ 1618.553210] NFSD: Using nfsdcld client tracking operations. [ 1618.555049] NFSD: starting 15-second grace period (net f0000098) [ 1620.455011] nfsd: last server has exited, flushing export cache [ 1620.687824] NFSD: Using nfsdcld client tracking operations. [ 1620.688329] NFSD: starting 15-second grace period (net f0000098) [ 1660.003178] nfsd: last server has exited, flushing export cache [ 1660.236374] NFSD: Using nfsdcld client tracking operations. [ 1660.237760] NFSD: starting 15-second grace period (net f0000098) [ 1660.842977] nfsd: last server has exited, flushing export cache [ 1661.061619] NFSD: Using nfsdcld client tracking operations. [ 1661.062070] NFSD: starting 15-second grace period (net f0000098) [ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success [ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success [ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success started Wed Jan 12 11:28:28 AM EST 2022, finished Wed Jan 12 01:47:36 PM EST 2022 +-----------------------------------------+ | verbose output | +-----------------------------------------+ fs/select.c: In function ‘do_select’: fs/select.c:611:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] 611 | } | ^ fs/select.c: In function ‘do_sys_poll’: fs/select.c:1041:1: warning: the frame size of 1296 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1041 | } | ^ net/core/rtnetlink.c: In function ‘__rtnl_newlink’: net/core/rtnetlink.c:3494:1: warning: the frame size of 1368 bytes is larger than 1024 bytes [-Wframe-larger-than=] 3494 | } | ^ drivers/tty/serial/8250/8250_core.c: In function ‘serial8250_probe’: drivers/tty/serial/8250/8250_core.c:840:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] 840 | } | ^ drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’: drivers/tty/serial/8250/8250_pnp.c:488:1: warning: the frame size of 1136 bytes is larger than 1024 bytes [-Wframe-larger-than=] 488 | } | ^ drivers/tty/serial/8250/8250_pci.c: In function ‘pciserial_init_ports’: drivers/tty/serial/8250/8250_pci.c:4030:1: warning: the frame size of 1160 bytes is larger than 1024 bytes [-Wframe-larger-than=] 4030 | } | ^ drivers/tty/serial/8250/8250_exar.c: In function ‘exar_pci_probe’: drivers/tty/serial/8250/8250_exar.c:678:1: warning: the frame size of 1176 bytes is larger than 1024 bytes [-Wframe-larger-than=] 678 | } | ^ drivers/tty/serial/8250/8250_lpss.c: In function ‘lpss8250_probe.part.0’: drivers/tty/serial/8250/8250_lpss.c:351:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] 351 | } | ^ drivers/tty/serial/8250/8250_mid.c: In function ‘mid8250_probe.part.0’: drivers/tty/serial/8250/8250_mid.c:337:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] 337 | } | ^ lib/zstd/common/entropy_common.c: In function ‘HUF_readStats’: lib/zstd/common/entropy_common.c:257:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=] 257 | } | ^ drivers/acpi/processor_thermal.c: In function ‘cpu_has_cpufreq’: drivers/acpi/processor_thermal.c:60:1: warning: the frame size of 1384 bytes is larger than 1024 bytes [-Wframe-larger-than=] 60 | } | ^ drivers/dma-buf/dma-resv.c: In function ‘dma_resv_lockdep’: drivers/dma-buf/dma-resv.c:708:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=] 708 | } | ^ fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] 418 | } | ^ drivers/md/raid5-ppl.c: In function ‘ppl_recover_entry’: drivers/md/raid5-ppl.c:968:1: warning: the frame size of 1200 bytes is larger than 1024 bytes [-Wframe-larger-than=] 968 | } | ^ fs/ocfs2/namei.c: In function ‘ocfs2_rename’: fs/ocfs2/namei.c:1686:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1686 | } | ^ net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] 717 | } | ^ net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] 810 | } | ^ drivers/infiniband/core/nldev.c: In function ‘nldev_set_doit’: drivers/infiniband/core/nldev.c:1112:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1112 | } | ^ drivers/infiniband/core/nldev.c: In function ‘nldev_newlink’: drivers/infiniband/core/nldev.c:1722:1: warning: the frame size of 1128 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1722 | } | ^ drivers/infiniband/core/nldev.c: In function ‘nldev_get_chardev’: drivers/infiniband/core/nldev.c:1833:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1833 | } | ^ drivers/infiniband/core/nldev.c: In function ‘nldev_stat_set_doit’: drivers/infiniband/core/nldev.c:2061:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] 2061 | } | ^ drivers/infiniband/core/nldev.c: In function ‘res_get_common_dumpit’: drivers/infiniband/core/nldev.c:1613:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] 1613 | } | ^ drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_doit’: drivers/infiniband/core/nldev.c:2318:1: warning: the frame size of 1088 bytes is larger than 1024 bytes [-Wframe-larger-than=] 2318 | } | ^ drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_counter_status_doit’: drivers/infiniband/core/nldev.c:2438:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] 2438 | } | ^ net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] 717 | } | ^ net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] 810 | } | ^ fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] 418 | } | ^ make -f ./Makefile CALL scripts/checksyscalls.sh CALL scripts/atomic/check-atomics.sh DESCEND objtool CHK include/generated/compile.h BUILD arch/x86/boot/bzImage Kernel: arch/x86/boot/bzImage is ready (#1278) sh ./scripts/package/buildtar targz-pkg INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authenc.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authencesn.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/crypto_engine.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/echainiv.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/crypto/virtio/virtio_crypto.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/iscsi_tcp.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi_tcp.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/scsi_transport_iscsi.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/lockd/lockd.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/blocklayout/blocklayoutdriver.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/filelayout/nfs_layout_nfsv41_files.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfs.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv2.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv3.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv4.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/grace.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/nfs_acl.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfsd/nfsd.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sched/cls_bpf.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/sunrpc.ko INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/xprtrdma/rpcrdma.ko DEPMOD ./tar-install/lib/modules/5.16.0-00002-g616758bf6583 './System.map' -> './tar-install/boot/System.map-5.16.0-00002-g616758bf6583' '.config' -> './tar-install/boot/config-5.16.0-00002-g616758bf6583' './vmlinux' -> './tar-install/boot/vmlinux-5.16.0-00002-g616758bf6583' './arch/x86/boot/bzImage' -> './tar-install/boot/vmlinuz-5.16.0-00002-g616758bf6583' Tarball successfully created in ./linux-5.16.0-00002-g616758bf6583-x86_64.tar.gz user pynfs tests: WARNING - could not create /b'exports/xfs/pynfstest-user/tree/block' WARNING - could not create /b'exports/xfs/pynfstest-user/tree/char' DELEG22 st_delegation.testServerSelfConflict2 : RUNNING DELEG22 st_delegation.testServerSelfConflict2 : PASS DELEG21 st_delegation.testServerSelfConflict : RUNNING DELEG21 st_delegation.testServerSelfConflict : PASS DELEG18 st_delegation.testServerRenameTarget : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=3)******** DELEG18 st_delegation.testServerRenameTarget : PASS DELEG17 st_delegation.testServerRenameSource : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=4)******** DELEG17 st_delegation.testServerRenameSource : PASS DELEG16 st_delegation.testServerRemove : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=5)******** DELEG16 st_delegation.testServerRemove : PASS DELEG19 st_delegation.testServerLink : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=6)******** DELEG19 st_delegation.testServerLink : PASS DELEG20 st_delegation.testServerChmod : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=7)******** DELEG20 st_delegation.testServerChmod : PASS DELEG6 st_delegation.testRenew : RUNNING Sleeping for 7.5 seconds: Waiting to send RENEW Woke up DELEG6 st_delegation.testRenew : PASS DELEG15d st_delegation.testRenameOver : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=9)******** Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename Woke up DELEG15d st_delegation.testRenameOver : PASS DELEG15c st_delegation.testRename : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=10)******** Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename Woke up DELEG15c st_delegation.testRename : PASS DELEG15a st_delegation.testRemove : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on remove *****CB received COMPOUND****** ******* CB_Recall (id=11)******** Woke up DELEG15a st_delegation.testRemove : PASS DELEG3e st_delegation.testReadDeleg3e : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=12)******** Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG3e st_delegation.testReadDeleg3e : PASS DELEG3d st_delegation.testReadDeleg3d : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=13)******** Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG3d st_delegation.testReadDeleg3d : PASS DELEG3c st_delegation.testReadDeleg3c : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=14)******** Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG3c st_delegation.testReadDeleg3c : PASS DELEG3b st_delegation.testReadDeleg3b : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=15)******** Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG3b st_delegation.testReadDeleg3b : PASS DELEG3a st_delegation.testReadDeleg3a : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=16)******** Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG3a st_delegation.testReadDeleg3a : PASS DELEG2 st_delegation.testReadDeleg2 : RUNNING *****CB received COMPOUND****** ******* CB_Recall (id=17)******** Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG2 st_delegation.testReadDeleg2 : PASS DELEG1 st_delegation.testReadDeleg1 : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=18)******** Woke up DELEG1 st_delegation.testReadDeleg1 : PASS DELEG15b st_delegation.testLink : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on link *****CB received COMPOUND****** ******* CB_Recall (id=19)******** Woke up DELEG15b st_delegation.testLink : PASS DELEG7 st_delegation.testIgnoreDeleg : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=20)******** Woke up DELEG7 st_delegation.testIgnoreDeleg : PASS DELEG8 st_delegation.testDelegShare : RUNNING DELEG8 st_delegation.testDelegShare : PASS DELEG4 st_delegation.testCloseDeleg : RUNNING Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=22)******** Woke up DELEG4 st_delegation.testCloseDeleg : PASS DELEG14 st_delegation.testClaimCur : RUNNING Sleeping for 2 seconds: Waiting for recall *****CB received COMPOUND****** ******* CB_Recall (id=23)******** Woke up DELEG14 st_delegation.testClaimCur : PASS DELEG9 st_delegation.testChangeDeleg : RUNNING Sleeping for 3 seconds: Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open *****CB received COMPOUND****** ******* CB_Recall (id=1)******** Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up Sleeping for 1 seconds: Got NFS4ERR_DELAY on open Woke up DELEG9 st_delegation.testChangeDeleg : PASS INIT st_setclientid.testValid : RUNNING INIT st_setclientid.testValid : PASS MKFILE st_open.testOpen : RUNNING MKFILE st_open.testOpen : PASS REBT8 st_reboot.testValidDeleg : RUNNING Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up REBT8 st_reboot.testValidDeleg : PASS REBT3 st_reboot.testRebootWait : RUNNING Got error: Connection closed Sleeping for 10 seconds: Waiting till halfway through grace period Woke up Sleeping for 11 seconds: Waiting for grace period to end Woke up REBT3 st_reboot.testRebootWait : PASS REBT1 st_reboot.testRebootValid : RUNNING Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up REBT1 st_reboot.testRebootValid : PASS REBT10 st_reboot.testRebootMultiple : RUNNING Got error: Connection closed Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up REBT10 st_reboot.testRebootMultiple : PASS MKDIR st_create.testDir : RUNNING MKDIR st_create.testDir : PASS REBT2 st_reboot.testManyClaims : RUNNING Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up REBT2 st_reboot.testManyClaims : PASS REBT11 st_reboot.testGraceSeqid : RUNNING Got error: Connection closed Sleeping for 10 seconds: Waiting till halfway through grace period Woke up Sleeping for 11 seconds: Waiting for grace period to end Woke up REBT11 st_reboot.testGraceSeqid : PASS REBT6 st_reboot.testEdge2 : RUNNING Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up Got error: Connection closed Got error: Connection closed Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up REBT6 st_reboot.testEdge2 : PASS REBT5 st_reboot.testEdge1 : RUNNING Sleeping for 22 seconds: Waiting for lock lease to expire Woke up Got error: Connection closed Got error: Connection closed Sleeping for 20 seconds: Waiting for grace period to end Woke up REBT5 st_reboot.testEdge1 : PASS RPLY8 st_replay.testUnlockWait : RUNNING Sleeping for 30 seconds: Woke up Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY8 st_replay.testUnlockWait : PASS RPLY7 st_replay.testUnlock : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY7 st_replay.testUnlock : PASS RPLY3 st_replay.testReplayState2 : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY3 st_replay.testReplayState2 : PASS RPLY2 st_replay.testReplayState1 : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY2 st_replay.testReplayState1 : PASS RPLY4 st_replay.testReplayNonState : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY4 st_replay.testReplayNonState : PASS RPLY13 st_replay.testOpenConfirmFail : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY13 st_replay.testOpenConfirmFail : PASS RPLY12 st_replay.testOpenConfirm : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY12 st_replay.testOpenConfirm : PASS RPLY1 st_replay.testOpen : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY1 st_replay.testOpen : PASS RPLY14 st_replay.testMkdirReplay : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY14 st_replay.testMkdirReplay : PASS RPLY6 st_replay.testLockDenied : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY6 st_replay.testLockDenied : PASS RPLY5 st_replay.testLock : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY5 st_replay.testLock : PASS RPLY10 st_replay.testCloseWait : RUNNING Sleeping for 30 seconds: Woke up Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY10 st_replay.testCloseWait : PASS RPLY11 st_replay.testCloseFail : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY11 st_replay.testCloseFail : PASS RPLY9 st_replay.testClose : RUNNING Sleeping for 0.3 seconds: Woke up Sleeping for 0.3 seconds: Woke up RPLY9 st_replay.testClose : PASS WRT3 st_write.testWithOpen : RUNNING WRT3 st_write.testWithOpen : PASS WRT5b st_write.testTooLargeData : RUNNING WRT5b st_write.testTooLargeData : PASS WRT19 st_write.testStolenStateid : RUNNING WRT19 st_write.testStolenStateid : PASS WRT2 st_write.testStateidOne : RUNNING WRT2 st_write.testStateidOne : PASS WRT11 st_write.testStaleStateid : RUNNING WRT11 st_write.testStaleStateid : PASS MKSOCK st_create.testSocket : RUNNING MKSOCK st_create.testSocket : PASS WRT6s st_write.testSocket : RUNNING WRT6s st_write.testSocket : PASS WRT15 st_write.testSizes : RUNNING WRT15 st_write.testSizes : PASS WRT1b st_write.testSimpleWrite2 : RUNNING WRT1b st_write.testSimpleWrite2 : PASS WRT1 st_write.testSimpleWrite : RUNNING WRT1 st_write.testSimpleWrite : PASS WRT9 st_write.testShareDeny : RUNNING WRT9 st_write.testShareDeny : PASS WRT8 st_write.testOpenMode : RUNNING WRT8 st_write.testOpenMode : PASS WRT12 st_write.testOldStateid : RUNNING WRT12 st_write.testOldStateid : PASS WRT7 st_write.testNoFh : RUNNING WRT7 st_write.testNoFh : PASS WRT4 st_write.testNoData : RUNNING Sleeping for 1 seconds: Woke up WRT4 st_write.testNoData : PASS WRT5a st_write.testMaximumData : RUNNING WRT5a st_write.testMaximumData : PASS MKLINK st_create.testLink : RUNNING MKLINK st_create.testLink : PASS WRT6a st_write.testLink : RUNNING WRT6a st_write.testLink : PASS WRT14 st_write.testLargeWrite : RUNNING WRT14 st_write.testLargeWrite : PASS MKFIFO st_create.testFIFO : RUNNING MKFIFO st_create.testFIFO : PASS WRT6f st_write.testFifo : RUNNING WRT6f st_write.testFifo : PASS WRT13 st_write.testDoubleWrite : RUNNING WRT13 st_write.testDoubleWrite : PASS WRT6d st_write.testDir : RUNNING WRT6d st_write.testDir : PASS MODE st_setattr.testMode : RUNNING MODE st_setattr.testMode : PASS WRT18 st_write.testChangeGranularityWrite : RUNNING WRT18 st_write.testChangeGranularityWrite : PASS LOOKSOCK st_lookup.testSocket : RUNNING LOOKSOCK st_lookup.testSocket : PASS VF5s st_verify.testWriteOnlySocket : RUNNING VF5s st_verify.testWriteOnlySocket : PASS LOOKLINK st_lookup.testLink : RUNNING LOOKLINK st_lookup.testLink : PASS VF5a st_verify.testWriteOnlyLink : RUNNING VF5a st_verify.testWriteOnlyLink : PASS LOOKFILE st_lookup.testFile : RUNNING LOOKFILE st_lookup.testFile : PASS VF5r st_verify.testWriteOnlyFile : RUNNING VF5r st_verify.testWriteOnlyFile : PASS LOOKFIFO st_lookup.testFifo : RUNNING LOOKFIFO st_lookup.testFifo : PASS VF5f st_verify.testWriteOnlyFifo : RUNNING VF5f st_verify.testWriteOnlyFifo : PASS LOOKDIR st_lookup.testDir : RUNNING LOOKDIR st_lookup.testDir : PASS VF5d st_verify.testWriteOnlyDir : RUNNING VF5d st_verify.testWriteOnlyDir : PASS VF7s st_verify.testUnsupportedSocket : RUNNING VF7s st_verify.testUnsupportedSocket : PASS VF7a st_verify.testUnsupportedLink : RUNNING VF7a st_verify.testUnsupportedLink : PASS VF7r st_verify.testUnsupportedFile : RUNNING VF7r st_verify.testUnsupportedFile : PASS VF7f st_verify.testUnsupportedFifo : RUNNING VF7f st_verify.testUnsupportedFifo : PASS VF7d st_verify.testUnsupportedDir : RUNNING VF7d st_verify.testUnsupportedDir : PASS VF2s st_verify.testTypeSocket : RUNNING VF2s st_verify.testTypeSocket : PASS VF2a st_verify.testTypeLink : RUNNING VF2a st_verify.testTypeLink : PASS VF2r st_verify.testTypeFile : RUNNING VF2r st_verify.testTypeFile : PASS VF2f st_verify.testTypeFifo : RUNNING VF2f st_verify.testTypeFifo : PASS VF2d st_verify.testTypeDir : RUNNING VF2d st_verify.testTypeDir : PASS VF4 st_verify.testNoFh : RUNNING VF4 st_verify.testNoFh : PASS VF1s st_verify.testMandSocket : RUNNING VF1s st_verify.testMandSocket : PASS VF1a st_verify.testMandLink : RUNNING VF1a st_verify.testMandLink : PASS VF1r st_verify.testMandFile : RUNNING VF1r st_verify.testMandFile : PASS VF1f st_verify.testMandFifo : RUNNING VF1f st_verify.testMandFifo : PASS VF1d st_verify.testMandDir : RUNNING VF1d st_verify.testMandDir : PASS VF3s st_verify.testBadSizeSocket : RUNNING VF3s st_verify.testBadSizeSocket : PASS VF3a st_verify.testBadSizeLink : RUNNING VF3a st_verify.testBadSizeLink : PASS VF3r st_verify.testBadSizeFile : RUNNING VF3r st_verify.testBadSizeFile : PASS VF3f st_verify.testBadSizeFifo : RUNNING VF3f st_verify.testBadSizeFifo : PASS VF3d st_verify.testBadSizeDir : RUNNING VF3d st_verify.testBadSizeDir : PASS CIDCF1 st_setclientidconfirm.testStale : RUNNING CIDCF1 st_setclientidconfirm.testStale : PASS CIDCF3 st_setclientidconfirm.testAllCases : RUNNING CIDCF3 st_setclientidconfirm.testAllCases : PASS CID4e st_setclientid.testUnConfReplaced : RUNNING CID4e st_setclientid.testUnConfReplaced : PASS CID2 st_setclientid.testNotInUse : RUNNING CID2 st_setclientid.testNotInUse : PASS CID6 st_setclientid.testNoConfirm : RUNNING CID6 st_setclientid.testNoConfirm : PASS CID5 st_setclientid.testLotsOfClients : RUNNING CID5 st_setclientid.testLotsOfClients : PASS CID3 st_setclientid.testLoseAnswer : RUNNING CID3 st_setclientid.testLoseAnswer : PASS CID2a st_setclientid.testInUse : RUNNING CID2a st_setclientid.testInUse : PASS CID4b st_setclientid.testConfirmedDiffVerifier : RUNNING CID4b st_setclientid.testConfirmedDiffVerifier : PASS CID4d st_setclientid.testConfUnConfDiffVerifier2 : RUNNING CID4d st_setclientid.testConfUnConfDiffVerifier2 : PASS CID4c st_setclientid.testConfUnConfDiffVerifier1 : RUNNING CID4c st_setclientid.testConfUnConfDiffVerifier1 : PASS CID1b st_setclientid.testClientUpdateCallback : RUNNING CID1b st_setclientid.testClientUpdateCallback : PASS CID1 st_setclientid.testClientReboot : RUNNING CID1 st_setclientid.testClientReboot : PASS CID4a st_setclientid.testCallbackInfoUpdate : RUNNING CID4a st_setclientid.testCallbackInfoUpdate : PASS CID4 st_setclientid.testAllCases : RUNNING CID4 st_setclientid.testAllCases : PASS SATT2c st_setattr.testUselessStateid3 : RUNNING SATT2c st_setattr.testUselessStateid3 : PASS SATT2b st_setattr.testUselessStateid2 : RUNNING SATT2b st_setattr.testUselessStateid2 : PASS SATT2a st_setattr.testUselessStateid1 : RUNNING SATT2a st_setattr.testUselessStateid1 : PASS SATT11s st_setattr.testUnsupportedSocket : RUNNING SATT11s st_setattr.testUnsupportedSocket : PASS SATT11a st_setattr.testUnsupportedLink : RUNNING SATT11a st_setattr.testUnsupportedLink : PASS SATT11r st_setattr.testUnsupportedFile : RUNNING SATT11r st_setattr.testUnsupportedFile : PASS SATT11f st_setattr.testUnsupportedFifo : RUNNING SATT11f st_setattr.testUnsupportedFifo : PASS SATT11d st_setattr.testUnsupportedDir : RUNNING SATT11d st_setattr.testUnsupportedDir : PASS SATT12s st_setattr.testSizeSocket : RUNNING SATT12s st_setattr.testSizeSocket : PASS SATT12a st_setattr.testSizeLink : RUNNING SATT12a st_setattr.testSizeLink : PASS SATT12f st_setattr.testSizeFifo : RUNNING SATT12f st_setattr.testSizeFifo : PASS SATT12d st_setattr.testSizeDir : RUNNING SATT12d st_setattr.testSizeDir : PASS SATT3d st_setattr.testResizeFile3 : RUNNING SATT3d st_setattr.testResizeFile3 : PASS SATT3c st_setattr.testResizeFile2 : RUNNING SATT3c st_setattr.testResizeFile2 : PASS SATT3b st_setattr.testResizeFile1 : RUNNING SATT3b st_setattr.testResizeFile1 : PASS SATT3a st_setattr.testResizeFile0 : RUNNING SATT3a st_setattr.testResizeFile0 : PASS SATT6d st_setattr.testReadonlyDir : RUNNING SATT6d st_setattr.testReadonlyDir : PASS SATT6s st_setattr.testReadonlySocket : RUNNING SATT6s st_setattr.testReadonlySocket : PASS SATT6a st_setattr.testReadonlyLink : RUNNING SATT6a st_setattr.testReadonlyLink : PASS SATT6r st_setattr.testReadonlyFile : RUNNING SATT6r st_setattr.testReadonlyFile : PASS SATT6f st_setattr.testReadonlyFifo : RUNNING SATT6f st_setattr.testReadonlyFifo : PASS SATT4 st_setattr.testOpenModeResize : RUNNING SATT4 st_setattr.testOpenModeResize : PASS SATT5 st_setattr.testNoFh : RUNNING SATT5 st_setattr.testNoFh : PASS SATT10 st_setattr.testInvalidTime : RUNNING SATT10 st_setattr.testInvalidTime : PASS SATT8 st_setattr.testInvalidAttr2 : RUNNING SATT8 st_setattr.testInvalidAttr2 : PASS SATT7 st_setattr.testInvalidAttr1 : RUNNING Traceback (most recent call last): File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run self.runtest(self, environment) File "/root/pynfs/nfs4.0/servertests/st_renew.py", line 41, in testExpired c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_READ, File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm check_result(res, "Opening file %s" % _getname(owner, path)) File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result raise BadCompoundRes(resop, res.status, msg) nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY SATT7 st_setattr.testInvalidAttr1 : PASS SATT13 st_setattr.testInodeLocking : RUNNING SATT13 st_setattr.testInodeLocking : PASS SATT1r st_setattr.testFile : RUNNING SATT1r st_setattr.testFile : PASS SATT1f st_setattr.testFifo : RUNNING SATT1f st_setattr.testFifo : PASS SATT16 st_setattr.testEmptyPrincipal : RUNNING SATT16 st_setattr.testEmptyPrincipal : PASS SATT17 st_setattr.testEmptyGroupPrincipal : RUNNING SATT17 st_setattr.testEmptyGroupPrincipal : PASS SATT1d st_setattr.testDir : RUNNING SATT1d st_setattr.testDir : PASS SATT15 st_setattr.testChangeGranularity : RUNNING SATT15 st_setattr.testChangeGranularity : PASS SATT14 st_setattr.testChange : RUNNING SATT14 st_setattr.testChange : PASS SEC1 st_secinfo.testValid : RUNNING SEC1 st_secinfo.testValid : PASS SEC5 st_secinfo.testZeroLenName : RUNNING SEC5 st_secinfo.testZeroLenName : PASS SEC3 st_secinfo.testVaporFile : RUNNING SEC3 st_secinfo.testVaporFile : PASS SEC7 st_secinfo.testRPCSEC_GSS : RUNNING SEC7 st_secinfo.testRPCSEC_GSS : PASS SEC2 st_secinfo.testNotDir : RUNNING SEC2 st_secinfo.testNotDir : PASS SEC4 st_secinfo.testNoFh : RUNNING SEC4 st_secinfo.testNoFh : PASS SVFH1 st_savefh.testNoFh : RUNNING SVFH1 st_savefh.testNoFh : PASS SVFH2s st_restorefh.testValidSocket : RUNNING SVFH2s st_restorefh.testValidSocket : PASS SVFH2a st_restorefh.testValidLink : RUNNING SVFH2a st_restorefh.testValidLink : PASS SVFH2r st_restorefh.testValidFile : RUNNING SVFH2r st_restorefh.testValidFile : PASS SVFH2f st_restorefh.testValidFifo : RUNNING SVFH2f st_restorefh.testValidFifo : PASS SVFH2d st_restorefh.testValidDir : RUNNING SVFH2d st_restorefh.testValidDir : PASS RSFH2 st_restorefh.testNoFh2 : RUNNING RSFH2 st_restorefh.testNoFh2 : PASS RSFH1 st_restorefh.testNoFh1 : RUNNING RSFH1 st_restorefh.testNoFh1 : PASS RENEW1 st_renew.testRenew : RUNNING RENEW1 st_renew.testRenew : PASS RENEW3 st_renew.testExpired : RUNNING Sleeping for 30 seconds: Woke up RENEW3 st_renew.testExpired : FAILURE nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY RENEW2 st_renew.testBadRenew : RUNNING RENEW2 st_renew.testBadRenew : PASS RNM6 st_rename.testZeroLengthOldname : RUNNING RNM6 st_rename.testZeroLengthOldname : PASS RNM7 st_rename.testZeroLengthNewname : RUNNING RNM7 st_rename.testZeroLengthNewname : PASS RNM1s st_rename.testValidSocket : RUNNING RNM1s st_rename.testValidSocket : PASS RNM1a st_rename.testValidLink : RUNNING RNM1a st_rename.testValidLink : PASS RNM1r st_rename.testValidFile : RUNNING RNM1r st_rename.testValidFile : PASS RNM1f st_rename.testValidFifo : RUNNING RNM1f st_rename.testValidFifo : PASS RNM1d st_rename.testValidDir : RUNNING RNM1d st_rename.testValidDir : PASS RNM2s st_rename.testSfhSocket : RUNNING RNM2s st_rename.testSfhSocket : PASS RNM2a st_rename.testSfhLink : RUNNING RNM2a st_rename.testSfhLink : PASS RNM2r st_rename.testSfhFile : RUNNING RNM2r st_rename.testSfhFile : PASS RNM2f st_rename.testSfhFifo : RUNNING RNM2f st_rename.testSfhFifo : PASS RNM19 st_rename.testSelfRenameFile : RUNNING RNM19 st_rename.testSelfRenameFile : PASS RNM18 st_rename.testSelfRenameDir : RUNNING RNM18 st_rename.testSelfRenameDir : PASS RNM5 st_rename.testNonExistent : RUNNING RNM5 st_rename.testNonExistent : PASS RNM4 st_rename.testNoSfh : RUNNING RNM4 st_rename.testNoSfh : PASS LINKS st_link.testSupported : RUNNING LINKS st_link.testSupported : PASS RNM20 st_rename.testLinkRename : RUNNING RNM20 st_rename.testLinkRename : PASS RNM17 st_rename.testFileToFullDir : RUNNING RNM17 st_rename.testFileToFullDir : PASS RNM15 st_rename.testFileToFile : RUNNING RNM15 st_rename.testFileToFile : PASS RNM14 st_rename.testFileToDir : RUNNING RNM14 st_rename.testFileToDir : PASS RNM10 st_rename.testDotsOldname : RUNNING RNM10 st_rename.testDotsOldname : PASS RNM11 st_rename.testDotsNewname : RUNNING RNM11 st_rename.testDotsNewname : PASS RNM12 st_rename.testDirToObj : RUNNING RNM12 st_rename.testDirToObj : PASS RNM16 st_rename.testDirToFullDir : RUNNING RNM16 st_rename.testDirToFullDir : PASS RNM13 st_rename.testDirToDir : RUNNING RNM13 st_rename.testDirToDir : PASS RNM3s st_rename.testCfhSocket : RUNNING RNM3s st_rename.testCfhSocket : PASS RNM3a st_rename.testCfhLink : RUNNING RNM3a st_rename.testCfhLink : PASS RNM3r st_rename.testCfhFile : RUNNING RNM3r st_rename.testCfhFile : PASS RNM3f st_rename.testCfhFifo : RUNNING RNM3f st_rename.testCfhFifo : PASS RM4 st_remove.testZeroLengthTarget : RUNNING RM4 st_remove.testZeroLengthTarget : PASS RM1s st_remove.testSocket : RUNNING RM1s st_remove.testSocket : PASS RM8 st_remove.testNotEmpty : RUNNING RM8 st_remove.testNotEmpty : PASS RM6 st_remove.testNonExistent : RUNNING RM6 st_remove.testNonExistent : PASS RM3 st_remove.testNoFh : RUNNING RM3 st_remove.testNoFh : PASS RM1a st_remove.testLink : RUNNING RM1a st_remove.testLink : PASS RM1r st_remove.testFile : RUNNING RM1r st_remove.testFile : PASS RM1f st_remove.testFifo : RUNNING RM1f st_remove.testFifo : PASS RM7 st_remove.testDots : RUNNING RM7 st_remove.testDots : PASS RM1d st_remove.testDir : RUNNING RM1d st_remove.testDir : PASS RM2s st_remove.testCfhSocket : RUNNING RM2s st_remove.testCfhSocket : PASS RM2a st_remove.testCfhLink : RUNNING RM2a st_remove.testCfhLink : PASS RM2r st_remove.testCfhFile : RUNNING RM2r st_remove.testCfhFile : PASS RM2f st_remove.testCfhFifo : RUNNING RM2f st_remove.testCfhFifo : PASS RLOWN1 st_releaselockowner.testFile : RUNNING RLOWN1 st_releaselockowner.testFile : PASS RDLK2s st_readlink.testSocket : RUNNING RDLK2s st_readlink.testSocket : PASS RDLK1 st_readlink.testReadlink : RUNNING RDLK1 st_readlink.testReadlink : PASS RDLK3 st_readlink.testNoFh : RUNNING RDLK3 st_readlink.testNoFh : PASS RDLK2r st_readlink.testFile : RUNNING RDLK2r st_readlink.testFile : PASS RDLK2f st_readlink.testFifo : RUNNING RDLK2f st_readlink.testFifo : PASS RDLK2d st_readlink.testDir : RUNNING RDLK2d st_readlink.testDir : PASS RDDR9 st_readdir.testWriteOnlyAttributes : RUNNING RDDR9 st_readdir.testWriteOnlyAttributes : PASS RDDR12 st_readdir.testUnaccessibleDirAttrs : RUNNING RDDR12 st_readdir.testUnaccessibleDirAttrs : PASS RDDR11 st_readdir.testUnaccessibleDir : RUNNING RDDR11 st_readdir.testUnaccessibleDir : PASS RDDR4 st_readdir.testSubsequent : RUNNING RDDR4 st_readdir.testSubsequent : PASS RDDR10 st_readdir.testReservedCookies : RUNNING RDDR10 st_readdir.testReservedCookies : PASS RDDR6 st_readdir.testNoFh : RUNNING RDDR6 st_readdir.testNoFh : PASS RDDR7 st_readdir.testMaxcountZero : RUNNING RDDR7 st_readdir.testMaxcountZero : PASS RDDR8 st_readdir.testMaxcountSmall : RUNNING RDDR8 st_readdir.testMaxcountSmall : PASS RDDR2 st_readdir.testFirst : RUNNING RDDR2 st_readdir.testFirst : PASS RDDR5s st_readdir.testFhSocket : RUNNING RDDR5s st_readdir.testFhSocket : PASS RDDR5a st_readdir.testFhLink : RUNNING RDDR5a st_readdir.testFhLink : PASS RDDR5r st_readdir.testFhFile : RUNNING RDDR5r st_readdir.testFhFile : PASS RDDR5f st_readdir.testFhFifo : RUNNING RDDR5f st_readdir.testFhFifo : PASS RDDR1 st_readdir.testEmptyDir : RUNNING RDDR1 st_readdir.testEmptyDir : PASS RDDR8b st_readdir.testDircountVarious : RUNNING RDDR8b st_readdir.testDircountVarious : PASS RDDR3 st_readdir.testAttr : RUNNING RDDR3 st_readdir.testAttr : PASS RD6 st_read.testZeroCount : RUNNING RD6 st_read.testZeroCount : PASS RD3 st_read.testWithOpen : RUNNING RD3 st_read.testWithOpen : PASS RD2 st_read.testStateidOnes : RUNNING RD2 st_read.testStateidOnes : PASS RD10 st_read.testStaleStateid : RUNNING RD10 st_read.testStaleStateid : PASS RD7s st_read.testSocket : RUNNING RD7s st_read.testSocket : PASS RD1 st_read.testSimpleRead : RUNNING RD1 st_read.testSimpleRead : PASS RD11 st_read.testOldStateid : RUNNING RD11 st_read.testOldStateid : PASS RD8 st_read.testNoFh : RUNNING RD8 st_read.testNoFh : PASS RD7a st_read.testLink : RUNNING RD7a st_read.testLink : PASS RD5 st_read.testLargeOffset : RUNNING RD5 st_read.testLargeOffset : PASS RD7f st_read.testFifo : RUNNING RD7f st_read.testFifo : PASS RD7d st_read.testDir : RUNNING RD7d st_read.testDir : PASS ROOT1 st_putrootfh.testSupported : RUNNING ROOT1 st_putrootfh.testSupported : PASS PUB1 st_putpubfh.testSupported : RUNNING PUB1 st_putpubfh.testSupported : PASS PUB2 st_putpubfh.testSameAsRoot : RUNNING PUB2 st_putpubfh.testSameAsRoot : PASS PUTFH1s st_putfh.testSocket : RUNNING PUTFH1s st_putfh.testSocket : PASS PUTFH1a st_putfh.testLink : RUNNING PUTFH1a st_putfh.testLink : PASS PUTFH1r st_putfh.testFile : RUNNING PUTFH1r st_putfh.testFile : PASS PUTFH1f st_putfh.testFifo : RUNNING PUTFH1f st_putfh.testFifo : PASS PUTFH1d st_putfh.testDir : RUNNING PUTFH1d st_putfh.testDir : PASS PUTFH2 st_putfh.testBadHandle : RUNNING PUTFH2 st_putfh.testBadHandle : PASS OPDG6 st_opendowngrade.testStaleStateid : RUNNING OPDG6 st_opendowngrade.testStaleStateid : PASS OPDG1 st_opendowngrade.testRegularOpen : RUNNING OPDG1 st_opendowngrade.testRegularOpen : PASS OPDG10 st_opendowngrade.testOpenDowngradeSequence : RUNNING OPDG10 st_opendowngrade.testOpenDowngradeSequence : PASS OPDG11 st_opendowngrade.testOpenDowngradeLock : RUNNING OPDG11 st_opendowngrade.testOpenDowngradeLock : PASS OPDG7 st_opendowngrade.testOldStateid : RUNNING OPDG7 st_opendowngrade.testOldStateid : PASS OPDG8 st_opendowngrade.testNoFh : RUNNING OPDG8 st_opendowngrade.testNoFh : PASS OPDG3 st_opendowngrade.testNewState2 : RUNNING OPDG3 st_opendowngrade.testNewState2 : PASS OPDG2 st_opendowngrade.testNewState1 : RUNNING OPDG2 st_opendowngrade.testNewState1 : PASS OPDG5 st_opendowngrade.testBadStateid : RUNNING OPDG5 st_opendowngrade.testBadStateid : PASS OPDG4 st_opendowngrade.testBadSeqid : RUNNING OPDG4 st_opendowngrade.testBadSeqid : PASS OPCF6 st_openconfirm.testStaleStateid : RUNNING OPCF6 st_openconfirm.testStaleStateid : PASS OPCF2 st_openconfirm.testNoFh : RUNNING OPCF2 st_openconfirm.testNoFh : PASS OPCF1 st_openconfirm.testConfirmCreate : RUNNING OPCF1 st_openconfirm.testConfirmCreate : PASS OPCF5 st_openconfirm.testBadStateid : RUNNING OPCF5 st_openconfirm.testBadStateid : PASS OPCF4 st_openconfirm.testBadSeqid : RUNNING OPCF4 st_openconfirm.testBadSeqid : PASS OPEN10 st_open.testZeroLenName : RUNNING OPEN10 st_open.testZeroLenName : PASS OPEN29 st_open.testUpgrades : RUNNING OPEN29 st_open.testUpgrades : PASS OPEN15 st_open.testUnsupportedAttributes : RUNNING OPEN15 st_open.testUnsupportedAttributes : PASS OPEN7s st_open.testSocket : RUNNING OPEN7s st_open.testSocket : PASS OPEN18 st_open.testShareConflict1 : RUNNING OPEN18 st_open.testShareConflict1 : PASS OPEN30 st_open.testReplay : RUNNING OPEN30 st_open.testReplay : PASS OPEN6 st_open.testOpenVaporFile : RUNNING OPEN6 st_open.testOpenVaporFile : PASS OPEN5 st_open.testOpenFile : RUNNING OPEN5 st_open.testOpenFile : PASS OPEN12 st_open.testNotDir : RUNNING OPEN12 st_open.testNotDir : PASS OPEN8 st_open.testNoFh : RUNNING OPEN8 st_open.testNoFh : PASS OPEN17 st_open.testModeChange : RUNNING OPEN17 st_open.testModeChange : PASS OPEN11 st_open.testLongName : RUNNING OPEN11 st_open.testLongName : PASS OPEN7a st_open.testLink : RUNNING OPEN7a st_open.testLink : PASS OPEN14 st_open.testInvalidAttrmask : RUNNING OPEN14 st_open.testInvalidAttrmask : PASS OPEN7f st_open.testFifo : RUNNING OPEN7f st_open.testFifo : PASS OPEN20 st_open.testFailedOpen : RUNNING OPEN20 st_open.testFailedOpen : PASS OPEN7d st_open.testDir : RUNNING OPEN7d st_open.testDir : PASS OPEN28 st_open.testDenyWrite4 : RUNNING OPEN28 st_open.testDenyWrite4 : PASS OPEN27 st_open.testDenyWrite3 : RUNNING OPEN27 st_open.testDenyWrite3 : PASS OPEN26 st_open.testDenyWrite2 : RUNNING OPEN26 st_open.testDenyWrite2 : PASS OPEN25 st_open.testDenyWrite1 : RUNNING OPEN25 st_open.testDenyWrite1 : PASS OPEN24 st_open.testDenyRead4 : RUNNING OPEN24 st_open.testDenyRead4 : PASS OPEN23b st_open.testDenyRead3a : RUNNING OPEN23b st_open.testDenyRead3a : PASS OPEN23 st_open.testDenyRead3 : RUNNING OPEN23 st_open.testDenyRead3 : PASS OPEN22 st_open.testDenyRead2 : RUNNING OPEN22 st_open.testDenyRead2 : PASS OPEN21 st_open.testDenyRead1 : RUNNING OPEN21 st_open.testDenyRead1 : PASS OPEN2 st_open.testCreateUncheckedFile : RUNNING OPEN2 st_open.testCreateUncheckedFile : PASS OPEN3 st_open.testCreatGuardedFile : RUNNING OPEN3 st_open.testCreatGuardedFile : PASS OPEN4 st_open.testCreatExclusiveFile : RUNNING OPEN4 st_open.testCreatExclusiveFile : PASS OPEN16 st_open.testClaimPrev : RUNNING OPEN16 st_open.testClaimPrev : PASS OPEN31 st_open.testBadSeqid : RUNNING OPEN31 st_open.testBadSeqid : PASS NVF5s st_nverify.testWriteOnlySocket : RUNNING NVF5s st_nverify.testWriteOnlySocket : PASS NVF5a st_nverify.testWriteOnlyLink : RUNNING NVF5a st_nverify.testWriteOnlyLink : PASS NVF5r st_nverify.testWriteOnlyFile : RUNNING NVF5r st_nverify.testWriteOnlyFile : PASS NVF5f st_nverify.testWriteOnlyFifo : RUNNING NVF5f st_nverify.testWriteOnlyFifo : PASS Traceback (most recent call last): File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run self.runtest(self, environment) File "/root/pynfs/nfs4.0/servertests/st_locku.py", line 266, in testTimedoutUnlock c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm check_result(res, "Opening file %s" % _getname(owner, path)) File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result raise BadCompoundRes(resop, res.status, msg) nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY NVF5d st_nverify.testWriteOnlyDir : RUNNING NVF5d st_nverify.testWriteOnlyDir : PASS NVF7s st_nverify.testUnsupportedSocket : RUNNING NVF7s st_nverify.testUnsupportedSocket : PASS NVF7a st_nverify.testUnsupportedLink : RUNNING NVF7a st_nverify.testUnsupportedLink : PASS NVF7r st_nverify.testUnsupportedFile : RUNNING NVF7r st_nverify.testUnsupportedFile : PASS NVF7f st_nverify.testUnsupportedFifo : RUNNING NVF7f st_nverify.testUnsupportedFifo : PASS NVF7d st_nverify.testUnsupportedDir : RUNNING NVF7d st_nverify.testUnsupportedDir : PASS NVF2s st_nverify.testTypeSocket : RUNNING NVF2s st_nverify.testTypeSocket : PASS NVF2a st_nverify.testTypeLink : RUNNING NVF2a st_nverify.testTypeLink : PASS NVF2r st_nverify.testTypeFile : RUNNING NVF2r st_nverify.testTypeFile : PASS NVF2f st_nverify.testTypeFifo : RUNNING NVF2f st_nverify.testTypeFifo : PASS NVF2d st_nverify.testTypeDir : RUNNING NVF2d st_nverify.testTypeDir : PASS NVF4 st_nverify.testNoFh : RUNNING NVF4 st_nverify.testNoFh : PASS NVF1s st_nverify.testMandSocket : RUNNING NVF1s st_nverify.testMandSocket : PASS NVF1a st_nverify.testMandLink : RUNNING NVF1a st_nverify.testMandLink : PASS NVF1r st_nverify.testMandFile : RUNNING NVF1r st_nverify.testMandFile : PASS NVF1f st_nverify.testMandFifo : RUNNING NVF1f st_nverify.testMandFifo : PASS NVF1d st_nverify.testMandDir : RUNNING NVF1d st_nverify.testMandDir : PASS NVF3s st_nverify.testBadSizeSocket : RUNNING NVF3s st_nverify.testBadSizeSocket : PASS NVF3a st_nverify.testBadSizeLink : RUNNING NVF3a st_nverify.testBadSizeLink : PASS NVF3r st_nverify.testBadSizeFile : RUNNING NVF3r st_nverify.testBadSizeFile : PASS NVF3f st_nverify.testBadSizeFifo : RUNNING NVF3f st_nverify.testBadSizeFifo : PASS NVF3d st_nverify.testBadSizeDir : RUNNING NVF3d st_nverify.testBadSizeDir : PASS LOOKP2s st_lookupp.testSock : RUNNING LOOKP2s st_lookupp.testSock : PASS LOOKP4 st_lookupp.testNoFh : RUNNING LOOKP4 st_lookupp.testNoFh : PASS LOOKP2a st_lookupp.testLink : RUNNING LOOKP2a st_lookupp.testLink : PASS LOOKP2r st_lookupp.testFile : RUNNING LOOKP2r st_lookupp.testFile : PASS LOOKP2f st_lookupp.testFifo : RUNNING LOOKP2f st_lookupp.testFifo : PASS LOOKP1 st_lookupp.testDir : RUNNING LOOKP1 st_lookupp.testDir : PASS LOOKP3 st_lookupp.testAtRoot : RUNNING LOOKP3 st_lookupp.testAtRoot : PASS LOOK3 st_lookup.testZeroLength : RUNNING LOOK3 st_lookup.testZeroLength : PASS LOOK9 st_lookup.testUnaccessibleDir : RUNNING LOOK9 st_lookup.testUnaccessibleDir : PASS LOOK5a st_lookup.testSymlinkNotDir : RUNNING LOOK5a st_lookup.testSymlinkNotDir : PASS LOOK5s st_lookup.testSocketNotDir : RUNNING LOOK5s st_lookup.testSocketNotDir : PASS LOOK2 st_lookup.testNonExistent : RUNNING LOOK2 st_lookup.testNonExistent : PASS LOOK6 st_lookup.testNonAccessable : RUNNING LOOK6 st_lookup.testNonAccessable : PASS LOOK1 st_lookup.testNoFh : RUNNING LOOK1 st_lookup.testNoFh : PASS LOOK4 st_lookup.testLongName : RUNNING LOOK4 st_lookup.testLongName : PASS LOOK5r st_lookup.testFileNotDir : RUNNING LOOK5r st_lookup.testFileNotDir : PASS LOOK5f st_lookup.testFifoNotDir : RUNNING LOOK5f st_lookup.testFifoNotDir : PASS LOOK8 st_lookup.testDots : RUNNING LOOK8 st_lookup.testDots : PASS LOOK10 st_lookup.testBadOpaque : RUNNING LOOK10 st_lookup.testBadOpaque : PASS LKU3 st_locku.testZeroLen : RUNNING LKU3 st_locku.testZeroLen : PASS LKUNONE st_locku.testUnlocked : RUNNING LKUNONE st_locku.testUnlocked : PASS LKU10 st_locku.testTimedoutUnlock : RUNNING Sleeping for 22 seconds: Woke up LKU10 st_locku.testTimedoutUnlock : FAILURE nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY LKU9 st_locku.testStaleLockStateid : RUNNING LKU9 st_locku.testStaleLockStateid : PASS LKUSPLIT st_locku.testSplit : RUNNING LKUSPLIT st_locku.testSplit : PASS LKUOVER st_locku.testOverlap : RUNNING LKUOVER st_locku.testOverlap : PASS LKU7 st_locku.testOldLockStateid : RUNNING LKU7 st_locku.testOldLockStateid : PASS LKU5 st_locku.testNoFh : RUNNING LKU5 st_locku.testNoFh : PASS LKU4 st_locku.testLenTooLong : RUNNING LKU4 st_locku.testLenTooLong : PASS LOCK1 st_lock.testFile : RUNNING LOCK1 st_lock.testFile : PASS LKU1 st_locku.testFile : RUNNING LKU1 st_locku.testFile : PASS LKU8 st_locku.testBadLockStateid : RUNNING LKU8 st_locku.testBadLockStateid : PASS LKU6b st_locku.testBadLockSeqid2 : RUNNING LKU6b st_locku.testBadLockSeqid2 : PASS LKU6 st_locku.testBadLockSeqid : RUNNING LKU6 st_locku.testBadLockSeqid : PASS LOCKRNG st_lock.test32bitRange : RUNNING LOCKRNG st_lock.test32bitRange : PASS LKU2 st_locku.test32bitRange : RUNNING LKU2 st_locku.test32bitRange : PASS LKT6 st_lockt.testZeroLen : RUNNING LKT6 st_lockt.testZeroLen : PASS LKT1 st_lockt.testUnlockedFile : RUNNING LKT1 st_lockt.testUnlockedFile : PASS LKT9 st_lockt.testStaleClientid : RUNNING LKT9 st_lockt.testStaleClientid : PASS LKT2s st_lockt.testSocket : RUNNING LKT2s st_lockt.testSocket : PASS LKT4 st_lockt.testPartialLockedFile2 : RUNNING LKT4 st_lockt.testPartialLockedFile2 : PASS LKT3 st_lockt.testPartialLockedFile1 : RUNNING LKT3 st_lockt.testPartialLockedFile1 : PASS LKTOVER st_lockt.testOverlap : RUNNING LKTOVER st_lockt.testOverlap : PASS LKT8 st_lockt.testNoFh : RUNNING LKT8 st_lockt.testNoFh : PASS LKT2a st_lockt.testLink : RUNNING LKT2a st_lockt.testLink : PASS LKT7 st_lockt.testLenTooLong : RUNNING LKT7 st_lockt.testLenTooLong : PASS LKT2f st_lockt.testFifo : RUNNING LKT2f st_lockt.testFifo : PASS LKT2d st_lockt.testDir : RUNNING LKT2d st_lockt.testDir : PASS LKT5 st_lockt.test32bitRange : RUNNING LKT5 st_lockt.test32bitRange : PASS LOCK5 st_lock.testZeroLen : RUNNING LOCK5 st_lock.testZeroLen : PASS LOCKCHGU st_lock.testUpgrade : RUNNING LOCKCHGU st_lock.testUpgrade : PASS LOCK13 st_lock.testTimedoutGrabLock : RUNNING Sleeping for 7 seconds: Woke up Sleeping for 7 seconds: Woke up Sleeping for 7 seconds: Woke up LOCK13 st_lock.testTimedoutGrabLock : PASS LOCK12b st_lock.testStaleOpenStateid : RUNNING LOCK12b st_lock.testStaleOpenStateid : PASS LOCK12a st_lock.testStaleLockStateid : RUNNING LOCK12a st_lock.testStaleLockStateid : PASS LOCK10 st_lock.testStaleClientid : RUNNING LOCK10 st_lock.testStaleClientid : PASS LOCK17 st_lock.testReadLocks2 : RUNNING LOCK17 st_lock.testReadLocks2 : PASS LOCK16 st_lock.testReadLocks1 : RUNNING LOCK16 st_lock.testReadLocks1 : PASS LOCKMRG st_lock.testOverlap : RUNNING LOCKMRG st_lock.testOverlap : PASS LOCK23 st_lock.testOpenDowngradeLock : RUNNING LOCK23 st_lock.testOpenDowngradeLock : PASS LOCK9c st_lock.testOldOpenStateid2 : RUNNING LOCK9c st_lock.testOldOpenStateid2 : PASS LOCK9b st_lock.testOldOpenStateid : RUNNING LOCK9b st_lock.testOldOpenStateid : PASS LOCK9a st_lock.testOldLockStateid : RUNNING LOCK9a st_lock.testOldLockStateid : PASS LOCK7 st_lock.testNoFh : RUNNING LOCK7 st_lock.testNoFh : PASS LOCK4 st_lock.testMode : RUNNING LOCK4 st_lock.testMode : PASS LOCK6 st_lock.testLenTooLong : RUNNING LOCK6 st_lock.testLenTooLong : PASS LOCK15 st_lock.testGrabLock2 : RUNNING LOCK15 st_lock.testGrabLock2 : PASS LOCK14 st_lock.testGrabLock1 : RUNNING LOCK14 st_lock.testGrabLock1 : PASS LOCK3 st_lock.testExistingFile : RUNNING LOCK3 st_lock.testExistingFile : PASS LOCKCHGD st_lock.testDowngrade : RUNNING LOCKCHGD st_lock.testDowngrade : PASS LOCKHELD st_lock.testClose : RUNNING LOCKHELD st_lock.testClose : PASS LOCK20 st_lock.testBlockTimeout : RUNNING Sleeping for 7 seconds: Waiting for queued blocking lock to timeout Woke up Sleeping for 7 seconds: Waiting for queued blocking lock to timeout Woke up Sleeping for 7 seconds: Waiting for queued blocking lock to timeout Woke up LOCK20 st_lock.testBlockTimeout : PASS LOCK11 st_lock.testBadStateid : RUNNING LOCK11 st_lock.testBadStateid : PASS LOCK8b st_lock.testBadOpenSeqid : RUNNING LOCK8b st_lock.testBadOpenSeqid : PASS LOCK8a st_lock.testBadLockSeqid : RUNNING LOCK8a st_lock.testBadLockSeqid : PASS LINK6 st_link.testZeroLenName : RUNNING LINK6 st_link.testZeroLenName : PASS LINK1s st_link.testSocket : RUNNING LINK1s st_link.testSocket : PASS LINK2 st_link.testNoSfh : RUNNING LINK2 st_link.testNoSfh : PASS LINK3 st_link.testNoCfh : RUNNING LINK3 st_link.testNoCfh : PASS LINK7 st_link.testLongName : RUNNING LINK7 st_link.testLongName : PASS LINK1a st_link.testLink : RUNNING LINK1a st_link.testLink : PASS LINK1r st_link.testFile : RUNNING LINK1r st_link.testFile : PASS LINK1f st_link.testFifo : RUNNING LINK1f st_link.testFifo : PASS LINK5 st_link.testExists : RUNNING LINK5 st_link.testExists : PASS LINK9 st_link.testDots : RUNNING LINK9 st_link.testDots : PASS LINK1d st_link.testDir : RUNNING LINK1d st_link.testDir : PASS LINK4s st_link.testCfhSocket : RUNNING LINK4s st_link.testCfhSocket : PASS LINK4a st_link.testCfhLink : RUNNING LINK4a st_link.testCfhLink : PASS LINK4r st_link.testCfhFile : RUNNING LINK4r st_link.testCfhFile : PASS LINK4f st_link.testCfhFifo : RUNNING LINK4f st_link.testCfhFifo : PASS GF1s st_getfh.testSocket : RUNNING GF1s st_getfh.testSocket : PASS GF9 st_getfh.testNoFh : RUNNING GF9 st_getfh.testNoFh : PASS GF1a st_getfh.testLink : RUNNING GF1a st_getfh.testLink : PASS GF1r st_getfh.testFile : RUNNING GF1r st_getfh.testFile : PASS GF1f st_getfh.testFifo : RUNNING GF1f st_getfh.testFifo : PASS GF1d st_getfh.testDir : RUNNING GF1d st_getfh.testDir : PASS GATT3s st_getattr.testWriteOnlySocket : RUNNING GATT3s st_getattr.testWriteOnlySocket : PASS GATT3a st_getattr.testWriteOnlyLink : RUNNING GATT3a st_getattr.testWriteOnlyLink : PASS GATT3r st_getattr.testWriteOnlyFile : RUNNING GATT3r st_getattr.testWriteOnlyFile : PASS GATT3f st_getattr.testWriteOnlyFifo : RUNNING GATT3f st_getattr.testWriteOnlyFifo : PASS GATT3d st_getattr.testWriteOnlyDir : RUNNING GATT3d st_getattr.testWriteOnlyDir : PASS GATT4s st_getattr.testUnknownAttrSocket : RUNNING GATT4s st_getattr.testUnknownAttrSocket : PASS GATT4a st_getattr.testUnknownAttrLink : RUNNING GATT4a st_getattr.testUnknownAttrLink : PASS GATT4r st_getattr.testUnknownAttrFile : RUNNING GATT4r st_getattr.testUnknownAttrFile : PASS GATT4f st_getattr.testUnknownAttrFifo : RUNNING GATT4f st_getattr.testUnknownAttrFifo : PASS GATT4d st_getattr.testUnknownAttrDir : RUNNING GATT4d st_getattr.testUnknownAttrDir : PASS GATT6s st_getattr.testSupportedSocket : RUNNING GATT6s st_getattr.testSupportedSocket : PASS GATT6a st_getattr.testSupportedLink : RUNNING GATT6a st_getattr.testSupportedLink : PASS GATT6r st_getattr.testSupportedFile : RUNNING GATT6r st_getattr.testSupportedFile : PASS GATT6f st_getattr.testSupportedFifo : RUNNING GATT6f st_getattr.testSupportedFifo : PASS GATT6d st_getattr.testSupportedDir : RUNNING GATT6d st_getattr.testSupportedDir : PASS GATT10 st_getattr.testOwnerName : RUNNING GATT10 st_getattr.testOwnerName : PASS GATT2 st_getattr.testNoFh : RUNNING GATT2 st_getattr.testNoFh : PASS GATT1s st_getattr.testMandSocket : RUNNING GATT1s st_getattr.testMandSocket : PASS GATT1a st_getattr.testMandLink : RUNNING GATT1a st_getattr.testMandLink : PASS GATT1r st_getattr.testMandFile : RUNNING GATT1r st_getattr.testMandFile : PASS GATT1f st_getattr.testMandFifo : RUNNING GATT1f st_getattr.testMandFifo : PASS GATT1d st_getattr.testMandDir : RUNNING GATT1d st_getattr.testMandDir : PASS GATT9 st_getattr.testLotsofGetattrsFile : RUNNING GATT9 st_getattr.testLotsofGetattrsFile : PASS GATT7s st_getattr.testLongSocket : RUNNING GATT7s st_getattr.testLongSocket : PASS GATT7a st_getattr.testLongLink : RUNNING GATT7a st_getattr.testLongLink : PASS GATT7r st_getattr.testLongFile : RUNNING GATT7r st_getattr.testLongFile : PASS GATT7f st_getattr.testLongFifo : RUNNING GATT7f st_getattr.testLongFifo : PASS GATT7d st_getattr.testLongDir : RUNNING GATT7d st_getattr.testLongDir : PASS GATT8 st_getattr.testFSLocations : RUNNING GATT8 st_getattr.testFSLocations : PASS GATT5s st_getattr.testEmptySocket : RUNNING GATT5s st_getattr.testEmptySocket : PASS GATT5a st_getattr.testEmptyLink : RUNNING GATT5a st_getattr.testEmptyLink : PASS GATT5r st_getattr.testEmptyFile : RUNNING GATT5r st_getattr.testEmptyFile : PASS GATT5f st_getattr.testEmptyFifo : RUNNING GATT5f st_getattr.testEmptyFifo : PASS GATT5d st_getattr.testEmptyDir : RUNNING GATT5d st_getattr.testEmptyDir : PASS CR9a st_create.testZeroLengthForLNK : RUNNING CR9a st_create.testZeroLengthForLNK : PASS CR9 st_create.testZeroLength : RUNNING CR9 st_create.testZeroLength : PASS CR12 st_create.testUnsupportedAttributes : RUNNING CR12 st_create.testUnsupportedAttributes : PASS CR14 st_create.testSlash : RUNNING CR14 st_create.testSlash : PASS CR10 st_create.testRegularFile : RUNNING CR10 st_create.testRegularFile : PASS CR8 st_create.testNoFh : RUNNING CR8 st_create.testNoFh : PASS CR15 st_create.testLongName : RUNNING CR15 st_create.testLongName : PASS CR11 st_create.testInvalidAttrmask : RUNNING CR11 st_create.testInvalidAttrmask : PASS CR13 st_create.testDots : RUNNING CR13 st_create.testDots : PASS CR5 st_create.testDirOffSocket : RUNNING CR5 st_create.testDirOffSocket : PASS CR2 st_create.testDirOffLink : RUNNING Traceback (most recent call last): File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run self.runtest(self, environment) File "/root/pynfs/nfs4.0/servertests/st_close.py", line 142, in testTimedoutClose2 c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm check_result(res, "Opening file %s" % _getname(owner, path)) File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result raise BadCompoundRes(resop, res.status, msg) nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY Traceback (most recent call last): File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run self.runtest(self, environment) File "/root/pynfs/nfs4.0/servertests/st_close.py", line 118, in testTimedoutClose1 c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm check_result(res, "Opening file %s" % _getname(owner, path)) File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result raise BadCompoundRes(resop, res.status, msg) nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY CR2 st_create.testDirOffLink : PASS CR7 st_create.testDirOffFile : RUNNING CR7 st_create.testDirOffFile : PASS CR6 st_create.testDirOffFIFO : RUNNING CR6 st_create.testDirOffFIFO : PASS COMP1 st_compound.testZeroOps : RUNNING COMP1 st_compound.testZeroOps : PASS COMP5 st_compound.testUndefined : RUNNING COMP5 st_compound.testUndefined : PASS COMP6 st_compound.testLongCompound : RUNNING COMP6 st_compound.testLongCompound : PASS COMP4 st_compound.testInvalidMinor : RUNNING COMP4 st_compound.testInvalidMinor : PASS COMP2 st_compound.testGoodTag : RUNNING COMP2 st_compound.testGoodTag : PASS CMT2s st_commit.testSocket : RUNNING CMT2s st_commit.testSocket : PASS CMT3 st_commit.testNoFh : RUNNING CMT3 st_commit.testNoFh : PASS CMT2a st_commit.testLink : RUNNING CMT2a st_commit.testLink : PASS CMT2f st_commit.testFifo : RUNNING CMT2f st_commit.testFifo : PASS CMT2d st_commit.testDir : RUNNING CMT2d st_commit.testDir : PASS CMT4 st_commit.testCommitOverflow : RUNNING CMT4 st_commit.testCommitOverflow : PASS CMT1d st_commit.testCommitOffsetMax2 : RUNNING CMT1d st_commit.testCommitOffsetMax2 : PASS CMT1c st_commit.testCommitOffsetMax1 : RUNNING CMT1c st_commit.testCommitOffsetMax1 : PASS CMT1b st_commit.testCommitOffset1 : RUNNING CMT1b st_commit.testCommitOffset1 : PASS CMT1aa st_commit.testCommitOffset0 : RUNNING CMT1aa st_commit.testCommitOffset0 : PASS CMT1f st_commit.testCommitCountMax : RUNNING CMT1f st_commit.testCommitCountMax : PASS CMT1e st_commit.testCommitCount1 : RUNNING CMT1e st_commit.testCommitCount1 : PASS CLOSE9 st_close.testTimedoutClose2 : RUNNING Sleeping for 30 seconds: Woke up CLOSE9 st_close.testTimedoutClose2 : FAILURE nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY CLOSE8 st_close.testTimedoutClose1 : RUNNING Sleeping for 30 seconds: Woke up CLOSE8 st_close.testTimedoutClose1 : FAILURE nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY CLOSE6 st_close.testStaleStateid : RUNNING CLOSE6 st_close.testStaleStateid : PASS CLOSE12 st_close.testReplaySeqid2 : RUNNING CLOSE12 st_close.testReplaySeqid2 : PASS CLOSE10 st_close.testReplaySeqid1 : RUNNING CLOSE10 st_close.testReplaySeqid1 : PASS CLOSE5 st_close.testOldStateid : RUNNING CLOSE5 st_close.testOldStateid : PASS CLOSE7 st_close.testNoCfh : RUNNING CLOSE7 st_close.testNoCfh : PASS CLOSE11 st_close.testNextSeqid : RUNNING CLOSE11 st_close.testNextSeqid : PASS CLOSE2 st_close.testCloseOpen : RUNNING CLOSE2 st_close.testCloseOpen : PASS CLOSE1 st_close.testCloseCreate : RUNNING CLOSE1 st_close.testCloseCreate : PASS CLOSE4 st_close.testBadStateid : RUNNING CLOSE4 st_close.testBadStateid : PASS CLOSE3 st_close.testBadSeqid : RUNNING CLOSE3 st_close.testBadSeqid : PASS ACL0 st_acl.testACLsupport : RUNNING ACL0 st_acl.testACLsupport : PASS ACL10 st_acl.testLargeACL : RUNNING ACL10 st_acl.testLargeACL : PASS ACL5 st_acl.testACL : RUNNING ACL5 st_acl.testACL : PASS ACC1s st_access.testReadSocket : RUNNING ACC1s st_access.testReadSocket : PASS ACC1a st_access.testReadLink : RUNNING ACC1a st_access.testReadLink : PASS ACC1r st_access.testReadFile : RUNNING ACC1r st_access.testReadFile : PASS ACC1f st_access.testReadFifo : RUNNING ACC1f st_access.testReadFifo : PASS ACC1d st_access.testReadDir : RUNNING ACC1d st_access.testReadDir : PASS ACC3 st_access.testNoFh : RUNNING ACC3 st_access.testNoFh : PASS ACC4s st_access.testInvalidsSocket : RUNNING ACC4s st_access.testInvalidsSocket : PASS ACC4a st_access.testInvalidsLink : RUNNING ACC4a st_access.testInvalidsLink : PASS ACC4r st_access.testInvalidsFile : RUNNING ACC4r st_access.testInvalidsFile : PASS ACC4f st_access.testInvalidsFifo : RUNNING ACC4f st_access.testInvalidsFifo : PASS ACC4d st_access.testInvalidsDir : RUNNING ACC4d st_access.testInvalidsDir : PASS ACC2s st_access.testAllSocket : RUNNING ACC2s st_access.testAllSocket : PASS ACC2a st_access.testAllLink : RUNNING ACC2a st_access.testAllLink : PASS ACC2r st_access.testAllFile : RUNNING ACC2r st_access.testAllFile : PASS ACC2f st_access.testAllFifo : RUNNING ACC2f st_access.testAllFifo : PASS ACC2d st_access.testAllDir : RUNNING ACC2d st_access.testAllDir : PASS ************************************************** RENEW3 st_renew.testExpired : FAILURE nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY LKU10 st_locku.testTimedoutUnlock : FAILURE nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY CLOSE9 st_close.testTimedoutClose2 : FAILURE nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY CLOSE8 st_close.testTimedoutClose1 : FAILURE nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY ************************************************** Command line asked for 526 of 673 tests Of those: 7 Skipped, 4 Failed, 0 Warned, 515 Passed root pynfs tests: MKCHAR st_create.testChar : RUNNING MKCHAR st_create.testChar : PASS WRT6c st_write.testChar : RUNNING WRT6c st_write.testChar : PASS MKBLK st_create.testBlock : RUNNING MKBLK st_create.testBlock : PASS WRT6b st_write.testBlock : RUNNING WRT6b st_write.testBlock : PASS LOOKCHAR st_lookup.testChar : RUNNING LOOKCHAR st_lookup.testChar : PASS VF5c st_verify.testWriteOnlyChar : RUNNING VF5c st_verify.testWriteOnlyChar : PASS LOOKBLK st_lookup.testBlock : RUNNING LOOKBLK st_lookup.testBlock : PASS VF5b st_verify.testWriteOnlyBlock : RUNNING VF5b st_verify.testWriteOnlyBlock : PASS VF7c st_verify.testUnsupportedChar : RUNNING VF7c st_verify.testUnsupportedChar : PASS VF7b st_verify.testUnsupportedBlock : RUNNING VF7b st_verify.testUnsupportedBlock : PASS VF2c st_verify.testTypeChar : RUNNING VF2c st_verify.testTypeChar : PASS VF2b st_verify.testTypeBlock : RUNNING VF2b st_verify.testTypeBlock : PASS VF1c st_verify.testMandChar : RUNNING VF1c st_verify.testMandChar : PASS VF1b st_verify.testMandBlock : RUNNING VF1b st_verify.testMandBlock : PASS VF3c st_verify.testBadSizeChar : RUNNING VF3c st_verify.testBadSizeChar : PASS VF3b st_verify.testBadSizeBlock : RUNNING VF3b st_verify.testBadSizeBlock : PASS SATT11c st_setattr.testUnsupportedChar : RUNNING SATT11c st_setattr.testUnsupportedChar : PASS SATT11b st_setattr.testUnsupportedBlock : RUNNING SATT11b st_setattr.testUnsupportedBlock : PASS SATT12c st_setattr.testSizeChar : RUNNING SATT12c st_setattr.testSizeChar : PASS SATT12b st_setattr.testSizeBlock : RUNNING SATT12b st_setattr.testSizeBlock : PASS MKDIR st_create.testDir : RUNNING MKDIR st_create.testDir : PASS SATT6d st_setattr.testReadonlyDir : RUNNING SATT6d st_setattr.testReadonlyDir : PASS SATT6c st_setattr.testReadonlyChar : RUNNING SATT6c st_setattr.testReadonlyChar : PASS SATT6b st_setattr.testReadonlyBlock : RUNNING SATT6b st_setattr.testReadonlyBlock : PASS MODE st_setattr.testMode : RUNNING MODE st_setattr.testMode : PASS SATT1c st_setattr.testChar : RUNNING SATT1c st_setattr.testChar : PASS SATT1b st_setattr.testBlock : RUNNING SATT1b st_setattr.testBlock : PASS SVFH2c st_restorefh.testValidChar : RUNNING SVFH2c st_restorefh.testValidChar : PASS SVFH2b st_restorefh.testValidBlock : RUNNING SVFH2b st_restorefh.testValidBlock : PASS RNM1c st_rename.testValidChar : RUNNING RNM1c st_rename.testValidChar : PASS RNM1b st_rename.testValidBlock : RUNNING RNM1b st_rename.testValidBlock : PASS RNM2c st_rename.testSfhChar : RUNNING RNM2c st_rename.testSfhChar : PASS RNM2b st_rename.testSfhBlock : RUNNING RNM2b st_rename.testSfhBlock : PASS RNM3c st_rename.testCfhChar : RUNNING RNM3c st_rename.testCfhChar : PASS RNM3b st_rename.testCfhBlock : RUNNING RNM3b st_rename.testCfhBlock : PASS RM1c st_remove.testChar : RUNNING RM1c st_remove.testChar : PASS RM2c st_remove.testCfhChar : RUNNING RM2c st_remove.testCfhChar : PASS RM2b st_remove.testCfhBlock : RUNNING RM2b st_remove.testCfhBlock : PASS RM1b st_remove.testBlock : RUNNING RM1b st_remove.testBlock : PASS RDLK2c st_readlink.testChar : RUNNING RDLK2c st_readlink.testChar : PASS RDLK2b st_readlink.testBlock : RUNNING RDLK2b st_readlink.testBlock : PASS RDDR5c st_readdir.testFhChar : RUNNING RDDR5c st_readdir.testFhChar : PASS RDDR5b st_readdir.testFhBlock : RUNNING RDDR5b st_readdir.testFhBlock : PASS RD7c st_read.testChar : RUNNING RD7c st_read.testChar : PASS RD7b st_read.testBlock : RUNNING RD7b st_read.testBlock : PASS PUTFH1c st_putfh.testChar : RUNNING PUTFH1c st_putfh.testChar : PASS PUTFH1b st_putfh.testBlock : RUNNING PUTFH1b st_putfh.testBlock : PASS INIT st_setclientid.testValid : RUNNING INIT st_setclientid.testValid : PASS OPEN7c st_open.testChar : RUNNING OPEN7c st_open.testChar : PASS OPEN7b st_open.testBlock : RUNNING OPEN7b st_open.testBlock : PASS NVF5c st_nverify.testWriteOnlyChar : RUNNING NVF5c st_nverify.testWriteOnlyChar : PASS NVF5b st_nverify.testWriteOnlyBlock : RUNNING NVF5b st_nverify.testWriteOnlyBlock : PASS NVF7c st_nverify.testUnsupportedChar : RUNNING NVF7c st_nverify.testUnsupportedChar : PASS NVF7b st_nverify.testUnsupportedBlock : RUNNING NVF7b st_nverify.testUnsupportedBlock : PASS NVF2c st_nverify.testTypeChar : RUNNING NVF2c st_nverify.testTypeChar : PASS NVF2b st_nverify.testTypeBlock : RUNNING NVF2b st_nverify.testTypeBlock : PASS NVF1c st_nverify.testMandChar : RUNNING NVF1c st_nverify.testMandChar : PASS NVF1b st_nverify.testMandBlock : RUNNING NVF1b st_nverify.testMandBlock : PASS NVF3c st_nverify.testBadSizeChar : RUNNING NVF3c st_nverify.testBadSizeChar : PASS NVF3b st_nverify.testBadSizeBlock : RUNNING NVF3b st_nverify.testBadSizeBlock : PASS LOOKP2c st_lookupp.testChar : RUNNING LOOKP2c st_lookupp.testChar : PASS LOOKP2b st_lookupp.testBlock : RUNNING LOOKP2b st_lookupp.testBlock : PASS LOOK5c st_lookup.testCharNotDir : RUNNING LOOK5c st_lookup.testCharNotDir : PASS LOOK5b st_lookup.testBlockNotDir : RUNNING LOOK5b st_lookup.testBlockNotDir : PASS LKT2c st_lockt.testChar : RUNNING LKT2c st_lockt.testChar : PASS LKT2b st_lockt.testBlock : RUNNING LKT2b st_lockt.testBlock : PASS LINKS st_link.testSupported : RUNNING LINKS st_link.testSupported : PASS LINK1c st_link.testChar : RUNNING LINK1c st_link.testChar : PASS LOOKFILE st_lookup.testFile : RUNNING LOOKFILE st_lookup.testFile : PASS LINK4c st_link.testCfhChar : RUNNING LINK4c st_link.testCfhChar : PASS LINK4b st_link.testCfhBlock : RUNNING LINK4b st_link.testCfhBlock : PASS LINK1b st_link.testBlock : RUNNING LINK1b st_link.testBlock : PASS GF1c st_getfh.testChar : RUNNING GF1c st_getfh.testChar : PASS GF1b st_getfh.testBlock : RUNNING GF1b st_getfh.testBlock : PASS GATT3c st_getattr.testWriteOnlyChar : RUNNING GATT3c st_getattr.testWriteOnlyChar : PASS GATT3b st_getattr.testWriteOnlyBlock : RUNNING GATT3b st_getattr.testWriteOnlyBlock : PASS GATT4c st_getattr.testUnknownAttrChar : RUNNING GATT4c st_getattr.testUnknownAttrChar : PASS GATT4b st_getattr.testUnknownAttrBlock : RUNNING GATT4b st_getattr.testUnknownAttrBlock : PASS GATT6c st_getattr.testSupportedChar : RUNNING GATT6c st_getattr.testSupportedChar : PASS GATT6b st_getattr.testSupportedBlock : RUNNING GATT6b st_getattr.testSupportedBlock : PASS GATT1c st_getattr.testMandChar : RUNNING GATT1c st_getattr.testMandChar : PASS GATT1b st_getattr.testMandBlock : RUNNING GATT1b st_getattr.testMandBlock : PASS GATT7c st_getattr.testLongChar : RUNNING GATT7c st_getattr.testLongChar : PASS GATT7b st_getattr.testLongBlock : RUNNING GATT7b st_getattr.testLongBlock : PASS GATT5c st_getattr.testEmptyChar : RUNNING GATT5c st_getattr.testEmptyChar : PASS GATT5b st_getattr.testEmptyBlock : RUNNING GATT5b st_getattr.testEmptyBlock : PASS CR4 st_create.testDirOffChar : RUNNING CR4 st_create.testDirOffChar : PASS CR3 st_create.testDirOffBlock : RUNNING CR3 st_create.testDirOffBlock : PASS CMT2c st_commit.testChar : RUNNING CMT2c st_commit.testChar : PASS CMT2b st_commit.testBlock : RUNNING CMT2b st_commit.testBlock : PASS ACC1c st_access.testReadChar : RUNNING ACC1c st_access.testReadChar : PASS ACC1b st_access.testReadBlock : RUNNING ACC1b st_access.testReadBlock : PASS ACC4c st_access.testInvalidsChar : RUNNING ACC4c st_access.testInvalidsChar : PASS ACC4b st_access.testInvalidsBlock : RUNNING ACC4b st_access.testInvalidsBlock : PASS ACC2c st_access.testAllChar : RUNNING ACC2c st_access.testAllChar : PASS ACC2b st_access.testAllBlock : RUNNING ACC2b st_access.testAllBlock : PASS ************************************************** ************************************************** Command line asked for 96 of 673 tests Of those: 0 Skipped, 0 Failed, 0 Warned, 96 Passed INFO :rpc.poll:got connection from ('127.0.0.1', 51342), assigned to fd=5 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Created client to test1.fieldses.org, 2049 INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=17, name=b'socket', attrs={}), entry4(cookie=19, name=b'fifo', attrs={}), entry4(cookie=21, name=b'link', attrs={}), entry4(cookie=24, name=b'block', attrs={}), entry4(cookie=26, name=b'char', attrs={}), entry4(cookie=512, name=b'file', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [] INFO :test.env:client 1 creates file OK INFO :test.env:client 2 open file OK INFO :test.env:force lease to expire... INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs INFO :test.env:Woke up INFO :test.env:3rd client open OK - PASSED INFO :test.env:client 1 creates file OK INFO :test.env:force lease to expire... INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs INFO :test.env:Woke up INFO :test.env:2nd client open OK - PASSED INFO :test.env:2nd client open OK - PASSED INFO :test.env:local open conflict detected - PASSED INFO :test.env:2nd client open conflict detected - PASSED INFO :test.env:force lease to expire... INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs INFO :test.env:Woke up INFO :test.env:3nd client opened OK - no conflict detected - PASSED INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread WARNING:test.env:server took approximately 13 seconds to lift grace after all clients reclaimed INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Sleeping for 10 seconds: Delaying start of reclaim INFO :test.env:Woke up INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread WARNING:test.env:server took approximately 14 seconds to lift grace after all clients reclaimed INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :rpc.poll:Closing 6 INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 6 generated by another thread INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end INFO :test.env:Woke up COUR6 st_courtesy.testShareReservationDB03 : RUNNING COUR6 st_courtesy.testShareReservationDB03 : PASS COUR5 st_courtesy.testShareReservationDB02 : RUNNING COUR5 st_courtesy.testShareReservationDB02 : PASS COUR4 st_courtesy.testShareReservationDB01 : RUNNING COUR4 st_courtesy.testShareReservationDB01 : PASS COUR3 st_courtesy.testShareReservation00 : RUNNING COUR3 st_courtesy.testShareReservation00 : PASS COUR2 st_courtesy.testLockSleepLock : RUNNING COUR2 st_courtesy.testLockSleepLock : PASS CSID3 st_current_stateid.testOpenWriteClose : RUNNING CSID3 st_current_stateid.testOpenWriteClose : PASS CSID8 st_current_stateid.testOpenSetattr : RUNNING CSID8 st_current_stateid.testOpenSetattr : PASS CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : RUNNING CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : PASS CSID5 st_current_stateid.testOpenLookupClose : RUNNING CSID5 st_current_stateid.testOpenLookupClose : PASS CSID9 st_current_stateid.testOpenFreestateidClose : RUNNING CSID9 st_current_stateid.testOpenFreestateidClose : PASS CSID1 st_current_stateid.testOpenAndClose : RUNNING CSID1 st_current_stateid.testOpenAndClose : PASS CSID4 st_current_stateid.testLockWriteLocku : RUNNING CSID4 st_current_stateid.testLockWriteLocku : PASS CSID2 st_current_stateid.testLockLockU : RUNNING CSID2 st_current_stateid.testLockLockU : PASS CSID6 st_current_stateid.testCloseNoStateid : RUNNING CSID6 st_current_stateid.testCloseNoStateid : PASS REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : RUNNING REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : PASS REBT2b st_reboot.testRebootWithManyManyClients : RUNNING REBT2b st_reboot.testRebootWithManyManyClients : PASS REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : RUNNING REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : PASS REBT2a st_reboot.testRebootWithManyClients : RUNNING REBT2a st_reboot.testRebootWithManyClients : PASS REBT5 st_reboot.testRebootWithLateReclaim : RUNNING REBT5 st_reboot.testRebootWithLateReclaim : PASS REBT1 st_reboot.testRebootValid : RUNNING REBT1 st_reboot.testRebootValid : PASS REBT3b st_reboot.testDoubleRebootWithManyManyClients : RUNNING REBT3b st_reboot.testDoubleRebootWithManyManyClients : PASS REBT3a st_reboot.testDoubleRebootWithManyClients : RUNNING REBT3a st_reboot.testDoubleRebootWithManyClients : PASS PUTFH1s st_putfh.testSocket : RUNNING PUTFH1s st_putfh.testSocket : PASS PUTFH1a st_putfh.testLink : RUNNING PUTFH1a st_putfh.testLink : PASS PUTFH1r st_putfh.testFile : RUNNING PUTFH1r st_putfh.testFile : PASS PUTFH1f st_putfh.testFifo : RUNNING PUTFH1f st_putfh.testFifo : PASS PUTFH1d st_putfh.testDir : RUNNING PUTFH1d st_putfh.testDir : PASS PUTFH2 st_putfh.testBadHandle : RUNNING PUTFH2 st_putfh.testBadHandle : PASS RNM6 st_rename.testZeroLengthOldname : RUNNING RNM6 st_rename.testZeroLengthOldname : PASS RNM7 st_rename.testZeroLengthNewname : RUNNING RNM7 st_rename.testZeroLengthNewname : PASS RNM1s st_rename.testValidSocket : RUNNING RNM1s st_rename.testValidSocket : PASS RNM1a st_rename.testValidLink : RUNNING RNM1a st_rename.testValidLink : PASS RNM1r st_rename.testValidFile : RUNNING RNM1r st_rename.testValidFile : PASS RNM1f st_rename.testValidFifo : RUNNING RNM1f st_rename.testValidFifo : PASS RNM1d st_rename.testValidDir : RUNNING RNM1d st_rename.testValidDir : PASS RNM2s st_rename.testSfhSocket : RUNNING RNM2s st_rename.testSfhSocket : PASS RNM2a st_rename.testSfhLink : RUNNING RNM2a st_rename.testSfhLink : PASS RNM2r st_rename.testSfhFile : RUNNING RNM2r st_rename.testSfhFile : PASS RNM2f st_rename.testSfhFifo : RUNNING RNM2f st_rename.testSfhFifo : PASS RNM19 st_rename.testSelfRenameFile : RUNNING RNM19 st_rename.testSelfRenameFile : PASS RNM18 st_rename.testSelfRenameDir : RUNNING RNM18 st_rename.testSelfRenameDir : PASS RNM5 st_rename.testNonExistent : RUNNING RNM5 st_rename.testNonExistent : PASS RNM4 st_rename.testNoSfh : RUNNING RNM4 st_rename.testNoSfh : PASS RNM20 st_rename.testLinkRename : RUNNING RNM20 st_rename.testLinkRename : PASS RNM17 st_rename.testFileToFullDir : RUNNING RNM17 st_rename.testFileToFullDir : PASS RNM15 st_rename.testFileToFile : RUNNING RNM15 st_rename.testFileToFile : PASS RNM14 st_rename.testFileToDir : RUNNING RNM14 st_rename.testFileToDir : PASS RNM10 st_rename.testDotsOldname : RUNNING RNM10 st_rename.testDotsOldname : PASS RNM11 st_rename.testDotsNewname : RUNNING RNM11 st_rename.testDotsNewname : PASS RNM12 st_rename.testDirToObj : RUNNING RNM12 st_rename.testDirToObj : PASS RNM16 st_rename.testDirToFullDir : RUNNING RNM16 st_rename.testDirToFullDir : PASS RNM13 st_rename.testDirToDir : RUNNING RNM13 st_rename.testDirToDir : PASS RNM3s st_rename.testCfhSocket : RUNNING RNM3s st_rename.testCfhSocket : PASS RNM3a st_rename.testCfhLink : RUNNING RNM3a st_rename.testCfhLink : PASS RNM3r st_rename.testCfhFile : RUNNING INFO :nfs.client.cb:******************** INFO :nfs.client.cb:Handling COMPOUND INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** INFO :nfs.client.cb:In CB_SEQUENCE INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** INFO :nfs.client.cb:In CB_RECALL INFO :nfs.client.cb:Replying. Status NFS4_OK (0) INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9cWSo[\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] INFO :test.env:Sleeping for 0 seconds: INFO :test.env:Woke up INFO :nfs.client.cb:******************** INFO :nfs.client.cb:Handling COMPOUND INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** INFO :nfs.client.cb:In CB_SEQUENCE INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** INFO :nfs.client.cb:In CB_RECALL INFO :nfs.client.cb:Replying. Status NFS4_OK (0) INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9eWSo]\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] INFO :test.env:Sleeping for 0 seconds: INFO :test.env:Woke up INFO :nfs.client.cb:******************** INFO :nfs.client.cb:Handling COMPOUND INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** INFO :nfs.client.cb:In CB_SEQUENCE INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** INFO :nfs.client.cb:In CB_RECALL INFO :nfs.client.cb:Replying. Status NFS4_OK (0) INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa1WSo`\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] INFO :nfs.client.cb:******************** INFO :nfs.client.cb:Handling COMPOUND INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** INFO :nfs.client.cb:In CB_SEQUENCE INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** INFO :nfs.client.cb:In CB_RECALL INFO :nfs.client.cb:Replying. Status NFS4_OK (0) INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa3WSob\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] INFO :test.env:Sleeping for 0 seconds: INFO :test.env:Woke up INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) INFO :rpc.poll:Adding 8 generated by another thread RNM3r st_rename.testCfhFile : PASS RNM3f st_rename.testCfhFifo : RUNNING RNM3f st_rename.testCfhFifo : PASS LKPP1s st_lookupp.testSock : RUNNING LKPP1s st_lookupp.testSock : PASS LKPP3 st_lookupp.testNoFH : RUNNING LKPP3 st_lookupp.testNoFH : PASS LKPP2 st_lookupp.testLookuppRoot : RUNNING LKPP2 st_lookupp.testLookuppRoot : PASS LKPP1a st_lookupp.testLink : RUNNING LKPP1a st_lookupp.testLink : PASS LKPP1r st_lookupp.testFile : RUNNING LKPP1r st_lookupp.testFile : PASS LKPP1f st_lookupp.testFifo : RUNNING LKPP1f st_lookupp.testFifo : PASS VF1r st_verify.testMandFile : RUNNING VF1r st_verify.testMandFile : PASS DELEG9 st_delegation.testWriteOpenvsReadDeleg : RUNNING DELEG9 st_delegation.testWriteOpenvsReadDeleg : PASS DELEG23 st_delegation.testServerSelfConflict3 : RUNNING __create_file_with_deleg: b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1eX\xc5%' open_delegation4(delegation_type=OPEN_DELEGATE_READ, read=open_read_delegation4(stateid=stateid4(seqid=1, other=b'<\x0b\xdfa\x9cWSo\x02\x00\x00\x00'), recall=False, permissions=nfsace4(type=0, flag=0, access_mask=0, who=b''))) open_file res: COMPOUND4res(status=NFS4_OK, tag=b'environment.py:open_create_file', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_OPEN, opopen=OPEN4res(status=NFS4_OK, resok4=OPEN4resok(stateid=stateid4(seqid=2, other=b'<\x0b\xdfa\x9cWSo\x01\x00\x00\x00'), cinfo=change_info4(atomic=False, before=1763091998602434224, after=1737777748740145092), rflags=36, attrset=0, delegation=open_delegation4(delegation_type=OPEN_DELEGATE_NONE_EXT, od_whynone=open_none_delegation4(ond_why=WND4_NOT_WANTED))))), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4_OK, resok4=GETFH4resok(object=b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1e X\xc5%')))]) DELEG23 st_delegation.testServerSelfConflict3 : PASS DELEG1 st_delegation.testReadDeleg : RUNNING DELEG1 st_delegation.testReadDeleg : PASS DELEG4 st_delegation.testNoDeleg : RUNNING DELEG4 st_delegation.testNoDeleg : PASS DELEG8 st_delegation.testDelegRevocation : RUNNING DELEG8 st_delegation.testDelegRevocation : PASS DELEG6 st_delegation.testCBSecParmsNull : RUNNING DELEG6 st_delegation.testCBSecParmsNull : PASS OPEN1 st_open.testSupported : RUNNING OPEN1 st_open.testSupported : PASS OPEN2 st_open.testServerStateSeqid : RUNNING OPEN2 st_open.testServerStateSeqid : PASS OPEN30 st_open.testReadWrite : RUNNING OPEN30 st_open.testReadWrite : PASS OPEN7 st_open.testOPENClaimFH : RUNNING OPEN7 st_open.testOPENClaimFH : PASS OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : RUNNING OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : PASS OPEN8 st_open.testCloseWithZeroSeqid : RUNNING OPEN8 st_open.testCloseWithZeroSeqid : PASS OPEN31 st_open.testAnonReadWrite : RUNNING OPEN31 st_open.testAnonReadWrite : PASS TRUNK2 st_trunking.testUseTwoSessions : RUNNING TRUNK2 st_trunking.testUseTwoSessions : PASS TRUNK1 st_trunking.testTwoSessions : RUNNING TRUNK1 st_trunking.testTwoSessions : PASS SEQ7 st_sequence.testTooManyOps : RUNNING SEQ7 st_sequence.testTooManyOps : PASS SEQ1 st_sequence.testSupported : RUNNING SEQ1 st_sequence.testSupported : PASS SEQ12 st_sequence.testSessionidSequenceidSlotid : RUNNING SEQ12 st_sequence.testSessionidSequenceidSlotid : PASS SEQ6 st_sequence.testRequestTooBig : RUNNING SEQ6 st_sequence.testRequestTooBig : PASS SEQ10b st_sequence.testReplayCache007 : RUNNING SEQ10b st_sequence.testReplayCache007 : PASS SEQ9f st_sequence.testReplayCache006 : RUNNING SEQ9f st_sequence.testReplayCache006 : PASS SEQ9e st_sequence.testReplayCache005 : RUNNING SEQ9e st_sequence.testReplayCache005 : PASS SEQ9d st_sequence.testReplayCache004 : RUNNING SEQ9d st_sequence.testReplayCache004 : PASS SEQ9c st_sequence.testReplayCache003 : RUNNING SEQ9c st_sequence.testReplayCache003 : PASS SEQ9b st_sequence.testReplayCache002 : RUNNING SEQ9b st_sequence.testReplayCache002 : PASS SEQ9a st_sequence.testReplayCache001 : RUNNING SEQ9a st_sequence.testReplayCache001 : PASS SEQ11 st_sequence.testOpNotInSession : RUNNING SEQ11 st_sequence.testOpNotInSession : PASS SEQ2 st_sequence.testNotFirst : RUNNING SEQ2 st_sequence.testNotFirst : PASS SEQ4 st_sequence.testImplicitBind : RUNNING SEQ4 st_sequence.testImplicitBind : PASS SEQ8 st_sequence.testBadSlot : RUNNING SEQ8 st_sequence.testBadSlot : PASS SEQ5 st_sequence.testBadSession : RUNNING SEQ5 st_sequence.testBadSession : PASS SEQ13 st_sequence.testBadSequenceidAtSlot : RUNNING SEQ13 st_sequence.testBadSequenceidAtSlot : PASS SEC2 st_secinfo.testSupported2 : RUNNING SEC2 st_secinfo.testSupported2 : PASS SEC1 st_secinfo.testSupported : RUNNING SEC1 st_secinfo.testSupported : PASS SECNN4 st_secinfo_no_name.testSupported4 : RUNNING SECNN4 st_secinfo_no_name.testSupported4 : PASS SECNN3 st_secinfo_no_name.testSupported3 : RUNNING SECNN3 st_secinfo_no_name.testSupported3 : PASS SECNN2 st_secinfo_no_name.testSupported2 : RUNNING COMPOUND4res(status=NFS4ERR_NOFILEHANDLE, tag=b'st_secinfo_no_name.py:testSupported2', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_SECINFO_NO_NAME, opsecinfo_no_name=SECINFO4res(status=NFS4_OK, resok4=[secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_NONE)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_INTEGRITY)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_PRIVACY)), secinfo4(flavor=1)])), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4ERR_NOFILEHANDLE))]) SECNN2 st_secinfo_no_name.testSupported2 : PASS SECNN1 st_secinfo_no_name.testSupported : RUNNING SECNN1 st_secinfo_no_name.testSupported : PASS RECC1 st_reclaim_complete.testSupported : RUNNING RECC1 st_reclaim_complete.testSupported : PASS RECC2 st_reclaim_complete.testReclaimAfterRECC : RUNNING RECC2 st_reclaim_complete.testReclaimAfterRECC : PASS RECC3 st_reclaim_complete.testOpenBeforeRECC : RUNNING RECC3 st_reclaim_complete.testOpenBeforeRECC : PASS RECC4 st_reclaim_complete.testDoubleRECC : RUNNING RECC4 st_reclaim_complete.testDoubleRECC : PASS DESCID1 st_destroy_clientid.testSupported : RUNNING DESCID1 st_destroy_clientid.testSupported : PASS DESCID2 st_destroy_clientid.testDestroyCIDWS : RUNNING DESCID2 st_destroy_clientid.testDestroyCIDWS : PASS DESCID8 st_destroy_clientid.testDestroyCIDTwice : RUNNING DESCID8 st_destroy_clientid.testDestroyCIDTwice : PASS DESCID5 st_destroy_clientid.testDestroyCIDSessionB : RUNNING DESCID5 st_destroy_clientid.testDestroyCIDSessionB : PASS DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : RUNNING DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : PASS DESCID6 st_destroy_clientid.testDestroyCIDCSession : RUNNING DESCID6 st_destroy_clientid.testDestroyCIDCSession : PASS DESCID3 st_destroy_clientid.testDestroyBadCIDWS : RUNNING DESCID3 st_destroy_clientid.testDestroyBadCIDWS : PASS DESCID4 st_destroy_clientid.testDestroyBadCIDIS : RUNNING DESCID4 st_destroy_clientid.testDestroyBadCIDIS : PASS CSESS28 st_create_session.testTooSmallMaxReq : RUNNING CSESS28 st_create_session.testTooSmallMaxReq : PASS CSESS25 st_create_session.testTooSmallMaxRS : RUNNING CSESS25 st_create_session.testTooSmallMaxRS : PASS CSESS2b st_create_session.testSupported2b : RUNNING CSESS2b st_create_session.testSupported2b : PASS CSESS2 st_create_session.testSupported2 : RUNNING CSESS2 st_create_session.testSupported2 : PASS CSESS1 st_create_session.testSupported1 : RUNNING CSESS1 st_create_session.testSupported1 : PASS CSESS9 st_create_session.testPrincipalCollision1 : RUNNING CSESS9 st_create_session.testPrincipalCollision1 : PASS CSESS6 st_create_session.testReplay2 : RUNNING CSESS6 st_create_session.testReplay2 : PASS CSESS5b st_create_session.testReplay1b : RUNNING CSESS5b st_create_session.testReplay1b : PASS CSESS5a st_create_session.testReplay1a : RUNNING CSESS5a st_create_session.testReplay1a : PASS CSESS5 st_create_session.testReplay1 : RUNNING CSESS5 st_create_session.testReplay1 : PASS CSESS27 st_create_session.testRepTooBigToCache : RUNNING CSESS27 st_create_session.testRepTooBigToCache : PASS CSESS26 st_create_session.testRepTooBig : RUNNING [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19] CSESS26 st_create_session.testRepTooBig : PASS CSESS19 st_create_session.testRdmaArray2 : RUNNING COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_create_session.py:testRdmaArray2', resarray=[nfs_resop4(resop=OP_CREATE_SESSION, opcreate_session=CREATE_SESSION4res(csr_status=NFS4ERR_BADXDR))]) CSESS19 st_create_session.testRdmaArray2 : PASS CSESS18 st_create_session.testRdmaArray1 : RUNNING CSESS18 st_create_session.testRdmaArray1 : PASS CSESS17 st_create_session.testRdmaArray0 : RUNNING CSESS17 st_create_session.testRdmaArray0 : PASS CSESS10 st_create_session.testPrincipalCollision2 : RUNNING CSESS10 st_create_session.testPrincipalCollision2 : PASS CSESS23 st_create_session.testNotOnlyOp : RUNNING CSESS23 st_create_session.testNotOnlyOp : PASS CSESS3 st_create_session.testNoExchange : RUNNING CSESS3 st_create_session.testNoExchange : PASS CSESS22 st_create_session.testMaxreqs : RUNNING CSESS22 st_create_session.testMaxreqs : PASS CSESS200 st_create_session.testManyClients : RUNNING CSESS200 st_create_session.testManyClients : PASS CSESS29 st_create_session.testDRCMemLeak : RUNNING CSESS29 st_create_session.testDRCMemLeak : PASS CSESS24 st_create_session.testCsr_sequence : RUNNING CSESS24 st_create_session.testCsr_sequence : PASS CSESS4 st_create_session.testContrivedReplay : RUNNING CSESS4 st_create_session.testContrivedReplay : PASS CSESS16a st_create_session.testCbSecParmsDec : RUNNING CSESS16a st_create_session.testCbSecParmsDec : PASS CSESS16 st_create_session.testCbSecParms : RUNNING CSESS16 st_create_session.testCbSecParms : PASS CSESS8 st_create_session.testBadSeqnum2 : RUNNING CSESS8 st_create_session.testBadSeqnum2 : PASS CSESS7 st_create_session.testBadSeqnum1 : RUNNING CSESS7 st_create_session.testBadSeqnum1 : PASS CSESS15 st_create_session.testBadFlag : RUNNING CSESS15 st_create_session.testBadFlag : PASS COMP1 st_compound.testZeroOps : RUNNING COMP1 st_compound.testZeroOps : PASS COMP5 st_compound.testUndefined : RUNNING COMP5 st_compound.testUndefined : PASS COMP4b st_compound.testInvalidMinor2 : RUNNING COMP4b st_compound.testInvalidMinor2 : PASS COMP4a st_compound.testInvalidMinor : RUNNING COMP4a st_compound.testInvalidMinor : PASS COMP2 st_compound.testGoodTag : RUNNING COMP2 st_compound.testGoodTag : PASS EID6 st_exchange_id.testUpdateNonexistant : RUNNING EID6 st_exchange_id.testUpdateNonexistant : PASS EID6h st_exchange_id.testUpdate111 : RUNNING INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=16, name=b'COUR6_1642007029', attrs={}), entry4(cookie=20, name=b'COUR5_1642007029', attrs={}), entry4(cookie=24, name=b'COUR4_1642007029', attrs={}), entry4(cookie=28, name=b'COUR3_1642007029', attrs={}), entry4(cookie=32, name=b'COUR2_1642007029', attrs={}), entry4(cookie=36, name=b'CSID3_1642007029', attrs={}), entry4(cookie=40, name=b'CSID8_1642007029', attrs={}), entry4(cookie=44, name=b'CSID10_1642007029', attrs={}), entry4(cookie=48, name=b'CSID5_1642007029', attrs={}), entry4(cookie=52, name=b'CSID9_1642007029', attrs={}), entry4(cookie=56, name=b'CSID1_1642007029', attrs={}), entry4(cookie=60, name=b'CSID4_1642007029', attrs={}), entry4(cookie=64, name=b'CSID2_1642007029', attrs={}), entry4(cookie=68, name=b'CSID6_1642007029', attrs={}), entry4(cookie=74, name=b'owner_REBT4b_1642007029_client_0', attrs={}), entry4(cookie=80, name=b'owner_REBT4b_1642007029_client_1', attrs={}), entry4(cookie=86, name=b'owner_REBT4b_1642007029_cli ent_2', attrs={}), entry4(cookie=92, name=b'owner_REBT4b_1642007029_client_3', attrs={}), entry4(cookie=98, name=b'owner_REBT4b_1642007029_client_4', attrs={}), entry4(cookie=104, name=b'owner_REBT4b_1642007029_client_5', attrs={}), entry4(cookie=110, name=b'owner_REBT4b_1642007029_client_6', attrs={}), entry4(cookie=116, name=b'owner_REBT4b_1642007029_client_7', attrs={}), entry4(cookie=122, name=b'owner_REBT4b_1642007029_client_8', attrs={}), entry4(cookie=128, name=b'owner_REBT4b_1642007029_client_9', attrs={}), entry4(cookie=134, name=b'owner_REBT4b_1642007029_client_10', attrs={}), entry4(cookie=140, name=b'owner_REBT4b_1642007029_client_11', attrs={}), entry4(cookie=146, name=b'owner_REBT4b_1642007029_client_12', attrs={}), entry4(cookie=152, name=b'owner_REBT4b_1642007029_client_13', attrs={}), entry4(cookie=158, name=b'owner_REBT4b_1642007029_client_14', attrs={}), entry4(cookie=164, name=b'owner_REBT4b_1642007029_client_15', attrs={}), entry4(cookie=170, name=b'owner_REBT4b _1642007029_client_16', attrs={}), entry4(cookie=176, name=b'owner_REBT4b_1642007029_client_17', attrs={}), entry4(cookie=182, name=b'owner_REBT4b_1642007029_client_18', attrs={}), entry4(cookie=188, name=b'owner_REBT4b_1642007029_client_19', attrs={}), entry4(cookie=194, name=b'owner_REBT4b_1642007029_client_20', attrs={}), entry4(cookie=200, name=b'owner_REBT4b_1642007029_client_21', attrs={}), entry4(cookie=206, name=b'owner_REBT4b_1642007029_client_22', attrs={}), entry4(cookie=212, name=b'owner_REBT4b_1642007029_client_23', attrs={}), entry4(cookie=218, name=b'owner_REBT4b_1642007029_client_24', attrs={}), entry4(cookie=224, name=b'owner_REBT4b_1642007029_client_25', attrs={}), entry4(cookie=230, name=b'owner_REBT4b_1642007029_client_26', attrs={}), entry4(cookie=236, name=b'owner_REBT4b_1642007029_client_27', attrs={}), entry4(cookie=242, name=b'owner_REBT4b_1642007029_client_28', attrs={}), entry4(cookie=248, name=b'owner_REBT4b_1642007029_client_29', attrs={}), entry4(cookie =254, name=b'owner_REBT4b_1642007029_client_30', attrs={}), entry4(cookie=260, name=b'owner_REBT4b_1642007029_client_31', attrs={}), entry4(cookie=266, name=b'owner_REBT4b_1642007029_client_32', attrs={}), entry4(cookie=272, name=b'owner_REBT4b_1642007029_client_33', attrs={}), entry4(cookie=278, name=b'owner_REBT4b_1642007029_client_34', attrs={}), entry4(cookie=284, name=b'owner_REBT4b_1642007029_client_35', attrs={}), entry4(cookie=290, name=b'owner_REBT4b_1642007029_client_36', attrs={}), entry4(cookie=296, name=b'owner_REBT4b_1642007029_client_37', attrs={}), entry4(cookie=302, name=b'owner_REBT4b_1642007029_client_38', attrs={}), entry4(cookie=308, name=b'owner_REBT4b_1642007029_client_39', attrs={}), entry4(cookie=314, name=b'owner_REBT4b_1642007029_client_40', attrs={}), entry4(cookie=320, name=b'owner_REBT4b_1642007029_client_41', attrs={}), entry4(cookie=326, name=b'owner_REBT4b_1642007029_client_42', attrs={}), entry4(cookie=332, name=b'owner_REBT4b_1642007029_client_43', attrs={}), entry4(cookie=338, name=b'owner_REBT4b_1642007029_client_44', attrs={}), entry4(cookie=344, name=b'owner_REBT4b_1642007029_client_45', attrs={}), entry4(cookie=350, name=b'owner_REBT4b_1642007029_client_46', attrs={}), entry4(cookie=356, name=b'owner_REBT4b_1642007029_client_47', attrs={}), entry4(cookie=362, name=b'owner_REBT4b_1642007029_client_48', attrs={}), entry4(cookie=368, name=b'owner_REBT4b_1642007029_client_49', attrs={}), entry4(cookie=374, name=b'owner_REBT4b_1642007029_client_50', attrs={}), entry4(cookie=380, name=b'owner_REBT4b_1642007029_client_51', attrs={}), entry4(cookie=386, name=b'owner_REBT4b_1642007029_client_52', attrs={}), entry4(cookie=392, name=b'owner_REBT4b_1642007029_client_53', attrs={}), entry4(cookie=398, name=b'owner_REBT4b_1642007029_client_54', attrs={}), entry4(cookie=404, name=b'owner_REBT4b_1642007029_client_55', attrs={}), entry4(cookie=410, name=b'owner_REBT4b_1642007029_client_56', attrs={}), entry4(cookie=416, name=b'owner_REBT 4b_1642007029_client_57', attrs={}), entry4(cookie=422, name=b'owner_REBT4b_1642007029_client_58', attrs={}), entry4(cookie=428, name=b'owner_REBT4b_1642007029_client_59', attrs={}), entry4(cookie=434, name=b'owner_REBT4b_1642007029_client_60', attrs={}), entry4(cookie=440, name=b'owner_REBT4b_1642007029_client_61', attrs={}), entry4(cookie=446, name=b'owner_REBT4b_1642007029_client_62', attrs={}), entry4(cookie=452, name=b'owner_REBT4b_1642007029_client_63', attrs={}), entry4(cookie=458, name=b'owner_REBT4b_1642007029_client_64', attrs={}), entry4(cookie=464, name=b'owner_REBT4b_1642007029_client_65', attrs={}), entry4(cookie=470, name=b'owner_REBT4b_1642007029_client_66', attrs={}), entry4(cookie=476, name=b'owner_REBT4b_1642007029_client_67', attrs={}), entry4(cookie=482, name=b'owner_REBT4b_1642007029_client_68', attrs={}), entry4(cookie=488, name=b'owner_REBT4b_1642007029_client_69', attrs={}), entry4(cookie=494, name=b'owner_REBT4b_1642007029_client_70', attrs={}), entry4(cook ie=500, name=b'owner_REBT4b_1642007029_client_71', attrs={}), entry4(cookie=506, name=b'owner_REBT4b_1642007029_client_72', attrs={}), entry4(cookie=520, name=b'owner_REBT4b_1642007029_client_73', attrs={}), entry4(cookie=526, name=b'owner_REBT4b_1642007029_client_74', attrs={}), entry4(cookie=532, name=b'owner_REBT4b_1642007029_client_75', attrs={}), entry4(cookie=538, name=b'owner_REBT4b_1642007029_client_76', attrs={}), entry4(cookie=544, name=b'owner_REBT4b_1642007029_client_77', attrs={}), entry4(cookie=550, name=b'owner_REBT4b_1642007029_client_78', attrs={}), entry4(cookie=556, name=b'owner_REBT4b_1642007029_client_79', attrs={}), entry4(cookie=562, name=b'owner_REBT4b_1642007029_client_80', attrs={}), entry4(cookie=568, name=b'owner_REBT4b_1642007029_client_81', attrs={}), entry4(cookie=574, name=b'owner_REBT4b_1642007029_client_82', attrs={}), entry4(cookie=580, name=b'owner_REBT4b_1642007029_client_83', attrs={}), entry4(cookie=586, name=b'owner_REBT4b_1642007029_client_84 ', attrs={}), entry4(cookie=592, name=b'owner_REBT4b_1642007029_client_85', attrs={}), entry4(cookie=598, name=b'owner_REBT4b_1642007029_client_86', attrs={}), entry4(cookie=604, name=b'owner_REBT4b_1642007029_client_87', attrs={}), entry4(cookie=610, name=b'owner_REBT4b_1642007029_client_88', attrs={}), entry4(cookie=616, name=b'owner_REBT4b_1642007029_client_89', attrs={}), entry4(cookie=622, name=b'owner_REBT4b_1642007029_client_90', attrs={}), entry4(cookie=628, name=b'owner_REBT4b_1642007029_client_91', attrs={}), entry4(cookie=634, name=b'owner_REBT4b_1642007029_client_92', attrs={}), entry4(cookie=640, name=b'owner_REBT4b_1642007029_client_93', attrs={}), entry4(cookie=646, name=b'owner_REBT4b_1642007029_client_94', attrs={}), entry4(cookie=652, name=b'owner_REBT4b_1642007029_client_95', attrs={}), entry4(cookie=658, name=b'owner_REBT4b_1642007029_client_96', attrs={}), entry4(cookie=664, name=b'owner_REBT4b_1642007029_client_97', attrs={}), entry4(cookie=670, name=b'owner_RE BT4b_1642007029_client_98', attrs={}), entry4(cookie=676, name=b'owner_REBT4b_1642007029_client_99', attrs={}), entry4(cookie=682, name=b'owner_REBT2b_1642007029_client_0', attrs={}), entry4(cookie=688, name=b'owner_REBT2b_1642007029_client_1', attrs={}), entry4(cookie=694, name=b'owner_REBT2b_1642007029_client_2', attrs={}), entry4(cookie=700, name=b'owner_REBT2b_1642007029_client_3', attrs={}), entry4(cookie=706, name=b'owner_REBT2b_1642007029_client_4', attrs={}), entry4(cookie=712, name=b'owner_REBT2b_1642007029_client_5', attrs={}), entry4(cookie=718, name=b'owner_REBT2b_1642007029_client_6', attrs={}), entry4(cookie=724, name=b'owner_REBT2b_1642007029_client_7', attrs={}), entry4(cookie=730, name=b'owner_REBT2b_1642007029_client_8', attrs={}), entry4(cookie=736, name=b'owner_REBT2b_1642007029_client_9', attrs={}), entry4(cookie=742, name=b'owner_REBT2b_1642007029_client_10', attrs={}), entry4(cookie=748, name=b'owner_REBT2b_1642007029_client_11', attrs={}), entry4(cookie=754, name=b'owner_REBT2b_1642007029_client_12', attrs={}), entry4(cookie=760, name=b'owner_REBT2b_1642007029_client_13', attrs={}), entry4(cookie=766, name=b'owner_REBT2b_1642007029_client_14', attrs={}), entry4(cookie=772, name=b'owner_REBT2b_1642007029_client_15', attrs={}), entry4(cookie=778, name=b'owner_REBT2b_1642007029_client_16', attrs={}), entry4(cookie=784, name=b'owner_REBT2b_1642007029_client_17', attrs={}), entry4(cookie=790, name=b'owner_REBT2b_1642007029_client_18', attrs={}), entry4(cookie=796, name=b'owner_REBT2b_1642007029_client_19', attrs={}), entry4(cookie=802, name=b'owner_REBT2b_1642007029_client_20', attrs={}), entry4(cookie=808, name=b'owner_REBT2b_1642007029_client_21', attrs={}), entry4(cookie=814, name=b'owner_REBT2b_1642007029_client_22', attrs={}), entry4(cookie=820, name=b'owner_REBT2b_1642007029_client_23', attrs={}), entry4(cookie=826, name=b'owner_REBT2b_1642007029_client_24', attrs={}), entry4(cookie=832, name=b'owner_REBT2b_1642007029_client_25', attrs ={}), entry4(cookie=838, name=b'owner_REBT2b_1642007029_client_26', attrs={}), entry4(cookie=844, name=b'owner_REBT2b_1642007029_client_27', attrs={}), entry4(cookie=850, name=b'owner_REBT2b_1642007029_client_28', attrs={}), entry4(cookie=856, name=b'owner_REBT2b_1642007029_client_29', attrs={}), entry4(cookie=862, name=b'owner_REBT2b_1642007029_client_30', attrs={}), entry4(cookie=868, name=b'owner_REBT2b_1642007029_client_31', attrs={}), entry4(cookie=874, name=b'owner_REBT2b_1642007029_client_32', attrs={}), entry4(cookie=880, name=b'owner_REBT2b_1642007029_client_33', attrs={}), entry4(cookie=886, name=b'owner_REBT2b_1642007029_client_34', attrs={}), entry4(cookie=892, name=b'owner_REBT2b_1642007029_client_35', attrs={}), entry4(cookie=898, name=b'owner_REBT2b_1642007029_client_36', attrs={}), entry4(cookie=904, name=b'owner_REBT2b_1642007029_client_37', attrs={}), entry4(cookie=910, name=b'owner_REBT2b_1642007029_client_38', attrs={}), entry4(cookie=916, name=b'owner_REBT2b_164 2007029_client_39', attrs={}), entry4(cookie=922, name=b'owner_REBT2b_1642007029_client_40', attrs={}), entry4(cookie=928, name=b'owner_REBT2b_1642007029_client_41', attrs={}), entry4(cookie=934, name=b'owner_REBT2b_1642007029_client_42', attrs={}), entry4(cookie=940, name=b'owner_REBT2b_1642007029_client_43', attrs={}), entry4(cookie=946, name=b'owner_REBT2b_1642007029_client_44', attrs={}), entry4(cookie=952, name=b'owner_REBT2b_1642007029_client_45', attrs={}), entry4(cookie=958, name=b'owner_REBT2b_1642007029_client_46', attrs={}), entry4(cookie=964, name=b'owner_REBT2b_1642007029_client_47', attrs={}), entry4(cookie=970, name=b'owner_REBT2b_1642007029_client_48', attrs={}), entry4(cookie=976, name=b'owner_REBT2b_1642007029_client_49', attrs={}), entry4(cookie=982, name=b'owner_REBT2b_1642007029_client_50', attrs={}), entry4(cookie=988, name=b'owner_REBT2b_1642007029_client_51', attrs={}), entry4(cookie=994, name=b'owner_REBT2b_1642007029_client_52', attrs={}), entry4(cookie=100 0, name=b'owner_REBT2b_1642007029_client_53', attrs={}), entry4(cookie=1006, name=b'owner_REBT2b_1642007029_client_54', attrs={}), entry4(cookie=1012, name=b'owner_REBT2b_1642007029_client_55', attrs={}), entry4(cookie=1018, name=b'owner_REBT2b_1642007029_client_56', attrs={}), entry4(cookie=1032, name=b'owner_REBT2b_1642007029_client_57', attrs={}), entry4(cookie=1038, name=b'owner_REBT2b_1642007029_client_58', attrs={}), entry4(cookie=1044, name=b'owner_REBT2b_1642007029_client_59', attrs={}), entry4(cookie=1050, name=b'owner_REBT2b_1642007029_client_60', attrs={}), entry4(cookie=1056, name=b'owner_REBT2b_1642007029_client_61', attrs={}), entry4(cookie=1062, name=b'owner_REBT2b_1642007029_client_62', attrs={}), entry4(cookie=1068, name=b'owner_REBT2b_1642007029_client_63', attrs={}), entry4(cookie=1074, name=b'owner_REBT2b_1642007029_client_64', attrs={}), entry4(cookie=1080, name=b'owner_REBT2b_1642007029_client_65', attrs={}), entry4(cookie=1086, name=b'owner_REBT2b_1642007029_c lient_66', attrs={}), entry4(cookie=1092, name=b'owner_REBT2b_1642007029_client_67', attrs={}), entry4(cookie=1098, name=b'owner_REBT2b_1642007029_client_68', attrs={}), entry4(cookie=1104, name=b'owner_REBT2b_1642007029_client_69', attrs={}), entry4(cookie=1110, name=b'owner_REBT2b_1642007029_client_70', attrs={}), entry4(cookie=1116, name=b'owner_REBT2b_1642007029_client_71', attrs={}), entry4(cookie=1122, name=b'owner_REBT2b_1642007029_client_72', attrs={}), entry4(cookie=1128, name=b'owner_REBT2b_1642007029_client_73', attrs={}), entry4(cookie=1134, name=b'owner_REBT2b_1642007029_client_74', attrs={}), entry4(cookie=1140, name=b'owner_REBT2b_1642007029_client_75', attrs={}), entry4(cookie=1146, name=b'owner_REBT2b_1642007029_client_76', attrs={}), entry4(cookie=1152, name=b'owner_REBT2b_1642007029_client_77', attrs={}), entry4(cookie=1158, name=b'owner_REBT2b_1642007029_client_78', attrs={}), entry4(cookie=1164, name=b'owner_REBT2b_1642007029_client_79', attrs={}), entry4(cookie =1170, name=b'owner_REBT2b_1642007029_client_80', attrs={}), entry4(cookie=1176, name=b'owner_REBT2b_1642007029_client_81', attrs={}), entry4(cookie=1182, name=b'owner_REBT2b_1642007029_client_82', attrs={}), entry4(cookie=1188, name=b'owner_REBT2b_1642007029_client_83', attrs={}), entry4(cookie=1194, name=b'owner_REBT2b_1642007029_client_84', attrs={}), entry4(cookie=1200, name=b'owner_REBT2b_1642007029_client_85', attrs={}), entry4(cookie=1206, name=b'owner_REBT2b_1642007029_client_86', attrs={}), entry4(cookie=1212, name=b'owner_REBT2b_1642007029_client_87', attrs={}), entry4(cookie=1218, name=b'owner_REBT2b_1642007029_client_88', attrs={}), entry4(cookie=1224, name=b'owner_REBT2b_1642007029_client_89', attrs={}), entry4(cookie=1230, name=b'owner_REBT2b_1642007029_client_90', attrs={}), entry4(cookie=1236, name=b'owner_REBT2b_1642007029_client_91', attrs={}), entry4(cookie=1242, name=b'owner_REBT2b_1642007029_client_92', attrs={}), entry4(cookie=1248, name=b'owner_REBT2b_16420070 29_client_93', attrs={}), entry4(cookie=1254, name=b'owner_REBT2b_1642007029_client_94', attrs={}), entry4(cookie=1260, name=b'owner_REBT2b_1642007029_client_95', attrs={}), entry4(cookie=1266, name=b'owner_REBT2b_1642007029_client_96', attrs={}), entry4(cookie=1272, name=b'owner_REBT2b_1642007029_client_97', attrs={}), entry4(cookie=1278, name=b'owner_REBT2b_1642007029_client_98', attrs={}), entry4(cookie=1284, name=b'owner_REBT2b_1642007029_client_99', attrs={}), entry4(cookie=1290, name=b'owner_REBT4a_1642007029_client_0', attrs={}), entry4(cookie=1296, name=b'owner_REBT4a_1642007029_client_1', attrs={}), entry4(cookie=1302, name=b'owner_REBT4a_1642007029_client_2', attrs={}), entry4(cookie=1308, name=b'owner_REBT4a_1642007029_client_3', attrs={}), entry4(cookie=1314, name=b'owner_REBT4a_1642007029_client_4', attrs={}), entry4(cookie=1320, name=b'owner_REBT4a_1642007029_client_5', attrs={}), entry4(cookie=1326, name=b'owner_REBT4a_1642007029_client_6', attrs={}), entry4(cookie=13 32, name=b'owner_REBT4a_1642007029_client_7', attrs={}), entry4(cookie=1338, name=b'owner_REBT4a_1642007029_client_8', attrs={}), entry4(cookie=1344, name=b'owner_REBT4a_1642007029_client_9', attrs={}), entry4(cookie=1350, name=b'owner_REBT2a_1642007029_client_0', attrs={}), entry4(cookie=1356, name=b'owner_REBT2a_1642007029_client_1', attrs={}), entry4(cookie=1362, name=b'owner_REBT2a_1642007029_client_2', attrs={}), entry4(cookie=1368, name=b'owner_REBT2a_1642007029_client_3', attrs={}), entry4(cookie=1374, name=b'owner_REBT2a_1642007029_client_4', attrs={}), entry4(cookie=1380, name=b'owner_REBT2a_1642007029_client_5', attrs={}), entry4(cookie=1386, name=b'owner_REBT2a_1642007029_client_6', attrs={}), entry4(cookie=1392, name=b'owner_REBT2a_1642007029_client_7', attrs={}), entry4(cookie=1398, name=b'owner_REBT2a_1642007029_client_8', attrs={}), entry4(cookie=1404, name=b'owner_REBT2a_1642007029_client_9', attrs={}), entry4(cookie=1410, name=b'owner_REBT5_1642007029_client_file_0' , attrs={}), entry4(cookie=1416, name=b'owner_REBT5_1642007029_client_file_1', attrs={}), entry4(cookie=1422, name=b'owner_REBT5_1642007029_client_file_2', attrs={}), entry4(cookie=1428, name=b'owner_REBT5_1642007029_client_file_3', attrs={}), entry4(cookie=1434, name=b'owner_REBT5_1642007029_client_file_4', attrs={}), entry4(cookie=1440, name=b'owner_REBT5_1642007029_client_file_5', attrs={}), entry4(cookie=1446, name=b'owner_REBT5_1642007029_client_file_6', attrs={}), entry4(cookie=1452, name=b'owner_REBT5_1642007029_client_file_7', attrs={}), entry4(cookie=1458, name=b'owner_REBT5_1642007029_client_file_8', attrs={}), entry4(cookie=1464, name=b'owner_REBT5_1642007029_client_file_9', attrs={}), entry4(cookie=1471, name=b'owner_REBT5_1642007029_client_file_10', attrs={}), entry4(cookie=1478, name=b'owner_REBT5_1642007029_client_file_11', attrs={}), entry4(cookie=1485, name=b'owner_REBT5_1642007029_client_file_12', attrs={}), entry4(cookie=1492, name=b'owner_REBT5_1642007029_client_ file_13', attrs={}), entry4(cookie=1499, name=b'owner_REBT5_1642007029_client_file_14', attrs={}), entry4(cookie=1506, name=b'owner_REBT5_1642007029_client_file_15', attrs={}), entry4(cookie=1513, name=b'owner_REBT5_1642007029_client_file_16', attrs={}), entry4(cookie=1520, name=b'owner_REBT5_1642007029_client_file_17', attrs={}), entry4(cookie=1527, name=b'owner_REBT5_1642007029_client_file_18', attrs={}), entry4(cookie=1544, name=b'owner_REBT5_1642007029_client_file_19', attrs={}), entry4(cookie=1551, name=b'owner_REBT5_1642007029_client_file_20', attrs={}), entry4(cookie=1558, name=b'owner_REBT5_1642007029_client_file_21', attrs={}), entry4(cookie=1565, name=b'owner_REBT5_1642007029_client_file_22', attrs={}), entry4(cookie=1572, name=b'owner_REBT5_1642007029_client_file_23', attrs={}), entry4(cookie=1579, name=b'owner_REBT5_1642007029_client_file_24', attrs={}), entry4(cookie=1586, name=b'owner_REBT5_1642007029_client_file_25', attrs={}), entry4(cookie=1593, name=b'owner_REBT5_1 642007029_client_file_26', attrs={}), entry4(cookie=1600, name=b'owner_REBT5_1642007029_client_file_27', attrs={}), entry4(cookie=1607, name=b'owner_REBT5_1642007029_client_file_28', attrs={}), entry4(cookie=1614, name=b'owner_REBT5_1642007029_client_file_29', attrs={}), entry4(cookie=1621, name=b'owner_REBT5_1642007029_client_file_30', attrs={}), entry4(cookie=1628, name=b'owner_REBT5_1642007029_client_file_31', attrs={}), entry4(cookie=1635, name=b'owner_REBT5_1642007029_client_file_32', attrs={}), entry4(cookie=1642, name=b'owner_REBT5_1642007029_client_file_33', attrs={}), entry4(cookie=1649, name=b'owner_REBT5_1642007029_client_file_34', attrs={}), entry4(cookie=1656, name=b'owner_REBT5_1642007029_client_file_35', attrs={}), entry4(cookie=1663, name=b'owner_REBT5_1642007029_client_file_36', attrs={}), entry4(cookie=1670, name=b'owner_REBT5_1642007029_client_file_37', attrs={}), entry4(cookie=1677, name=b'owner_REBT5_1642007029_client_file_38', attrs={}), entry4(cookie=1684, nam e=b'owner_REBT5_1642007029_client_file_39', attrs={}), entry4(cookie=1691, name=b'owner_REBT5_1642007029_client_file_40', attrs={}), entry4(cookie=1698, name=b'owner_REBT5_1642007029_client_file_41', attrs={}), entry4(cookie=1703, name=b'owner_REBT1_1642007029', attrs={}), entry4(cookie=1709, name=b'owner_REBT3b_1642007029_client_0', attrs={}), entry4(cookie=1715, name=b'owner_REBT3b_1642007029_client_1', attrs={}), entry4(cookie=1721, name=b'owner_REBT3b_1642007029_client_2', attrs={}), entry4(cookie=1727, name=b'owner_REBT3b_1642007029_client_3', attrs={}), entry4(cookie=1733, name=b'owner_REBT3b_1642007029_client_4', attrs={}), entry4(cookie=1739, name=b'owner_REBT3b_1642007029_client_5', attrs={}), entry4(cookie=1745, name=b'owner_REBT3b_1642007029_client_6', attrs={}), entry4(cookie=1751, name=b'owner_REBT3b_1642007029_client_7', attrs={}), entry4(cookie=1757, name=b'owner_REBT3b_1642007029_client_8', attrs={}), entry4(cookie=1763, name=b'owner_REBT3b_1642007029_client_9', attr s={}), entry4(cookie=1769, name=b'owner_REBT3b_1642007029_client_10', attrs={}), entry4(cookie=1775, name=b'owner_REBT3b_1642007029_client_11', attrs={}), entry4(cookie=1781, name=b'owner_REBT3b_1642007029_client_12', attrs={}), entry4(cookie=1787, name=b'owner_REBT3b_1642007029_client_13', attrs={}), entry4(cookie=1793, name=b'owner_REBT3b_1642007029_client_14', attrs={}), entry4(cookie=1799, name=b'owner_REBT3b_1642007029_client_15', attrs={}), entry4(cookie=1805, name=b'owner_REBT3b_1642007029_client_16', attrs={}), entry4(cookie=1811, name=b'owner_REBT3b_1642007029_client_17', attrs={}), entry4(cookie=1817, name=b'owner_REBT3b_1642007029_client_18', attrs={}), entry4(cookie=1823, name=b'owner_REBT3b_1642007029_client_19', attrs={}), entry4(cookie=1829, name=b'owner_REBT3b_1642007029_client_20', attrs={}), entry4(cookie=1835, name=b'owner_REBT3b_1642007029_client_21', attrs={}), entry4(cookie=1841, name=b'owner_REBT3b_1642007029_client_22', attrs={}), entry4(cookie=1847, name=b'o wner_REBT3b_1642007029_client_23', attrs={}), entry4(cookie=1853, name=b'owner_REBT3b_1642007029_client_24', attrs={}), entry4(cookie=1859, name=b'owner_REBT3b_1642007029_client_25', attrs={}), entry4(cookie=1865, name=b'owner_REBT3b_1642007029_client_26', attrs={}), entry4(cookie=1871, name=b'owner_REBT3b_1642007029_client_27', attrs={}), entry4(cookie=1877, name=b'owner_REBT3b_1642007029_client_28', attrs={}), entry4(cookie=1883, name=b'owner_REBT3b_1642007029_client_29', attrs={}), entry4(cookie=1889, name=b'owner_REBT3b_1642007029_client_30', attrs={}), entry4(cookie=1895, name=b'owner_REBT3b_1642007029_client_31', attrs={}), entry4(cookie=1901, name=b'owner_REBT3b_1642007029_client_32', attrs={}), entry4(cookie=1907, name=b'owner_REBT3b_1642007029_client_33', attrs={}), entry4(cookie=1913, name=b'owner_REBT3b_1642007029_client_34', attrs={}), entry4(cookie=1919, name=b'owner_REBT3b_1642007029_client_35', attrs={}), entry4(cookie=1925, name=b'owner_REBT3b_1642007029_client_36', attrs={}), entry4(cookie=1931, name=b'owner_REBT3b_1642007029_client_37', attrs={}), entry4(cookie=1937, name=b'owner_REBT3b_1642007029_client_38', attrs={}), entry4(cookie=1943, name=b'owner_REBT3b_1642007029_client_39', attrs={}), entry4(cookie=1949, name=b'owner_REBT3b_1642007029_client_40', attrs={}), entry4(cookie=1955, name=b'owner_REBT3b_1642007029_client_41', attrs={}), entry4(cookie=1961, name=b'owner_REBT3b_1642007029_client_42', attrs={}), entry4(cookie=1967, name=b'owner_REBT3b_1642007029_client_43', attrs={}), entry4(cookie=1973, name=b'owner_REBT3b_1642007029_client_44', attrs={}), entry4(cookie=1979, name=b'owner_REBT3b_1642007029_client_45', attrs={}), entry4(cookie=1985, name=b'owner_REBT3b_1642007029_client_46', attrs={}), entry4(cookie=1991, name=b'owner_REBT3b_1642007029_client_47', attrs={}), entry4(cookie=1997, name=b'owner_REBT3b_1642007029_client_48', attrs={}), entry4(cookie=2003, name=b'owner_REBT3b_1642007029_client_49', attrs={}), entry4(cookie=2009, name =b'owner_REBT3b_1642007029_client_50', attrs={}), entry4(cookie=2015, name=b'owner_REBT3b_1642007029_client_51', attrs={}), entry4(cookie=2021, name=b'owner_REBT3b_1642007029_client_52', attrs={}), entry4(cookie=2027, name=b'owner_REBT3b_1642007029_client_53', attrs={}), entry4(cookie=2033, name=b'owner_REBT3b_1642007029_client_54', attrs={}), entry4(cookie=2039, name=b'owner_REBT3b_1642007029_client_55', attrs={}), entry4(cookie=2056, name=b'owner_REBT3b_1642007029_client_56', attrs={}), entry4(cookie=2062, name=b'owner_REBT3b_1642007029_client_57', attrs={}), entry4(cookie=2068, name=b'owner_REBT3b_1642007029_client_58', attrs={}), entry4(cookie=2074, name=b'owner_REBT3b_1642007029_client_59', attrs={}), entry4(cookie=2080, name=b'owner_REBT3b_1642007029_client_60', attrs={}), entry4(cookie=2086, name=b'owner_REBT3b_1642007029_client_61', attrs={}), entry4(cookie=2092, name=b'owner_REBT3b_1642007029_client_62', attrs={}), entry4(cookie=2098, name=b'owner_REBT3b_1642007029_client_6 3', attrs={}), entry4(cookie=2104, name=b'owner_REBT3b_1642007029_client_64', attrs={}), entry4(cookie=2110, name=b'owner_REBT3b_1642007029_client_65', attrs={}), entry4(cookie=2116, name=b'owner_REBT3b_1642007029_client_66', attrs={}), entry4(cookie=2122, name=b'owner_REBT3b_1642007029_client_67', attrs={}), entry4(cookie=2128, name=b'owner_REBT3b_1642007029_client_68', attrs={}), entry4(cookie=2134, name=b'owner_REBT3b_1642007029_client_69', attrs={}), entry4(cookie=2140, name=b'owner_REBT3b_1642007029_client_70', attrs={}), entry4(cookie=2146, name=b'owner_REBT3b_1642007029_client_71', attrs={}), entry4(cookie=2152, name=b'owner_REBT3b_1642007029_client_72', attrs={}), entry4(cookie=2158, name=b'owner_REBT3b_1642007029_client_73', attrs={}), entry4(cookie=2164, name=b'owner_REBT3b_1642007029_client_74', attrs={}), entry4(cookie=2170, name=b'owner_REBT3b_1642007029_client_75', attrs={}), entry4(cookie=2176, name=b'owner_REBT3b_1642007029_client_76', attrs={}), entry4(cookie=2182, name=b'owner_REBT3b_1642007029_client_77', attrs={}), entry4(cookie=2188, name=b'owner_REBT3b_1642007029_client_78', attrs={}), entry4(cookie=2194, name=b'owner_REBT3b_1642007029_client_79', attrs={}), entry4(cookie=2200, name=b'owner_REBT3b_1642007029_client_80', attrs={}), entry4(cookie=2206, name=b'owner_REBT3b_1642007029_client_81', attrs={}), entry4(cookie=2212, name=b'owner_REBT3b_1642007029_client_82', attrs={}), entry4(cookie=2218, name=b'owner_REBT3b_1642007029_client_83', attrs={}), entry4(cookie=2224, name=b'owner_REBT3b_1642007029_client_84', attrs={}), entry4(cookie=2230, name=b'owner_REBT3b_1642007029_client_85', attrs={}), entry4(cookie=2236, name=b'owner_REBT3b_1642007029_client_86', attrs={}), entry4(cookie=2242, name=b'owner_REBT3b_1642007029_client_87', attrs={}), entry4(cookie=2248, name=b'owner_REBT3b_1642007029_client_88', attrs={}), entry4(cookie=2254, name=b'owner_REBT3b_1642007029_client_89', attrs={}), entry4(cookie=2260, name=b'owner_REBT3b_1642007029_clie nt_90', attrs={}), entry4(cookie=2266, name=b'owner_REBT3b_1642007029_client_91', attrs={}), entry4(cookie=2272, name=b'owner_REBT3b_1642007029_client_92', attrs={}), entry4(cookie=2278, name=b'owner_REBT3b_1642007029_client_93', attrs={}), entry4(cookie=2284, name=b'owner_REBT3b_1642007029_client_94', attrs={}), entry4(cookie=2290, name=b'owner_REBT3b_1642007029_client_95', attrs={}), entry4(cookie=2296, name=b'owner_REBT3b_1642007029_client_96', attrs={}), entry4(cookie=2302, name=b'owner_REBT3b_1642007029_client_97', attrs={}), entry4(cookie=2308, name=b'owner_REBT3b_1642007029_client_98', attrs={}), entry4(cookie=2314, name=b'owner_REBT3b_1642007029_client_99', attrs={}), entry4(cookie=2320, name=b'owner_REBT3a_1642007029_client_0', attrs={}), entry4(cookie=2326, name=b'owner_REBT3a_1642007029_client_1', attrs={}), entry4(cookie=2332, name=b'owner_REBT3a_1642007029_client_2', attrs={}), entry4(cookie=2338, name=b'owner_REBT3a_1642007029_client_3', attrs={}), entry4(cookie=2344, name=b'owner_REBT3a_1642007029_client_4', attrs={}), entry4(cookie=2350, name=b'owner_REBT3a_1642007029_client_5', attrs={}), entry4(cookie=2356, name=b'owner_REBT3a_1642007029_client_6', attrs={}), entry4(cookie=2362, name=b'owner_REBT3a_1642007029_client_7', attrs={}), entry4(cookie=2368, name=b'owner_REBT3a_1642007029_client_8', attrs={}), entry4(cookie=2374, name=b'owner_REBT3a_1642007029_client_9', attrs={}), entry4(cookie=2378, name=b'RNM6_1642007029', attrs={}), entry4(cookie=2382, name=b'RNM7_1642007029', attrs={}), entry4(cookie=2386, name=b'RNM1s_1642007029', attrs={}), entry4(cookie=2390, name=b'RNM1a_1642007029', attrs={}), entry4(cookie=2394, name=b'RNM1r_1642007029', attrs={}), entry4(cookie=2398, name=b'RNM1f_1642007029', attrs={}), entry4(cookie=2402, name=b'RNM1d_1642007029', attrs={}), entry4(cookie=2406, name=b'RNM19_1642007029', attrs={}), entry4(cookie=2410, name=b'RNM18_1642007029', attrs={}), entry4(cookie=2414, name=b'RNM5_1642007029', attrs={}), entry4(cooki e=2418, name=b'RNM20_1642007029', attrs={}), entry4(cookie=2422, name=b'RNM17_1642007029', attrs={}), entry4(cookie=2426, name=b'RNM15_1642007029', attrs={}), entry4(cookie=2430, name=b'RNM14_1642007029', attrs={}), entry4(cookie=2434, name=b'RNM10_1642007029', attrs={}), entry4(cookie=2438, name=b'RNM11_1642007029', attrs={}), entry4(cookie=2442, name=b'RNM12_1642007029', attrs={}), entry4(cookie=2446, name=b'RNM16_1642007029', attrs={}), entry4(cookie=2450, name=b'RNM13_1642007029', attrs={}), entry4(cookie=2454, name=b'RNM3s_1642007029', attrs={}), entry4(cookie=2458, name=b'RNM3a_1642007029', attrs={}), entry4(cookie=2462, name=b'RNM3r_1642007029', attrs={}), entry4(cookie=2466, name=b'RNM3f_1642007029', attrs={}), entry4(cookie=2471, name=b'owner_DELEG9_1642007029', attrs={}), entry4(cookie=2475, name=b'DELEG23_1642007029', attrs={}), entry4(cookie=2479, name=b'DELEG1_1642007029', attrs={}), entry4(cookie=2483, name=b'DELEG4_1642007029', attrs={}), entry4(cookie=2487, name=b'DE LEG8_1642007029', attrs={}), entry4(cookie=2491, name=b'DELEG6_1642007029', attrs={}), entry4(cookie=2495, name=b'OPEN1_1642007029', attrs={}), entry4(cookie=2499, name=b'OPEN2_1642007029', attrs={}), entry4(cookie=2503, name=b'OPEN30_1642007029', attrs={}), entry4(cookie=2507, name=b'OPEN7_1642007029', attrs={}), entry4(cookie=2511, name=b'OPEN6_1642007029', attrs={}), entry4(cookie=2515, name=b'OPEN8_1642007029', attrs={}), entry4(cookie=2523, name=b'OPEN31_1642007029', attrs={}), entry4(cookie=2531, name=b'SEQ10b_1642007029_2', attrs={}), entry4(cookie=2535, name=b'SEQ9b_1642007029_2', attrs={}), entry4(cookie=2539, name=b'SEC2_1642007029', attrs={}), entry4(cookie=2543, name=b'SEC1_1642007029', attrs={}), entry4(cookie=2560, name=b'owner_RECC2_1642007029', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'link', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'dir', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'file2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM10_1642007029', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM11_1642007029', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'dir2', attrs={})] INFO :test.env:Called do_readdir() INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] EID6h st_exchange_id.testUpdate111 : PASS EID6g st_exchange_id.testUpdate110 : RUNNING EID6g st_exchange_id.testUpdate110 : PASS EID6f st_exchange_id.testUpdate101 : RUNNING EID6f st_exchange_id.testUpdate101 : PASS EID6e st_exchange_id.testUpdate100 : RUNNING EID6e st_exchange_id.testUpdate100 : PASS EID6d st_exchange_id.testUpdate011 : RUNNING EID6d st_exchange_id.testUpdate011 : PASS EID6c st_exchange_id.testUpdate010 : RUNNING EID6c st_exchange_id.testUpdate010 : PASS EID6b st_exchange_id.testUpdate001 : RUNNING EID6b st_exchange_id.testUpdate001 : PASS EID6a st_exchange_id.testUpdate000 : RUNNING EID6a st_exchange_id.testUpdate000 : PASS EID1b st_exchange_id.testSupported2 : RUNNING EID1b st_exchange_id.testSupported2 : PASS EID7 st_exchange_id.testSupported1a : RUNNING EID7 st_exchange_id.testSupported1a : PASS EID1 st_exchange_id.testSupported : RUNNING EID1 st_exchange_id.testSupported : PASS EID8 st_exchange_id.testNotOnlyOp : RUNNING EID8 st_exchange_id.testNotOnlyOp : PASS EID5h st_exchange_id.testNoUpdate111 : RUNNING EID5h st_exchange_id.testNoUpdate111 : PASS EID5g st_exchange_id.testNoUpdate110 : RUNNING EID5g st_exchange_id.testNoUpdate110 : PASS EID5fb st_exchange_id.testNoUpdate101b : RUNNING EID5fb st_exchange_id.testNoUpdate101b : PASS EID5f st_exchange_id.testNoUpdate101 : RUNNING EID5f st_exchange_id.testNoUpdate101 : PASS EID5e st_exchange_id.testNoUpdate100 : RUNNING EID5e st_exchange_id.testNoUpdate100 : PASS EID5d st_exchange_id.testNoUpdate011 : RUNNING EID5d st_exchange_id.testNoUpdate011 : PASS EID5c st_exchange_id.testNoUpdate010 : RUNNING EID5c st_exchange_id.testNoUpdate010 : PASS EID5b st_exchange_id.testNoUpdate001 : RUNNING EID5b st_exchange_id.testNoUpdate001 : PASS EID5a st_exchange_id.testNoUpdate000 : RUNNING EID5a st_exchange_id.testNoUpdate000 : PASS EID2 st_exchange_id.testNoImplId : RUNNING EID2 st_exchange_id.testNoImplId : PASS EID3 st_exchange_id.testLongArray : RUNNING COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_exchange_id.py:testNoImplId', resarray=[nfs_resop4(resop=OP_EXCHANGE_ID, opexchange_id=EXCHANGE_ID4res(eir_status=NFS4ERR_BADXDR))]) EID3 st_exchange_id.testLongArray : PASS EID9 st_exchange_id.testLeasePeriod : RUNNING EID9 st_exchange_id.testLeasePeriod : PASS EID4 st_exchange_id.testBadFlags : RUNNING EID4 st_exchange_id.testBadFlags : PASS ************************************************** ************************************************** Command line asked for 172 of 260 tests Of those: 0 Skipped, 0 Failed, 0 Warned, 172 Passed FSTYP -- nfs PLATFORM -- Linux/x86_64 test3 5.16.0-00002-g616758bf6583 #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 MKFS_OPTIONS -- test1.fieldses.org:/exports/xfs2 MOUNT_OPTIONS -- -overs=4.2,sec=sys -o context=system_u:object_r:root_t:s0 test1.fieldses.org:/exports/xfs2 /mnt2 generic/001 41s ... 41s generic/002 1s ... 1s generic/003 [not run] atime related mount options have no effect on nfs generic/004 [not run] O_TMPFILE is not supported generic/005 2s ... 2s generic/006 [expunged] generic/007 [expunged] generic/008 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/009 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/010 [not run] /root/xfstests-dev/src/dbtest not built generic/011 68s ... 65s generic/012 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/013 68s ... 66s generic/014 [expunged] generic/015 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/016 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/017 [expunged] generic/018 [not run] defragmentation not supported for fstype "nfs" generic/020 13s ... 13s generic/021 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/022 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/023 4s ... 3s generic/024 [not run] kernel doesn't support renameat2 syscall generic/025 [not run] kernel doesn't support renameat2 syscall generic/026 [not run] ACLs not supported by this filesystem type: nfs generic/027 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/028 5s ... 5s generic/029 1s ... 2s generic/030 3s ... 3s generic/031 [expunged] generic/032 [expunged] generic/033 [expunged] generic/034 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/035 [expunged] generic/036 11s ... 11s generic/037 21s ... 21s generic/038 [not run] FITRIM not supported on /mnt2 generic/039 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/040 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/041 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/043 [not run] nfs does not support shutdown generic/044 [not run] nfs does not support shutdown generic/045 [not run] nfs does not support shutdown generic/046 [not run] nfs does not support shutdown generic/047 [not run] nfs does not support shutdown generic/048 [not run] nfs does not support shutdown generic/049 [not run] nfs does not support shutdown generic/050 [not run] nfs does not support shutdown generic/051 [not run] nfs does not support shutdown generic/052 [not run] nfs does not support shutdown generic/053 [expunged] generic/054 [not run] nfs does not support shutdown generic/055 [not run] nfs does not support shutdown generic/056 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/057 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/058 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/059 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/060 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/061 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/062 [expunged] generic/063 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/064 [expunged] generic/065 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/066 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/067 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/068 [expunged] generic/069 29s ... 30s generic/070 60s ... 47s generic/071 [expunged] generic/072 24s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) generic/073 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/074 [expunged] generic/075 61s ... 56s generic/076 [not run] require test1.fieldses.org:/exports/xfs2 to be local device generic/077 [not run] ACLs not supported by this filesystem type: nfs generic/078 [not run] kernel doesn't support renameat2 syscall generic/079 [not run] file system doesn't support chattr +ia generic/080 3s ... 3s generic/081 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/082 [not run] disk quotas not supported by this filesystem type: nfs generic/083 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/084 5s ... 6s generic/085 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/086 2s ... 2s generic/087 [expunged] generic/088 [expunged] generic/089 [expunged] generic/090 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/091 [expunged] generic/092 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/093 [not run] attr namespace security not supported by this filesystem type: nfs generic/094 [expunged] generic/095 [not run] fio utility required, skipped this test generic/096 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/097 [not run] attr namespace trusted not supported by this filesystem type: nfs generic/098 2s ... 2s generic/099 [not run] ACLs not supported by this filesystem type: nfs generic/100 [expunged] generic/101 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/102 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/103 3s ... 3s generic/104 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/105 [expunged] generic/106 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/107 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/108 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/109 57s ... 56s generic/110 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/111 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/112 61s ... 59s generic/113 [expunged] generic/114 [not run] device block size: 4096 greater than 512 generic/115 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/116 1s ... 2s generic/117 [expunged] generic/118 2s ... 1s generic/119 3s ... 3s generic/120 [not run] atime related mount options have no effect on nfs generic/121 [not run] Dedupe not supported by test filesystem type: nfs generic/122 [not run] Dedupe not supported by test filesystem type: nfs generic/123 [not run] fsgqa user not defined. generic/124 60s ... 54s generic/126 [expunged] generic/127 [expunged] generic/128 [not run] fsgqa user not defined. generic/129 [expunged] generic/130 19s ... 18s generic/131 2s ... 2s generic/132 20s ... 19s generic/133 [expunged] generic/134 2s ... 2s generic/135 2s ... 1s generic/136 [not run] Dedupe not supported by test filesystem type: nfs generic/137 [not run] Dedupe not supported by test filesystem type: nfs generic/138 3s ... 2s generic/139 3s ... 3s generic/140 2s ... 3s generic/141 1s ... 1s generic/142 10s ... 8s generic/143 246s ... 242s generic/144 2s ... 2s generic/145 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) generic/146 3s ... 2s generic/147 [not run] xfs_io finsert failed (old kernel/wrong fs?) generic/148 2s ... 2s generic/149 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/150 19s ... 17s generic/151 21s ... 20s generic/152 22s ... 20s generic/153 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) generic/154 [expunged] generic/155 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/156 [not run] xfs_io funshare failed (old kernel/wrong fs?) generic/157 88s ... 86s generic/158 [not run] Dedupe not supported by test filesystem type: nfs generic/159 [not run] file system doesn't support chattr +i generic/160 [not run] file system doesn't support chattr +i generic/161 18s ... 20s generic/162 [not run] Dedupe not supported by scratch filesystem type: nfs generic/163 [not run] Dedupe not supported by scratch filesystem type: nfs generic/164 71s ... 70s generic/165 65s ... 60s generic/166 207s ... 182s generic/167 46s ... 42s generic/168 319s ... 280s generic/169 2s ... 2s generic/170 382s ... 361s generic/171 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/172 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/173 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/174 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/175 370s ... 235s generic/176 [not run] Insufficient space for stress test; would only create 32768 extents. generic/177 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/178 5s ... 5s generic/179 1s ... 1s generic/180 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/181 4s ... 4s generic/182 [not run] Dedupe not supported by test filesystem type: nfs generic/183 6s ... 6s generic/184 [expunged] generic/185 6s ... 6s generic/186 832s ... 813s generic/187 829s ... 815s generic/188 8s ... 6s generic/189 4s ... 4s generic/190 5s ... 5s generic/191 5s ... 4s generic/192 [not run] atime related mount options have no effect on nfs generic/193 [not run] fsgqa user not defined. generic/194 6s ... 6s generic/195 6s ... 6s generic/196 4s ... 4s generic/197 4s ... 5s generic/198 6s ... 6s generic/199 6s ... 6s generic/200 6s ... 5s generic/201 5s ... 3s generic/202 2s ... 2s generic/203 2s ... 3s generic/204 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/205 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/206 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/207 22s ... 20s generic/208 [expunged] generic/209 33s ... 45s generic/210 0s ... 0s generic/211 2s ... 1s generic/212 0s ... 0s generic/213 1s ... 0s generic/214 1s ... 1s generic/215 3s ... 3s generic/216 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/217 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/218 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/219 [not run] disk quotas not supported by this filesystem type: nfs generic/220 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/221 1s ... 2s generic/222 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/223 [not run] can't mkfs nfs with geometry generic/224 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/225 [expunged] generic/226 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/227 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/228 1s ... 1s generic/229 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/230 [not run] disk quotas not supported by this filesystem type: nfs generic/231 [not run] disk quotas not supported by this filesystem type: nfs generic/232 [not run] disk quotas not supported by this filesystem type: nfs generic/233 [not run] disk quotas not supported by this filesystem type: nfs generic/234 [not run] disk quotas not supported by this filesystem type: nfs generic/235 [not run] disk quotas not supported by this filesystem type: nfs generic/236 2s ... 2s generic/237 [not run] ACLs not supported by this filesystem type: nfs generic/238 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized generic/239 32s ... 31s generic/240 1s ... 1s generic/241 [not run] dbench not found generic/242 89s ... 85s generic/243 89s ... 81s generic/244 [not run] disk quotas not supported by this filesystem type: nfs generic/245 1s ... 1s generic/246 0s ... 0s generic/247 85s ... 81s generic/248 1s ... 0s generic/249 3s ... 3s generic/250 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/252 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/253 3s ... 2s generic/254 2s ... 3s generic/255 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/256 [not run] fsgqa user not defined. generic/257 4s ... 5s generic/258 1s ... 0s generic/259 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/260 [not run] FITRIM not supported on /mnt2 generic/261 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) generic/262 [not run] xfs_io finsert failed (old kernel/wrong fs?) generic/263 [expunged] generic/264 [not run] xfs_io funshare failed (old kernel/wrong fs?) generic/265 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/266 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/267 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/268 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/269 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/270 [not run] disk quotas not supported by this filesystem type: nfs generic/271 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/272 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/273 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/274 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) generic/275 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/276 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/277 [expunged] generic/278 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/279 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/280 [not run] disk quotas not supported by this filesystem type: nfs generic/281 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/282 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/283 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/284 4s ... 3s generic/285 2s ... 2s generic/286 19s ... 19s generic/287 4s ... 4s generic/288 [not run] FITRIM not supported on /mnt2 generic/289 5s ... 5s generic/290 5s ... 5s generic/291 6s ... 6s generic/292 6s ... 5s generic/293 7s ... 7s generic/294 [expunged] generic/295 8s ... 7s generic/296 4s ... 3s generic/297 [not run] NFS can't interrupt clone operations generic/298 [not run] NFS can't interrupt clone operations generic/299 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/300 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/301 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/302 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/303 1s ... 1s generic/304 [not run] Dedupe not supported by test filesystem type: nfs generic/305 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/306 1s ... 1s generic/307 3s ... [not run] ACLs not supported by this filesystem type: nfs generic/308 1s ... 0s generic/309 1s ... 2s generic/310 [expunged] generic/311 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/312 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/313 4s ... 5s generic/314 [not run] fsgqa user not defined. generic/315 15s ... [not run] xfs_io falloc -k failed (old kernel/wrong fs?) generic/316 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/317 [not run] fsgqa user not defined. generic/318 [expunged] generic/319 [not run] ACLs not supported by this filesystem type: nfs generic/320 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/321 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/322 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/323 [expunged] generic/324 [not run] defragmentation not supported for fstype "nfs" generic/325 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/326 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/327 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/328 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/329 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/330 10s ... 9s generic/331 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/332 9s ... 8s generic/333 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/334 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/335 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/336 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/337 1s ... 1s generic/338 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/339 [expunged] generic/340 41s ... 42s generic/341 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/342 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/343 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/344 86s ... 84s generic/345 89s ... 84s generic/346 41s ... 38s generic/347 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/348 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/352 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/353 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/354 30s ... 29s generic/355 [not run] fsgqa user not defined. generic/356 3s ... 2s generic/357 [expunged] generic/358 58s ... 55s generic/359 15s ... 15s generic/360 0s ... 1s generic/361 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/362 [not run] this test requires richacl support on $SCRATCH_DEV generic/363 [not run] this test requires richacl support on $SCRATCH_DEV generic/364 [not run] this test requires richacl support on $SCRATCH_DEV generic/365 [not run] this test requires richacl support on $SCRATCH_DEV generic/366 [not run] this test requires richacl support on $SCRATCH_DEV generic/367 [not run] this test requires richacl support on $SCRATCH_DEV generic/368 [not run] this test requires richacl support on $SCRATCH_DEV generic/369 [not run] this test requires richacl support on $SCRATCH_DEV generic/370 [not run] this test requires richacl support on $SCRATCH_DEV generic/371 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/372 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/373 1s ... 1s generic/374 [not run] Dedupe not supported by scratch filesystem type: nfs generic/375 [not run] ACLs not supported by this filesystem type: nfs generic/376 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/377 1s ... 1s generic/378 [not run] fsgqa user not defined. generic/379 [not run] disk quotas not supported by this filesystem type: nfs generic/380 [not run] disk quotas not supported by this filesystem type: nfs generic/381 [not run] disk quotas not supported by this filesystem type: nfs generic/382 [not run] disk quotas not supported by this filesystem type: nfs generic/383 [not run] disk quotas not supported by this filesystem type: nfs generic/384 [not run] disk quotas not supported by this filesystem type: nfs generic/385 [not run] disk quotas not supported by this filesystem type: nfs generic/386 [not run] disk quotas not supported by this filesystem type: nfs generic/387 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/388 [not run] require test1.fieldses.org:/exports/xfs2 to be local device generic/389 [not run] O_TMPFILE is not supported generic/390 9s ... [not run] nfs does not support freezing generic/391 24s ... 22s generic/392 [not run] nfs does not support shutdown generic/393 2s ... 2s generic/394 2s ... 1s generic/395 [not run] No encryption support for nfs generic/396 [not run] No encryption support for nfs generic/397 [not run] No encryption support for nfs generic/398 [not run] No encryption support for nfs generic/399 [not run] No encryption support for nfs generic/400 [not run] disk quotas not supported by this filesystem type: nfs generic/401 1s ... 2s generic/402 [not run] filesystem nfs timestamp bounds are unknown generic/403 [expunged] generic/404 [not run] xfs_io finsert failed (old kernel/wrong fs?) generic/405 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/406 9s ... 8s generic/407 2s ... 1s generic/408 [not run] Dedupe not supported by test filesystem type: nfs generic/409 [not run] require test1.fieldses.org:/exports/xfs2 to be local device generic/410 [not run] require test1.fieldses.org:/exports/xfs2 to be local device generic/411 [not run] require test1.fieldses.org:/exports/xfs2 to be local device generic/412 2s ... 1s generic/413 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed generic/414 [not run] xfs_io fiemap failed (old kernel/wrong fs?) generic/415 15s ... 16s generic/416 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/417 [not run] nfs does not support shutdown generic/418 [not run] require test1.fieldses.org:/exports/xfs to be valid block disk generic/419 [not run] No encryption support for nfs generic/420 1s ... 0s generic/421 [not run] No encryption support for nfs generic/422 [expunged] generic/423 [expunged] generic/424 [not run] file system doesn't support any of /usr/bin/chattr +a/+c/+d/+i generic/425 [expunged] generic/426 [expunged] generic/427 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/428 1s ... 0s generic/429 [not run] No encryption support for nfs generic/430 1s ... 1s generic/431 1s ... 1s generic/432 1s ... 1s generic/433 1s ... 1s generic/434 [expunged] generic/435 [not run] No encryption support for nfs generic/436 1s ... 2s generic/437 21s ... 20s generic/438 [expunged] generic/439 2s ... 2s generic/440 [not run] No encryption support for nfs generic/441 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/443 0s ... 1s generic/444 [not run] ACLs not supported by this filesystem type: nfs generic/445 1s ... 2s generic/446 [expunged] generic/447 [not run] Insufficient space for stress test; would only create 32768 extents (10737418240/21281112064 blocks). generic/448 1s ... 2s generic/449 [not run] ACLs not supported by this filesystem type: nfs generic/450 1s ... 1s generic/451 31s ... 31s generic/452 1s ... 1s generic/453 2s ... 2s generic/454 3s ... 2s generic/455 [not run] This test requires a valid $LOGWRITES_DEV generic/456 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/457 [not run] This test requires a valid $LOGWRITES_DEV generic/458 [not run] xfs_io fzero failed (old kernel/wrong fs?) generic/459 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/460 36s ... 37s generic/461 [not run] nfs does not support shutdown generic/462 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed generic/463 1s ... 1s generic/464 73s ... 73s generic/465 [expunged] generic/466 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/467 4s ... 4s generic/468 [not run] nfs does not support shutdown generic/469 [expunged] generic/470 [not run] This test requires a valid $LOGWRITES_DEV generic/471 [not run] xfs_io pwrite -V 1 -b 4k -N failed (old kernel/wrong fs?) generic/472 2s ... 2s generic/474 [not run] nfs does not support shutdown generic/475 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/476 [expunged] generic/477 4s ... 4s generic/478 [expunged] generic/479 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/480 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/481 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/482 [not run] This test requires a valid $LOGWRITES_DEV generic/483 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/484 [expunged] generic/485 [expunged] generic/486 [expunged] generic/487 [not run] This test requires a valid $SCRATCH_LOGDEV generic/488 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/489 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/490 1s ... 2s generic/491 [expunged] generic/492 [not run] xfs_io label failed (old kernel/wrong fs?) generic/493 [not run] Dedupe not supported by scratch filesystem type: nfs generic/494 3s ... 2s generic/495 2s ... 2s generic/496 7s ... 7s generic/497 2s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) generic/498 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/499 [expunged] generic/500 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/501 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/502 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/503 [expunged] generic/504 0s ... 0s generic/505 [not run] nfs does not support shutdown generic/506 [not run] nfs does not support shutdown generic/507 [not run] file system doesn't support chattr +AsSu generic/508 [not run] lsattr not supported by test filesystem type: nfs generic/509 [not run] O_TMPFILE is not supported generic/510 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/511 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) generic/512 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/513 [expunged] generic/514 [not run] fsgqa user not defined. generic/515 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/516 [not run] Dedupe not supported by test filesystem type: nfs generic/517 [not run] Dedupe not supported by scratch filesystem type: nfs generic/518 2s ... 2s generic/519 [expunged] generic/520 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/523 1s ... 1s generic/524 25s ... 27s generic/525 1s ... 2s generic/526 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/527 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/528 [not run] inode creation time not supported by this filesystem generic/529 [not run] ACLs not supported by this filesystem type: nfs generic/530 [not run] nfs does not support shutdown generic/531 [expunged] generic/532 1s ... 1s generic/533 1s ... 1s generic/534 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/535 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/536 [not run] nfs does not support shutdown generic/537 [not run] FSTRIM not supported generic/538 26s ... 26s generic/539 1s ... 1s generic/540 6s ... 6s generic/541 7s ... 6s generic/542 6s ... 6s generic/543 7s ... 6s generic/544 6s ... 7s generic/545 [not run] file system doesn't support chattr +i generic/546 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/547 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/548 [not run] No encryption support for nfs generic/549 [not run] No encryption support for nfs generic/550 [not run] No encryption support for nfs generic/551 [expunged] generic/552 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/553 [not run] xfs_io chattr +i failed (old kernel/wrong fs?) generic/554 3s ... 2s generic/555 [not run] xfs_io chattr +ia failed (old kernel/wrong fs?) generic/556 [not run] nfs does not support casefold feature generic/557 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/558 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/559 [not run] duperemove utility required, skipped this test generic/560 [not run] duperemove utility required, skipped this test generic/561 [not run] duperemove utility required, skipped this test generic/562 [not run] Filesystem nfs not supported in _scratch_mkfs_sized generic/563 [not run] Cgroup2 doesn't support io controller io generic/564 2s ... 2s generic/565 [expunged] generic/566 [not run] disk quotas not supported by this filesystem type: nfs generic/567 1s ... 2s generic/568 1s ... 1s generic/569 2s ... 3s generic/570 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/571 [expunged] generic/572 [not run] fsverity utility required, skipped this test generic/573 [not run] fsverity utility required, skipped this test generic/574 [not run] fsverity utility required, skipped this test generic/575 [not run] fsverity utility required, skipped this test generic/576 [not run] fsverity utility required, skipped this test generic/577 [not run] fsverity utility required, skipped this test generic/578 [expunged] generic/579 [not run] fsverity utility required, skipped this test generic/580 [not run] No encryption support for nfs generic/581 [not run] fsgqa user not defined. generic/582 [not run] No encryption support for nfs generic/583 [not run] No encryption support for nfs generic/584 [not run] No encryption support for nfs generic/585 8s ... [not run] kernel doesn't support renameat2 syscall generic/586 9s ... 9s generic/587 [not run] fsgqa user not defined. generic/588 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk generic/589 [not run] require test1.fieldses.org:/exports/xfs2 to be local device generic/590 281s ... 276s generic/591 1s ... 1s generic/592 [not run] No encryption support for nfs generic/593 [not run] No encryption support for nfs generic/594 [not run] disk quotas not supported by this filesystem type: nfs generic/595 [not run] No encryption support for nfs generic/596 [not run] file system doesn't support chattr +S generic/597 [not run] fsgqa2 user not defined. generic/598 [not run] fsgqa2 user not defined. generic/599 [not run] nfs does not support shutdown generic/600 [not run] disk quotas not supported by this filesystem type: nfs generic/601 [not run] disk quotas not supported by this filesystem type: nfs generic/602 [not run] No encryption support for nfs generic/603 [not run] disk quotas not supported by this filesystem type: nfs generic/604 6s ... 5s generic/605 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed generic/606 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed generic/607 [expunged] generic/608 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed generic/609 1s ... 0s generic/610 [expunged] generic/611 1s ... 2s nfs/001 3s ... 2s shared/002 [not run] not suitable for this filesystem type: nfs shared/032 [not run] not suitable for this filesystem type: nfs shared/298 [not run] not suitable for this filesystem type: nfs Ran: generic/001 generic/002 generic/003 generic/004 generic/005 generic/008 generic/009 generic/010 generic/011 generic/012 generic/013 generic/015 generic/016 generic/018 generic/020 generic/021 generic/022 generic/023 generic/024 generic/025 generic/026 generic/027 generic/028 generic/029 generic/030 generic/034 generic/036 generic/037 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/069 generic/070 generic/072 generic/073 generic/075 generic/076 generic/077 generic/078 generic/079 generic/080 generic/081 generic/082 generic/083 generic/084 generic/085 generic/086 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/098 generic/099 generic/101 generic/102 generic/103 generic/104 generic/1 06 generic/107 generic/108 generic/109 generic/110 generic/111 generic/112 generic/114 generic/115 generic/116 generic/118 generic/119 generic/120 generic/121 generic/122 generic/123 generic/124 generic/128 generic/130 generic/131 generic/132 generic/134 generic/135 generic/136 generic/137 generic/138 generic/139 generic/140 generic/141 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/169 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/193 generic/194 generic/195 generic/196 generic/197 generic/19 8 generic/199 generic/200 generic/201 generic/202 generic/203 generic/204 generic/205 generic/206 generic/207 generic/209 generic/210 generic/211 generic/212 generic/213 generic/214 generic/215 generic/216 generic/217 generic/218 generic/219 generic/220 generic/221 generic/222 generic/223 generic/224 generic/226 generic/227 generic/228 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/236 generic/237 generic/238 generic/239 generic/240 generic/241 generic/242 generic/243 generic/244 generic/245 generic/246 generic/247 generic/248 generic/249 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/257 generic/258 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/285 generic/286 generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/306 generic/307 generic/308 generic/309 generic/311 generic/312 generic/313 generic/314 generic/315 generic/316 generic/317 generic/319 generic/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/337 generic/338 generic/340 generic/341 generic/342 generic/343 generic/344 generic/345 generic/346 generic/347 generic/348 generic/352 generic/353 generic/354 generic/355 generic/356 generic/358 generic/359 generic/360 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/373 generic/374 generic/375 generic/376 generic/377 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/391 generic/392 generic/393 generic/394 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/401 generic/402 generic/404 generic/405 generic/406 generic/407 generic/408 generic/409 generic/410 generic/411 generic/412 generic/413 generic/414 generic/415 generic/416 generic/417 generic/418 generic/419 generic/420 generic/421 generic/424 generic/427 generic/428 generic/429 generic/430 generic/431 generic/432 generic/433 generic/435 generic/436 generic/437 generic/439 generic/440 generic/441 generic/443 generic/444 generic/445 generic/447 generic/448 generic/449 generic/450 generic/451 generic/452 generic/453 generic/454 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/464 generic/466 generic/467 generic/468 generic/470 generic/471 generic/472 g eneric/474 generic/475 generic/477 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/490 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/500 generic/501 generic/502 generic/504 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/518 generic/520 generic/523 generic/524 generic/525 generic/526 generic/527 generic/528 generic/529 generic/530 generic/532 generic/533 generic/534 generic/535 generic/536 generic/537 generic/538 generic/539 generic/540 generic/541 generic/542 generic/543 generic/544 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/554 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/564 generic/566 generic/567 generic/568 generic/569 generic/570 generic/572 ge neric/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/586 generic/587 generic/588 generic/589 generic/590 generic/591 generic/592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/604 generic/605 generic/606 generic/608 generic/609 generic/611 nfs/001 shared/002 shared/032 shared/298 Not run: generic/003 generic/004 generic/008 generic/009 generic/010 generic/012 generic/015 generic/016 generic/018 generic/021 generic/022 generic/024 generic/025 generic/026 generic/027 generic/034 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/072 generic/073 generic/076 generic/077 generic/078 generic/079 generic/081 generic/082 generic/083 generic/085 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/099 generic/101 generic/102 generic/104 generic/106 generic/107 generic/108 generic/110 generic/111 generic/114 generic/115 generic/120 generic/121 generic/122 generic/123 generic/128 generic/136 generic/137 generic/145 generic/147 generic/149 generic/153 generic/155 generic/156 gener ic/158 generic/159 generic/160 generic/162 generic/163 generic/171 generic/172 generic/173 generic/174 generic/176 generic/177 generic/180 generic/182 generic/192 generic/193 generic/204 generic/205 generic/206 generic/216 generic/217 generic/218 generic/219 generic/220 generic/222 generic/223 generic/224 generic/226 generic/227 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/237 generic/238 generic/241 generic/244 generic/250 generic/252 generic/255 generic/256 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/288 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/304 generic/305 generic/307 generic/311 generic/312 generic/314 generic/315 generic/316 generic/317 generic/319 generi c/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/331 generic/333 generic/334 generic/335 generic/336 generic/338 generic/341 generic/342 generic/343 generic/347 generic/348 generic/352 generic/353 generic/355 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/374 generic/375 generic/376 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/392 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/402 generic/404 generic/405 generic/408 generic/409 generic/410 generic/411 generic/413 generic/414 generic/416 generic/417 generic/418 generic/419 generic/421 generic/424 generic/427 generic/429 generic/435 generic/440 generic/441 generic/444 generic/447 generic/449 generic/455 generic/456 generic /457 generic/458 generic/459 generic/461 generic/462 generic/466 generic/468 generic/470 generic/471 generic/474 generic/475 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/492 generic/493 generic/497 generic/498 generic/500 generic/501 generic/502 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/520 generic/526 generic/527 generic/528 generic/529 generic/530 generic/534 generic/535 generic/536 generic/537 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/566 generic/570 generic/572 generic/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/587 generic/588 generic/589 generic/ 592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/605 generic/606 generic/608 shared/002 shared/032 shared/298 Passed all 538 tests [ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 [ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. [ 0.000000] signal: max sigframe size: 1776 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdbfff] usable [ 0.000000] BIOS-e820: [mem 0x000000007ffdc000-0x000000007fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.8 present. [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.14.0-6.fc35 04/01/2014 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 3591.787 MHz processor [ 0.000930] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000938] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000946] last_pfn = 0x7ffdc max_arch_pfn = 0x400000000 [ 0.000979] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.004415] found SMP MP-table at [mem 0x000f5c10-0x000f5c1f] [ 0.004436] Using GB pages for direct mapping [ 0.004911] RAMDISK: [mem 0x34784000-0x363b9fff] [ 0.004919] ACPI: Early table checksum verification disabled [ 0.004924] ACPI: RSDP 0x00000000000F5A20 000014 (v00 BOCHS ) [ 0.004934] ACPI: RSDT 0x000000007FFE2066 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004943] ACPI: FACP 0x000000007FFE1E8E 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004953] ACPI: DSDT 0x000000007FFE0040 001E4E (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004960] ACPI: FACS 0x000000007FFE0000 000040 [ 0.004966] ACPI: APIC 0x000000007FFE1F82 000080 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004972] ACPI: MCFG 0x000000007FFE2002 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004978] ACPI: WAET 0x000000007FFE203E 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004984] ACPI: Reserving FACP table memory at [mem 0x7ffe1e8e-0x7ffe1f81] [ 0.004988] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1e8d] [ 0.004991] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] [ 0.004993] ACPI: Reserving APIC table memory at [mem 0x7ffe1f82-0x7ffe2001] [ 0.004996] ACPI: Reserving MCFG table memory at [mem 0x7ffe2002-0x7ffe203d] [ 0.004999] ACPI: Reserving WAET table memory at [mem 0x7ffe203e-0x7ffe2065] [ 0.008477] Zone ranges: [ 0.008484] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.008491] DMA32 [mem 0x0000000001000000-0x000000007ffdbfff] [ 0.008495] Normal empty [ 0.008499] Movable zone start for each node [ 0.008518] Early memory node ranges [ 0.008521] node 0: [mem 0x0000000000001000-0x000000000009efff] [ 0.008535] node 0: [mem 0x0000000000100000-0x000000007ffdbfff] [ 0.008538] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdbfff] [ 0.008548] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.008622] On node 0, zone DMA: 97 pages in unavailable ranges [ 0.016858] On node 0, zone DMA32: 36 pages in unavailable ranges [ 0.048098] kasan: KernelAddressSanitizer initialized [ 0.048939] ACPI: PM-Timer IO Port: 0x608 [ 0.048950] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [ 0.048993] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 [ 0.049002] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.049006] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) [ 0.049009] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.049012] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [ 0.049015] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [ 0.049021] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.049024] TSC deadline timer available [ 0.049030] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.049050] [mem 0xc0000000-0xfed1bfff] available for PCI devices [ 0.049055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.064532] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 [ 0.064789] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u1048576 [ 0.064798] pcpu-alloc: s231440 r8192 d30704 u1048576 alloc=1*2097152 [ 0.064802] pcpu-alloc: [0] 0 1 [ 0.064836] Built 1 zonelists, mobility grouping on. Total pages: 516828 [ 0.064886] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 [ 0.064998] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. [ 0.065286] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.065405] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.065443] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.217018] Memory: 1653208K/2096616K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 443152K reserved, 0K cma-reserved) [ 0.218927] Kernel/User page tables isolation: enabled [ 0.219010] ftrace: allocating 48466 entries in 190 pages [ 0.236213] ftrace: allocated 190 pages with 6 groups [ 0.236405] Dynamic Preempt: full [ 0.236588] Running RCU self tests [ 0.236599] rcu: Preemptible hierarchical RCU implementation. [ 0.236602] rcu: RCU lockdep checking is enabled. [ 0.236604] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. [ 0.236608] Trampoline variant of Tasks RCU enabled. [ 0.236610] Rude variant of Tasks RCU enabled. [ 0.236612] Tracing variant of Tasks RCU enabled. [ 0.236614] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.236617] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.246098] NR_IRQS: 4352, nr_irqs: 56, preallocated irqs: 16 [ 0.246516] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 [ 0.252863] Console: colour VGA+ 80x25 [ 0.285411] printk: console [tty0] enabled [ 0.341424] printk: console [ttyS0] enabled [ 0.342010] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar [ 0.343034] ... MAX_LOCKDEP_SUBCLASSES: 8 [ 0.343564] ... MAX_LOCK_DEPTH: 48 [ 0.344099] ... MAX_LOCKDEP_KEYS: 8192 [ 0.344657] ... CLASSHASH_SIZE: 4096 [ 0.345239] ... MAX_LOCKDEP_ENTRIES: 32768 [ 0.345872] ... MAX_LOCKDEP_CHAINS: 65536 [ 0.346470] ... CHAINHASH_SIZE: 32768 [ 0.347042] memory used by lock dependency info: 6365 kB [ 0.347732] memory used for stack traces: 4224 kB [ 0.349158] per task-struct memory footprint: 1920 bytes [ 0.350184] ACPI: Core revision 20210930 [ 0.351362] APIC: Switch to symmetric I/O mode setup [ 0.353278] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c604d3dd7, max_idle_ns: 440795267083 ns [ 0.354743] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.57 BogoMIPS (lpj=14367148) [ 0.356135] pid_max: default: 32768 minimum: 301 [ 0.356866] LSM: Security Framework initializing [ 0.357606] SELinux: Initializing. [ 0.358214] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.358743] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.358743] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 0.358743] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.358743] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.358743] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.358743] Spectre V2 : Mitigation: Full generic retpoline [ 0.358743] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.358743] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 0.358743] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.358743] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.358743] SRBDS: Unknown: Dependent on hypervisor status [ 0.358743] MDS: Mitigation: Clear CPU buffers [ 0.358743] Freeing SMP alternatives memory: 44K [ 0.358743] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) [ 0.358743] Running RCU-tasks wait API self tests [ 0.458995] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. [ 0.460503] rcu: Hierarchical SRCU implementation. [ 0.462157] NMI watchdog: Perf NMI watchdog permanently disabled [ 0.463002] smp: Bringing up secondary CPUs ... [ 0.464950] x86: Booting SMP configuration: [ 0.465537] .... node #0, CPUs: #1 [ 0.112317] smpboot: CPU 1 Converting physical 0 to logical die 1 [ 0.547215] smp: Brought up 1 node, 2 CPUs [ 0.547814] smpboot: Max logical packages: 2 [ 0.548434] smpboot: Total of 2 processors activated (14386.42 BogoMIPS) [ 0.550634] devtmpfs: initialized [ 0.554801] Callback from call_rcu_tasks_trace() invoked. [ 0.556772] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.558148] futex hash table entries: 512 (order: 4, 65536 bytes, linear) [ 0.560130] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.561904] audit: initializing netlink subsys (disabled) [ 0.562980] Callback from call_rcu_tasks_rude() invoked. [ 0.562980] audit: type=2000 audit(1642005631.208:1): state=initialized audit_enabled=0 res=1 [ 0.564434] thermal_sys: Registered thermal governor 'step_wise' [ 0.564897] thermal_sys: Registered thermal governor 'user_space' [ 0.565807] cpuidle: using governor ladder [ 0.567202] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) [ 0.568443] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 [ 0.569384] PCI: Using configuration type 1 for base access [ 0.595171] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.597094] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.598409] cryptd: max_cpu_qlen set to 1000 [ 0.666772] raid6: avx2x4 gen() 33460 MB/s [ 0.670759] Callback from call_rcu_tasks() invoked. [ 0.738747] raid6: avx2x4 xor() 12834 MB/s [ 0.806748] raid6: avx2x2 gen() 31395 MB/s [ 0.874753] raid6: avx2x2 xor() 16250 MB/s [ 0.942748] raid6: avx2x1 gen() 21106 MB/s [ 1.010748] raid6: avx2x1 xor() 13944 MB/s [ 1.078749] raid6: sse2x4 gen() 15737 MB/s [ 1.146749] raid6: sse2x4 xor() 8765 MB/s [ 1.214864] raid6: sse2x2 gen() 15874 MB/s [ 1.282747] raid6: sse2x2 xor() 9860 MB/s [ 1.350748] raid6: sse2x1 gen() 12302 MB/s [ 1.418748] raid6: sse2x1 xor() 8642 MB/s [ 1.419372] raid6: using algorithm avx2x4 gen() 33460 MB/s [ 1.420108] raid6: .... xor() 12834 MB/s, rmw enabled [ 1.420790] raid6: using avx2x2 recovery algorithm [ 1.421810] ACPI: Added _OSI(Module Device) [ 1.422358] ACPI: Added _OSI(Processor Device) [ 1.422750] ACPI: Added _OSI(3.0 _SCP Extensions) [ 1.423428] ACPI: Added _OSI(Processor Aggregator Device) [ 1.424154] ACPI: Added _OSI(Linux-Dell-Video) [ 1.424733] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 1.425493] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 1.457880] ACPI: 1 ACPI AML tables successfully acquired and loaded [ 1.482752] ACPI: Interpreter enabled [ 1.482752] ACPI: PM: (supports S0 S5) [ 1.482761] ACPI: Using IOAPIC for interrupt routing [ 1.483660] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 1.486749] ACPI: Enabled 1 GPEs in block 00 to 3F [ 1.519179] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 1.520193] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments HPX-Type3] [ 1.521406] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control [ 1.524178] PCI host bridge to bus 0000:00 [ 1.525561] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 1.526771] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 1.527754] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 1.528814] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window] [ 1.529801] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] [ 1.530753] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] [ 1.531784] pci_bus 0000:00: root bus resource [bus 00-ff] [ 1.532720] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 [ 1.535064] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000 [ 1.538691] pci 0000:00:01.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] [ 1.541347] pci 0000:00:01.0: reg 0x14: [mem 0xf8000000-0xfbffffff] [ 1.548136] pci 0000:00:01.0: reg 0x18: [mem 0xfce14000-0xfce15fff] [ 1.551749] pci 0000:00:01.0: reg 0x1c: [io 0xc040-0xc05f] [ 1.562234] pci 0000:00:01.0: reg 0x30: [mem 0xfce00000-0xfce0ffff pref] [ 1.564193] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400 [ 1.566392] pci 0000:00:02.0: reg 0x10: [mem 0xfce16000-0xfce16fff] [ 1.570855] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 [ 1.572957] pci 0000:00:02.1: reg 0x10: [mem 0xfce17000-0xfce17fff] [ 1.576544] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 [ 1.578655] pci 0000:00:02.2: reg 0x10: [mem 0xfce18000-0xfce18fff] [ 1.584327] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 [ 1.587400] pci 0000:00:02.3: reg 0x10: [mem 0xfce19000-0xfce19fff] [ 1.591318] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 [ 1.594121] pci 0000:00:02.4: reg 0x10: [mem 0xfce1a000-0xfce1afff] [ 1.601524] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 [ 1.603552] pci 0000:00:02.5: reg 0x10: [mem 0xfce1b000-0xfce1bfff] [ 1.609104] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 [ 1.611147] pci 0000:00:02.6: reg 0x10: [mem 0xfce1c000-0xfce1cfff] [ 1.615049] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 [ 1.616318] pci 0000:00:1b.0: reg 0x10: [mem 0xfce10000-0xfce13fff] [ 1.622859] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 [ 1.624201] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO [ 1.626532] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 [ 1.631433] pci 0000:00:1f.2: reg 0x20: [io 0xc060-0xc07f] [ 1.633066] pci 0000:00:1f.2: reg 0x24: [mem 0xfce1d000-0xfce1dfff] [ 1.635263] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 [ 1.638672] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] [ 1.646276] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000 [ 1.648447] pci 0000:01:00.0: reg 0x14: [mem 0xfcc40000-0xfcc40fff] [ 1.651541] pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref] [ 1.654708] pci 0000:01:00.0: reg 0x30: [mem 0xfcc00000-0xfcc3ffff pref] [ 1.656245] pci 0000:00:02.0: PCI bridge to [bus 01] [ 1.657166] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] [ 1.658560] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] [ 1.665128] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330 [ 1.666639] pci 0000:02:00.0: reg 0x10: [mem 0xfca00000-0xfca03fff 64bit] [ 1.669547] pci 0000:00:02.1: PCI bridge to [bus 02] [ 1.670253] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] [ 1.670778] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] [ 1.672750] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000 [ 1.676211] pci 0000:03:00.0: reg 0x14: [mem 0xfc800000-0xfc800fff] [ 1.679169] pci 0000:03:00.0: reg 0x20: [mem 0xfe600000-0xfe603fff 64bit pref] [ 1.682558] pci 0000:00:02.2: PCI bridge to [bus 03] [ 1.682793] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] [ 1.685144] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] [ 1.687495] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000 [ 1.689946] pci 0000:04:00.0: reg 0x14: [mem 0xfc600000-0xfc600fff] [ 1.693151] pci 0000:04:00.0: reg 0x20: [mem 0xfe400000-0xfe403fff 64bit pref] [ 1.700473] pci 0000:00:02.3: PCI bridge to [bus 04] [ 1.701209] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] [ 1.702128] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] [ 1.703714] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00 [ 1.707200] pci 0000:05:00.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] [ 1.711310] pci 0000:00:02.4: PCI bridge to [bus 05] [ 1.712069] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] [ 1.713336] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] [ 1.716482] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00 [ 1.722542] pci 0000:06:00.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref] [ 1.725211] pci 0000:00:02.5: PCI bridge to [bus 06] [ 1.726212] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] [ 1.726791] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] [ 1.729879] pci 0000:00:02.6: PCI bridge to [bus 07] [ 1.730651] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] [ 1.730778] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] [ 1.736005] pci_bus 0000:00: on NUMA node 0 [ 1.741503] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 [ 1.744737] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [ 1.746758] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [ 1.748846] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 [ 1.750851] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 [ 1.752940] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 [ 1.754949] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 [ 1.757050] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 [ 1.758160] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 [ 1.758938] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 [ 1.759889] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 [ 1.760914] ACPI: PCI: Interrupt link GSID configured for IRQ 19 [ 1.761939] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 [ 1.766937] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 [ 1.767962] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 [ 1.768958] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 [ 1.773089] pci 0000:00:01.0: vgaarb: setting as boot VGA device [ 1.773978] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 1.774767] pci 0000:00:01.0: vgaarb: bridge control possible [ 1.775580] vgaarb: loaded [ 1.776770] SCSI subsystem initialized [ 1.778193] libata version 3.00 loaded. [ 1.778193] ACPI: bus type USB registered [ 1.778750] usbcore: registered new interface driver usbfs [ 1.778857] usbcore: registered new interface driver hub [ 1.779636] usbcore: registered new device driver usb [ 1.780451] pps_core: LinuxPPS API ver. 1 registered [ 1.781112] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.782493] PTP clock support registered [ 1.784500] EDAC MC: Ver: 3.0.0 [ 1.785785] Advanced Linux Sound Architecture Driver Initialized. [ 1.786798] PCI: Using ACPI for IRQ routing [ 1.842255] PCI: pci_cache_line_size set to 64 bytes [ 1.842540] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] [ 1.842577] e820: reserve RAM buffer [mem 0x7ffdc000-0x7fffffff] [ 1.842970] clocksource: Switched to clocksource tsc-early [ 2.035298] VFS: Disk quotas dquot_6.6.0 [ 2.035981] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 2.037121] FS-Cache: Loaded [ 2.037960] CacheFiles: Loaded [ 2.038518] pnp: PnP ACPI init [ 2.040511] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved [ 2.044352] pnp: PnP ACPI: found 5 devices [ 2.064254] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 2.065958] NET: Registered PF_INET protocol family [ 2.066945] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 2.069039] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) [ 2.070326] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 2.071828] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) [ 2.073288] TCP: Hash tables configured (established 16384 bind 16384) [ 2.074354] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) [ 2.075383] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) [ 2.076613] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 2.077413] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 [ 2.078529] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 [ 2.079641] pci 0000:00:02.2: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 [ 2.080719] pci 0000:00:02.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000 [ 2.081811] pci 0000:00:02.4: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000 [ 2.082948] pci 0000:00:02.5: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 [ 2.084025] pci 0000:00:02.6: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 [ 2.085111] pci 0000:00:02.0: BAR 7: assigned [io 0x1000-0x1fff] [ 2.085981] pci 0000:00:02.1: BAR 7: assigned [io 0x2000-0x2fff] [ 2.086810] pci 0000:00:02.2: BAR 7: assigned [io 0x3000-0x3fff] [ 2.087614] pci 0000:00:02.3: BAR 7: assigned [io 0x4000-0x4fff] [ 2.088415] pci 0000:00:02.4: BAR 7: assigned [io 0x5000-0x5fff] [ 2.089201] pci 0000:00:02.5: BAR 7: assigned [io 0x6000-0x6fff] [ 2.090032] pci 0000:00:02.6: BAR 7: assigned [io 0x7000-0x7fff] [ 2.091014] pci 0000:00:02.0: PCI bridge to [bus 01] [ 2.091666] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff] [ 2.093625] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] [ 2.096206] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] [ 2.098607] pci 0000:00:02.1: PCI bridge to [bus 02] [ 2.107557] pci 0000:00:02.1: bridge window [io 0x2000-0x2fff] [ 2.109321] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] [ 2.111058] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] [ 2.113315] pci 0000:00:02.2: PCI bridge to [bus 03] [ 2.114828] pci 0000:00:02.2: bridge window [io 0x3000-0x3fff] [ 2.116339] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] [ 2.117673] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] [ 2.119702] pci 0000:00:02.3: PCI bridge to [bus 04] [ 2.120377] pci 0000:00:02.3: bridge window [io 0x4000-0x4fff] [ 2.122070] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] [ 2.123621] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] [ 2.127750] pci 0000:00:02.4: PCI bridge to [bus 05] [ 2.128452] pci 0000:00:02.4: bridge window [io 0x5000-0x5fff] [ 2.129948] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] [ 2.131293] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] [ 2.133183] pci 0000:00:02.5: PCI bridge to [bus 06] [ 2.133884] pci 0000:00:02.5: bridge window [io 0x6000-0x6fff] [ 2.135463] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] [ 2.137987] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] [ 2.139814] pci 0000:00:02.6: PCI bridge to [bus 07] [ 2.140490] pci 0000:00:02.6: bridge window [io 0x7000-0x7fff] [ 2.141949] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] [ 2.143311] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] [ 2.145174] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 2.146052] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 2.148019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 2.148914] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window] [ 2.149845] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] [ 2.150799] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] [ 2.151720] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] [ 2.152452] pci_bus 0000:01: resource 1 [mem 0xfcc00000-0xfcdfffff] [ 2.153255] pci_bus 0000:01: resource 2 [mem 0xfea00000-0xfebfffff 64bit pref] [ 2.154240] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] [ 2.155046] pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff] [ 2.156636] pci_bus 0000:02: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref] [ 2.157602] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] [ 2.158387] pci_bus 0000:03: resource 1 [mem 0xfc800000-0xfc9fffff] [ 2.159282] pci_bus 0000:03: resource 2 [mem 0xfe600000-0xfe7fffff 64bit pref] [ 2.160251] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff] [ 2.161035] pci_bus 0000:04: resource 1 [mem 0xfc600000-0xfc7fffff] [ 2.161909] pci_bus 0000:04: resource 2 [mem 0xfe400000-0xfe5fffff 64bit pref] [ 2.162902] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] [ 2.163619] pci_bus 0000:05: resource 1 [mem 0xfc400000-0xfc5fffff] [ 2.164420] pci_bus 0000:05: resource 2 [mem 0xfe200000-0xfe3fffff 64bit pref] [ 2.165342] pci_bus 0000:06: resource 0 [io 0x6000-0x6fff] [ 2.166091] pci_bus 0000:06: resource 1 [mem 0xfc200000-0xfc3fffff] [ 2.166960] pci_bus 0000:06: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref] [ 2.167884] pci_bus 0000:07: resource 0 [io 0x7000-0x7fff] [ 2.168599] pci_bus 0000:07: resource 1 [mem 0xfc000000-0xfc1fffff] [ 2.169400] pci_bus 0000:07: resource 2 [mem 0xfde00000-0xfdffffff 64bit pref] [ 2.170541] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 2.180949] ACPI: \_SB_.GSIG: Enabled at IRQ 22 [ 2.199686] pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0xa70 took 27224 usecs [ 2.200800] PCI: CLS 0 bytes, default 64 [ 2.202085] Trying to unpack rootfs image as initramfs... [ 2.203583] Initialise system trusted keyrings [ 2.204372] workingset: timestamp_bits=62 max_order=19 bucket_order=0 [ 2.206592] DLM installed [ 2.210086] Key type cifs.idmap registered [ 2.210915] fuse: init (API version 7.35) [ 2.211730] SGI XFS with ACLs, security attributes, no debug enabled [ 2.213541] ocfs2: Registered cluster interface o2cb [ 2.214457] ocfs2: Registered cluster interface user [ 2.215320] OCFS2 User DLM kernel interface loaded [ 2.223471] gfs2: GFS2 installed [ 2.232573] xor: automatically using best checksumming function avx [ 2.233488] Key type asymmetric registered [ 2.234109] Asymmetric key parser 'x509' registered [ 2.235034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [ 2.236044] io scheduler mq-deadline registered [ 2.236631] io scheduler kyber registered [ 2.237151] test_string_helpers: Running tests... [ 2.251590] cryptomgr_test (80) used greatest stack depth: 30192 bytes left [ 2.253812] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.255322] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 2.263630] ACPI: button: Power Button [PWRF] [ 2.503777] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 2.505227] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 2.512214] Non-volatile memory driver v1.3 [ 2.513012] Linux agpgart interface v0.103 [ 2.515374] ACPI: bus type drm_connector registered [ 2.536836] brd: module loaded [ 2.553358] loop: module loaded [ 2.554597] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) [ 2.560013] vda: vda1 vda2 [ 2.563947] zram: Added device: zram0 [ 2.565170] ahci 0000:00:1f.2: version 3.0 [ 2.577984] ACPI: \_SB_.GSIA: Enabled at IRQ 16 [ 2.581236] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode [ 2.582629] ahci 0000:00:1f.2: flags: 64bit ncq only [ 2.591294] scsi host0: ahci [ 2.593071] scsi host1: ahci [ 2.594746] scsi host2: ahci [ 2.596433] scsi host3: ahci [ 2.598107] scsi host4: ahci [ 2.599711] scsi host5: ahci [ 2.600666] ata1: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d100 irq 16 [ 2.601704] ata2: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d180 irq 16 [ 2.602728] ata3: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d200 irq 16 [ 2.603965] ata4: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d280 irq 16 [ 2.604966] ata5: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d300 irq 16 [ 2.606025] ata6: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d380 irq 16 [ 2.608967] tun: Universal TUN/TAP device driver, 1.6 [ 2.615031] e1000: Intel(R) PRO/1000 Network Driver [ 2.615697] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 2.616600] e1000e: Intel(R) PRO/1000 Network Driver [ 2.617285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 2.618418] PPP generic driver version 2.4.2 [ 2.621200] aoe: AoE v85 initialised. [ 2.622145] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.623064] ehci-pci: EHCI PCI platform driver [ 2.623725] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.624583] ohci-pci: OHCI PCI platform driver [ 2.625273] uhci_hcd: USB Universal Host Controller Interface driver [ 2.626383] usbcore: registered new interface driver usblp [ 2.627485] usbcore: registered new interface driver usb-storage [ 2.628515] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 2.630612] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 2.632241] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 2.633725] mousedev: PS/2 mouse device common for all mice [ 2.635967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 2.641790] input: PC Speaker as /devices/platform/pcspkr/input/input4 [ 2.665764] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt [ 2.667260] i2c i2c-0: 1/1 memory slots populated (from DMI) [ 2.668024] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD [ 2.675052] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 2.676742] device-mapper: uevent: version 1.0.3 [ 2.678918] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 2.683257] device-mapper: multipath round-robin: version 1.2.0 loaded [ 2.684241] intel_pstate: CPU model not supported [ 2.688823] usbcore: registered new interface driver usbhid [ 2.689598] usbhid: USB HID core driver [ 2.705474] netem: version 1.3 [ 2.706277] NET: Registered PF_INET6 protocol family [ 2.712188] Segment Routing with IPv6 [ 2.712717] In-situ OAM (IOAM) with IPv6 [ 2.713285] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 2.715480] NET: Registered PF_PACKET protocol family [ 2.716182] NET: Registered PF_KEY protocol family [ 2.716862] sctp: Hash tables configured (bind 32/56) [ 2.717728] Key type dns_resolver registered [ 2.726933] IPI shorthand broadcast: enabled [ 2.727537] AVX2 version of gcm_enc/dec engaged. [ 2.728259] AES CTR mode by8 optimization enabled [ 2.730257] sched_clock: Marking stable (2618472228, 108317297)->(2782282047, -55492522) [ 2.735020] Loading compiled-in X.509 certificates [ 2.736126] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers [ 2.738851] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no [ 2.739983] ima: No TPM chip found, activating TPM-bypass! [ 2.746925] ima: Allocated hash algorithm: sha1 [ 2.747568] ima: No architecture policies found [ 2.760119] cryptomgr_test (960) used greatest stack depth: 29896 bytes left [ 2.774263] ALSA device list: [ 2.774801] #0: Virtual MIDI Card 1 [ 2.927000] ata2: SATA link down (SStatus 0 SControl 300) [ 2.928006] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 2.929043] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 [ 2.929850] ata1.00: applying bridge limits [ 2.930655] ata1.00: configured for UDMA/100 [ 2.943534] ata3: SATA link down (SStatus 0 SControl 300) [ 2.944410] ata5: SATA link down (SStatus 0 SControl 300) [ 2.945288] ata4: SATA link down (SStatus 0 SControl 300) [ 2.947488] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 [ 2.950893] ata6: SATA link down (SStatus 0 SControl 300) [ 2.983329] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray [ 2.984315] cdrom: Uniform CD-ROM driver Revision: 3.20 [ 3.002413] Freeing initrd memory: 28888K [ 3.003747] kworker/u4:10 (919) used greatest stack depth: 28568 bytes left [ 3.007194] kworker/u4:2 (706) used greatest stack depth: 28384 bytes left [ 3.083826] sr 0:0:0:0: Attached scsi CD-ROM sr0 [ 3.085147] sr 0:0:0:0: Attached scsi generic sg0 type 5 [ 3.103164] Freeing unused kernel image (initmem) memory: 2076K [ 3.117192] Write protecting the kernel read-only data: 61440k [ 3.120374] Freeing unused kernel image (text/rodata gap) memory: 2028K [ 3.122810] Freeing unused kernel image (rodata/data gap) memory: 948K [ 3.126083] Run /init as init process [ 3.127909] with arguments: [ 3.127914] /init [ 3.127917] with environment: [ 3.127920] HOME=/ [ 3.127923] TERM=linux [ 3.127926] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 [ 3.127929] resume=/dev/mapper/fedora-swap [ 3.177129] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 3.191635] systemd[1]: Detected virtualization kvm. [ 3.192554] systemd[1]: Detected architecture x86-64. [ 3.193497] systemd[1]: Running in initial RAM disk. [ 3.200495] systemd[1]: Set hostname to <test3.fieldses.org>. [ 3.206888] tsc: Refined TSC clocksource calibration: 3591.601 MHz [ 3.207931] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55573deb, max_idle_ns: 440795385523 ns [ 3.209808] clocksource: Switched to clocksource tsc [ 3.276323] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 [ 3.410362] dracut-rootfs-g (994) used greatest stack depth: 28168 bytes left [ 3.459425] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. [ 3.483169] systemd[1]: Queued start job for default target Initrd Default Target. [ 3.486365] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. [ 3.490492] systemd[1]: Reached target Slices. [ 3.492032] systemd[1]: Reached target Swap. [ 3.493442] systemd[1]: Reached target Timers. [ 3.496270] systemd[1]: Listening on Journal Audit Socket. [ 3.499878] systemd[1]: Listening on Journal Socket (/dev/log). [ 3.503436] systemd[1]: Listening on Journal Socket. [ 3.506420] systemd[1]: Listening on udev Control Socket. [ 3.509264] systemd[1]: Listening on udev Kernel Socket. [ 3.511877] systemd[1]: Reached target Sockets. [ 3.513442] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. [ 3.520259] systemd[1]: Started Memstrack Anylazing Service. [ 3.527783] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. [ 3.530307] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. [ 3.532742] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) [ 3.540109] systemd[1]: Starting Journal Service... [ 3.550015] systemd[1]: Starting Load Kernel Modules... [ 3.559017] systemd[1]: Starting Create Static Device Nodes in /dev... [ 3.565890] random: rngd: uninitialized urandom read (16 bytes read) [ 3.579371] systemd[1]: Starting Setup Virtual Console... [ 3.611362] systemd[1]: memstrack.service: Succeeded. [ 3.627660] systemd[1]: Finished Create Static Device Nodes in /dev. [ 3.668283] systemd[1]: Finished Load Kernel Modules. [ 3.683342] systemd[1]: Starting Apply Kernel Variables... [ 3.793704] systemd[1]: Finished Apply Kernel Variables. [ 3.852545] audit: type=1130 audit(1642005634.495:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 4.017096] systemd[1]: Started Journal Service. [ 4.019152] audit: type=1130 audit(1642005634.663:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 4.367941] audit: type=1130 audit(1642005635.011:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 5.158530] audit: type=1130 audit(1642005635.799:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 5.240723] random: crng init done [ 5.428343] audit: type=1130 audit(1642005636.071:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 5.562117] audit: type=1130 audit(1642005636.203:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 5.826193] kworker/u4:0 (1195) used greatest stack depth: 27960 bytes left [ 7.667205] virtio_net virtio0 enp1s0: renamed from eth0 [ 8.061253] ata_id (1566) used greatest stack depth: 27648 bytes left [ 8.873062] audit: type=1130 audit(1642005639.515:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 9.126782] audit: type=1130 audit(1642005639.767:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 9.898584] lvm (2335) used greatest stack depth: 27600 bytes left [ 10.171243] lvm (2337) used greatest stack depth: 27504 bytes left [ 10.389632] audit: type=1130 audit(1642005641.031:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' [ 10.456068] audit: type=1130 audit(1642005641.099:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 10.477828] dracut-initqueu (2286) used greatest stack depth: 27416 bytes left [ 10.481902] audit: type=1130 audit(1642005641.123:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 10.545851] fsck (2364) used greatest stack depth: 26560 bytes left [ 10.555806] audit: type=1130 audit(1642005641.195:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 10.584297] XFS (dm-0): Mounting V5 Filesystem [ 10.767936] XFS (dm-0): Ending clean mount [ 10.840832] mount (2366) used greatest stack depth: 25344 bytes left [ 10.996402] systemd-fstab-g (2379) used greatest stack depth: 24872 bytes left [ 11.699148] audit: type=1130 audit(1642005642.339:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 11.702004] audit: type=1131 audit(1642005642.339:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 11.858512] audit: type=1130 audit(1642005642.499:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 11.895749] audit: type=1131 audit(1642005642.535:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 14.895253] SELinux: Permission watch in class filesystem not defined in policy. [ 14.896380] SELinux: Permission watch in class file not defined in policy. [ 14.898184] SELinux: Permission watch_mount in class file not defined in policy. [ 14.899597] SELinux: Permission watch_sb in class file not defined in policy. [ 14.900888] SELinux: Permission watch_with_perm in class file not defined in policy. [ 14.902011] SELinux: Permission watch_reads in class file not defined in policy. [ 14.903080] SELinux: Permission watch in class dir not defined in policy. [ 14.915479] SELinux: Permission watch_mount in class dir not defined in policy. [ 14.916793] SELinux: Permission watch_sb in class dir not defined in policy. [ 14.918117] SELinux: Permission watch_with_perm in class dir not defined in policy. [ 14.919521] SELinux: Permission watch_reads in class dir not defined in policy. [ 14.920832] SELinux: Permission watch in class lnk_file not defined in policy. [ 14.922158] SELinux: Permission watch_mount in class lnk_file not defined in policy. [ 14.923410] SELinux: Permission watch_sb in class lnk_file not defined in policy. [ 14.924406] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. [ 14.925567] SELinux: Permission watch_reads in class lnk_file not defined in policy. [ 14.927302] SELinux: Permission watch in class chr_file not defined in policy. [ 14.928363] SELinux: Permission watch_mount in class chr_file not defined in policy. [ 14.929448] SELinux: Permission watch_sb in class chr_file not defined in policy. [ 14.930486] SELinux: Permission watch_with_perm in class chr_file not defined in policy. [ 14.931631] SELinux: Permission watch_reads in class chr_file not defined in policy. [ 14.932702] SELinux: Permission watch in class blk_file not defined in policy. [ 14.933695] SELinux: Permission watch_mount in class blk_file not defined in policy. [ 14.934779] SELinux: Permission watch_sb in class blk_file not defined in policy. [ 14.935782] SELinux: Permission watch_with_perm in class blk_file not defined in policy. [ 14.936834] SELinux: Permission watch_reads in class blk_file not defined in policy. [ 14.937933] SELinux: Permission watch in class sock_file not defined in policy. [ 14.938979] SELinux: Permission watch_mount in class sock_file not defined in policy. [ 14.940022] SELinux: Permission watch_sb in class sock_file not defined in policy. [ 14.941043] SELinux: Permission watch_with_perm in class sock_file not defined in policy. [ 14.942178] SELinux: Permission watch_reads in class sock_file not defined in policy. [ 14.943287] SELinux: Permission watch in class fifo_file not defined in policy. [ 14.944263] SELinux: Permission watch_mount in class fifo_file not defined in policy. [ 14.945325] SELinux: Permission watch_sb in class fifo_file not defined in policy. [ 14.946386] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. [ 14.947525] SELinux: Permission watch_reads in class fifo_file not defined in policy. [ 14.948611] SELinux: Permission perfmon in class capability2 not defined in policy. [ 14.949662] SELinux: Permission bpf in class capability2 not defined in policy. [ 14.950682] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. [ 14.951921] SELinux: Permission perfmon in class cap2_userns not defined in policy. [ 14.952939] SELinux: Permission bpf in class cap2_userns not defined in policy. [ 14.953970] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. [ 14.955277] SELinux: Class mctp_socket not defined in policy. [ 14.956110] SELinux: Class perf_event not defined in policy. [ 14.957746] SELinux: Class anon_inode not defined in policy. [ 14.958536] SELinux: Class io_uring not defined in policy. [ 14.959313] SELinux: the above unknown classes and permissions will be allowed [ 15.013559] SELinux: policy capability network_peer_controls=1 [ 15.014417] SELinux: policy capability open_perms=1 [ 15.015183] SELinux: policy capability extended_socket_class=1 [ 15.015968] SELinux: policy capability always_check_network=0 [ 15.017534] SELinux: policy capability cgroup_seclabel=1 [ 15.018305] SELinux: policy capability nnp_nosuid_transition=1 [ 15.019126] SELinux: policy capability genfs_seclabel_symlinks=0 [ 15.244501] kauditd_printk_skb: 16 callbacks suppressed [ 15.244506] audit: type=1403 audit(1642005645.887:34): auid=4294967295 ses=4294967295 lsm=selinux res=1 [ 15.255513] systemd[1]: Successfully loaded SELinux policy in 2.766323s. [ 15.619234] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 261.945ms. [ 15.628383] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 15.632666] systemd[1]: Detected virtualization kvm. [ 15.633353] systemd[1]: Detected architecture x86-64. [ 15.639738] systemd[1]: Set hostname to <test3.fieldses.org>. [ 15.905148] lvmconfig (2442) used greatest stack depth: 24544 bytes left [ 15.941811] kdump-dep-gener (2432) used greatest stack depth: 24464 bytes left [ 15.942995] grep (2450) used greatest stack depth: 24448 bytes left [ 16.222623] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. [ 16.548178] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. [ 17.024523] audit: type=1131 audit(1642005647.667:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.032331] systemd[1]: initrd-switch-root.service: Succeeded. [ 17.034511] systemd[1]: Stopped Switch Root. [ 17.037797] audit: type=1130 audit(1642005647.679:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.039820] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 17.040822] audit: type=1131 audit(1642005647.679:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.044319] systemd[1]: Created slice system-getty.slice. [ 17.048401] systemd[1]: Created slice system-modprobe.slice. [ 17.052765] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 17.055258] systemd[1]: Created slice system-sshd\x2dkeygen.slice. [ 17.058406] systemd[1]: Created slice User and Session Slice. [ 17.060191] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. [ 17.063067] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 17.066845] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 17.068244] systemd[1]: Reached target Local Encrypted Volumes. [ 17.070271] systemd[1]: Stopped target Switch Root. [ 17.071236] systemd[1]: Stopped target Initrd File Systems. [ 17.072219] systemd[1]: Stopped target Initrd Root File System. [ 17.075495] systemd[1]: Reached target Paths. [ 17.076283] systemd[1]: Reached target Slices. [ 17.080904] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ 17.084889] systemd[1]: Listening on LVM2 poll daemon socket. [ 17.087729] systemd[1]: Listening on multipathd control socket. [ 17.093018] systemd[1]: Listening on Process Core Dump Socket. [ 17.095415] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 17.099466] systemd[1]: Listening on udev Control Socket. [ 17.102467] systemd[1]: Listening on udev Kernel Socket. [ 17.109715] systemd[1]: Activating swap /dev/mapper/fedora-swap... [ 17.117743] systemd[1]: Mounting Huge Pages File System... [ 17.125890] systemd[1]: Mounting POSIX Message Queue File System... [ 17.130492] Adding 2097148k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:2097148k [ 17.140236] systemd[1]: Mounting Kernel Debug File System... [ 17.149754] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... [ 17.151753] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. [ 17.159082] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 17.166647] systemd[1]: Starting Load Kernel Module configfs... [ 17.173097] systemd[1]: Starting Load Kernel Module drm... [ 17.181757] systemd[1]: Starting Load Kernel Module fuse... [ 17.199195] systemd[1]: Starting Preprocess NFS configuration convertion... [ 17.203114] systemd[1]: plymouth-switch-root.service: Succeeded. [ 17.217307] systemd[1]: Stopped Plymouth switch root service. [ 17.220790] audit: type=1131 audit(1642005647.863:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.222477] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 17.235950] systemd[1]: systemd-fsck-root.service: Succeeded. [ 17.239114] systemd[1]: Stopped File System Check on Root Device. [ 17.241914] systemd[1]: Stopped Journal Service. [ 17.246822] audit: type=1131 audit(1642005647.883:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.248647] systemd[1]: Starting Journal Service... [ 17.250212] audit: type=1130 audit(1642005647.883:40): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.263202] audit: type=1131 audit(1642005647.887:41): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.276489] systemd[1]: Starting Load Kernel Modules... [ 17.295377] systemd[1]: Starting Remount Root and Kernel File Systems... [ 17.297774] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. [ 17.324773] systemd[1]: Starting Coldplug All udev Devices... [ 17.328304] systemd[1]: sysroot.mount: Succeeded. [ 17.374101] systemd[1]: Activated swap /dev/mapper/fedora-swap. [ 17.401071] systemd[1]: Mounted Huge Pages File System. [ 17.410741] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) [ 17.425620] systemd[1]: Mounted POSIX Message Queue File System. [ 17.440432] systemd[1]: Mounted Kernel Debug File System. [ 17.447566] RPC: Registered named UNIX socket transport module. [ 17.448425] RPC: Registered udp transport module. [ 17.449052] RPC: Registered tcp transport module. [ 17.449719] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 17.457211] systemd[1]: modprobe@configfs.service: Succeeded. [ 17.459723] systemd[1]: Finished Load Kernel Module configfs. [ 17.461450] audit: type=1130 audit(1642005648.103:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.464558] audit: type=1131 audit(1642005648.103:43): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 17.476290] systemd[1]: modprobe@drm.service: Succeeded. [ 17.491863] systemd[1]: Finished Load Kernel Module drm. [ 17.496010] systemd[1]: Finished Kernel Module supporting RPCSEC_GSS. [ 17.501497] systemd[1]: modprobe@fuse.service: Succeeded. [ 17.504499] systemd[1]: Finished Load Kernel Module fuse. [ 17.517872] systemd[1]: Started Journal Service. [ 20.438290] kauditd_printk_skb: 22 callbacks suppressed [ 20.438294] audit: type=1130 audit(1642005651.079:64): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 20.725931] audit: type=1130 audit(1642005651.367:65): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-pvscan@253:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 20.998904] audit: type=1130 audit(1642005651.639:66): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 22.158644] audit: type=1130 audit(1642005652.799:67): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 22.183237] XFS (vda1): Mounting V5 Filesystem [ 22.329168] XFS (vda1): Ending clean mount [ 22.344447] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) [ 22.381960] audit: type=1130 audit(1642005653.023:68): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 22.430820] audit: type=1130 audit(1642005653.071:69): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 22.485659] audit: type=1130 audit(1642005653.127:70): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=import-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 22.749894] audit: type=1130 audit(1642005653.391:71): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 22.857336] audit: type=1400 audit(1642005653.499:72): avc: denied { fowner } for pid=3657 comm="auditd" capability=3 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:system_r:auditd_t:s0 tclass=capability permissive=0 [ 22.861281] audit: type=1300 audit(1642005653.499:72): arch=c000003e syscall=90 success=yes exit=0 a0=56090a1699e0 a1=1c0 a2=19 a3=56090a169c40 items=0 ppid=3655 pid=3657 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) [ 121.479732] rpm (3866) used greatest stack depth: 23336 bytes left [ 160.313750] FS-Cache: Netfs 'nfs' registered for caching [ 267.826493] NFS: Registering the id_resolver key type [ 267.827159] Key type id_resolver registered [ 267.827643] Key type id_legacy registered [ 268.393694] mount.nfs (5859) used greatest stack depth: 22896 bytes left [ 523.352374] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success [ 938.809224] kworker/dying (2523) used greatest stack depth: 21832 bytes left [ 1827.841420] run fstests generic/001 at 2022-01-12 12:10:59 [ 1867.998292] run fstests generic/002 at 2022-01-12 12:11:39 [ 1869.297577] run fstests generic/003 at 2022-01-12 12:11:40 [ 1869.823503] run fstests generic/004 at 2022-01-12 12:11:40 [ 1870.357158] run fstests generic/005 at 2022-01-12 12:11:41 [ 1872.033166] run fstests generic/008 at 2022-01-12 12:11:43 [ 1872.682257] run fstests generic/009 at 2022-01-12 12:11:43 [ 1873.300870] run fstests generic/010 at 2022-01-12 12:11:44 [ 1873.867023] run fstests generic/011 at 2022-01-12 12:11:45 [ 1939.414212] run fstests generic/012 at 2022-01-12 12:12:50 [ 1940.257756] run fstests generic/013 at 2022-01-12 12:12:51 [ 2006.667055] run fstests generic/015 at 2022-01-12 12:13:57 [ 2007.186484] run fstests generic/016 at 2022-01-12 12:13:58 [ 2008.063569] run fstests generic/018 at 2022-01-12 12:13:59 [ 2008.831790] run fstests generic/020 at 2022-01-12 12:14:00 [ 2020.997738] run fstests generic/021 at 2022-01-12 12:14:12 [ 2021.774590] run fstests generic/022 at 2022-01-12 12:14:12 [ 2022.542934] run fstests generic/023 at 2022-01-12 12:14:13 [ 2025.824308] run fstests generic/024 at 2022-01-12 12:14:16 [ 2026.390736] run fstests generic/025 at 2022-01-12 12:14:17 [ 2026.963217] run fstests generic/026 at 2022-01-12 12:14:18 [ 2027.592530] run fstests generic/027 at 2022-01-12 12:14:18 [ 2028.101801] run fstests generic/028 at 2022-01-12 12:14:19 [ 2033.709852] run fstests generic/029 at 2022-01-12 12:14:24 [ 2035.495458] run fstests generic/030 at 2022-01-12 12:14:26 [ 2038.537954] run fstests generic/034 at 2022-01-12 12:14:29 [ 2039.329741] run fstests generic/036 at 2022-01-12 12:14:30 [ 2050.072609] run fstests generic/037 at 2022-01-12 12:14:41 [ 2071.336677] run fstests generic/038 at 2022-01-12 12:15:02 [ 2072.411721] run fstests generic/039 at 2022-01-12 12:15:03 [ 2073.123576] run fstests generic/040 at 2022-01-12 12:15:04 [ 2073.748265] run fstests generic/041 at 2022-01-12 12:15:04 [ 2074.344951] run fstests generic/043 at 2022-01-12 12:15:05 [ 2075.114885] run fstests generic/044 at 2022-01-12 12:15:06 [ 2075.977059] run fstests generic/045 at 2022-01-12 12:15:07 [ 2076.855028] run fstests generic/046 at 2022-01-12 12:15:08 [ 2077.696747] run fstests generic/047 at 2022-01-12 12:15:08 [ 2078.533668] run fstests generic/048 at 2022-01-12 12:15:09 [ 2079.397374] run fstests generic/049 at 2022-01-12 12:15:10 [ 2080.261339] run fstests generic/050 at 2022-01-12 12:15:11 [ 2081.107141] run fstests generic/051 at 2022-01-12 12:15:12 [ 2082.008096] run fstests generic/052 at 2022-01-12 12:15:13 [ 2082.858320] run fstests generic/054 at 2022-01-12 12:15:14 [ 2083.731997] run fstests generic/055 at 2022-01-12 12:15:14 [ 2084.590242] run fstests generic/056 at 2022-01-12 12:15:15 [ 2085.303754] run fstests generic/057 at 2022-01-12 12:15:16 [ 2085.908458] run fstests generic/058 at 2022-01-12 12:15:17 [ 2086.640354] run fstests generic/059 at 2022-01-12 12:15:17 [ 2087.217469] run fstests generic/060 at 2022-01-12 12:15:18 [ 2087.944489] run fstests generic/061 at 2022-01-12 12:15:19 [ 2088.749344] run fstests generic/063 at 2022-01-12 12:15:19 [ 2089.524340] run fstests generic/065 at 2022-01-12 12:15:20 [ 2090.121276] run fstests generic/066 at 2022-01-12 12:15:21 [ 2090.702873] run fstests generic/067 at 2022-01-12 12:15:21 [ 2091.333532] run fstests generic/069 at 2022-01-12 12:15:22 [ 2121.140927] run fstests generic/070 at 2022-01-12 12:15:52 [ 2168.861297] run fstests generic/072 at 2022-01-12 12:16:40 [ 2169.690898] run fstests generic/073 at 2022-01-12 12:16:40 [ 2170.302749] run fstests generic/075 at 2022-01-12 12:16:41 [ 2226.187399] run fstests generic/076 at 2022-01-12 12:17:37 [ 2226.692121] run fstests generic/077 at 2022-01-12 12:17:37 [ 2230.646484] run fstests generic/078 at 2022-01-12 12:17:41 [ 2231.233467] run fstests generic/079 at 2022-01-12 12:17:42 [ 2231.792759] run fstests generic/080 at 2022-01-12 12:17:42 [ 2234.478551] run fstests generic/081 at 2022-01-12 12:17:45 [ 2235.016264] run fstests generic/082 at 2022-01-12 12:17:46 [ 2235.544754] run fstests generic/083 at 2022-01-12 12:17:46 [ 2236.070354] run fstests generic/084 at 2022-01-12 12:17:47 [ 2242.089643] run fstests generic/085 at 2022-01-12 12:17:53 [ 2242.829424] run fstests generic/086 at 2022-01-12 12:17:54 [ 2244.627985] 086 (63919): drop_caches: 3 [ 2245.004053] run fstests generic/090 at 2022-01-12 12:17:56 [ 2245.726297] run fstests generic/092 at 2022-01-12 12:17:56 [ 2246.386331] run fstests generic/093 at 2022-01-12 12:17:57 [ 2246.989287] run fstests generic/095 at 2022-01-12 12:17:58 [ 2247.568818] run fstests generic/096 at 2022-01-12 12:17:58 [ 2248.194588] run fstests generic/097 at 2022-01-12 12:17:59 [ 2248.808142] run fstests generic/098 at 2022-01-12 12:17:59 [ 2250.531860] run fstests generic/099 at 2022-01-12 12:18:01 [ 2251.371697] run fstests generic/101 at 2022-01-12 12:18:02 [ 2251.916640] run fstests generic/102 at 2022-01-12 12:18:03 [ 2252.419409] run fstests generic/103 at 2022-01-12 12:18:03 [ 2255.825340] run fstests generic/104 at 2022-01-12 12:18:06 [ 2256.640587] run fstests generic/106 at 2022-01-12 12:18:07 [ 2257.275429] run fstests generic/107 at 2022-01-12 12:18:08 [ 2257.871596] run fstests generic/108 at 2022-01-12 12:18:09 [ 2258.649789] run fstests generic/109 at 2022-01-12 12:18:09 [ 2314.619077] run fstests generic/110 at 2022-01-12 12:19:05 [ 2315.511518] run fstests generic/111 at 2022-01-12 12:19:06 [ 2316.200429] run fstests generic/112 at 2022-01-12 12:19:07 [ 2375.093348] run fstests generic/114 at 2022-01-12 12:20:06 [ 2375.726022] run fstests generic/115 at 2022-01-12 12:20:06 [ 2376.417534] run fstests generic/116 at 2022-01-12 12:20:07 [ 2378.207570] run fstests generic/118 at 2022-01-12 12:20:09 [ 2379.767855] run fstests generic/119 at 2022-01-12 12:20:10 [ 2382.596453] run fstests generic/120 at 2022-01-12 12:20:13 [ 2383.118291] run fstests generic/121 at 2022-01-12 12:20:14 [ 2383.763385] run fstests generic/122 at 2022-01-12 12:20:14 [ 2384.417857] run fstests generic/123 at 2022-01-12 12:20:15 [ 2384.952387] run fstests generic/124 at 2022-01-12 12:20:16 [ 2439.979901] run fstests generic/128 at 2022-01-12 12:21:11 [ 2440.534640] run fstests generic/130 at 2022-01-12 12:21:11 [ 2458.532247] run fstests generic/131 at 2022-01-12 12:21:29 [ 2460.624455] run fstests generic/132 at 2022-01-12 12:21:31 [ 2479.380043] run fstests generic/134 at 2022-01-12 12:21:50 [ 2481.259289] run fstests generic/135 at 2022-01-12 12:21:52 [ 2482.602837] run fstests generic/136 at 2022-01-12 12:21:53 [ 2483.422863] run fstests generic/137 at 2022-01-12 12:21:54 [ 2484.225794] run fstests generic/138 at 2022-01-12 12:21:55 [ 2486.911951] run fstests generic/139 at 2022-01-12 12:21:58 [ 2490.247175] run fstests generic/140 at 2022-01-12 12:22:01 [ 2492.960214] run fstests generic/141 at 2022-01-12 12:22:04 [ 2493.949160] run fstests generic/142 at 2022-01-12 12:22:05 [ 2502.811792] run fstests generic/143 at 2022-01-12 12:22:13 [ 2744.562632] run fstests generic/144 at 2022-01-12 12:26:15 [ 2746.679337] run fstests generic/145 at 2022-01-12 12:26:17 [ 2747.559239] run fstests generic/146 at 2022-01-12 12:26:18 [ 2749.654314] run fstests generic/147 at 2022-01-12 12:26:20 [ 2750.441774] run fstests generic/148 at 2022-01-12 12:26:21 [ 2752.169829] run fstests generic/149 at 2022-01-12 12:26:23 [ 2752.935800] run fstests generic/150 at 2022-01-12 12:26:24 [ 2770.733819] run fstests generic/151 at 2022-01-12 12:26:41 [ 2790.154829] run fstests generic/152 at 2022-01-12 12:27:01 [ 2810.016846] run fstests generic/153 at 2022-01-12 12:27:21 [ 2810.829252] run fstests generic/155 at 2022-01-12 12:27:22 [ 2811.642982] run fstests generic/156 at 2022-01-12 12:27:22 [ 2812.435476] run fstests generic/157 at 2022-01-12 12:27:23 [ 2898.516142] run fstests generic/158 at 2022-01-12 12:28:49 [ 2899.169820] run fstests generic/159 at 2022-01-12 12:28:50 [ 2899.707414] run fstests generic/160 at 2022-01-12 12:28:50 [ 2900.240792] run fstests generic/161 at 2022-01-12 12:28:51 [ 2920.346459] run fstests generic/162 at 2022-01-12 12:29:11 [ 2921.465497] run fstests generic/163 at 2022-01-12 12:29:12 [ 2922.457235] run fstests generic/164 at 2022-01-12 12:29:13 [ 2992.429168] run fstests generic/165 at 2022-01-12 12:30:23 [ 3052.173968] run fstests generic/166 at 2022-01-12 12:31:23 [ 3234.652685] run fstests generic/167 at 2022-01-12 12:34:25 [ 3276.304549] run fstests generic/168 at 2022-01-12 12:35:07 [ 3556.737914] run fstests generic/169 at 2022-01-12 12:39:47 [ 3558.300604] run fstests generic/170 at 2022-01-12 12:39:49 [ 3919.058972] run fstests generic/171 at 2022-01-12 12:45:50 [ 3920.624329] run fstests generic/172 at 2022-01-12 12:45:51 [ 3921.953882] run fstests generic/173 at 2022-01-12 12:45:53 [ 3923.239526] run fstests generic/174 at 2022-01-12 12:45:54 [ 3924.575586] run fstests generic/175 at 2022-01-12 12:45:55 [ 4159.652128] run fstests generic/176 at 2022-01-12 12:49:50 [ 4231.459928] run fstests generic/177 at 2022-01-12 12:51:02 [ 4232.370516] run fstests generic/178 at 2022-01-12 12:51:03 [ 4237.868525] run fstests generic/179 at 2022-01-12 12:51:09 [ 4239.533836] run fstests generic/180 at 2022-01-12 12:51:10 [ 4240.307772] run fstests generic/181 at 2022-01-12 12:51:11 [ 4244.757968] run fstests generic/182 at 2022-01-12 12:51:15 [ 4245.418557] run fstests generic/183 at 2022-01-12 12:51:16 [ 4251.302820] run fstests generic/185 at 2022-01-12 12:51:22 [ 4257.418284] run fstests generic/186 at 2022-01-12 12:51:28 [ 5070.488206] run fstests generic/187 at 2022-01-12 13:05:01 [ 5885.066194] run fstests generic/188 at 2022-01-12 13:18:36 [ 5891.287909] run fstests generic/189 at 2022-01-12 13:18:42 [ 5895.605867] run fstests generic/190 at 2022-01-12 13:18:46 [ 5900.073040] run fstests generic/191 at 2022-01-12 13:18:51 [ 5904.614273] run fstests generic/192 at 2022-01-12 13:18:55 [ 5905.308580] run fstests generic/193 at 2022-01-12 13:18:56 [ 5905.844031] run fstests generic/194 at 2022-01-12 13:18:57 [ 5912.087984] run fstests generic/195 at 2022-01-12 13:19:03 [ 5918.021826] run fstests generic/196 at 2022-01-12 13:19:09 [ 5922.532326] run fstests generic/197 at 2022-01-12 13:19:13 [ 5927.467154] run fstests generic/198 at 2022-01-12 13:19:18 [ 5933.061489] run fstests generic/199 at 2022-01-12 13:19:24 [ 5938.925983] run fstests generic/200 at 2022-01-12 13:19:30 [ 5944.827402] run fstests generic/201 at 2022-01-12 13:19:36 [ 5948.708601] run fstests generic/202 at 2022-01-12 13:19:39 [ 5950.790927] run fstests generic/203 at 2022-01-12 13:19:41 [ 5953.029748] run fstests generic/204 at 2022-01-12 13:19:44 [ 5954.153740] run fstests generic/205 at 2022-01-12 13:19:45 [ 5955.124318] run fstests generic/206 at 2022-01-12 13:19:46 [ 5956.139535] run fstests generic/207 at 2022-01-12 13:19:47 [ 5976.917435] run fstests generic/209 at 2022-01-12 13:20:08 [ 6022.149019] run fstests generic/210 at 2022-01-12 13:20:53 [ 6022.898911] run fstests generic/211 at 2022-01-12 13:20:54 [ 6024.148505] run fstests generic/212 at 2022-01-12 13:20:55 [ 6024.829471] run fstests generic/213 at 2022-01-12 13:20:56 [ 6025.661954] run fstests generic/214 at 2022-01-12 13:20:56 [ 6026.799438] run fstests generic/215 at 2022-01-12 13:20:57 [ 6029.680826] run fstests generic/216 at 2022-01-12 13:21:00 [ 6030.690346] run fstests generic/217 at 2022-01-12 13:21:01 [ 6031.755530] run fstests generic/218 at 2022-01-12 13:21:02 [ 6032.778991] run fstests generic/219 at 2022-01-12 13:21:03 [ 6033.283631] run fstests generic/220 at 2022-01-12 13:21:04 [ 6034.360789] run fstests generic/221 at 2022-01-12 13:21:05 [ 6035.998554] run fstests generic/222 at 2022-01-12 13:21:07 [ 6036.984890] run fstests generic/223 at 2022-01-12 13:21:08 [ 6037.549093] run fstests generic/224 at 2022-01-12 13:21:08 [ 6038.116815] run fstests generic/226 at 2022-01-12 13:21:09 [ 6038.692541] run fstests generic/227 at 2022-01-12 13:21:09 [ 6039.755092] run fstests generic/228 at 2022-01-12 13:21:10 [ 6040.281881] Unsafe core_pattern used with fs.suid_dumpable=2. Pipe handler or fully qualified core dump path required. Set kernel.core_pattern before fs.suid_dumpable. [ 6040.553574] run fstests generic/229 at 2022-01-12 13:21:11 [ 6041.551145] run fstests generic/230 at 2022-01-12 13:21:12 [ 6042.058550] run fstests generic/231 at 2022-01-12 13:21:13 [ 6042.559297] run fstests generic/232 at 2022-01-12 13:21:13 [ 6043.063531] run fstests generic/233 at 2022-01-12 13:21:14 [ 6043.572898] run fstests generic/234 at 2022-01-12 13:21:14 [ 6044.083619] run fstests generic/235 at 2022-01-12 13:21:15 [ 6044.595386] run fstests generic/236 at 2022-01-12 13:21:15 [ 6046.330897] run fstests generic/237 at 2022-01-12 13:21:17 [ 6046.995456] run fstests generic/238 at 2022-01-12 13:21:18 [ 6048.062920] run fstests generic/239 at 2022-01-12 13:21:19 [ 6079.167087] run fstests generic/240 at 2022-01-12 13:21:50 [ 6080.262050] run fstests generic/241 at 2022-01-12 13:21:51 [ 6080.777265] run fstests generic/242 at 2022-01-12 13:21:51 [ 6165.131825] run fstests generic/243 at 2022-01-12 13:23:16 [ 6246.858636] run fstests generic/244 at 2022-01-12 13:24:38 [ 6247.538623] run fstests generic/245 at 2022-01-12 13:24:38 [ 6248.262918] run fstests generic/246 at 2022-01-12 13:24:39 [ 6248.891286] run fstests generic/247 at 2022-01-12 13:24:40 [ 6330.034484] run fstests generic/248 at 2022-01-12 13:26:01 [ 6330.856382] run fstests generic/249 at 2022-01-12 13:26:02 [ 6334.074505] run fstests generic/250 at 2022-01-12 13:26:05 [ 6334.909446] run fstests generic/252 at 2022-01-12 13:26:06 [ 6335.473954] run fstests generic/253 at 2022-01-12 13:26:06 [ 6337.650997] run fstests generic/254 at 2022-01-12 13:26:08 [ 6340.130137] run fstests generic/255 at 2022-01-12 13:26:11 [ 6341.103237] run fstests generic/256 at 2022-01-12 13:26:12 [ 6341.796869] run fstests generic/257 at 2022-01-12 13:26:12 [ 6345.943041] run fstests generic/258 at 2022-01-12 13:26:17 [ 6346.813066] run fstests generic/259 at 2022-01-12 13:26:18 [ 6347.896367] run fstests generic/260 at 2022-01-12 13:26:19 [ 6348.746022] run fstests generic/261 at 2022-01-12 13:26:19 [ 6349.851327] run fstests generic/262 at 2022-01-12 13:26:21 [ 6350.974652] run fstests generic/264 at 2022-01-12 13:26:22 [ 6352.017430] run fstests generic/265 at 2022-01-12 13:26:23 [ 6353.016731] run fstests generic/266 at 2022-01-12 13:26:24 [ 6353.983465] run fstests generic/267 at 2022-01-12 13:26:25 [ 6354.953896] run fstests generic/268 at 2022-01-12 13:26:26 [ 6355.951768] run fstests generic/269 at 2022-01-12 13:26:27 [ 6356.458572] run fstests generic/270 at 2022-01-12 13:26:27 [ 6356.938338] run fstests generic/271 at 2022-01-12 13:26:28 [ 6357.892032] run fstests generic/272 at 2022-01-12 13:26:29 [ 6358.849363] run fstests generic/273 at 2022-01-12 13:26:30 [ 6359.360457] run fstests generic/274 at 2022-01-12 13:26:30 [ 6359.918582] run fstests generic/275 at 2022-01-12 13:26:31 [ 6360.433874] run fstests generic/276 at 2022-01-12 13:26:31 [ 6361.462929] run fstests generic/278 at 2022-01-12 13:26:32 [ 6362.446136] run fstests generic/279 at 2022-01-12 13:26:33 [ 6363.428985] run fstests generic/280 at 2022-01-12 13:26:34 [ 6363.934111] run fstests generic/281 at 2022-01-12 13:26:35 [ 6364.932675] run fstests generic/282 at 2022-01-12 13:26:36 [ 6365.931183] run fstests generic/283 at 2022-01-12 13:26:37 [ 6366.950101] run fstests generic/284 at 2022-01-12 13:26:38 [ 6370.483205] run fstests generic/285 at 2022-01-12 13:26:41 [ 6372.532605] run fstests generic/286 at 2022-01-12 13:26:43 [ 6391.552588] run fstests generic/287 at 2022-01-12 13:27:02 [ 6395.221066] run fstests generic/288 at 2022-01-12 13:27:06 [ 6396.199239] run fstests generic/289 at 2022-01-12 13:27:07 [ 6401.494200] run fstests generic/290 at 2022-01-12 13:27:12 [ 6406.705872] run fstests generic/291 at 2022-01-12 13:27:17 [ 6411.919310] run fstests generic/292 at 2022-01-12 13:27:23 [ 6417.313613] run fstests generic/293 at 2022-01-12 13:27:28 [ 6424.177254] run fstests generic/295 at 2022-01-12 13:27:35 [ 6430.984886] run fstests generic/296 at 2022-01-12 13:27:42 [ 6434.891933] run fstests generic/297 at 2022-01-12 13:27:46 [ 6435.979562] run fstests generic/298 at 2022-01-12 13:27:47 [ 6436.941076] run fstests generic/299 at 2022-01-12 13:27:48 [ 6437.539615] run fstests generic/300 at 2022-01-12 13:27:48 [ 6438.104575] run fstests generic/301 at 2022-01-12 13:27:49 [ 6439.145713] run fstests generic/302 at 2022-01-12 13:27:50 [ 6440.109454] run fstests generic/303 at 2022-01-12 13:27:51 [ 6441.507025] run fstests generic/304 at 2022-01-12 13:27:52 [ 6442.163632] run fstests generic/305 at 2022-01-12 13:27:53 [ 6443.161513] run fstests generic/306 at 2022-01-12 13:27:54 [ 6444.462375] run fstests generic/307 at 2022-01-12 13:27:55 [ 6445.026925] run fstests generic/308 at 2022-01-12 13:27:56 [ 6445.694065] run fstests generic/309 at 2022-01-12 13:27:56 [ 6447.429347] run fstests generic/311 at 2022-01-12 13:27:58 [ 6448.065661] run fstests generic/312 at 2022-01-12 13:27:59 [ 6448.641786] run fstests generic/313 at 2022-01-12 13:27:59 [ 6453.330380] run fstests generic/314 at 2022-01-12 13:28:04 [ 6453.869735] run fstests generic/315 at 2022-01-12 13:28:05 [ 6454.432871] run fstests generic/316 at 2022-01-12 13:28:05 [ 6455.179812] run fstests generic/317 at 2022-01-12 13:28:06 [ 6455.744870] run fstests generic/319 at 2022-01-12 13:28:06 [ 6456.295368] run fstests generic/320 at 2022-01-12 13:28:07 [ 6456.823414] run fstests generic/321 at 2022-01-12 13:28:08 [ 6457.398078] run fstests generic/322 at 2022-01-12 13:28:08 [ 6457.986300] run fstests generic/324 at 2022-01-12 13:28:09 [ 6458.486502] run fstests generic/325 at 2022-01-12 13:28:09 [ 6459.043391] run fstests generic/326 at 2022-01-12 13:28:10 [ 6460.040241] run fstests generic/327 at 2022-01-12 13:28:11 [ 6461.054872] run fstests generic/328 at 2022-01-12 13:28:12 [ 6462.066528] run fstests generic/329 at 2022-01-12 13:28:13 [ 6463.065254] run fstests generic/330 at 2022-01-12 13:28:14 [ 6471.961534] run fstests generic/331 at 2022-01-12 13:28:23 [ 6473.162639] run fstests generic/332 at 2022-01-12 13:28:24 [ 6481.558320] run fstests generic/333 at 2022-01-12 13:28:32 [ 6482.970708] run fstests generic/334 at 2022-01-12 13:28:34 [ 6483.883159] run fstests generic/335 at 2022-01-12 13:28:35 [ 6484.424615] run fstests generic/336 at 2022-01-12 13:28:35 [ 6485.026317] run fstests generic/337 at 2022-01-12 13:28:36 [ 6486.087022] run fstests generic/338 at 2022-01-12 13:28:37 [ 6486.853279] run fstests generic/340 at 2022-01-12 13:28:38 [ 6529.018625] run fstests generic/341 at 2022-01-12 13:29:20 [ 6529.743485] run fstests generic/342 at 2022-01-12 13:29:20 [ 6530.324586] run fstests generic/343 at 2022-01-12 13:29:21 [ 6530.920079] run fstests generic/344 at 2022-01-12 13:29:22 [ 6615.377472] run fstests generic/345 at 2022-01-12 13:30:46 [ 6699.843608] run fstests generic/346 at 2022-01-12 13:32:11 [ 6738.437542] run fstests generic/347 at 2022-01-12 13:32:49 [ 6739.294108] run fstests generic/348 at 2022-01-12 13:32:50 [ 6739.898344] run fstests generic/352 at 2022-01-12 13:32:51 [ 6741.077399] run fstests generic/353 at 2022-01-12 13:32:52 [ 6742.043936] run fstests generic/354 at 2022-01-12 13:32:53 [ 6762.336256] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success [ 6771.148344] run fstests generic/355 at 2022-01-12 13:33:22 [ 6771.867718] run fstests generic/356 at 2022-01-12 13:33:23 [ 6772.723288] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 6774.212765] Adding 10236k swap on /mnt2/test-356/file1. Priority:-3 extents:1 across:10236k [ 6774.563473] run fstests generic/358 at 2022-01-12 13:33:25 [ 6829.824103] run fstests generic/359 at 2022-01-12 13:34:21 [ 6844.529776] run fstests generic/360 at 2022-01-12 13:34:35 [ 6845.353612] run fstests generic/361 at 2022-01-12 13:34:36 [ 6845.922540] run fstests generic/362 at 2022-01-12 13:34:37 [ 6846.514415] run fstests generic/363 at 2022-01-12 13:34:37 [ 6847.212681] run fstests generic/364 at 2022-01-12 13:34:38 [ 6847.905685] run fstests generic/365 at 2022-01-12 13:34:39 [ 6848.597706] run fstests generic/366 at 2022-01-12 13:34:39 [ 6849.301636] run fstests generic/367 at 2022-01-12 13:34:40 [ 6849.993675] run fstests generic/368 at 2022-01-12 13:34:41 [ 6850.694262] run fstests generic/369 at 2022-01-12 13:34:41 [ 6851.389744] run fstests generic/370 at 2022-01-12 13:34:42 [ 6852.089253] run fstests generic/371 at 2022-01-12 13:34:43 [ 6852.772792] run fstests generic/372 at 2022-01-12 13:34:43 [ 6853.867908] run fstests generic/373 at 2022-01-12 13:34:45 [ 6855.370332] run fstests generic/374 at 2022-01-12 13:34:46 [ 6856.417262] run fstests generic/375 at 2022-01-12 13:34:47 [ 6857.021504] run fstests generic/376 at 2022-01-12 13:34:48 [ 6857.662821] run fstests generic/377 at 2022-01-12 13:34:48 [ 6858.728302] run fstests generic/378 at 2022-01-12 13:34:49 [ 6859.437621] run fstests generic/379 at 2022-01-12 13:34:50 [ 6859.958758] run fstests generic/380 at 2022-01-12 13:34:51 [ 6860.467861] run fstests generic/381 at 2022-01-12 13:34:51 [ 6860.979217] run fstests generic/382 at 2022-01-12 13:34:52 [ 6861.490673] run fstests generic/383 at 2022-01-12 13:34:52 [ 6862.007029] run fstests generic/384 at 2022-01-12 13:34:53 [ 6862.539285] run fstests generic/385 at 2022-01-12 13:34:53 [ 6863.056895] run fstests generic/386 at 2022-01-12 13:34:54 [ 6863.540959] run fstests generic/387 at 2022-01-12 13:34:54 [ 6864.451640] run fstests generic/388 at 2022-01-12 13:34:55 [ 6865.020938] run fstests generic/389 at 2022-01-12 13:34:56 [ 6865.578808] run fstests generic/390 at 2022-01-12 13:34:56 [ 6866.159617] run fstests generic/391 at 2022-01-12 13:34:57 [ 6886.115735] 391 (267517): drop_caches: 3 [ 6889.286981] run fstests generic/392 at 2022-01-12 13:35:20 [ 6891.203337] run fstests generic/393 at 2022-01-12 13:35:22 [ 6893.177969] run fstests generic/394 at 2022-01-12 13:35:24 [ 6894.586568] run fstests generic/395 at 2022-01-12 13:35:25 [ 6895.341072] run fstests generic/396 at 2022-01-12 13:35:26 [ 6896.026789] run fstests generic/397 at 2022-01-12 13:35:27 [ 6896.798172] run fstests generic/398 at 2022-01-12 13:35:27 [ 6897.556444] run fstests generic/399 at 2022-01-12 13:35:28 [ 6898.303641] run fstests generic/400 at 2022-01-12 13:35:29 [ 6898.815244] run fstests generic/401 at 2022-01-12 13:35:30 [ 6899.937180] run fstests generic/402 at 2022-01-12 13:35:31 [ 6901.017461] run fstests generic/404 at 2022-01-12 13:35:32 [ 6901.789100] run fstests generic/405 at 2022-01-12 13:35:32 [ 6902.645105] run fstests generic/406 at 2022-01-12 13:35:33 [ 6910.841871] run fstests generic/407 at 2022-01-12 13:35:42 [ 6912.903774] run fstests generic/408 at 2022-01-12 13:35:44 [ 6913.608890] run fstests generic/409 at 2022-01-12 13:35:44 [ 6914.156131] run fstests generic/410 at 2022-01-12 13:35:45 [ 6914.704550] run fstests generic/411 at 2022-01-12 13:35:45 [ 6915.251230] run fstests generic/412 at 2022-01-12 13:35:46 [ 6916.526789] run fstests generic/413 at 2022-01-12 13:35:47 [ 6917.304149] nfs: Unknown parameter 'dax' [ 6917.410347] run fstests generic/414 at 2022-01-12 13:35:48 [ 6918.634861] run fstests generic/415 at 2022-01-12 13:35:49 [ 6933.976957] run fstests generic/416 at 2022-01-12 13:36:05 [ 6934.691603] run fstests generic/417 at 2022-01-12 13:36:05 [ 6935.629054] run fstests generic/418 at 2022-01-12 13:36:06 [ 6936.242138] run fstests generic/419 at 2022-01-12 13:36:07 [ 6937.045544] run fstests generic/420 at 2022-01-12 13:36:08 [ 6937.839373] run fstests generic/421 at 2022-01-12 13:36:09 [ 6938.636575] run fstests generic/424 at 2022-01-12 13:36:09 [ 6939.351034] run fstests generic/427 at 2022-01-12 13:36:10 [ 6939.996982] run fstests generic/428 at 2022-01-12 13:36:11 [ 6940.637416] run fstests generic/429 at 2022-01-12 13:36:11 [ 6941.362410] run fstests generic/430 at 2022-01-12 13:36:12 [ 6942.506724] run fstests generic/431 at 2022-01-12 13:36:13 [ 6943.556512] run fstests generic/432 at 2022-01-12 13:36:14 [ 6944.645630] run fstests generic/433 at 2022-01-12 13:36:15 [ 6945.677486] run fstests generic/435 at 2022-01-12 13:36:16 [ 6946.409026] run fstests generic/436 at 2022-01-12 13:36:17 [ 6947.992848] run fstests generic/437 at 2022-01-12 13:36:19 [ 6968.653759] run fstests generic/439 at 2022-01-12 13:36:39 [ 6970.194179] run fstests generic/440 at 2022-01-12 13:36:41 [ 6970.921973] run fstests generic/441 at 2022-01-12 13:36:42 [ 6971.489914] run fstests generic/443 at 2022-01-12 13:36:42 [ 6972.110321] run fstests generic/444 at 2022-01-12 13:36:43 [ 6972.734069] run fstests generic/445 at 2022-01-12 13:36:43 [ 6974.220817] run fstests generic/447 at 2022-01-12 13:36:45 [ 6975.531450] run fstests generic/448 at 2022-01-12 13:36:46 [ 6976.914815] run fstests generic/449 at 2022-01-12 13:36:48 [ 6977.512944] run fstests generic/450 at 2022-01-12 13:36:48 [ 6978.444175] run fstests generic/451 at 2022-01-12 13:36:49 [ 7009.200274] run fstests generic/452 at 2022-01-12 13:37:20 [ 7010.248330] run fstests generic/453 at 2022-01-12 13:37:21 [ 7012.836935] run fstests generic/454 at 2022-01-12 13:37:24 [ 7015.394697] run fstests generic/455 at 2022-01-12 13:37:26 [ 7016.318699] run fstests generic/456 at 2022-01-12 13:37:27 [ 7016.892196] run fstests generic/457 at 2022-01-12 13:37:28 [ 7018.100645] run fstests generic/458 at 2022-01-12 13:37:29 [ 7019.153106] run fstests generic/459 at 2022-01-12 13:37:30 [ 7020.261614] run fstests generic/460 at 2022-01-12 13:37:31 [ 7057.684200] run fstests generic/461 at 2022-01-12 13:38:08 [ 7058.928713] run fstests generic/462 at 2022-01-12 13:38:10 [ 7059.578267] nfs: Unknown parameter 'dax' [ 7059.685070] run fstests generic/463 at 2022-01-12 13:38:10 [ 7060.682186] run fstests generic/464 at 2022-01-12 13:38:11 [ 7133.376125] run fstests generic/466 at 2022-01-12 13:39:24 [ 7134.033001] run fstests generic/467 at 2022-01-12 13:39:25 [ 7134.958056] sh (300657): drop_caches: 3 [ 7135.273575] sh (300664): drop_caches: 3 [ 7135.779078] sh (300671): drop_caches: 3 [ 7136.171387] sh (300678): drop_caches: 3 [ 7136.372701] sh (300683): drop_caches: 3 [ 7136.858710] sh (300690): drop_caches: 3 [ 7137.390146] sh (300699): drop_caches: 3 [ 7137.986292] sh (300709): drop_caches: 3 [ 7138.252495] run fstests generic/468 at 2022-01-12 13:39:29 [ 7140.487581] run fstests generic/470 at 2022-01-12 13:39:31 [ 7141.285153] run fstests generic/471 at 2022-01-12 13:39:32 [ 7141.971971] run fstests generic/472 at 2022-01-12 13:39:33 [ 7142.757677] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7143.294807] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k [ 7143.500315] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k [ 7143.621722] Adding 8k swap on /mnt2/swap. Priority:-3 extents:1 across:8k [ 7144.046333] run fstests generic/474 at 2022-01-12 13:39:35 [ 7144.988579] run fstests generic/475 at 2022-01-12 13:39:36 [ 7145.710624] run fstests generic/477 at 2022-01-12 13:39:36 [ 7146.845233] sh (302346): drop_caches: 3 [ 7147.640367] sh (302387): drop_caches: 3 [ 7148.536961] sh (302428): drop_caches: 3 [ 7149.466709] sh (302470): drop_caches: 3 [ 7149.738194] run fstests generic/479 at 2022-01-12 13:39:40 [ 7150.443204] run fstests generic/480 at 2022-01-12 13:39:41 [ 7151.048938] run fstests generic/481 at 2022-01-12 13:39:42 [ 7151.619524] run fstests generic/482 at 2022-01-12 13:39:42 [ 7152.348315] run fstests generic/483 at 2022-01-12 13:39:43 [ 7153.020108] run fstests generic/487 at 2022-01-12 13:39:44 [ 7153.578129] run fstests generic/488 at 2022-01-12 13:39:44 [ 7154.092708] run fstests generic/489 at 2022-01-12 13:39:45 [ 7154.645766] run fstests generic/490 at 2022-01-12 13:39:45 [ 7156.152532] run fstests generic/492 at 2022-01-12 13:39:47 [ 7156.687978] run fstests generic/493 at 2022-01-12 13:39:47 [ 7157.440775] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7158.071570] run fstests generic/494 at 2022-01-12 13:39:49 [ 7158.945655] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7159.987483] Adding 10236k swap on /mnt2/test-494/file1. Priority:-3 extents:1 across:10236k [ 7160.426306] run fstests generic/495 at 2022-01-12 13:39:51 [ 7161.398950] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7161.828770] swap activate: swapfile has holes [ 7161.924587] Empty swap-file [ 7162.186835] run fstests generic/496 at 2022-01-12 13:39:53 [ 7163.145304] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7163.664228] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k [ 7169.433211] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k [ 7169.727608] run fstests generic/497 at 2022-01-12 13:40:00 [ 7170.735141] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7171.069079] run fstests generic/498 at 2022-01-12 13:40:02 [ 7171.732186] run fstests generic/500 at 2022-01-12 13:40:02 [ 7172.402636] run fstests generic/501 at 2022-01-12 13:40:03 [ 7173.367894] run fstests generic/502 at 2022-01-12 13:40:04 [ 7174.036468] run fstests generic/504 at 2022-01-12 13:40:05 [ 7174.679080] run fstests generic/505 at 2022-01-12 13:40:05 [ 7175.476364] run fstests generic/506 at 2022-01-12 13:40:06 [ 7176.336327] run fstests generic/507 at 2022-01-12 13:40:07 [ 7176.906752] run fstests generic/508 at 2022-01-12 13:40:08 [ 7177.443466] run fstests generic/509 at 2022-01-12 13:40:08 [ 7178.113899] run fstests generic/510 at 2022-01-12 13:40:09 [ 7178.665874] run fstests generic/511 at 2022-01-12 13:40:09 [ 7179.212399] run fstests generic/512 at 2022-01-12 13:40:10 [ 7179.863716] run fstests generic/514 at 2022-01-12 13:40:11 [ 7180.815618] run fstests generic/515 at 2022-01-12 13:40:12 [ 7181.850294] run fstests generic/516 at 2022-01-12 13:40:13 [ 7182.497964] run fstests generic/517 at 2022-01-12 13:40:13 [ 7183.397705] run fstests generic/518 at 2022-01-12 13:40:14 [ 7185.260858] run fstests generic/520 at 2022-01-12 13:40:16 [ 7185.995518] run fstests generic/523 at 2022-01-12 13:40:17 [ 7187.015108] run fstests generic/524 at 2022-01-12 13:40:18 [ 7214.588812] run fstests generic/525 at 2022-01-12 13:40:45 [ 7215.945729] run fstests generic/526 at 2022-01-12 13:40:47 [ 7216.731432] run fstests generic/527 at 2022-01-12 13:40:47 [ 7217.332036] run fstests generic/528 at 2022-01-12 13:40:48 [ 7217.928387] run fstests generic/529 at 2022-01-12 13:40:49 [ 7218.474947] run fstests generic/530 at 2022-01-12 13:40:49 [ 7219.289577] run fstests generic/532 at 2022-01-12 13:40:50 [ 7219.984287] run fstests generic/533 at 2022-01-12 13:40:51 [ 7221.588573] run fstests generic/534 at 2022-01-12 13:40:52 [ 7222.205596] run fstests generic/535 at 2022-01-12 13:40:53 [ 7222.829546] run fstests generic/536 at 2022-01-12 13:40:54 [ 7223.590202] run fstests generic/537 at 2022-01-12 13:40:54 [ 7224.466640] run fstests generic/538 at 2022-01-12 13:40:55 [ 7250.048839] run fstests generic/539 at 2022-01-12 13:41:21 [ 7251.550550] run fstests generic/540 at 2022-01-12 13:41:22 [ 7257.243669] run fstests generic/541 at 2022-01-12 13:41:28 [ 7263.478824] run fstests generic/542 at 2022-01-12 13:41:34 [ 7269.624181] run fstests generic/543 at 2022-01-12 13:41:40 [ 7275.817103] run fstests generic/544 at 2022-01-12 13:41:47 [ 7282.092977] run fstests generic/545 at 2022-01-12 13:41:53 [ 7282.904252] run fstests generic/546 at 2022-01-12 13:41:54 [ 7283.957773] run fstests generic/547 at 2022-01-12 13:41:55 [ 7284.580048] run fstests generic/548 at 2022-01-12 13:41:55 [ 7285.326032] run fstests generic/549 at 2022-01-12 13:41:56 [ 7286.075114] run fstests generic/550 at 2022-01-12 13:41:57 [ 7286.842980] run fstests generic/552 at 2022-01-12 13:41:58 [ 7287.485856] run fstests generic/553 at 2022-01-12 13:41:58 [ 7288.214457] run fstests generic/554 at 2022-01-12 13:41:59 [ 7289.123966] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7290.370393] Adding 16380k swap on /mnt2/swapfile. Priority:-3 extents:1 across:16380k [ 7290.687659] run fstests generic/555 at 2022-01-12 13:42:01 [ 7291.521126] run fstests generic/556 at 2022-01-12 13:42:02 [ 7292.049123] run fstests generic/557 at 2022-01-12 13:42:03 [ 7292.594633] run fstests generic/558 at 2022-01-12 13:42:03 [ 7293.116986] run fstests generic/559 at 2022-01-12 13:42:04 [ 7293.625068] run fstests generic/560 at 2022-01-12 13:42:04 [ 7294.150767] run fstests generic/561 at 2022-01-12 13:42:05 [ 7294.672595] run fstests generic/562 at 2022-01-12 13:42:05 [ 7295.755050] run fstests generic/563 at 2022-01-12 13:42:06 [ 7296.284954] run fstests generic/564 at 2022-01-12 13:42:07 [ 7297.286052] loop0: detected capacity change from 0 to 256 [ 7298.231618] run fstests generic/566 at 2022-01-12 13:42:09 [ 7298.730755] run fstests generic/567 at 2022-01-12 13:42:09 [ 7300.222707] run fstests generic/568 at 2022-01-12 13:42:11 [ 7301.134560] run fstests generic/569 at 2022-01-12 13:42:12 [ 7302.142643] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k [ 7303.448133] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k [ 7303.452275] NFS: attempt to write to active swap file! [ 7303.487542] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k [ 7303.530750] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k [ 7303.587615] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k [ 7303.629119] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k [ 7303.646860] NFS: attempt to write to active swap file! [ 7303.979451] run fstests generic/570 at 2022-01-12 13:42:15 [ 7304.692420] run fstests generic/572 at 2022-01-12 13:42:15 [ 7305.210036] run fstests generic/573 at 2022-01-12 13:42:16 [ 7305.731408] run fstests generic/574 at 2022-01-12 13:42:16 [ 7306.245226] run fstests generic/575 at 2022-01-12 13:42:17 [ 7306.755327] run fstests generic/576 at 2022-01-12 13:42:17 [ 7307.415264] run fstests generic/577 at 2022-01-12 13:42:18 [ 7307.966901] run fstests generic/579 at 2022-01-12 13:42:19 [ 7308.532284] run fstests generic/580 at 2022-01-12 13:42:19 [ 7309.267749] run fstests generic/581 at 2022-01-12 13:42:20 [ 7309.916075] run fstests generic/582 at 2022-01-12 13:42:21 [ 7310.643888] run fstests generic/583 at 2022-01-12 13:42:21 [ 7311.371543] run fstests generic/584 at 2022-01-12 13:42:22 [ 7312.108260] run fstests generic/585 at 2022-01-12 13:42:23 [ 7312.708730] run fstests generic/586 at 2022-01-12 13:42:23 [ 7321.372427] run fstests generic/587 at 2022-01-12 13:42:32 [ 7321.882959] run fstests generic/588 at 2022-01-12 13:42:33 [ 7322.869048] run fstests generic/589 at 2022-01-12 13:42:34 [ 7323.420928] run fstests generic/590 at 2022-01-12 13:42:34 [ 7599.522683] run fstests generic/591 at 2022-01-12 13:47:10 [ 7600.469219] run fstests generic/592 at 2022-01-12 13:47:11 [ 7601.209667] run fstests generic/593 at 2022-01-12 13:47:12 [ 7601.925298] run fstests generic/594 at 2022-01-12 13:47:13 [ 7602.455466] run fstests generic/595 at 2022-01-12 13:47:13 [ 7603.181000] run fstests generic/596 at 2022-01-12 13:47:14 [ 7603.583124] Process accounting resumed [ 7603.780139] run fstests generic/597 at 2022-01-12 13:47:14 [ 7604.359127] run fstests generic/598 at 2022-01-12 13:47:15 [ 7604.907400] run fstests generic/599 at 2022-01-12 13:47:16 [ 7605.710364] run fstests generic/600 at 2022-01-12 13:47:16 [ 7606.295426] run fstests generic/601 at 2022-01-12 13:47:17 [ 7606.813031] run fstests generic/602 at 2022-01-12 13:47:18 [ 7607.566587] run fstests generic/603 at 2022-01-12 13:47:18 [ 7608.093235] run fstests generic/604 at 2022-01-12 13:47:19 [ 7613.505790] run fstests generic/605 at 2022-01-12 13:47:24 [ 7614.268456] nfs: Unknown parameter 'dax' [ 7614.378027] run fstests generic/606 at 2022-01-12 13:47:25 [ 7614.970728] nfs: Unknown parameter 'dax' [ 7615.132524] run fstests generic/608 at 2022-01-12 13:47:26 [ 7615.730417] nfs: Unknown parameter 'dax' [ 7615.838044] run fstests generic/609 at 2022-01-12 13:47:27 [ 7616.725570] run fstests generic/611 at 2022-01-12 13:47:27 [ 7617.915374] run fstests nfs/001 at 2022-01-12 13:47:29 [ 7620.841996] run fstests shared/002 at 2022-01-12 13:47:32 [ 7621.379231] run fstests shared/032 at 2022-01-12 13:47:32 [ 7621.870631] run fstests shared/298 at 2022-01-12 13:47:33 [ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 [ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. [ 0.000000] signal: max sigframe size: 1776 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffd7fff] usable [ 0.000000] BIOS-e820: [mem 0x000000007ffd8000-0x000000007fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.8 present. [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 3591.667 MHz processor [ 0.000880] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000887] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000894] last_pfn = 0x7ffd8 max_arch_pfn = 0x400000000 [ 0.000926] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.004010] found SMP MP-table at [mem 0x000f5b80-0x000f5b8f] [ 0.004443] RAMDISK: [mem 0x346ce000-0x3635efff] [ 0.004450] ACPI: Early table checksum verification disabled [ 0.004455] ACPI: RSDP 0x00000000000F58F0 000014 (v00 BOCHS ) [ 0.004464] ACPI: RSDT 0x000000007FFE1902 000030 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004473] ACPI: FACP 0x000000007FFE17D6 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004482] ACPI: DSDT 0x000000007FFE0040 001796 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004489] ACPI: FACS 0x000000007FFE0000 000040 [ 0.004494] ACPI: APIC 0x000000007FFE184A 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004501] ACPI: WAET 0x000000007FFE18DA 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.004506] ACPI: Reserving FACP table memory at [mem 0x7ffe17d6-0x7ffe1849] [ 0.004510] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe17d5] [ 0.004513] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] [ 0.004515] ACPI: Reserving APIC table memory at [mem 0x7ffe184a-0x7ffe18d9] [ 0.004518] ACPI: Reserving WAET table memory at [mem 0x7ffe18da-0x7ffe1901] [ 0.007926] Zone ranges: [ 0.007934] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.007940] DMA32 [mem 0x0000000001000000-0x000000007ffd7fff] [ 0.007944] Normal empty [ 0.007947] Movable zone start for each node [ 0.007949] Early memory node ranges [ 0.007952] node 0: [mem 0x0000000000001000-0x000000000009efff] [ 0.007955] node 0: [mem 0x0000000000100000-0x000000007ffd7fff] [ 0.007959] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffd7fff] [ 0.007968] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.008031] On node 0, zone DMA: 97 pages in unavailable ranges [ 0.015752] On node 0, zone DMA32: 40 pages in unavailable ranges [ 0.043852] kasan: KernelAddressSanitizer initialized [ 0.044423] ACPI: PM-Timer IO Port: 0x608 [ 0.044432] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [ 0.044477] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 [ 0.044486] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.044490] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) [ 0.044494] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.044497] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [ 0.044500] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [ 0.044505] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.044508] TSC deadline timer available [ 0.044514] smpboot: Allowing 4 CPUs, 0 hotplug CPUs [ 0.044531] [mem 0x80000000-0xfeffbfff] available for PCI devices [ 0.044536] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.059178] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 [ 0.059473] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u524288 [ 0.059481] pcpu-alloc: s231440 r8192 d30704 u524288 alloc=1*2097152 [ 0.059486] pcpu-alloc: [0] 0 1 2 3 [ 0.059518] Built 1 zonelists, mobility grouping on. Total pages: 516824 [ 0.059528] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 [ 0.059605] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. [ 0.059829] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.059938] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.059987] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.189829] Memory: 1652304K/2096600K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 444040K reserved, 0K cma-reserved) [ 0.191638] Kernel/User page tables isolation: enabled [ 0.191721] ftrace: allocating 48466 entries in 190 pages [ 0.208382] ftrace: allocated 190 pages with 6 groups [ 0.208563] Dynamic Preempt: full [ 0.208737] Running RCU self tests [ 0.208749] rcu: Preemptible hierarchical RCU implementation. [ 0.208751] rcu: RCU lockdep checking is enabled. [ 0.208754] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.208758] Trampoline variant of Tasks RCU enabled. [ 0.208760] Rude variant of Tasks RCU enabled. [ 0.208762] Tracing variant of Tasks RCU enabled. [ 0.208765] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.208767] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.218069] NR_IRQS: 4352, nr_irqs: 72, preallocated irqs: 16 [ 0.218411] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 [ 0.224704] Console: colour VGA+ 80x25 [ 0.273917] printk: console [ttyS0] enabled [ 0.274215] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar [ 0.274876] ... MAX_LOCKDEP_SUBCLASSES: 8 [ 0.275165] ... MAX_LOCK_DEPTH: 48 [ 0.275459] ... MAX_LOCKDEP_KEYS: 8192 [ 0.275790] ... CLASSHASH_SIZE: 4096 [ 0.276100] ... MAX_LOCKDEP_ENTRIES: 32768 [ 0.276423] ... MAX_LOCKDEP_CHAINS: 65536 [ 0.276742] ... CHAINHASH_SIZE: 32768 [ 0.277061] memory used by lock dependency info: 6365 kB [ 0.277476] memory used for stack traces: 4224 kB [ 0.277830] per task-struct memory footprint: 1920 bytes [ 0.278254] ACPI: Core revision 20210930 [ 0.278762] APIC: Switch to symmetric I/O mode setup [ 0.280353] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c5939df6d, max_idle_ns: 440795297647 ns [ 0.281280] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.33 BogoMIPS (lpj=14366668) [ 0.282204] pid_max: default: 32768 minimum: 301 [ 0.282676] LSM: Security Framework initializing [ 0.283076] SELinux: Initializing. [ 0.283465] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.284092] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.285279] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.285279] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.285279] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.285279] Spectre V2 : Mitigation: Full generic retpoline [ 0.285279] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.285279] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 0.285279] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.285279] Speculative Store Bypass: Vulnerable [ 0.285279] SRBDS: Unknown: Dependent on hypervisor status [ 0.285279] MDS: Vulnerable: Clear CPU buffers attempted, no microcode [ 0.285279] Freeing SMP alternatives memory: 44K [ 0.285279] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) [ 0.285279] Running RCU-tasks wait API self tests [ 0.386107] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. [ 0.389599] rcu: Hierarchical SRCU implementation. [ 0.392441] NMI watchdog: Perf NMI watchdog permanently disabled [ 0.393385] Callback from call_rcu_tasks_trace() invoked. [ 0.394170] smp: Bringing up secondary CPUs ... [ 0.396370] x86: Booting SMP configuration: [ 0.396786] .... node #0, CPUs: #1 [ 0.066931] smpboot: CPU 1 Converting physical 0 to logical die 1 [ 0.482790] #2 [ 0.066931] smpboot: CPU 2 Converting physical 0 to logical die 2 [ 0.565821] Callback from call_rcu_tasks_rude() invoked. [ 0.567462] #3 [ 0.066931] smpboot: CPU 3 Converting physical 0 to logical die 3 [ 0.649444] smp: Brought up 1 node, 4 CPUs [ 0.649755] smpboot: Max logical packages: 4 [ 0.650109] smpboot: Total of 4 processors activated (28813.78 BogoMIPS) [ 0.652111] devtmpfs: initialized [ 0.656548] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.657296] futex hash table entries: 1024 (order: 5, 131072 bytes, linear) [ 0.659317] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.660716] audit: initializing netlink subsys (disabled) [ 0.661311] audit: type=2000 audit(1642005696.380:1): state=initialized audit_enabled=0 res=1 [ 0.662148] thermal_sys: Registered thermal governor 'step_wise' [ 0.662161] thermal_sys: Registered thermal governor 'user_space' [ 0.662741] cpuidle: using governor ladder [ 0.663957] PCI: Using configuration type 1 for base access [ 0.673336] Callback from call_rcu_tasks() invoked. [ 0.688468] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.689933] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.690902] cryptd: max_cpu_qlen set to 1000 [ 0.757333] raid6: avx2x4 gen() 34683 MB/s [ 0.825285] raid6: avx2x4 xor() 13341 MB/s [ 0.893285] raid6: avx2x2 gen() 32969 MB/s [ 0.961293] raid6: avx2x2 xor() 18290 MB/s [ 1.029283] raid6: avx2x1 gen() 25495 MB/s [ 1.097283] raid6: avx2x1 xor() 16599 MB/s [ 1.165417] raid6: sse2x4 gen() 18858 MB/s [ 1.233284] raid6: sse2x4 xor() 9882 MB/s [ 1.301284] raid6: sse2x2 gen() 17529 MB/s [ 1.369284] raid6: sse2x2 xor() 10528 MB/s [ 1.437284] raid6: sse2x1 gen() 12868 MB/s [ 1.505284] raid6: sse2x1 xor() 9047 MB/s [ 1.505592] raid6: using algorithm avx2x4 gen() 34683 MB/s [ 1.506016] raid6: .... xor() 13341 MB/s, rmw enabled [ 1.506395] raid6: using avx2x2 recovery algorithm [ 1.507187] ACPI: Added _OSI(Module Device) [ 1.507507] ACPI: Added _OSI(Processor Device) [ 1.507827] ACPI: Added _OSI(3.0 _SCP Extensions) [ 1.508176] ACPI: Added _OSI(Processor Aggregator Device) [ 1.508594] ACPI: Added _OSI(Linux-Dell-Video) [ 1.508918] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 1.509291] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 1.529597] ACPI: 1 ACPI AML tables successfully acquired and loaded [ 1.536937] ACPI: Interpreter enabled [ 1.537121] ACPI: PM: (supports S0 S5) [ 1.537300] ACPI: Using IOAPIC for interrupt routing [ 1.537790] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 1.539878] ACPI: Enabled 2 GPEs in block 00 to 0F [ 1.582821] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 1.583389] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments HPX-Type3] [ 1.584011] acpi PNP0A03:00: PCIe port services disabled; not requesting _OSC control [ 1.584761] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. [ 1.585813] PCI host bridge to bus 0000:00 [ 1.586147] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 1.586722] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 1.587293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 1.587921] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] [ 1.588545] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] [ 1.589183] pci_bus 0000:00: root bus resource [bus 00-ff] [ 1.593451] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 [ 1.604897] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 [ 1.606756] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 [ 1.609820] pci 0000:00:01.1: reg 0x20: [io 0xc2e0-0xc2ef] [ 1.611254] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] [ 1.611843] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] [ 1.612367] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] [ 1.612952] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] [ 1.613748] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 [ 1.614670] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI [ 1.615271] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB [ 1.616279] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 [ 1.618571] pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] [ 1.621026] pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] [ 1.623401] pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] [ 1.625293] pci 0000:00:02.0: reg 0x1c: [io 0xc200-0xc21f] [ 1.632521] pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] [ 1.643746] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 [ 1.645084] pci 0000:00:03.0: reg 0x10: [io 0xc220-0xc23f] [ 1.646115] pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc056fff] [ 1.650262] pci 0000:00:03.0: reg 0x20: [mem 0xfebd4000-0xfebd7fff 64bit pref] [ 1.651726] pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] [ 1.663001] pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 [ 1.663848] pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] [ 1.676622] pci 0000:00:05.0: [8086:2934] type 00 class 0x0c0300 [ 1.678734] pci 0000:00:05.0: reg 0x20: [io 0xc240-0xc25f] [ 1.690560] pci 0000:00:05.1: [8086:2935] type 00 class 0x0c0300 [ 1.692610] pci 0000:00:05.1: reg 0x20: [io 0xc260-0xc27f] [ 1.694089] pci 0000:00:05.2: [8086:2936] type 00 class 0x0c0300 [ 1.696372] pci 0000:00:05.2: reg 0x20: [io 0xc280-0xc29f] [ 1.697989] pci 0000:00:05.7: [8086:293a] type 00 class 0x0c0320 [ 1.698889] pci 0000:00:05.7: reg 0x10: [mem 0xfc057000-0xfc057fff] [ 1.707037] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000 [ 1.708590] pci 0000:00:06.0: reg 0x10: [io 0xc000-0xc03f] [ 1.709714] pci 0000:00:06.0: reg 0x14: [mem 0xfc058000-0xfc058fff] [ 1.712836] pci 0000:00:06.0: reg 0x20: [mem 0xfebd8000-0xfebdbfff 64bit pref] [ 1.726059] pci 0000:00:07.0: [1af4:1001] type 00 class 0x010000 [ 1.727542] pci 0000:00:07.0: reg 0x10: [io 0xc040-0xc07f] [ 1.728892] pci 0000:00:07.0: reg 0x14: [mem 0xfc059000-0xfc059fff] [ 1.731824] pci 0000:00:07.0: reg 0x20: [mem 0xfebdc000-0xfebdffff 64bit pref] [ 1.744361] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 [ 1.745286] pci 0000:00:08.0: reg 0x10: [io 0xc2a0-0xc2bf] [ 1.748005] pci 0000:00:08.0: reg 0x20: [mem 0xfebe0000-0xfebe3fff 64bit pref] [ 1.760699] pci 0000:00:09.0: [1af4:1005] type 00 class 0x00ff00 [ 1.761568] pci 0000:00:09.0: reg 0x10: [io 0xc2c0-0xc2df] [ 1.764291] pci 0000:00:09.0: reg 0x20: [mem 0xfebe4000-0xfebe7fff 64bit pref] [ 1.775904] pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000 [ 1.777237] pci 0000:00:0a.0: reg 0x10: [io 0xc080-0xc0bf] [ 1.778068] pci 0000:00:0a.0: reg 0x14: [mem 0xfc05a000-0xfc05afff] [ 1.781719] pci 0000:00:0a.0: reg 0x20: [mem 0xfebe8000-0xfebebfff 64bit pref] [ 1.794394] pci 0000:00:0b.0: [1af4:1001] type 00 class 0x010000 [ 1.795745] pci 0000:00:0b.0: reg 0x10: [io 0xc0c0-0xc0ff] [ 1.796982] pci 0000:00:0b.0: reg 0x14: [mem 0xfc05b000-0xfc05bfff] [ 1.799779] pci 0000:00:0b.0: reg 0x20: [mem 0xfebec000-0xfebeffff 64bit pref] [ 1.812867] pci 0000:00:0c.0: [1af4:1001] type 00 class 0x010000 [ 1.814289] pci 0000:00:0c.0: reg 0x10: [io 0xc100-0xc13f] [ 1.815517] pci 0000:00:0c.0: reg 0x14: [mem 0xfc05c000-0xfc05cfff] [ 1.818535] pci 0000:00:0c.0: reg 0x20: [mem 0xfebf0000-0xfebf3fff 64bit pref] [ 1.830979] pci 0000:00:0d.0: [1af4:1001] type 00 class 0x010000 [ 1.832321] pci 0000:00:0d.0: reg 0x10: [io 0xc140-0xc17f] [ 1.833286] pci 0000:00:0d.0: reg 0x14: [mem 0xfc05d000-0xfc05dfff] [ 1.836445] pci 0000:00:0d.0: reg 0x20: [mem 0xfebf4000-0xfebf7fff 64bit pref] [ 1.848403] pci 0000:00:0e.0: [1af4:1001] type 00 class 0x010000 [ 1.849691] pci 0000:00:0e.0: reg 0x10: [io 0xc180-0xc1bf] [ 1.850908] pci 0000:00:0e.0: reg 0x14: [mem 0xfc05e000-0xfc05efff] [ 1.853728] pci 0000:00:0e.0: reg 0x20: [mem 0xfebf8000-0xfebfbfff 64bit pref] [ 1.867912] pci 0000:00:0f.0: [1af4:1001] type 00 class 0x010000 [ 1.869286] pci 0000:00:0f.0: reg 0x10: [io 0xc1c0-0xc1ff] [ 1.870507] pci 0000:00:0f.0: reg 0x14: [mem 0xfc05f000-0xfc05ffff] [ 1.873286] pci 0000:00:0f.0: reg 0x20: [mem 0xfebfc000-0xfebfffff 64bit pref] [ 1.886571] pci_bus 0000:00: on NUMA node 0 [ 1.890389] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 [ 1.892145] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [ 1.893842] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [ 1.895486] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 [ 1.896509] ACPI: PCI: Interrupt link LNKS configured for IRQ 9 [ 1.904775] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 1.904775] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 1.904775] pci 0000:00:02.0: vgaarb: bridge control possible [ 1.904775] vgaarb: loaded [ 1.904775] SCSI subsystem initialized [ 1.904775] libata version 3.00 loaded. [ 1.904775] ACPI: bus type USB registered [ 1.905259] usbcore: registered new interface driver usbfs [ 1.909389] usbcore: registered new interface driver hub [ 1.909860] usbcore: registered new device driver usb [ 1.910380] pps_core: LinuxPPS API ver. 1 registered [ 1.910754] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.911613] PTP clock support registered [ 1.912179] EDAC MC: Ver: 3.0.0 [ 1.913040] Advanced Linux Sound Architecture Driver Initialized. [ 1.913040] PCI: Using ACPI for IRQ routing [ 1.913040] PCI: pci_cache_line_size set to 64 bytes [ 1.913040] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] [ 1.913040] e820: reserve RAM buffer [mem 0x7ffd8000-0x7fffffff] [ 1.913283] clocksource: Switched to clocksource tsc-early [ 2.100358] VFS: Disk quotas dquot_6.6.0 [ 2.100783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 2.101643] FS-Cache: Loaded [ 2.102237] CacheFiles: Loaded [ 2.102534] pnp: PnP ACPI init [ 2.103635] pnp 00:03: [dma 2] [ 2.106017] pnp: PnP ACPI: found 5 devices [ 2.127076] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 2.127982] NET: Registered PF_INET protocol family [ 2.128550] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 2.130129] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) [ 2.130900] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 2.131794] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) [ 2.132819] TCP: Hash tables configured (established 16384 bind 16384) [ 2.133780] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) [ 2.134414] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) [ 2.135294] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 2.135777] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 2.136308] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 2.136806] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 2.137427] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] [ 2.137992] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] [ 2.138908] pci 0000:00:01.0: PIIX3: Enabling Passive Release [ 2.139376] pci 0000:00:00.0: Limiting direct PCI/PCI transfers [ 2.139854] pci 0000:00:01.0: Activating ISA DMA hang workarounds [ 2.140425] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 3.202115] ACPI: \_SB_.LNKA: Enabled at IRQ 10 [ 4.239171] pci 0000:00:05.0: quirk_usb_early_handoff+0x0/0xa70 took 2048819 usecs [ 5.300725] ACPI: \_SB_.LNKB: Enabled at IRQ 11 [ 6.347387] pci 0000:00:05.1: quirk_usb_early_handoff+0x0/0xa70 took 2058145 usecs [ 7.421229] ACPI: \_SB_.LNKC: Enabled at IRQ 11 [ 8.471039] pci 0000:00:05.2: quirk_usb_early_handoff+0x0/0xa70 took 2073223 usecs [ 9.544718] ACPI: \_SB_.LNKD: Enabled at IRQ 10 [ 10.599331] pci 0000:00:05.7: quirk_usb_early_handoff+0x0/0xa70 took 2077756 usecs [ 10.600123] PCI: CLS 0 bytes, default 64 [ 10.601188] Trying to unpack rootfs image as initramfs... [ 10.604786] Initialise system trusted keyrings [ 10.605377] workingset: timestamp_bits=62 max_order=19 bucket_order=0 [ 10.607827] DLM installed [ 10.610089] Key type cifs.idmap registered [ 10.610742] fuse: init (API version 7.35) [ 10.611401] SGI XFS with ACLs, security attributes, no debug enabled [ 10.612942] ocfs2: Registered cluster interface o2cb [ 10.613684] ocfs2: Registered cluster interface user [ 10.614265] OCFS2 User DLM kernel interface loaded [ 10.617912] gfs2: GFS2 installed [ 10.626466] xor: automatically using best checksumming function avx [ 10.627049] Key type asymmetric registered [ 10.627348] Asymmetric key parser 'x509' registered [ 10.627936] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [ 10.628640] io scheduler mq-deadline registered [ 10.628991] io scheduler kyber registered [ 10.629268] test_string_helpers: Running tests... [ 10.646349] cryptomgr_test (94) used greatest stack depth: 30192 bytes left [ 10.647783] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 10.649320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 10.661911] ACPI: button: Power Button [PWRF] [ 11.308291] Freeing initrd memory: 29252K [ 11.309219] kworker/u8:1 (116) used greatest stack depth: 28384 bytes left [ 11.613446] tsc: Refined TSC clocksource calibration: 3591.600 MHz [ 11.614007] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55424d7b, max_idle_ns: 440795215499 ns [ 11.615017] clocksource: Switched to clocksource tsc [ 24.416686] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 24.417569] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 24.421615] Non-volatile memory driver v1.3 [ 24.421936] Linux agpgart interface v0.103 [ 24.423208] ACPI: bus type drm_connector registered [ 24.444467] brd: module loaded [ 24.457220] loop: module loaded [ 24.458122] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 GB/8.00 GiB) [ 24.462053] vda: vda1 vda2 [ 24.465619] virtio_blk virtio5: [vdb] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) [ 24.469543] virtio_blk virtio6: [vdc] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) [ 24.473451] virtio_blk virtio7: [vdd] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) [ 24.477416] virtio_blk virtio8: [vde] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) [ 24.481188] virtio_blk virtio9: [vdf] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) [ 24.484978] virtio_blk virtio10: [vdg] 20971520 512-byte logical blocks (10.7 GB/10.0 GiB) [ 24.488125] vdg: [ 24.489758] zram: Added device: zram0 [ 24.492368] ata_piix 0000:00:01.1: version 2.13 [ 24.496603] scsi host0: ata_piix [ 24.498008] scsi host1: ata_piix [ 24.498675] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc2e0 irq 14 [ 24.499256] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc2e8 irq 15 [ 24.501218] tun: Universal TUN/TAP device driver, 1.6 [ 24.504829] e1000: Intel(R) PRO/1000 Network Driver [ 24.505219] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 24.505862] e1000e: Intel(R) PRO/1000 Network Driver [ 24.506254] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 24.507072] PPP generic driver version 2.4.2 [ 24.509436] aoe: AoE v85 initialised. [ 24.510102] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 24.510679] ehci-pci: EHCI PCI platform driver [ 24.657958] ata1.01: NODEV after polling detection [ 24.658233] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 [ 24.660230] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 [ 24.714138] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray [ 24.714722] cdrom: Uniform CD-ROM driver Revision: 3.20 [ 24.749225] sr 0:0:0:0: Attached scsi CD-ROM sr0 [ 24.750199] sr 0:0:0:0: Attached scsi generic sg0 type 5 [ 25.753762] ehci-pci 0000:00:05.7: EHCI Host Controller [ 25.755008] ehci-pci 0000:00:05.7: new USB bus registered, assigned bus number 1 [ 25.755944] ehci-pci 0000:00:05.7: irq 10, io mem 0xfc057000 [ 25.769490] ehci-pci 0000:00:05.7: USB 2.0 started, EHCI 1.00 [ 25.773616] hub 1-0:1.0: USB hub found [ 25.774306] hub 1-0:1.0: 6 ports detected [ 25.779054] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 25.779761] ohci-pci: OHCI PCI platform driver [ 25.780223] uhci_hcd: USB Universal Host Controller Interface driver [ 26.041366] usb 1-1: new high-speed USB device number 2 using ehci-pci [ 27.054250] uhci_hcd 0000:00:05.0: UHCI Host Controller [ 27.055419] uhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 2 [ 27.056446] uhci_hcd 0000:00:05.0: irq 10, io port 0x0000c240 [ 27.058858] hub 2-0:1.0: USB hub found [ 27.059323] hub 2-0:1.0: 2 ports detected [ 28.319755] uhci_hcd 0000:00:05.1: UHCI Host Controller [ 28.320738] uhci_hcd 0000:00:05.1: new USB bus registered, assigned bus number 3 [ 28.321673] uhci_hcd 0000:00:05.1: irq 11, io port 0x0000c260 [ 28.323716] hub 3-0:1.0: USB hub found [ 28.324067] hub 3-0:1.0: 2 ports detected [ 29.592163] uhci_hcd 0000:00:05.2: UHCI Host Controller [ 29.593127] uhci_hcd 0000:00:05.2: new USB bus registered, assigned bus number 4 [ 29.594072] uhci_hcd 0000:00:05.2: irq 11, io port 0x0000c280 [ 29.596130] hub 4-0:1.0: USB hub found [ 29.596496] hub 4-0:1.0: 2 ports detected [ 29.598855] usbcore: registered new interface driver usblp [ 29.599462] usbcore: registered new interface driver usb-storage [ 29.600541] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 29.602527] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 29.603702] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 29.605764] mousedev: PS/2 mouse device common for all mice [ 29.607846] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 29.609776] input: PC Speaker as /devices/platform/pcspkr/input/input3 [ 29.611498] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 29.613021] device-mapper: uevent: version 1.0.3 [ 29.614146] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 29.615545] device-mapper: multipath round-robin: version 1.2.0 loaded [ 29.616195] intel_pstate: CPU model not supported [ 29.627242] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.7/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 [ 29.629270] hid-generic 0003:0627:0001.0001: input: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.7-1/input0 [ 29.631016] usbcore: registered new interface driver usbhid [ 29.631500] usbhid: USB HID core driver [ 29.640019] netem: version 1.3 [ 29.640848] NET: Registered PF_INET6 protocol family [ 29.643109] Segment Routing with IPv6 [ 29.643405] In-situ OAM (IOAM) with IPv6 [ 29.643760] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 29.645948] NET: Registered PF_PACKET protocol family [ 29.646371] NET: Registered PF_KEY protocol family [ 29.646805] sctp: Hash tables configured (bind 32/56) [ 29.647357] Key type dns_resolver registered [ 29.649453] IPI shorthand broadcast: enabled [ 29.649838] AVX2 version of gcm_enc/dec engaged. [ 29.650351] AES CTR mode by8 optimization enabled [ 29.651971] sched_clock: Marking stable (29586356484, 62931318)->(29723854493, -74566691) [ 29.654238] Loading compiled-in X.509 certificates [ 29.655218] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers [ 29.657030] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no [ 29.659515] ima: No TPM chip found, activating TPM-bypass! [ 29.660173] ima: Allocated hash algorithm: sha1 [ 29.660593] ima: No architecture policies found [ 29.673045] ALSA device list: [ 29.673234] #0: Virtual MIDI Card 1 [ 29.682863] Freeing unused kernel image (initmem) memory: 2076K [ 29.717568] Write protecting the kernel read-only data: 61440k [ 29.721990] Freeing unused kernel image (text/rodata gap) memory: 2028K [ 29.724251] Freeing unused kernel image (rodata/data gap) memory: 948K [ 29.727486] Run /init as init process [ 29.727944] with arguments: [ 29.727947] /init [ 29.727951] with environment: [ 29.727954] HOME=/ [ 29.727957] TERM=linux [ 29.727960] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 [ 29.727964] resume=/dev/mapper/fedora-swap [ 29.803093] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 29.806218] systemd[1]: Detected virtualization kvm. [ 29.806681] systemd[1]: Detected architecture x86-64. [ 29.807140] systemd[1]: Running in initial RAM disk. [ 29.809901] systemd[1]: Set hostname to <test1.fieldses.org>. [ 29.885369] systemd-hiberna (1054) used greatest stack depth: 28256 bytes left [ 29.979654] dracut-rootfs-g (1047) used greatest stack depth: 28216 bytes left [ 30.021117] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. [ 30.044537] systemd[1]: Queued start job for default target Initrd Default Target. [ 30.047340] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. [ 30.050175] systemd[1]: Reached target Slices. [ 30.051386] systemd[1]: Reached target Swap. [ 30.052613] systemd[1]: Reached target Timers. [ 30.054515] systemd[1]: Listening on Journal Audit Socket. [ 30.056550] systemd[1]: Listening on Journal Socket (/dev/log). [ 30.058686] systemd[1]: Listening on Journal Socket. [ 30.060760] systemd[1]: Listening on udev Control Socket. [ 30.063831] systemd[1]: Listening on udev Kernel Socket. [ 30.065248] systemd[1]: Reached target Sockets. [ 30.066604] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. [ 30.071265] systemd[1]: Started Memstrack Anylazing Service. [ 30.077532] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. [ 30.079586] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. [ 30.080901] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) [ 30.085726] systemd[1]: Starting Journal Service... [ 30.087684] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. [ 30.089551] random: rngd: uninitialized urandom read (16 bytes read) [ 30.092470] systemd[1]: Starting Apply Kernel Variables... [ 30.098065] systemd[1]: Starting Create Static Device Nodes in /dev... [ 30.117909] systemd[1]: Starting Setup Virtual Console... [ 30.149991] systemd[1]: Finished Create Static Device Nodes in /dev. [ 30.159172] systemd[1]: memstrack.service: Succeeded. [ 30.198818] systemd[1]: Finished Apply Kernel Variables. [ 30.200519] audit: type=1130 audit(1642005725.913:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 30.227486] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 [ 30.460095] systemd[1]: Started Journal Service. [ 30.461750] audit: type=1130 audit(1642005726.177:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 30.803462] audit: type=1130 audit(1642005726.517:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 31.357792] random: crng init done [ 31.748912] dracut-cmdline (1106) used greatest stack depth: 27968 bytes left [ 31.752614] audit: type=1130 audit(1642005727.465:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 32.032836] audit: type=1130 audit(1642005727.745:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 32.157892] audit: type=1130 audit(1642005727.873:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 34.122946] virtio_net virtio0 enp0s3: renamed from eth0 [ 34.168250] kworker/u8:4 (1729) used greatest stack depth: 27536 bytes left [ 34.330444] ata_id (1886) used greatest stack depth: 26656 bytes left [ 34.467966] audit: type=1130 audit(1642005730.181:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 34.581444] audit: type=1130 audit(1642005730.293:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 35.924826] audit: type=1130 audit(1642005731.637:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' [ 35.979064] audit: type=1130 audit(1642005731.693:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 36.080161] audit: type=1130 audit(1642005731.793:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 36.137141] fsck (2468) used greatest stack depth: 26560 bytes left [ 36.142664] audit: type=1130 audit(1642005731.857:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 36.170836] XFS (dm-0): Mounting V5 Filesystem [ 36.314126] XFS (dm-0): Ending clean mount [ 36.383563] mount (2470) used greatest stack depth: 25344 bytes left [ 36.491652] systemd-fstab-g (2483) used greatest stack depth: 25008 bytes left [ 37.102323] audit: type=1130 audit(1642005732.817:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 37.104426] audit: type=1131 audit(1642005732.817:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 37.254915] audit: type=1130 audit(1642005732.969:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 37.290146] audit: type=1131 audit(1642005733.005:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 37.296542] audit: type=1131 audit(1642005733.009:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 37.304265] audit: type=1131 audit(1642005733.017:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 40.558013] SELinux: Permission watch in class filesystem not defined in policy. [ 40.558745] SELinux: Permission watch in class file not defined in policy. [ 40.559313] SELinux: Permission watch_mount in class file not defined in policy. [ 40.559934] SELinux: Permission watch_sb in class file not defined in policy. [ 40.560593] SELinux: Permission watch_with_perm in class file not defined in policy. [ 40.561264] SELinux: Permission watch_reads in class file not defined in policy. [ 40.561928] SELinux: Permission watch in class dir not defined in policy. [ 40.562491] SELinux: Permission watch_mount in class dir not defined in policy. [ 40.563098] SELinux: Permission watch_sb in class dir not defined in policy. [ 40.563684] SELinux: Permission watch_with_perm in class dir not defined in policy. [ 40.564391] SELinux: Permission watch_reads in class dir not defined in policy. [ 40.565023] SELinux: Permission watch in class lnk_file not defined in policy. [ 40.565673] SELinux: Permission watch_mount in class lnk_file not defined in policy. [ 40.566349] SELinux: Permission watch_sb in class lnk_file not defined in policy. [ 40.566973] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. [ 40.567658] SELinux: Permission watch_reads in class lnk_file not defined in policy. [ 40.568356] SELinux: Permission watch in class chr_file not defined in policy. [ 40.568977] SELinux: Permission watch_mount in class chr_file not defined in policy. [ 40.569671] SELinux: Permission watch_sb in class chr_file not defined in policy. [ 40.570298] SELinux: Permission watch_with_perm in class chr_file not defined in policy. [ 40.570986] SELinux: Permission watch_reads in class chr_file not defined in policy. [ 40.571646] SELinux: Permission watch in class blk_file not defined in policy. [ 40.572293] SELinux: Permission watch_mount in class blk_file not defined in policy. [ 40.573045] SELinux: Permission watch_sb in class blk_file not defined in policy. [ 40.573722] SELinux: Permission watch_with_perm in class blk_file not defined in policy. [ 40.574413] SELinux: Permission watch_reads in class blk_file not defined in policy. [ 40.575086] SELinux: Permission watch in class sock_file not defined in policy. [ 40.575697] SELinux: Permission watch_mount in class sock_file not defined in policy. [ 40.576405] SELinux: Permission watch_sb in class sock_file not defined in policy. [ 40.577058] SELinux: Permission watch_with_perm in class sock_file not defined in policy. [ 40.577794] SELinux: Permission watch_reads in class sock_file not defined in policy. [ 40.578458] SELinux: Permission watch in class fifo_file not defined in policy. [ 40.579066] SELinux: Permission watch_mount in class fifo_file not defined in policy. [ 40.579727] SELinux: Permission watch_sb in class fifo_file not defined in policy. [ 40.580405] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. [ 40.581116] SELinux: Permission watch_reads in class fifo_file not defined in policy. [ 40.581870] SELinux: Permission perfmon in class capability2 not defined in policy. [ 40.582516] SELinux: Permission bpf in class capability2 not defined in policy. [ 40.583123] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. [ 40.583865] SELinux: Permission perfmon in class cap2_userns not defined in policy. [ 40.584574] SELinux: Permission bpf in class cap2_userns not defined in policy. [ 40.585208] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. [ 40.586020] SELinux: Class mctp_socket not defined in policy. [ 40.586482] SELinux: Class perf_event not defined in policy. [ 40.586930] SELinux: Class anon_inode not defined in policy. [ 40.587380] SELinux: Class io_uring not defined in policy. [ 40.587811] SELinux: the above unknown classes and permissions will be allowed [ 40.638612] SELinux: policy capability network_peer_controls=1 [ 40.639094] SELinux: policy capability open_perms=1 [ 40.639471] SELinux: policy capability extended_socket_class=1 [ 40.639937] SELinux: policy capability always_check_network=0 [ 40.640472] SELinux: policy capability cgroup_seclabel=1 [ 40.640907] SELinux: policy capability nnp_nosuid_transition=1 [ 40.641442] SELinux: policy capability genfs_seclabel_symlinks=0 [ 40.858863] systemd[1]: Successfully loaded SELinux policy in 2.430314s. [ 41.410189] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 249.521ms. [ 41.418749] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 41.421461] systemd[1]: Detected virtualization kvm. [ 41.421851] systemd[1]: Detected architecture x86-64. [ 41.439136] systemd[1]: Set hostname to <test1.fieldses.org>. [ 41.753375] lvmconfig (2543) used greatest stack depth: 24544 bytes left [ 41.774174] grep (2557) used greatest stack depth: 24448 bytes left [ 41.800082] zram_generator::generator[2554]: Creating dev-zram0.swap for /dev/zram0 (823MB) [ 41.850246] systemd-sysv-generator[2552]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust. [ 42.699764] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. [ 42.961005] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. [ 43.550746] kauditd_printk_skb: 13 callbacks suppressed [ 43.550750] audit: type=1131 audit(1642005739.265:33): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.557309] systemd[1]: initrd-switch-root.service: Succeeded. [ 43.559018] systemd[1]: Stopped Switch Root. [ 43.559933] audit: type=1130 audit(1642005739.273:34): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.562887] audit: type=1131 audit(1642005739.277:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.563870] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 43.566772] systemd[1]: Created slice system-getty.slice. [ 43.568626] systemd[1]: Created slice system-modprobe.slice. [ 43.570533] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 43.572518] systemd[1]: Created slice system-sshd\x2dkeygen.slice. [ 43.575249] systemd[1]: Created slice system-swap\x2dcreate.slice. [ 43.577790] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 43.580470] systemd[1]: Created slice User and Session Slice. [ 43.581081] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. [ 43.583848] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 43.587144] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 43.588834] systemd[1]: Reached target Local Encrypted Volumes. [ 43.589488] systemd[1]: Stopped target Switch Root. [ 43.590478] systemd[1]: Stopped target Initrd File Systems. [ 43.591448] systemd[1]: Stopped target Initrd Root File System. [ 43.592607] systemd[1]: Reached target Paths. [ 43.593681] systemd[1]: Reached target Slices. [ 43.595921] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ 43.599288] systemd[1]: Listening on LVM2 poll daemon socket. [ 43.603589] systemd[1]: Listening on RPCbind Server Activation Socket. [ 43.604301] systemd[1]: Reached target RPC Port Mapper. [ 43.621281] systemd[1]: Listening on Process Core Dump Socket. [ 43.623666] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 43.639128] systemd[1]: Listening on udev Control Socket. [ 43.641921] systemd[1]: Listening on udev Kernel Socket. [ 43.648355] systemd[1]: Activating swap /dev/mapper/fedora-swap... [ 43.654892] systemd[1]: Mounting Huge Pages File System... [ 43.661099] systemd[1]: Mounting POSIX Message Queue File System... [ 43.667262] systemd[1]: Mounting NFSD configuration filesystem... [ 43.676216] systemd[1]: Mounting Kernel Debug File System... [ 43.682222] Adding 839676k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:839676k [ 43.684653] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... [ 43.686822] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. [ 43.696795] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 43.703564] systemd[1]: Starting Load Kernel Module configfs... [ 43.711831] systemd[1]: Starting Load Kernel Module drm... [ 43.721843] systemd[1]: Starting Load Kernel Module fuse... [ 43.735057] systemd[1]: Starting Preprocess NFS configuration convertion... [ 43.739099] systemd[1]: plymouth-switch-root.service: Succeeded. [ 43.742433] systemd[1]: Stopped Plymouth switch root service. [ 43.744497] audit: type=1131 audit(1642005739.457:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.751143] systemd[1]: Starting Create swap on /dev/zram0... [ 43.752961] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 43.755225] systemd[1]: systemd-fsck-root.service: Succeeded. [ 43.758291] systemd[1]: Stopped File System Check on Root Device. [ 43.759755] audit: type=1131 audit(1642005739.473:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.759862] systemd[1]: Stopped Journal Service. [ 43.766144] audit: type=1130 audit(1642005739.481:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.770089] audit: type=1131 audit(1642005739.481:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 43.785015] systemd[1]: Starting Journal Service... [ 43.786753] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. [ 43.788967] zram0: detected capacity change from 0 to 1685504 [ 43.792217] systemd[1]: Starting Remount Root and Kernel File Systems... [ 43.793231] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. [ 43.799775] systemd[1]: Starting Apply Kernel Variables... [ 43.830240] systemd[1]: Starting Coldplug All udev Devices... [ 43.833802] systemd[1]: sysroot.mount: Succeeded. [ 43.838089] RPC: Registered named UNIX socket transport module. [ 43.838642] RPC: Registered udp transport module. [ 43.838999] RPC: Registered tcp transport module. [ 43.839369] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 43.854269] systemd[1]: Activated swap /dev/mapper/fedora-swap. [ 43.871240] audit: type=1305 audit(1642005739.585:40): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:syslogd_t:s0 res=1 [ 43.872637] audit: type=1300 audit(1642005739.585:40): arch=c000003e syscall=46 success=yes exit=60 a0=5 a1=7ffd304bc550 a2=4000 a3=7ffd304bc5fc items=0 ppid=1 pid=2572 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-journal" exe="/usr/lib/systemd/systemd-journald" subj=system_u:system_r:syslogd_t:s0 key=(null) [ 43.876478] audit: type=1327 audit(1642005739.585:40): proctitle="/usr/lib/systemd/systemd-journald" [ 43.882944] systemd[1]: Mounted Huge Pages File System. [ 43.886495] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) [ 43.895767] systemd[1]: Started Journal Service. [ 43.974904] Adding 842748k swap on /dev/zram0. Priority:100 extents:1 across:842748k SS [ 43.996937] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 46.194003] BTRFS: device fsid 27379e6a-3b97-45ef-bf83-dc7e8178b695 devid 1 transid 865 /dev/vde scanned by systemd-udevd (3767) [ 47.371666] FAT-fs (vdg): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ 47.378054] XFS (vdb): Mounting V5 Filesystem [ 47.384999] XFS (vdf): Mounting V5 Filesystem [ 47.404867] EXT4-fs (vdd): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. [ 47.576714] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. [ 48.050435] XFS (vdf): Ending clean mount [ 48.091447] XFS (vdb): Ending clean mount [ 48.100548] xfs filesystem being mounted at /exports/xfs2 supports timestamps until 2038 (0x7fffffff) [ 48.102015] xfs filesystem being mounted at /exports/xfs supports timestamps until 2038 (0x7fffffff) [ 48.600280] kauditd_printk_skb: 40 callbacks suppressed [ 48.600285] audit: type=1130 audit(1642005744.313:73): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=nfs-idmapd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 48.650555] audit: type=1400 audit(1642005744.365:74): avc: denied { map } for pid=3849 comm="nfsdcld" path="/var/lib/nfs/nfsdcld/main.sqlite-shm" dev="dm-0" ino=873070 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:var_lib_nfs_t:s0 tclass=file permissive=1 [ 48.655197] audit: type=1300 audit(1642005744.365:74): arch=c000003e syscall=9 success=yes exit=140401715851264 a0=0 a1=8000 a2=3 a3=1 items=0 ppid=1 pid=3849 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nfsdcld" exe="/root/nfsdcld" subj=system_u:system_r:init_t:s0 key=(null) [ 48.659212] audit: type=1327 audit(1642005744.365:74): proctitle="/root/nfsdcld" [ 48.662263] audit: type=1305 audit(1642005744.377:75): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 [ 48.663809] audit: type=1300 audit(1642005744.377:75): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd61589d20 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) [ 48.668534] audit: type=1327 audit(1642005744.377:75): proctitle="/sbin/auditd" [ 48.669369] audit: type=1305 audit(1642005744.377:76): op=set audit_pid=3850 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 [ 48.670842] audit: type=1300 audit(1642005744.377:76): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd615879d0 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) [ 48.673934] audit: type=1327 audit(1642005744.377:76): proctitle="/sbin/auditd" [ 51.467504] plymouthd (2385) used greatest stack depth: 24080 bytes left [ 52.964929] NFSD: Using nfsdcld client tracking operations. [ 52.965487] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000098) [ 57.672761] rpm (4068) used greatest stack depth: 22976 bytes left [ 201.516445] clocksource: timekeeping watchdog on CPU2: acpi_pm retried 2 times before success [ 335.595143] ====================================================== [ 335.596176] WARNING: possible circular locking dependency detected [ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted [ 335.597903] ------------------------------------------------------ [ 335.598845] kworker/u8:0/7 is trying to acquire lock: [ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] [ 335.601111] but task is already holding lock: [ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] [ 335.602896] which lock already depends on the new lock. [ 335.603378] the existing dependency chain (in reverse order) is: [ 335.603897] -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: [ 335.604305] _raw_spin_lock+0x2f/0x40 [ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] [ 335.605078] posix_lock_inode+0x9b8/0x1a50 [ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] [ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] [ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] [ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] [ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] [ 335.607604] nfsd+0x306/0x530 [nfsd] [ 335.607923] kthread+0x3b1/0x490 [ 335.608199] ret_from_fork+0x22/0x30 [ 335.608512] -> #1 (&ctx->flc_lock){+.+.}-{2:2}: [ 335.608878] _raw_spin_lock+0x2f/0x40 [ 335.609187] check_for_locks+0xcf/0x200 [nfsd] [ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] [ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] [ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] [ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] [ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] [ 335.611863] nfsd+0x306/0x530 [nfsd] [ 335.612193] kthread+0x3b1/0x490 [ 335.612463] ret_from_fork+0x22/0x30 [ 335.612764] -> #0 (&clp->cl_lock){+.+.}-{2:2}: [ 335.613120] __lock_acquire+0x29f8/0x5b80 [ 335.613469] lock_acquire+0x1a6/0x4b0 [ 335.613763] _raw_spin_lock+0x2f/0x40 [ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] [ 335.614477] process_one_work+0x7ec/0x1320 [ 335.614813] worker_thread+0x59e/0xf90 [ 335.615135] kthread+0x3b1/0x490 [ 335.615409] ret_from_fork+0x22/0x30 [ 335.615695] other info that might help us debug this: [ 335.616135] Chain exists of: &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock [ 335.616806] Possible unsafe locking scenario: [ 335.617140] CPU0 CPU1 [ 335.617467] ---- ---- [ 335.617793] lock(&clp->cl_cs_lock); [ 335.618036] lock(&ctx->flc_lock); [ 335.618531] lock(&clp->cl_cs_lock); [ 335.619037] lock(&clp->cl_lock); [ 335.619256] *** DEADLOCK *** [ 335.619487] 4 locks held by kworker/u8:0/7: [ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 [ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 [ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] [ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] [ 335.623462] stack backtrace: [ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 [ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 [ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] [ 335.625514] Call Trace: [ 335.625641] <TASK> [ 335.625734] dump_stack_lvl+0x45/0x59 [ 335.625981] check_noncircular+0x23e/0x2e0 [ 335.626268] ? print_circular_bug+0x450/0x450 [ 335.626583] ? mark_lock+0xf1/0x30c0 [ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 [ 335.627156] __lock_acquire+0x29f8/0x5b80 [ 335.627463] ? lock_chain_count+0x20/0x20 [ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 [ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 [ 335.628555] lock_acquire+0x1a6/0x4b0 [ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] [ 335.629184] ? lock_release+0x6d0/0x6d0 [ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] [ 335.629825] ? do_raw_spin_lock+0x11e/0x240 [ 335.630120] ? rwlock_bug.part.0+0x90/0x90 [ 335.630409] _raw_spin_lock+0x2f/0x40 [ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] [ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] [ 335.631450] ? lock_release+0x6d0/0x6d0 [ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] [ 335.632110] process_one_work+0x7ec/0x1320 [ 335.632411] ? lock_release+0x6d0/0x6d0 [ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 [ 335.633002] ? rwlock_bug.part.0+0x90/0x90 [ 335.633290] worker_thread+0x59e/0xf90 [ 335.633548] ? process_one_work+0x1320/0x1320 [ 335.633860] kthread+0x3b1/0x490 [ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 [ 335.634396] ? set_kthread_struct+0x100/0x100 [ 335.634709] ret_from_fork+0x22/0x30 [ 335.634961] </TASK> [ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left [ 751.769042] nfsd: last server has exited, flushing export cache [ 751.957555] NFSD: Using nfsdcld client tracking operations. [ 751.958050] NFSD: starting 15-second grace period (net f0000098) [ 773.101065] nfsd: last server has exited, flushing export cache [ 773.341554] NFSD: Using nfsdcld client tracking operations. [ 773.342404] NFSD: starting 15-second grace period (net f0000098) [ 795.757041] nfsd: last server has exited, flushing export cache [ 795.881057] NFSD: Using nfsdcld client tracking operations. [ 795.881637] NFSD: starting 15-second grace period (net f0000098) [ 816.968871] nfsd: last server has exited, flushing export cache [ 817.199987] NFSD: Using nfsdcld client tracking operations. [ 817.201123] NFSD: starting 15-second grace period (net f0000098) [ 817.696746] nfsd: last server has exited, flushing export cache [ 817.925616] NFSD: Using nfsdcld client tracking operations. [ 817.926073] NFSD: starting 15-second grace period (net f0000098) [ 839.080820] nfsd: last server has exited, flushing export cache [ 839.321569] NFSD: Using nfsdcld client tracking operations. [ 839.322562] NFSD: starting 15-second grace period (net f0000098) [ 860.492782] nfsd: last server has exited, flushing export cache [ 860.749705] NFSD: Using nfsdcld client tracking operations. [ 860.751710] NFSD: starting 15-second grace period (net f0000098) [ 882.889711] nfsd: last server has exited, flushing export cache [ 883.125502] NFSD: Using nfsdcld client tracking operations. [ 883.126399] NFSD: starting 15-second grace period (net f0000098) [ 904.224662] nfsd: last server has exited, flushing export cache [ 904.342387] NFSD: Using nfsdcld client tracking operations. [ 904.342962] NFSD: starting 15-second grace period (net f0000098) [ 947.528620] nfsd: last server has exited, flushing export cache [ 947.763520] NFSD: Using nfsdcld client tracking operations. [ 947.764569] NFSD: starting 15-second grace period (net f0000098) [ 1442.187410] nfsd: last server has exited, flushing export cache [ 1442.430496] NFSD: Using nfsdcld client tracking operations. [ 1442.430974] NFSD: starting 15-second grace period (net f0000098) [ 1483.739309] nfsd: last server has exited, flushing export cache [ 1483.864102] NFSD: Using nfsdcld client tracking operations. [ 1483.864606] NFSD: starting 15-second grace period (net f0000098) [ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success [ 1508.807419] nfsd: last server has exited, flushing export cache [ 1508.925396] NFSD: Using nfsdcld client tracking operations. [ 1508.925905] NFSD: starting 15-second grace period (net f0000098) [ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1530.667340] nfsd: last server has exited, flushing export cache [ 1530.803387] NFSD: Using nfsdcld client tracking operations. [ 1530.804150] NFSD: starting 15-second grace period (net f0000098) [ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1552.563368] nfsd: last server has exited, flushing export cache [ 1552.794957] NFSD: Using nfsdcld client tracking operations. [ 1552.797092] NFSD: starting 15-second grace period (net f0000098) [ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1594.943247] nfsd: last server has exited, flushing export cache [ 1595.175609] NFSD: Using nfsdcld client tracking operations. [ 1595.177610] NFSD: starting 15-second grace period (net f0000098) [ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 1618.323178] nfsd: last server has exited, flushing export cache [ 1618.553210] NFSD: Using nfsdcld client tracking operations. [ 1618.555049] NFSD: starting 15-second grace period (net f0000098) [ 1620.455011] nfsd: last server has exited, flushing export cache [ 1620.687824] NFSD: Using nfsdcld client tracking operations. [ 1620.688329] NFSD: starting 15-second grace period (net f0000098) [ 1660.003178] nfsd: last server has exited, flushing export cache [ 1660.236374] NFSD: Using nfsdcld client tracking operations. [ 1660.237760] NFSD: starting 15-second grace period (net f0000098) [ 1660.842977] nfsd: last server has exited, flushing export cache [ 1661.061619] NFSD: Using nfsdcld client tracking operations. [ 1661.062070] NFSD: starting 15-second grace period (net f0000098) [ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) [ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success [ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success [ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success I will update the > Documentation/filesystems/locking.rst in v10. > > > > >I agree with Chuck that we don't need to reschedule the laundromat, it's > >OK if it takes longer to get around to cleaning up a dead client. > > Yes, it is now implemented for lock conflict and share reservation > resolution. I'm doing the same for delegation conflict. > > -Dai > > > > >--b. > > > >On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: > >>Hi Bruce, Chuck > >> > >>This series of patches implement the NFSv4 Courteous Server. > >> > >>A server which does not immediately expunge the state on lease expiration > >>is known as a Courteous Server. A Courteous Server continues to recognize > >>previously generated state tokens as valid until conflict arises between > >>the expired state and the requests from another client, or the server > >>reboots. > >> > >>The v2 patch includes the following: > >> > >>. add new callback, lm_expire_lock, to lock_manager_operations to > >> allow the lock manager to take appropriate action with conflict lock. > >> > >>. handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. > >> > >>. expire courtesy client after 24hr if client has not reconnected. > >> > >>. do not allow expired client to become courtesy client if there are > >> waiters for client's locks. > >> > >>. modify client_info_show to show courtesy client and seconds from > >> last renew. > >> > >>. fix a problem with NFSv4.1 server where the it keeps returning > >> SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after > >> the courtesy client re-connects, causing the client to keep sending > >> BCTS requests to server. > >> > >>The v3 patch includes the following: > >> > >>. modified posix_test_lock to check and resolve conflict locks > >> to handle NLM TEST and NFSv4 LOCKT requests. > >> > >>. separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > >> > >>The v4 patch includes: > >> > >>. rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock > >> by asking the laudromat thread to destroy the courtesy client. > >> > >>. handle NFSv4 share reservation conflicts with courtesy client. This > >> includes conflicts between access mode and deny mode and vice versa. > >> > >>. drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > >> > >>The v5 patch includes: > >> > >>. fix recursive locking of file_rwsem from posix_lock_file. > >> > >>. retest with LOCKDEP enabled. > >> > >>The v6 patch includes: > >> > >>. merge witn 5.15-rc7 > >> > >>. fix a bug in nfs4_check_deny_bmap that did not check for matched > >> nfs4_file before checking for access/deny conflict. This bug causes > >> pynfs OPEN18 to fail since the server taking too long to release > >> lots of un-conflict clients' state. > >> > >>. enhance share reservation conflict handler to handle case where > >> a large number of conflict courtesy clients need to be expired. > >> The 1st 100 clients are expired synchronously and the rest are > >> expired in the background by the laundromat and NFS4ERR_DELAY > >> is returned to the NFS client. This is needed to prevent the > >> NFS client from timing out waiting got the reply. > >> > >>The v7 patch includes: > >> > >>. Fix race condition in posix_test_lock and posix_lock_inode after > >> dropping spinlock. > >> > >>. Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock > >> callback > >> > >>. Always resolve share reservation conflicts asynchrously. > >> > >>. Fix bug in nfs4_laundromat where spinlock is not used when > >> scanning cl_ownerstr_hashtbl. > >> > >>. Fix bug in nfs4_laundromat where idr_get_next was called > >> with incorrect 'id'. > >> > >>. Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. > >> > >>The v8 patch includes: > >> > >>. Fix warning in nfsd4_fl_expire_lock reported by test robot. > >> > >>The V9 patch include: > >> > >>. Simplify lm_expire_lock API by (1) remove the 'testonly' flag > >> and (2) specifying return value as true/false to indicate > >> whether conflict was succesfully resolved. > >> > >>. Rework nfsd4_fl_expire_lock to mark client with > >> NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire > >> the client in the background. > >> > >>. Add a spinlock in nfs4_client to synchronize access to the > >> NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to > >> handle race conditions when resolving lock and share reservation > >> conflict. > >> > >>. Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT > >> are now consisdered 'dead', waiting for the laundromat to expire > >> it. This client is no longer allowed to use its states if it > >> re-connects before the laundromat finishes expiring the client. > >> > >> For v4.1 client, the detection is done in the processing of the > >> SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client > >> to re-establish new clientid and session. > >> For v4.0 client, the detection is done in the processing of the > >> RENEW and state-related ops and return NFS4ERR_EXPIRE to force > >> the client to re-establish new clientid.
On 1/12/22 11:21 AM, J. Bruce Fields wrote: > On Wed, Jan 12, 2022 at 11:05:03AM -0800, dai.ngo@oracle.com wrote: >> On 1/12/22 10:59 AM, J. Bruce Fields wrote: >>> Could you look back over previous comments? I notice there's a couple >>> unaddressed (circular locking dependency, Documentation/filesystems/). >> I think v9 addresses the circular locking dependency. > The below is on 5.16 + these two v9 patches. > > --b. > > [ 335.595143] ====================================================== > [ 335.596176] WARNING: possible circular locking dependency detected > [ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted > [ 335.597903] ------------------------------------------------------ > [ 335.598845] kworker/u8:0/7 is trying to acquire lock: > [ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.601111] > but task is already holding lock: > [ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] This is the new spinlock that I added. It's weird that I don't see it my messages log, I will check. Thanks, -Dai > [ 335.602896] > which lock already depends on the new lock. > > [ 335.603378] > the existing dependency chain (in reverse order) is: > [ 335.603897] > -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: > [ 335.604305] _raw_spin_lock+0x2f/0x40 > [ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] > [ 335.605078] posix_lock_inode+0x9b8/0x1a50 > [ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] > [ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > [ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > [ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] > [ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] > [ 335.607604] nfsd+0x306/0x530 [nfsd] > [ 335.607923] kthread+0x3b1/0x490 > [ 335.608199] ret_from_fork+0x22/0x30 > [ 335.608512] > -> #1 (&ctx->flc_lock){+.+.}-{2:2}: > [ 335.608878] _raw_spin_lock+0x2f/0x40 > [ 335.609187] check_for_locks+0xcf/0x200 [nfsd] > [ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] > [ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > [ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > [ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] > [ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] > [ 335.611863] nfsd+0x306/0x530 [nfsd] > [ 335.612193] kthread+0x3b1/0x490 > [ 335.612463] ret_from_fork+0x22/0x30 > [ 335.612764] > -> #0 (&clp->cl_lock){+.+.}-{2:2}: > [ 335.613120] __lock_acquire+0x29f8/0x5b80 > [ 335.613469] lock_acquire+0x1a6/0x4b0 > [ 335.613763] _raw_spin_lock+0x2f/0x40 > [ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.614477] process_one_work+0x7ec/0x1320 > [ 335.614813] worker_thread+0x59e/0xf90 > [ 335.615135] kthread+0x3b1/0x490 > [ 335.615409] ret_from_fork+0x22/0x30 > [ 335.615695] > other info that might help us debug this: > > [ 335.616135] Chain exists of: > &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock > > [ 335.616806] Possible unsafe locking scenario: > > [ 335.617140] CPU0 CPU1 > [ 335.617467] ---- ---- > [ 335.617793] lock(&clp->cl_cs_lock); > [ 335.618036] lock(&ctx->flc_lock); > [ 335.618531] lock(&clp->cl_cs_lock); > [ 335.619037] lock(&clp->cl_lock); > [ 335.619256] > *** DEADLOCK *** > > [ 335.619487] 4 locks held by kworker/u8:0/7: > [ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 > [ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 > [ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] > [ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > [ 335.623462] > stack backtrace: > [ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 > [ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > [ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] > [ 335.625514] Call Trace: > [ 335.625641] <TASK> > [ 335.625734] dump_stack_lvl+0x45/0x59 > [ 335.625981] check_noncircular+0x23e/0x2e0 > [ 335.626268] ? print_circular_bug+0x450/0x450 > [ 335.626583] ? mark_lock+0xf1/0x30c0 > [ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 > [ 335.627156] __lock_acquire+0x29f8/0x5b80 > [ 335.627463] ? lock_chain_count+0x20/0x20 > [ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 > [ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 > [ 335.628555] lock_acquire+0x1a6/0x4b0 > [ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.629184] ? lock_release+0x6d0/0x6d0 > [ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] > [ 335.629825] ? do_raw_spin_lock+0x11e/0x240 > [ 335.630120] ? rwlock_bug.part.0+0x90/0x90 > [ 335.630409] _raw_spin_lock+0x2f/0x40 > [ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.631450] ? lock_release+0x6d0/0x6d0 > [ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] > [ 335.632110] process_one_work+0x7ec/0x1320 > [ 335.632411] ? lock_release+0x6d0/0x6d0 > [ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 > [ 335.633002] ? rwlock_bug.part.0+0x90/0x90 > [ 335.633290] worker_thread+0x59e/0xf90 > [ 335.633548] ? process_one_work+0x1320/0x1320 > [ 335.633860] kthread+0x3b1/0x490 > [ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 > [ 335.634396] ? set_kthread_struct+0x100/0x100 > [ 335.634709] ret_from_fork+0x22/0x30 > [ 335.634961] </TASK> > [ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left > [ 751.769042] nfsd: last server has exited, flushing export cache > [ 751.957555] NFSD: Using nfsdcld client tracking operations. > [ 751.958050] NFSD: starting 15-second grace period (net f0000098) > [ 773.101065] nfsd: last server has exited, flushing export cache > [ 773.341554] NFSD: Using nfsdcld client tracking operations. > [ 773.342404] NFSD: starting 15-second grace period (net f0000098) > [ 795.757041] nfsd: last server has exited, flushing export cache > [ 795.881057] NFSD: Using nfsdcld client tracking operations. > [ 795.881637] NFSD: starting 15-second grace period (net f0000098) > [ 816.968871] nfsd: last server has exited, flushing export cache > [ 817.199987] NFSD: Using nfsdcld client tracking operations. > [ 817.201123] NFSD: starting 15-second grace period (net f0000098) > [ 817.696746] nfsd: last server has exited, flushing export cache > [ 817.925616] NFSD: Using nfsdcld client tracking operations. > [ 817.926073] NFSD: starting 15-second grace period (net f0000098) > [ 839.080820] nfsd: last server has exited, flushing export cache > [ 839.321569] NFSD: Using nfsdcld client tracking operations. > [ 839.322562] NFSD: starting 15-second grace period (net f0000098) > [ 860.492782] nfsd: last server has exited, flushing export cache > [ 860.749705] NFSD: Using nfsdcld client tracking operations. > [ 860.751710] NFSD: starting 15-second grace period (net f0000098) > [ 882.889711] nfsd: last server has exited, flushing export cache > [ 883.125502] NFSD: Using nfsdcld client tracking operations. > [ 883.126399] NFSD: starting 15-second grace period (net f0000098) > [ 904.224662] nfsd: last server has exited, flushing export cache > [ 904.342387] NFSD: Using nfsdcld client tracking operations. > [ 904.342962] NFSD: starting 15-second grace period (net f0000098) > [ 947.528620] nfsd: last server has exited, flushing export cache > [ 947.763520] NFSD: Using nfsdcld client tracking operations. > [ 947.764569] NFSD: starting 15-second grace period (net f0000098) > [ 1442.187410] nfsd: last server has exited, flushing export cache > [ 1442.430496] NFSD: Using nfsdcld client tracking operations. > [ 1442.430974] NFSD: starting 15-second grace period (net f0000098) > [ 1483.739309] nfsd: last server has exited, flushing export cache > [ 1483.864102] NFSD: Using nfsdcld client tracking operations. > [ 1483.864606] NFSD: starting 15-second grace period (net f0000098) > [ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > [ 1508.807419] nfsd: last server has exited, flushing export cache > [ 1508.925396] NFSD: Using nfsdcld client tracking operations. > [ 1508.925905] NFSD: starting 15-second grace period (net f0000098) > [ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1530.667340] nfsd: last server has exited, flushing export cache > [ 1530.803387] NFSD: Using nfsdcld client tracking operations. > [ 1530.804150] NFSD: starting 15-second grace period (net f0000098) > [ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1552.563368] nfsd: last server has exited, flushing export cache > [ 1552.794957] NFSD: Using nfsdcld client tracking operations. > [ 1552.797092] NFSD: starting 15-second grace period (net f0000098) > [ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1594.943247] nfsd: last server has exited, flushing export cache > [ 1595.175609] NFSD: Using nfsdcld client tracking operations. > [ 1595.177610] NFSD: starting 15-second grace period (net f0000098) > [ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1618.323178] nfsd: last server has exited, flushing export cache > [ 1618.553210] NFSD: Using nfsdcld client tracking operations. > [ 1618.555049] NFSD: starting 15-second grace period (net f0000098) > [ 1620.455011] nfsd: last server has exited, flushing export cache > [ 1620.687824] NFSD: Using nfsdcld client tracking operations. > [ 1620.688329] NFSD: starting 15-second grace period (net f0000098) > [ 1660.003178] nfsd: last server has exited, flushing export cache > [ 1660.236374] NFSD: Using nfsdcld client tracking operations. > [ 1660.237760] NFSD: starting 15-second grace period (net f0000098) > [ 1660.842977] nfsd: last server has exited, flushing export cache > [ 1661.061619] NFSD: Using nfsdcld client tracking operations. > [ 1661.062070] NFSD: starting 15-second grace period (net f0000098) > [ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > [ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > [ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success > > started Wed Jan 12 11:28:28 AM EST 2022, finished Wed Jan 12 01:47:36 PM EST 2022 > > > +-----------------------------------------+ > | verbose output | > +-----------------------------------------+ > fs/select.c: In function ‘do_select’: > fs/select.c:611:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 611 | } > | ^ > fs/select.c: In function ‘do_sys_poll’: > fs/select.c:1041:1: warning: the frame size of 1296 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 1041 | } > | ^ > net/core/rtnetlink.c: In function ‘__rtnl_newlink’: > net/core/rtnetlink.c:3494:1: warning: the frame size of 1368 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 3494 | } > | ^ > drivers/tty/serial/8250/8250_core.c: In function ‘serial8250_probe’: > drivers/tty/serial/8250/8250_core.c:840:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 840 | } > | ^ > drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’: > drivers/tty/serial/8250/8250_pnp.c:488:1: warning: the frame size of 1136 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 488 | } > | ^ > drivers/tty/serial/8250/8250_pci.c: In function ‘pciserial_init_ports’: > drivers/tty/serial/8250/8250_pci.c:4030:1: warning: the frame size of 1160 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 4030 | } > | ^ > drivers/tty/serial/8250/8250_exar.c: In function ‘exar_pci_probe’: > drivers/tty/serial/8250/8250_exar.c:678:1: warning: the frame size of 1176 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 678 | } > | ^ > drivers/tty/serial/8250/8250_lpss.c: In function ‘lpss8250_probe.part.0’: > drivers/tty/serial/8250/8250_lpss.c:351:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 351 | } > | ^ > drivers/tty/serial/8250/8250_mid.c: In function ‘mid8250_probe.part.0’: > drivers/tty/serial/8250/8250_mid.c:337:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 337 | } > | ^ > lib/zstd/common/entropy_common.c: In function ‘HUF_readStats’: > lib/zstd/common/entropy_common.c:257:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 257 | } > | ^ > drivers/acpi/processor_thermal.c: In function ‘cpu_has_cpufreq’: > drivers/acpi/processor_thermal.c:60:1: warning: the frame size of 1384 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 60 | } > | ^ > drivers/dma-buf/dma-resv.c: In function ‘dma_resv_lockdep’: > drivers/dma-buf/dma-resv.c:708:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 708 | } > | ^ > fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: > fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 418 | } > | ^ > drivers/md/raid5-ppl.c: In function ‘ppl_recover_entry’: > drivers/md/raid5-ppl.c:968:1: warning: the frame size of 1200 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 968 | } > | ^ > fs/ocfs2/namei.c: In function ‘ocfs2_rename’: > fs/ocfs2/namei.c:1686:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 1686 | } > | ^ > net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: > net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 717 | } > | ^ > net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: > net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 810 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘nldev_set_doit’: > drivers/infiniband/core/nldev.c:1112:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 1112 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘nldev_newlink’: > drivers/infiniband/core/nldev.c:1722:1: warning: the frame size of 1128 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 1722 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘nldev_get_chardev’: > drivers/infiniband/core/nldev.c:1833:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 1833 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘nldev_stat_set_doit’: > drivers/infiniband/core/nldev.c:2061:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 2061 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘res_get_common_dumpit’: > drivers/infiniband/core/nldev.c:1613:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 1613 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_doit’: > drivers/infiniband/core/nldev.c:2318:1: warning: the frame size of 1088 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 2318 | } > | ^ > drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_counter_status_doit’: > drivers/infiniband/core/nldev.c:2438:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 2438 | } > | ^ > net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: > net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 717 | } > | ^ > net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: > net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 810 | } > | ^ > fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: > fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > 418 | } > | ^ > make -f ./Makefile > CALL scripts/checksyscalls.sh > CALL scripts/atomic/check-atomics.sh > DESCEND objtool > CHK include/generated/compile.h > BUILD arch/x86/boot/bzImage > Kernel: arch/x86/boot/bzImage is ready (#1278) > sh ./scripts/package/buildtar targz-pkg > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authenc.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authencesn.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/crypto_engine.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/echainiv.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/crypto/virtio/virtio_crypto.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/iscsi_tcp.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi_tcp.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/scsi_transport_iscsi.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/lockd/lockd.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/blocklayout/blocklayoutdriver.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/filelayout/nfs_layout_nfsv41_files.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfs.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv2.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv3.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv4.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/grace.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/nfs_acl.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfsd/nfsd.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sched/cls_bpf.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/sunrpc.ko > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/xprtrdma/rpcrdma.ko > DEPMOD ./tar-install/lib/modules/5.16.0-00002-g616758bf6583 > './System.map' -> './tar-install/boot/System.map-5.16.0-00002-g616758bf6583' > '.config' -> './tar-install/boot/config-5.16.0-00002-g616758bf6583' > './vmlinux' -> './tar-install/boot/vmlinux-5.16.0-00002-g616758bf6583' > './arch/x86/boot/bzImage' -> './tar-install/boot/vmlinuz-5.16.0-00002-g616758bf6583' > Tarball successfully created in ./linux-5.16.0-00002-g616758bf6583-x86_64.tar.gz > user pynfs tests: > WARNING - could not create /b'exports/xfs/pynfstest-user/tree/block' > WARNING - could not create /b'exports/xfs/pynfstest-user/tree/char' > DELEG22 st_delegation.testServerSelfConflict2 : RUNNING > DELEG22 st_delegation.testServerSelfConflict2 : PASS > DELEG21 st_delegation.testServerSelfConflict : RUNNING > DELEG21 st_delegation.testServerSelfConflict : PASS > DELEG18 st_delegation.testServerRenameTarget : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=3)******** > DELEG18 st_delegation.testServerRenameTarget : PASS > DELEG17 st_delegation.testServerRenameSource : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=4)******** > DELEG17 st_delegation.testServerRenameSource : PASS > DELEG16 st_delegation.testServerRemove : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=5)******** > DELEG16 st_delegation.testServerRemove : PASS > DELEG19 st_delegation.testServerLink : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=6)******** > DELEG19 st_delegation.testServerLink : PASS > DELEG20 st_delegation.testServerChmod : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=7)******** > DELEG20 st_delegation.testServerChmod : PASS > DELEG6 st_delegation.testRenew : RUNNING > Sleeping for 7.5 seconds: Waiting to send RENEW > Woke up > DELEG6 st_delegation.testRenew : PASS > DELEG15d st_delegation.testRenameOver : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=9)******** > Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename > Woke up > DELEG15d st_delegation.testRenameOver : PASS > DELEG15c st_delegation.testRename : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=10)******** > Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename > Woke up > DELEG15c st_delegation.testRename : PASS > DELEG15a st_delegation.testRemove : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on remove > *****CB received COMPOUND****** > ******* CB_Recall (id=11)******** > Woke up > DELEG15a st_delegation.testRemove : PASS > DELEG3e st_delegation.testReadDeleg3e : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=12)******** > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG3e st_delegation.testReadDeleg3e : PASS > DELEG3d st_delegation.testReadDeleg3d : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=13)******** > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG3d st_delegation.testReadDeleg3d : PASS > DELEG3c st_delegation.testReadDeleg3c : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=14)******** > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG3c st_delegation.testReadDeleg3c : PASS > DELEG3b st_delegation.testReadDeleg3b : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=15)******** > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG3b st_delegation.testReadDeleg3b : PASS > DELEG3a st_delegation.testReadDeleg3a : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=16)******** > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG3a st_delegation.testReadDeleg3a : PASS > DELEG2 st_delegation.testReadDeleg2 : RUNNING > *****CB received COMPOUND****** > ******* CB_Recall (id=17)******** > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG2 st_delegation.testReadDeleg2 : PASS > DELEG1 st_delegation.testReadDeleg1 : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=18)******** > Woke up > DELEG1 st_delegation.testReadDeleg1 : PASS > DELEG15b st_delegation.testLink : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on link > *****CB received COMPOUND****** > ******* CB_Recall (id=19)******** > Woke up > DELEG15b st_delegation.testLink : PASS > DELEG7 st_delegation.testIgnoreDeleg : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=20)******** > Woke up > DELEG7 st_delegation.testIgnoreDeleg : PASS > DELEG8 st_delegation.testDelegShare : RUNNING > DELEG8 st_delegation.testDelegShare : PASS > DELEG4 st_delegation.testCloseDeleg : RUNNING > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=22)******** > Woke up > DELEG4 st_delegation.testCloseDeleg : PASS > DELEG14 st_delegation.testClaimCur : RUNNING > Sleeping for 2 seconds: Waiting for recall > *****CB received COMPOUND****** > ******* CB_Recall (id=23)******** > Woke up > DELEG14 st_delegation.testClaimCur : PASS > DELEG9 st_delegation.testChangeDeleg : RUNNING > Sleeping for 3 seconds: > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > *****CB received COMPOUND****** > ******* CB_Recall (id=1)******** > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > Woke up > DELEG9 st_delegation.testChangeDeleg : PASS > INIT st_setclientid.testValid : RUNNING > INIT st_setclientid.testValid : PASS > MKFILE st_open.testOpen : RUNNING > MKFILE st_open.testOpen : PASS > REBT8 st_reboot.testValidDeleg : RUNNING > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > REBT8 st_reboot.testValidDeleg : PASS > REBT3 st_reboot.testRebootWait : RUNNING > Got error: Connection closed > Sleeping for 10 seconds: Waiting till halfway through grace period > Woke up > Sleeping for 11 seconds: Waiting for grace period to end > Woke up > REBT3 st_reboot.testRebootWait : PASS > REBT1 st_reboot.testRebootValid : RUNNING > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > REBT1 st_reboot.testRebootValid : PASS > REBT10 st_reboot.testRebootMultiple : RUNNING > Got error: Connection closed > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > REBT10 st_reboot.testRebootMultiple : PASS > MKDIR st_create.testDir : RUNNING > MKDIR st_create.testDir : PASS > REBT2 st_reboot.testManyClaims : RUNNING > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > REBT2 st_reboot.testManyClaims : PASS > REBT11 st_reboot.testGraceSeqid : RUNNING > Got error: Connection closed > Sleeping for 10 seconds: Waiting till halfway through grace period > Woke up > Sleeping for 11 seconds: Waiting for grace period to end > Woke up > REBT11 st_reboot.testGraceSeqid : PASS > REBT6 st_reboot.testEdge2 : RUNNING > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > Got error: Connection closed > Got error: Connection closed > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > REBT6 st_reboot.testEdge2 : PASS > REBT5 st_reboot.testEdge1 : RUNNING > Sleeping for 22 seconds: Waiting for lock lease to expire > Woke up > Got error: Connection closed > Got error: Connection closed > Sleeping for 20 seconds: Waiting for grace period to end > Woke up > REBT5 st_reboot.testEdge1 : PASS > RPLY8 st_replay.testUnlockWait : RUNNING > Sleeping for 30 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY8 st_replay.testUnlockWait : PASS > RPLY7 st_replay.testUnlock : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY7 st_replay.testUnlock : PASS > RPLY3 st_replay.testReplayState2 : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY3 st_replay.testReplayState2 : PASS > RPLY2 st_replay.testReplayState1 : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY2 st_replay.testReplayState1 : PASS > RPLY4 st_replay.testReplayNonState : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY4 st_replay.testReplayNonState : PASS > RPLY13 st_replay.testOpenConfirmFail : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY13 st_replay.testOpenConfirmFail : PASS > RPLY12 st_replay.testOpenConfirm : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY12 st_replay.testOpenConfirm : PASS > RPLY1 st_replay.testOpen : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY1 st_replay.testOpen : PASS > RPLY14 st_replay.testMkdirReplay : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY14 st_replay.testMkdirReplay : PASS > RPLY6 st_replay.testLockDenied : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY6 st_replay.testLockDenied : PASS > RPLY5 st_replay.testLock : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY5 st_replay.testLock : PASS > RPLY10 st_replay.testCloseWait : RUNNING > Sleeping for 30 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY10 st_replay.testCloseWait : PASS > RPLY11 st_replay.testCloseFail : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY11 st_replay.testCloseFail : PASS > RPLY9 st_replay.testClose : RUNNING > Sleeping for 0.3 seconds: > Woke up > Sleeping for 0.3 seconds: > Woke up > RPLY9 st_replay.testClose : PASS > WRT3 st_write.testWithOpen : RUNNING > WRT3 st_write.testWithOpen : PASS > WRT5b st_write.testTooLargeData : RUNNING > WRT5b st_write.testTooLargeData : PASS > WRT19 st_write.testStolenStateid : RUNNING > WRT19 st_write.testStolenStateid : PASS > WRT2 st_write.testStateidOne : RUNNING > WRT2 st_write.testStateidOne : PASS > WRT11 st_write.testStaleStateid : RUNNING > WRT11 st_write.testStaleStateid : PASS > MKSOCK st_create.testSocket : RUNNING > MKSOCK st_create.testSocket : PASS > WRT6s st_write.testSocket : RUNNING > WRT6s st_write.testSocket : PASS > WRT15 st_write.testSizes : RUNNING > WRT15 st_write.testSizes : PASS > WRT1b st_write.testSimpleWrite2 : RUNNING > WRT1b st_write.testSimpleWrite2 : PASS > WRT1 st_write.testSimpleWrite : RUNNING > WRT1 st_write.testSimpleWrite : PASS > WRT9 st_write.testShareDeny : RUNNING > WRT9 st_write.testShareDeny : PASS > WRT8 st_write.testOpenMode : RUNNING > WRT8 st_write.testOpenMode : PASS > WRT12 st_write.testOldStateid : RUNNING > WRT12 st_write.testOldStateid : PASS > WRT7 st_write.testNoFh : RUNNING > WRT7 st_write.testNoFh : PASS > WRT4 st_write.testNoData : RUNNING > Sleeping for 1 seconds: > Woke up > WRT4 st_write.testNoData : PASS > WRT5a st_write.testMaximumData : RUNNING > WRT5a st_write.testMaximumData : PASS > MKLINK st_create.testLink : RUNNING > MKLINK st_create.testLink : PASS > WRT6a st_write.testLink : RUNNING > WRT6a st_write.testLink : PASS > WRT14 st_write.testLargeWrite : RUNNING > WRT14 st_write.testLargeWrite : PASS > MKFIFO st_create.testFIFO : RUNNING > MKFIFO st_create.testFIFO : PASS > WRT6f st_write.testFifo : RUNNING > WRT6f st_write.testFifo : PASS > WRT13 st_write.testDoubleWrite : RUNNING > WRT13 st_write.testDoubleWrite : PASS > WRT6d st_write.testDir : RUNNING > WRT6d st_write.testDir : PASS > MODE st_setattr.testMode : RUNNING > MODE st_setattr.testMode : PASS > WRT18 st_write.testChangeGranularityWrite : RUNNING > WRT18 st_write.testChangeGranularityWrite : PASS > LOOKSOCK st_lookup.testSocket : RUNNING > LOOKSOCK st_lookup.testSocket : PASS > VF5s st_verify.testWriteOnlySocket : RUNNING > VF5s st_verify.testWriteOnlySocket : PASS > LOOKLINK st_lookup.testLink : RUNNING > LOOKLINK st_lookup.testLink : PASS > VF5a st_verify.testWriteOnlyLink : RUNNING > VF5a st_verify.testWriteOnlyLink : PASS > LOOKFILE st_lookup.testFile : RUNNING > LOOKFILE st_lookup.testFile : PASS > VF5r st_verify.testWriteOnlyFile : RUNNING > VF5r st_verify.testWriteOnlyFile : PASS > LOOKFIFO st_lookup.testFifo : RUNNING > LOOKFIFO st_lookup.testFifo : PASS > VF5f st_verify.testWriteOnlyFifo : RUNNING > VF5f st_verify.testWriteOnlyFifo : PASS > LOOKDIR st_lookup.testDir : RUNNING > LOOKDIR st_lookup.testDir : PASS > VF5d st_verify.testWriteOnlyDir : RUNNING > VF5d st_verify.testWriteOnlyDir : PASS > VF7s st_verify.testUnsupportedSocket : RUNNING > VF7s st_verify.testUnsupportedSocket : PASS > VF7a st_verify.testUnsupportedLink : RUNNING > VF7a st_verify.testUnsupportedLink : PASS > VF7r st_verify.testUnsupportedFile : RUNNING > VF7r st_verify.testUnsupportedFile : PASS > VF7f st_verify.testUnsupportedFifo : RUNNING > VF7f st_verify.testUnsupportedFifo : PASS > VF7d st_verify.testUnsupportedDir : RUNNING > VF7d st_verify.testUnsupportedDir : PASS > VF2s st_verify.testTypeSocket : RUNNING > VF2s st_verify.testTypeSocket : PASS > VF2a st_verify.testTypeLink : RUNNING > VF2a st_verify.testTypeLink : PASS > VF2r st_verify.testTypeFile : RUNNING > VF2r st_verify.testTypeFile : PASS > VF2f st_verify.testTypeFifo : RUNNING > VF2f st_verify.testTypeFifo : PASS > VF2d st_verify.testTypeDir : RUNNING > VF2d st_verify.testTypeDir : PASS > VF4 st_verify.testNoFh : RUNNING > VF4 st_verify.testNoFh : PASS > VF1s st_verify.testMandSocket : RUNNING > VF1s st_verify.testMandSocket : PASS > VF1a st_verify.testMandLink : RUNNING > VF1a st_verify.testMandLink : PASS > VF1r st_verify.testMandFile : RUNNING > VF1r st_verify.testMandFile : PASS > VF1f st_verify.testMandFifo : RUNNING > VF1f st_verify.testMandFifo : PASS > VF1d st_verify.testMandDir : RUNNING > VF1d st_verify.testMandDir : PASS > VF3s st_verify.testBadSizeSocket : RUNNING > VF3s st_verify.testBadSizeSocket : PASS > VF3a st_verify.testBadSizeLink : RUNNING > VF3a st_verify.testBadSizeLink : PASS > VF3r st_verify.testBadSizeFile : RUNNING > VF3r st_verify.testBadSizeFile : PASS > VF3f st_verify.testBadSizeFifo : RUNNING > VF3f st_verify.testBadSizeFifo : PASS > VF3d st_verify.testBadSizeDir : RUNNING > VF3d st_verify.testBadSizeDir : PASS > CIDCF1 st_setclientidconfirm.testStale : RUNNING > CIDCF1 st_setclientidconfirm.testStale : PASS > CIDCF3 st_setclientidconfirm.testAllCases : RUNNING > CIDCF3 st_setclientidconfirm.testAllCases : PASS > CID4e st_setclientid.testUnConfReplaced : RUNNING > CID4e st_setclientid.testUnConfReplaced : PASS > CID2 st_setclientid.testNotInUse : RUNNING > CID2 st_setclientid.testNotInUse : PASS > CID6 st_setclientid.testNoConfirm : RUNNING > CID6 st_setclientid.testNoConfirm : PASS > CID5 st_setclientid.testLotsOfClients : RUNNING > CID5 st_setclientid.testLotsOfClients : PASS > CID3 st_setclientid.testLoseAnswer : RUNNING > CID3 st_setclientid.testLoseAnswer : PASS > CID2a st_setclientid.testInUse : RUNNING > CID2a st_setclientid.testInUse : PASS > CID4b st_setclientid.testConfirmedDiffVerifier : RUNNING > CID4b st_setclientid.testConfirmedDiffVerifier : PASS > CID4d st_setclientid.testConfUnConfDiffVerifier2 : RUNNING > CID4d st_setclientid.testConfUnConfDiffVerifier2 : PASS > CID4c st_setclientid.testConfUnConfDiffVerifier1 : RUNNING > CID4c st_setclientid.testConfUnConfDiffVerifier1 : PASS > CID1b st_setclientid.testClientUpdateCallback : RUNNING > CID1b st_setclientid.testClientUpdateCallback : PASS > CID1 st_setclientid.testClientReboot : RUNNING > CID1 st_setclientid.testClientReboot : PASS > CID4a st_setclientid.testCallbackInfoUpdate : RUNNING > CID4a st_setclientid.testCallbackInfoUpdate : PASS > CID4 st_setclientid.testAllCases : RUNNING > CID4 st_setclientid.testAllCases : PASS > SATT2c st_setattr.testUselessStateid3 : RUNNING > SATT2c st_setattr.testUselessStateid3 : PASS > SATT2b st_setattr.testUselessStateid2 : RUNNING > SATT2b st_setattr.testUselessStateid2 : PASS > SATT2a st_setattr.testUselessStateid1 : RUNNING > SATT2a st_setattr.testUselessStateid1 : PASS > SATT11s st_setattr.testUnsupportedSocket : RUNNING > SATT11s st_setattr.testUnsupportedSocket : PASS > SATT11a st_setattr.testUnsupportedLink : RUNNING > SATT11a st_setattr.testUnsupportedLink : PASS > SATT11r st_setattr.testUnsupportedFile : RUNNING > SATT11r st_setattr.testUnsupportedFile : PASS > SATT11f st_setattr.testUnsupportedFifo : RUNNING > SATT11f st_setattr.testUnsupportedFifo : PASS > SATT11d st_setattr.testUnsupportedDir : RUNNING > SATT11d st_setattr.testUnsupportedDir : PASS > SATT12s st_setattr.testSizeSocket : RUNNING > SATT12s st_setattr.testSizeSocket : PASS > SATT12a st_setattr.testSizeLink : RUNNING > SATT12a st_setattr.testSizeLink : PASS > SATT12f st_setattr.testSizeFifo : RUNNING > SATT12f st_setattr.testSizeFifo : PASS > SATT12d st_setattr.testSizeDir : RUNNING > SATT12d st_setattr.testSizeDir : PASS > SATT3d st_setattr.testResizeFile3 : RUNNING > SATT3d st_setattr.testResizeFile3 : PASS > SATT3c st_setattr.testResizeFile2 : RUNNING > SATT3c st_setattr.testResizeFile2 : PASS > SATT3b st_setattr.testResizeFile1 : RUNNING > SATT3b st_setattr.testResizeFile1 : PASS > SATT3a st_setattr.testResizeFile0 : RUNNING > SATT3a st_setattr.testResizeFile0 : PASS > SATT6d st_setattr.testReadonlyDir : RUNNING > SATT6d st_setattr.testReadonlyDir : PASS > SATT6s st_setattr.testReadonlySocket : RUNNING > SATT6s st_setattr.testReadonlySocket : PASS > SATT6a st_setattr.testReadonlyLink : RUNNING > SATT6a st_setattr.testReadonlyLink : PASS > SATT6r st_setattr.testReadonlyFile : RUNNING > SATT6r st_setattr.testReadonlyFile : PASS > SATT6f st_setattr.testReadonlyFifo : RUNNING > SATT6f st_setattr.testReadonlyFifo : PASS > SATT4 st_setattr.testOpenModeResize : RUNNING > SATT4 st_setattr.testOpenModeResize : PASS > SATT5 st_setattr.testNoFh : RUNNING > SATT5 st_setattr.testNoFh : PASS > SATT10 st_setattr.testInvalidTime : RUNNING > SATT10 st_setattr.testInvalidTime : PASS > SATT8 st_setattr.testInvalidAttr2 : RUNNING > SATT8 st_setattr.testInvalidAttr2 : PASS > SATT7 st_setattr.testInvalidAttr1 : RUNNING > Traceback (most recent call last): > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > self.runtest(self, environment) > File "/root/pynfs/nfs4.0/servertests/st_renew.py", line 41, in testExpired > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_READ, > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > check_result(res, "Opening file %s" % _getname(owner, path)) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > raise BadCompoundRes(resop, res.status, msg) > nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > SATT7 st_setattr.testInvalidAttr1 : PASS > SATT13 st_setattr.testInodeLocking : RUNNING > SATT13 st_setattr.testInodeLocking : PASS > SATT1r st_setattr.testFile : RUNNING > SATT1r st_setattr.testFile : PASS > SATT1f st_setattr.testFifo : RUNNING > SATT1f st_setattr.testFifo : PASS > SATT16 st_setattr.testEmptyPrincipal : RUNNING > SATT16 st_setattr.testEmptyPrincipal : PASS > SATT17 st_setattr.testEmptyGroupPrincipal : RUNNING > SATT17 st_setattr.testEmptyGroupPrincipal : PASS > SATT1d st_setattr.testDir : RUNNING > SATT1d st_setattr.testDir : PASS > SATT15 st_setattr.testChangeGranularity : RUNNING > SATT15 st_setattr.testChangeGranularity : PASS > SATT14 st_setattr.testChange : RUNNING > SATT14 st_setattr.testChange : PASS > SEC1 st_secinfo.testValid : RUNNING > SEC1 st_secinfo.testValid : PASS > SEC5 st_secinfo.testZeroLenName : RUNNING > SEC5 st_secinfo.testZeroLenName : PASS > SEC3 st_secinfo.testVaporFile : RUNNING > SEC3 st_secinfo.testVaporFile : PASS > SEC7 st_secinfo.testRPCSEC_GSS : RUNNING > SEC7 st_secinfo.testRPCSEC_GSS : PASS > SEC2 st_secinfo.testNotDir : RUNNING > SEC2 st_secinfo.testNotDir : PASS > SEC4 st_secinfo.testNoFh : RUNNING > SEC4 st_secinfo.testNoFh : PASS > SVFH1 st_savefh.testNoFh : RUNNING > SVFH1 st_savefh.testNoFh : PASS > SVFH2s st_restorefh.testValidSocket : RUNNING > SVFH2s st_restorefh.testValidSocket : PASS > SVFH2a st_restorefh.testValidLink : RUNNING > SVFH2a st_restorefh.testValidLink : PASS > SVFH2r st_restorefh.testValidFile : RUNNING > SVFH2r st_restorefh.testValidFile : PASS > SVFH2f st_restorefh.testValidFifo : RUNNING > SVFH2f st_restorefh.testValidFifo : PASS > SVFH2d st_restorefh.testValidDir : RUNNING > SVFH2d st_restorefh.testValidDir : PASS > RSFH2 st_restorefh.testNoFh2 : RUNNING > RSFH2 st_restorefh.testNoFh2 : PASS > RSFH1 st_restorefh.testNoFh1 : RUNNING > RSFH1 st_restorefh.testNoFh1 : PASS > RENEW1 st_renew.testRenew : RUNNING > RENEW1 st_renew.testRenew : PASS > RENEW3 st_renew.testExpired : RUNNING > Sleeping for 30 seconds: > Woke up > RENEW3 st_renew.testExpired : FAILURE > nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > RENEW2 st_renew.testBadRenew : RUNNING > RENEW2 st_renew.testBadRenew : PASS > RNM6 st_rename.testZeroLengthOldname : RUNNING > RNM6 st_rename.testZeroLengthOldname : PASS > RNM7 st_rename.testZeroLengthNewname : RUNNING > RNM7 st_rename.testZeroLengthNewname : PASS > RNM1s st_rename.testValidSocket : RUNNING > RNM1s st_rename.testValidSocket : PASS > RNM1a st_rename.testValidLink : RUNNING > RNM1a st_rename.testValidLink : PASS > RNM1r st_rename.testValidFile : RUNNING > RNM1r st_rename.testValidFile : PASS > RNM1f st_rename.testValidFifo : RUNNING > RNM1f st_rename.testValidFifo : PASS > RNM1d st_rename.testValidDir : RUNNING > RNM1d st_rename.testValidDir : PASS > RNM2s st_rename.testSfhSocket : RUNNING > RNM2s st_rename.testSfhSocket : PASS > RNM2a st_rename.testSfhLink : RUNNING > RNM2a st_rename.testSfhLink : PASS > RNM2r st_rename.testSfhFile : RUNNING > RNM2r st_rename.testSfhFile : PASS > RNM2f st_rename.testSfhFifo : RUNNING > RNM2f st_rename.testSfhFifo : PASS > RNM19 st_rename.testSelfRenameFile : RUNNING > RNM19 st_rename.testSelfRenameFile : PASS > RNM18 st_rename.testSelfRenameDir : RUNNING > RNM18 st_rename.testSelfRenameDir : PASS > RNM5 st_rename.testNonExistent : RUNNING > RNM5 st_rename.testNonExistent : PASS > RNM4 st_rename.testNoSfh : RUNNING > RNM4 st_rename.testNoSfh : PASS > LINKS st_link.testSupported : RUNNING > LINKS st_link.testSupported : PASS > RNM20 st_rename.testLinkRename : RUNNING > RNM20 st_rename.testLinkRename : PASS > RNM17 st_rename.testFileToFullDir : RUNNING > RNM17 st_rename.testFileToFullDir : PASS > RNM15 st_rename.testFileToFile : RUNNING > RNM15 st_rename.testFileToFile : PASS > RNM14 st_rename.testFileToDir : RUNNING > RNM14 st_rename.testFileToDir : PASS > RNM10 st_rename.testDotsOldname : RUNNING > RNM10 st_rename.testDotsOldname : PASS > RNM11 st_rename.testDotsNewname : RUNNING > RNM11 st_rename.testDotsNewname : PASS > RNM12 st_rename.testDirToObj : RUNNING > RNM12 st_rename.testDirToObj : PASS > RNM16 st_rename.testDirToFullDir : RUNNING > RNM16 st_rename.testDirToFullDir : PASS > RNM13 st_rename.testDirToDir : RUNNING > RNM13 st_rename.testDirToDir : PASS > RNM3s st_rename.testCfhSocket : RUNNING > RNM3s st_rename.testCfhSocket : PASS > RNM3a st_rename.testCfhLink : RUNNING > RNM3a st_rename.testCfhLink : PASS > RNM3r st_rename.testCfhFile : RUNNING > RNM3r st_rename.testCfhFile : PASS > RNM3f st_rename.testCfhFifo : RUNNING > RNM3f st_rename.testCfhFifo : PASS > RM4 st_remove.testZeroLengthTarget : RUNNING > RM4 st_remove.testZeroLengthTarget : PASS > RM1s st_remove.testSocket : RUNNING > RM1s st_remove.testSocket : PASS > RM8 st_remove.testNotEmpty : RUNNING > RM8 st_remove.testNotEmpty : PASS > RM6 st_remove.testNonExistent : RUNNING > RM6 st_remove.testNonExistent : PASS > RM3 st_remove.testNoFh : RUNNING > RM3 st_remove.testNoFh : PASS > RM1a st_remove.testLink : RUNNING > RM1a st_remove.testLink : PASS > RM1r st_remove.testFile : RUNNING > RM1r st_remove.testFile : PASS > RM1f st_remove.testFifo : RUNNING > RM1f st_remove.testFifo : PASS > RM7 st_remove.testDots : RUNNING > RM7 st_remove.testDots : PASS > RM1d st_remove.testDir : RUNNING > RM1d st_remove.testDir : PASS > RM2s st_remove.testCfhSocket : RUNNING > RM2s st_remove.testCfhSocket : PASS > RM2a st_remove.testCfhLink : RUNNING > RM2a st_remove.testCfhLink : PASS > RM2r st_remove.testCfhFile : RUNNING > RM2r st_remove.testCfhFile : PASS > RM2f st_remove.testCfhFifo : RUNNING > RM2f st_remove.testCfhFifo : PASS > RLOWN1 st_releaselockowner.testFile : RUNNING > RLOWN1 st_releaselockowner.testFile : PASS > RDLK2s st_readlink.testSocket : RUNNING > RDLK2s st_readlink.testSocket : PASS > RDLK1 st_readlink.testReadlink : RUNNING > RDLK1 st_readlink.testReadlink : PASS > RDLK3 st_readlink.testNoFh : RUNNING > RDLK3 st_readlink.testNoFh : PASS > RDLK2r st_readlink.testFile : RUNNING > RDLK2r st_readlink.testFile : PASS > RDLK2f st_readlink.testFifo : RUNNING > RDLK2f st_readlink.testFifo : PASS > RDLK2d st_readlink.testDir : RUNNING > RDLK2d st_readlink.testDir : PASS > RDDR9 st_readdir.testWriteOnlyAttributes : RUNNING > RDDR9 st_readdir.testWriteOnlyAttributes : PASS > RDDR12 st_readdir.testUnaccessibleDirAttrs : RUNNING > RDDR12 st_readdir.testUnaccessibleDirAttrs : PASS > RDDR11 st_readdir.testUnaccessibleDir : RUNNING > RDDR11 st_readdir.testUnaccessibleDir : PASS > RDDR4 st_readdir.testSubsequent : RUNNING > RDDR4 st_readdir.testSubsequent : PASS > RDDR10 st_readdir.testReservedCookies : RUNNING > RDDR10 st_readdir.testReservedCookies : PASS > RDDR6 st_readdir.testNoFh : RUNNING > RDDR6 st_readdir.testNoFh : PASS > RDDR7 st_readdir.testMaxcountZero : RUNNING > RDDR7 st_readdir.testMaxcountZero : PASS > RDDR8 st_readdir.testMaxcountSmall : RUNNING > RDDR8 st_readdir.testMaxcountSmall : PASS > RDDR2 st_readdir.testFirst : RUNNING > RDDR2 st_readdir.testFirst : PASS > RDDR5s st_readdir.testFhSocket : RUNNING > RDDR5s st_readdir.testFhSocket : PASS > RDDR5a st_readdir.testFhLink : RUNNING > RDDR5a st_readdir.testFhLink : PASS > RDDR5r st_readdir.testFhFile : RUNNING > RDDR5r st_readdir.testFhFile : PASS > RDDR5f st_readdir.testFhFifo : RUNNING > RDDR5f st_readdir.testFhFifo : PASS > RDDR1 st_readdir.testEmptyDir : RUNNING > RDDR1 st_readdir.testEmptyDir : PASS > RDDR8b st_readdir.testDircountVarious : RUNNING > RDDR8b st_readdir.testDircountVarious : PASS > RDDR3 st_readdir.testAttr : RUNNING > RDDR3 st_readdir.testAttr : PASS > RD6 st_read.testZeroCount : RUNNING > RD6 st_read.testZeroCount : PASS > RD3 st_read.testWithOpen : RUNNING > RD3 st_read.testWithOpen : PASS > RD2 st_read.testStateidOnes : RUNNING > RD2 st_read.testStateidOnes : PASS > RD10 st_read.testStaleStateid : RUNNING > RD10 st_read.testStaleStateid : PASS > RD7s st_read.testSocket : RUNNING > RD7s st_read.testSocket : PASS > RD1 st_read.testSimpleRead : RUNNING > RD1 st_read.testSimpleRead : PASS > RD11 st_read.testOldStateid : RUNNING > RD11 st_read.testOldStateid : PASS > RD8 st_read.testNoFh : RUNNING > RD8 st_read.testNoFh : PASS > RD7a st_read.testLink : RUNNING > RD7a st_read.testLink : PASS > RD5 st_read.testLargeOffset : RUNNING > RD5 st_read.testLargeOffset : PASS > RD7f st_read.testFifo : RUNNING > RD7f st_read.testFifo : PASS > RD7d st_read.testDir : RUNNING > RD7d st_read.testDir : PASS > ROOT1 st_putrootfh.testSupported : RUNNING > ROOT1 st_putrootfh.testSupported : PASS > PUB1 st_putpubfh.testSupported : RUNNING > PUB1 st_putpubfh.testSupported : PASS > PUB2 st_putpubfh.testSameAsRoot : RUNNING > PUB2 st_putpubfh.testSameAsRoot : PASS > PUTFH1s st_putfh.testSocket : RUNNING > PUTFH1s st_putfh.testSocket : PASS > PUTFH1a st_putfh.testLink : RUNNING > PUTFH1a st_putfh.testLink : PASS > PUTFH1r st_putfh.testFile : RUNNING > PUTFH1r st_putfh.testFile : PASS > PUTFH1f st_putfh.testFifo : RUNNING > PUTFH1f st_putfh.testFifo : PASS > PUTFH1d st_putfh.testDir : RUNNING > PUTFH1d st_putfh.testDir : PASS > PUTFH2 st_putfh.testBadHandle : RUNNING > PUTFH2 st_putfh.testBadHandle : PASS > OPDG6 st_opendowngrade.testStaleStateid : RUNNING > OPDG6 st_opendowngrade.testStaleStateid : PASS > OPDG1 st_opendowngrade.testRegularOpen : RUNNING > OPDG1 st_opendowngrade.testRegularOpen : PASS > OPDG10 st_opendowngrade.testOpenDowngradeSequence : RUNNING > OPDG10 st_opendowngrade.testOpenDowngradeSequence : PASS > OPDG11 st_opendowngrade.testOpenDowngradeLock : RUNNING > OPDG11 st_opendowngrade.testOpenDowngradeLock : PASS > OPDG7 st_opendowngrade.testOldStateid : RUNNING > OPDG7 st_opendowngrade.testOldStateid : PASS > OPDG8 st_opendowngrade.testNoFh : RUNNING > OPDG8 st_opendowngrade.testNoFh : PASS > OPDG3 st_opendowngrade.testNewState2 : RUNNING > OPDG3 st_opendowngrade.testNewState2 : PASS > OPDG2 st_opendowngrade.testNewState1 : RUNNING > OPDG2 st_opendowngrade.testNewState1 : PASS > OPDG5 st_opendowngrade.testBadStateid : RUNNING > OPDG5 st_opendowngrade.testBadStateid : PASS > OPDG4 st_opendowngrade.testBadSeqid : RUNNING > OPDG4 st_opendowngrade.testBadSeqid : PASS > OPCF6 st_openconfirm.testStaleStateid : RUNNING > OPCF6 st_openconfirm.testStaleStateid : PASS > OPCF2 st_openconfirm.testNoFh : RUNNING > OPCF2 st_openconfirm.testNoFh : PASS > OPCF1 st_openconfirm.testConfirmCreate : RUNNING > OPCF1 st_openconfirm.testConfirmCreate : PASS > OPCF5 st_openconfirm.testBadStateid : RUNNING > OPCF5 st_openconfirm.testBadStateid : PASS > OPCF4 st_openconfirm.testBadSeqid : RUNNING > OPCF4 st_openconfirm.testBadSeqid : PASS > OPEN10 st_open.testZeroLenName : RUNNING > OPEN10 st_open.testZeroLenName : PASS > OPEN29 st_open.testUpgrades : RUNNING > OPEN29 st_open.testUpgrades : PASS > OPEN15 st_open.testUnsupportedAttributes : RUNNING > OPEN15 st_open.testUnsupportedAttributes : PASS > OPEN7s st_open.testSocket : RUNNING > OPEN7s st_open.testSocket : PASS > OPEN18 st_open.testShareConflict1 : RUNNING > OPEN18 st_open.testShareConflict1 : PASS > OPEN30 st_open.testReplay : RUNNING > OPEN30 st_open.testReplay : PASS > OPEN6 st_open.testOpenVaporFile : RUNNING > OPEN6 st_open.testOpenVaporFile : PASS > OPEN5 st_open.testOpenFile : RUNNING > OPEN5 st_open.testOpenFile : PASS > OPEN12 st_open.testNotDir : RUNNING > OPEN12 st_open.testNotDir : PASS > OPEN8 st_open.testNoFh : RUNNING > OPEN8 st_open.testNoFh : PASS > OPEN17 st_open.testModeChange : RUNNING > OPEN17 st_open.testModeChange : PASS > OPEN11 st_open.testLongName : RUNNING > OPEN11 st_open.testLongName : PASS > OPEN7a st_open.testLink : RUNNING > OPEN7a st_open.testLink : PASS > OPEN14 st_open.testInvalidAttrmask : RUNNING > OPEN14 st_open.testInvalidAttrmask : PASS > OPEN7f st_open.testFifo : RUNNING > OPEN7f st_open.testFifo : PASS > OPEN20 st_open.testFailedOpen : RUNNING > OPEN20 st_open.testFailedOpen : PASS > OPEN7d st_open.testDir : RUNNING > OPEN7d st_open.testDir : PASS > OPEN28 st_open.testDenyWrite4 : RUNNING > OPEN28 st_open.testDenyWrite4 : PASS > OPEN27 st_open.testDenyWrite3 : RUNNING > OPEN27 st_open.testDenyWrite3 : PASS > OPEN26 st_open.testDenyWrite2 : RUNNING > OPEN26 st_open.testDenyWrite2 : PASS > OPEN25 st_open.testDenyWrite1 : RUNNING > OPEN25 st_open.testDenyWrite1 : PASS > OPEN24 st_open.testDenyRead4 : RUNNING > OPEN24 st_open.testDenyRead4 : PASS > OPEN23b st_open.testDenyRead3a : RUNNING > OPEN23b st_open.testDenyRead3a : PASS > OPEN23 st_open.testDenyRead3 : RUNNING > OPEN23 st_open.testDenyRead3 : PASS > OPEN22 st_open.testDenyRead2 : RUNNING > OPEN22 st_open.testDenyRead2 : PASS > OPEN21 st_open.testDenyRead1 : RUNNING > OPEN21 st_open.testDenyRead1 : PASS > OPEN2 st_open.testCreateUncheckedFile : RUNNING > OPEN2 st_open.testCreateUncheckedFile : PASS > OPEN3 st_open.testCreatGuardedFile : RUNNING > OPEN3 st_open.testCreatGuardedFile : PASS > OPEN4 st_open.testCreatExclusiveFile : RUNNING > OPEN4 st_open.testCreatExclusiveFile : PASS > OPEN16 st_open.testClaimPrev : RUNNING > OPEN16 st_open.testClaimPrev : PASS > OPEN31 st_open.testBadSeqid : RUNNING > OPEN31 st_open.testBadSeqid : PASS > NVF5s st_nverify.testWriteOnlySocket : RUNNING > NVF5s st_nverify.testWriteOnlySocket : PASS > NVF5a st_nverify.testWriteOnlyLink : RUNNING > NVF5a st_nverify.testWriteOnlyLink : PASS > NVF5r st_nverify.testWriteOnlyFile : RUNNING > NVF5r st_nverify.testWriteOnlyFile : PASS > NVF5f st_nverify.testWriteOnlyFifo : RUNNING > NVF5f st_nverify.testWriteOnlyFifo : PASS > Traceback (most recent call last): > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > self.runtest(self, environment) > File "/root/pynfs/nfs4.0/servertests/st_locku.py", line 266, in testTimedoutUnlock > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > check_result(res, "Opening file %s" % _getname(owner, path)) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > raise BadCompoundRes(resop, res.status, msg) > nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > NVF5d st_nverify.testWriteOnlyDir : RUNNING > NVF5d st_nverify.testWriteOnlyDir : PASS > NVF7s st_nverify.testUnsupportedSocket : RUNNING > NVF7s st_nverify.testUnsupportedSocket : PASS > NVF7a st_nverify.testUnsupportedLink : RUNNING > NVF7a st_nverify.testUnsupportedLink : PASS > NVF7r st_nverify.testUnsupportedFile : RUNNING > NVF7r st_nverify.testUnsupportedFile : PASS > NVF7f st_nverify.testUnsupportedFifo : RUNNING > NVF7f st_nverify.testUnsupportedFifo : PASS > NVF7d st_nverify.testUnsupportedDir : RUNNING > NVF7d st_nverify.testUnsupportedDir : PASS > NVF2s st_nverify.testTypeSocket : RUNNING > NVF2s st_nverify.testTypeSocket : PASS > NVF2a st_nverify.testTypeLink : RUNNING > NVF2a st_nverify.testTypeLink : PASS > NVF2r st_nverify.testTypeFile : RUNNING > NVF2r st_nverify.testTypeFile : PASS > NVF2f st_nverify.testTypeFifo : RUNNING > NVF2f st_nverify.testTypeFifo : PASS > NVF2d st_nverify.testTypeDir : RUNNING > NVF2d st_nverify.testTypeDir : PASS > NVF4 st_nverify.testNoFh : RUNNING > NVF4 st_nverify.testNoFh : PASS > NVF1s st_nverify.testMandSocket : RUNNING > NVF1s st_nverify.testMandSocket : PASS > NVF1a st_nverify.testMandLink : RUNNING > NVF1a st_nverify.testMandLink : PASS > NVF1r st_nverify.testMandFile : RUNNING > NVF1r st_nverify.testMandFile : PASS > NVF1f st_nverify.testMandFifo : RUNNING > NVF1f st_nverify.testMandFifo : PASS > NVF1d st_nverify.testMandDir : RUNNING > NVF1d st_nverify.testMandDir : PASS > NVF3s st_nverify.testBadSizeSocket : RUNNING > NVF3s st_nverify.testBadSizeSocket : PASS > NVF3a st_nverify.testBadSizeLink : RUNNING > NVF3a st_nverify.testBadSizeLink : PASS > NVF3r st_nverify.testBadSizeFile : RUNNING > NVF3r st_nverify.testBadSizeFile : PASS > NVF3f st_nverify.testBadSizeFifo : RUNNING > NVF3f st_nverify.testBadSizeFifo : PASS > NVF3d st_nverify.testBadSizeDir : RUNNING > NVF3d st_nverify.testBadSizeDir : PASS > LOOKP2s st_lookupp.testSock : RUNNING > LOOKP2s st_lookupp.testSock : PASS > LOOKP4 st_lookupp.testNoFh : RUNNING > LOOKP4 st_lookupp.testNoFh : PASS > LOOKP2a st_lookupp.testLink : RUNNING > LOOKP2a st_lookupp.testLink : PASS > LOOKP2r st_lookupp.testFile : RUNNING > LOOKP2r st_lookupp.testFile : PASS > LOOKP2f st_lookupp.testFifo : RUNNING > LOOKP2f st_lookupp.testFifo : PASS > LOOKP1 st_lookupp.testDir : RUNNING > LOOKP1 st_lookupp.testDir : PASS > LOOKP3 st_lookupp.testAtRoot : RUNNING > LOOKP3 st_lookupp.testAtRoot : PASS > LOOK3 st_lookup.testZeroLength : RUNNING > LOOK3 st_lookup.testZeroLength : PASS > LOOK9 st_lookup.testUnaccessibleDir : RUNNING > LOOK9 st_lookup.testUnaccessibleDir : PASS > LOOK5a st_lookup.testSymlinkNotDir : RUNNING > LOOK5a st_lookup.testSymlinkNotDir : PASS > LOOK5s st_lookup.testSocketNotDir : RUNNING > LOOK5s st_lookup.testSocketNotDir : PASS > LOOK2 st_lookup.testNonExistent : RUNNING > LOOK2 st_lookup.testNonExistent : PASS > LOOK6 st_lookup.testNonAccessable : RUNNING > LOOK6 st_lookup.testNonAccessable : PASS > LOOK1 st_lookup.testNoFh : RUNNING > LOOK1 st_lookup.testNoFh : PASS > LOOK4 st_lookup.testLongName : RUNNING > LOOK4 st_lookup.testLongName : PASS > LOOK5r st_lookup.testFileNotDir : RUNNING > LOOK5r st_lookup.testFileNotDir : PASS > LOOK5f st_lookup.testFifoNotDir : RUNNING > LOOK5f st_lookup.testFifoNotDir : PASS > LOOK8 st_lookup.testDots : RUNNING > LOOK8 st_lookup.testDots : PASS > LOOK10 st_lookup.testBadOpaque : RUNNING > LOOK10 st_lookup.testBadOpaque : PASS > LKU3 st_locku.testZeroLen : RUNNING > LKU3 st_locku.testZeroLen : PASS > LKUNONE st_locku.testUnlocked : RUNNING > LKUNONE st_locku.testUnlocked : PASS > LKU10 st_locku.testTimedoutUnlock : RUNNING > Sleeping for 22 seconds: > Woke up > LKU10 st_locku.testTimedoutUnlock : FAILURE > nfs4lib.BadCompoundRes: Opening file b'LKU10-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > LKU9 st_locku.testStaleLockStateid : RUNNING > LKU9 st_locku.testStaleLockStateid : PASS > LKUSPLIT st_locku.testSplit : RUNNING > LKUSPLIT st_locku.testSplit : PASS > LKUOVER st_locku.testOverlap : RUNNING > LKUOVER st_locku.testOverlap : PASS > LKU7 st_locku.testOldLockStateid : RUNNING > LKU7 st_locku.testOldLockStateid : PASS > LKU5 st_locku.testNoFh : RUNNING > LKU5 st_locku.testNoFh : PASS > LKU4 st_locku.testLenTooLong : RUNNING > LKU4 st_locku.testLenTooLong : PASS > LOCK1 st_lock.testFile : RUNNING > LOCK1 st_lock.testFile : PASS > LKU1 st_locku.testFile : RUNNING > LKU1 st_locku.testFile : PASS > LKU8 st_locku.testBadLockStateid : RUNNING > LKU8 st_locku.testBadLockStateid : PASS > LKU6b st_locku.testBadLockSeqid2 : RUNNING > LKU6b st_locku.testBadLockSeqid2 : PASS > LKU6 st_locku.testBadLockSeqid : RUNNING > LKU6 st_locku.testBadLockSeqid : PASS > LOCKRNG st_lock.test32bitRange : RUNNING > LOCKRNG st_lock.test32bitRange : PASS > LKU2 st_locku.test32bitRange : RUNNING > LKU2 st_locku.test32bitRange : PASS > LKT6 st_lockt.testZeroLen : RUNNING > LKT6 st_lockt.testZeroLen : PASS > LKT1 st_lockt.testUnlockedFile : RUNNING > LKT1 st_lockt.testUnlockedFile : PASS > LKT9 st_lockt.testStaleClientid : RUNNING > LKT9 st_lockt.testStaleClientid : PASS > LKT2s st_lockt.testSocket : RUNNING > LKT2s st_lockt.testSocket : PASS > LKT4 st_lockt.testPartialLockedFile2 : RUNNING > LKT4 st_lockt.testPartialLockedFile2 : PASS > LKT3 st_lockt.testPartialLockedFile1 : RUNNING > LKT3 st_lockt.testPartialLockedFile1 : PASS > LKTOVER st_lockt.testOverlap : RUNNING > LKTOVER st_lockt.testOverlap : PASS > LKT8 st_lockt.testNoFh : RUNNING > LKT8 st_lockt.testNoFh : PASS > LKT2a st_lockt.testLink : RUNNING > LKT2a st_lockt.testLink : PASS > LKT7 st_lockt.testLenTooLong : RUNNING > LKT7 st_lockt.testLenTooLong : PASS > LKT2f st_lockt.testFifo : RUNNING > LKT2f st_lockt.testFifo : PASS > LKT2d st_lockt.testDir : RUNNING > LKT2d st_lockt.testDir : PASS > LKT5 st_lockt.test32bitRange : RUNNING > LKT5 st_lockt.test32bitRange : PASS > LOCK5 st_lock.testZeroLen : RUNNING > LOCK5 st_lock.testZeroLen : PASS > LOCKCHGU st_lock.testUpgrade : RUNNING > LOCKCHGU st_lock.testUpgrade : PASS > LOCK13 st_lock.testTimedoutGrabLock : RUNNING > Sleeping for 7 seconds: > Woke up > Sleeping for 7 seconds: > Woke up > Sleeping for 7 seconds: > Woke up > LOCK13 st_lock.testTimedoutGrabLock : PASS > LOCK12b st_lock.testStaleOpenStateid : RUNNING > LOCK12b st_lock.testStaleOpenStateid : PASS > LOCK12a st_lock.testStaleLockStateid : RUNNING > LOCK12a st_lock.testStaleLockStateid : PASS > LOCK10 st_lock.testStaleClientid : RUNNING > LOCK10 st_lock.testStaleClientid : PASS > LOCK17 st_lock.testReadLocks2 : RUNNING > LOCK17 st_lock.testReadLocks2 : PASS > LOCK16 st_lock.testReadLocks1 : RUNNING > LOCK16 st_lock.testReadLocks1 : PASS > LOCKMRG st_lock.testOverlap : RUNNING > LOCKMRG st_lock.testOverlap : PASS > LOCK23 st_lock.testOpenDowngradeLock : RUNNING > LOCK23 st_lock.testOpenDowngradeLock : PASS > LOCK9c st_lock.testOldOpenStateid2 : RUNNING > LOCK9c st_lock.testOldOpenStateid2 : PASS > LOCK9b st_lock.testOldOpenStateid : RUNNING > LOCK9b st_lock.testOldOpenStateid : PASS > LOCK9a st_lock.testOldLockStateid : RUNNING > LOCK9a st_lock.testOldLockStateid : PASS > LOCK7 st_lock.testNoFh : RUNNING > LOCK7 st_lock.testNoFh : PASS > LOCK4 st_lock.testMode : RUNNING > LOCK4 st_lock.testMode : PASS > LOCK6 st_lock.testLenTooLong : RUNNING > LOCK6 st_lock.testLenTooLong : PASS > LOCK15 st_lock.testGrabLock2 : RUNNING > LOCK15 st_lock.testGrabLock2 : PASS > LOCK14 st_lock.testGrabLock1 : RUNNING > LOCK14 st_lock.testGrabLock1 : PASS > LOCK3 st_lock.testExistingFile : RUNNING > LOCK3 st_lock.testExistingFile : PASS > LOCKCHGD st_lock.testDowngrade : RUNNING > LOCKCHGD st_lock.testDowngrade : PASS > LOCKHELD st_lock.testClose : RUNNING > LOCKHELD st_lock.testClose : PASS > LOCK20 st_lock.testBlockTimeout : RUNNING > Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > Woke up > Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > Woke up > Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > Woke up > LOCK20 st_lock.testBlockTimeout : PASS > LOCK11 st_lock.testBadStateid : RUNNING > LOCK11 st_lock.testBadStateid : PASS > LOCK8b st_lock.testBadOpenSeqid : RUNNING > LOCK8b st_lock.testBadOpenSeqid : PASS > LOCK8a st_lock.testBadLockSeqid : RUNNING > LOCK8a st_lock.testBadLockSeqid : PASS > LINK6 st_link.testZeroLenName : RUNNING > LINK6 st_link.testZeroLenName : PASS > LINK1s st_link.testSocket : RUNNING > LINK1s st_link.testSocket : PASS > LINK2 st_link.testNoSfh : RUNNING > LINK2 st_link.testNoSfh : PASS > LINK3 st_link.testNoCfh : RUNNING > LINK3 st_link.testNoCfh : PASS > LINK7 st_link.testLongName : RUNNING > LINK7 st_link.testLongName : PASS > LINK1a st_link.testLink : RUNNING > LINK1a st_link.testLink : PASS > LINK1r st_link.testFile : RUNNING > LINK1r st_link.testFile : PASS > LINK1f st_link.testFifo : RUNNING > LINK1f st_link.testFifo : PASS > LINK5 st_link.testExists : RUNNING > LINK5 st_link.testExists : PASS > LINK9 st_link.testDots : RUNNING > LINK9 st_link.testDots : PASS > LINK1d st_link.testDir : RUNNING > LINK1d st_link.testDir : PASS > LINK4s st_link.testCfhSocket : RUNNING > LINK4s st_link.testCfhSocket : PASS > LINK4a st_link.testCfhLink : RUNNING > LINK4a st_link.testCfhLink : PASS > LINK4r st_link.testCfhFile : RUNNING > LINK4r st_link.testCfhFile : PASS > LINK4f st_link.testCfhFifo : RUNNING > LINK4f st_link.testCfhFifo : PASS > GF1s st_getfh.testSocket : RUNNING > GF1s st_getfh.testSocket : PASS > GF9 st_getfh.testNoFh : RUNNING > GF9 st_getfh.testNoFh : PASS > GF1a st_getfh.testLink : RUNNING > GF1a st_getfh.testLink : PASS > GF1r st_getfh.testFile : RUNNING > GF1r st_getfh.testFile : PASS > GF1f st_getfh.testFifo : RUNNING > GF1f st_getfh.testFifo : PASS > GF1d st_getfh.testDir : RUNNING > GF1d st_getfh.testDir : PASS > GATT3s st_getattr.testWriteOnlySocket : RUNNING > GATT3s st_getattr.testWriteOnlySocket : PASS > GATT3a st_getattr.testWriteOnlyLink : RUNNING > GATT3a st_getattr.testWriteOnlyLink : PASS > GATT3r st_getattr.testWriteOnlyFile : RUNNING > GATT3r st_getattr.testWriteOnlyFile : PASS > GATT3f st_getattr.testWriteOnlyFifo : RUNNING > GATT3f st_getattr.testWriteOnlyFifo : PASS > GATT3d st_getattr.testWriteOnlyDir : RUNNING > GATT3d st_getattr.testWriteOnlyDir : PASS > GATT4s st_getattr.testUnknownAttrSocket : RUNNING > GATT4s st_getattr.testUnknownAttrSocket : PASS > GATT4a st_getattr.testUnknownAttrLink : RUNNING > GATT4a st_getattr.testUnknownAttrLink : PASS > GATT4r st_getattr.testUnknownAttrFile : RUNNING > GATT4r st_getattr.testUnknownAttrFile : PASS > GATT4f st_getattr.testUnknownAttrFifo : RUNNING > GATT4f st_getattr.testUnknownAttrFifo : PASS > GATT4d st_getattr.testUnknownAttrDir : RUNNING > GATT4d st_getattr.testUnknownAttrDir : PASS > GATT6s st_getattr.testSupportedSocket : RUNNING > GATT6s st_getattr.testSupportedSocket : PASS > GATT6a st_getattr.testSupportedLink : RUNNING > GATT6a st_getattr.testSupportedLink : PASS > GATT6r st_getattr.testSupportedFile : RUNNING > GATT6r st_getattr.testSupportedFile : PASS > GATT6f st_getattr.testSupportedFifo : RUNNING > GATT6f st_getattr.testSupportedFifo : PASS > GATT6d st_getattr.testSupportedDir : RUNNING > GATT6d st_getattr.testSupportedDir : PASS > GATT10 st_getattr.testOwnerName : RUNNING > GATT10 st_getattr.testOwnerName : PASS > GATT2 st_getattr.testNoFh : RUNNING > GATT2 st_getattr.testNoFh : PASS > GATT1s st_getattr.testMandSocket : RUNNING > GATT1s st_getattr.testMandSocket : PASS > GATT1a st_getattr.testMandLink : RUNNING > GATT1a st_getattr.testMandLink : PASS > GATT1r st_getattr.testMandFile : RUNNING > GATT1r st_getattr.testMandFile : PASS > GATT1f st_getattr.testMandFifo : RUNNING > GATT1f st_getattr.testMandFifo : PASS > GATT1d st_getattr.testMandDir : RUNNING > GATT1d st_getattr.testMandDir : PASS > GATT9 st_getattr.testLotsofGetattrsFile : RUNNING > GATT9 st_getattr.testLotsofGetattrsFile : PASS > GATT7s st_getattr.testLongSocket : RUNNING > GATT7s st_getattr.testLongSocket : PASS > GATT7a st_getattr.testLongLink : RUNNING > GATT7a st_getattr.testLongLink : PASS > GATT7r st_getattr.testLongFile : RUNNING > GATT7r st_getattr.testLongFile : PASS > GATT7f st_getattr.testLongFifo : RUNNING > GATT7f st_getattr.testLongFifo : PASS > GATT7d st_getattr.testLongDir : RUNNING > GATT7d st_getattr.testLongDir : PASS > GATT8 st_getattr.testFSLocations : RUNNING > GATT8 st_getattr.testFSLocations : PASS > GATT5s st_getattr.testEmptySocket : RUNNING > GATT5s st_getattr.testEmptySocket : PASS > GATT5a st_getattr.testEmptyLink : RUNNING > GATT5a st_getattr.testEmptyLink : PASS > GATT5r st_getattr.testEmptyFile : RUNNING > GATT5r st_getattr.testEmptyFile : PASS > GATT5f st_getattr.testEmptyFifo : RUNNING > GATT5f st_getattr.testEmptyFifo : PASS > GATT5d st_getattr.testEmptyDir : RUNNING > GATT5d st_getattr.testEmptyDir : PASS > CR9a st_create.testZeroLengthForLNK : RUNNING > CR9a st_create.testZeroLengthForLNK : PASS > CR9 st_create.testZeroLength : RUNNING > CR9 st_create.testZeroLength : PASS > CR12 st_create.testUnsupportedAttributes : RUNNING > CR12 st_create.testUnsupportedAttributes : PASS > CR14 st_create.testSlash : RUNNING > CR14 st_create.testSlash : PASS > CR10 st_create.testRegularFile : RUNNING > CR10 st_create.testRegularFile : PASS > CR8 st_create.testNoFh : RUNNING > CR8 st_create.testNoFh : PASS > CR15 st_create.testLongName : RUNNING > CR15 st_create.testLongName : PASS > CR11 st_create.testInvalidAttrmask : RUNNING > CR11 st_create.testInvalidAttrmask : PASS > CR13 st_create.testDots : RUNNING > CR13 st_create.testDots : PASS > CR5 st_create.testDirOffSocket : RUNNING > CR5 st_create.testDirOffSocket : PASS > CR2 st_create.testDirOffLink : RUNNING > Traceback (most recent call last): > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > self.runtest(self, environment) > File "/root/pynfs/nfs4.0/servertests/st_close.py", line 142, in testTimedoutClose2 > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > check_result(res, "Opening file %s" % _getname(owner, path)) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > raise BadCompoundRes(resop, res.status, msg) > nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > Traceback (most recent call last): > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > self.runtest(self, environment) > File "/root/pynfs/nfs4.0/servertests/st_close.py", line 118, in testTimedoutClose1 > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > check_result(res, "Opening file %s" % _getname(owner, path)) > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > raise BadCompoundRes(resop, res.status, msg) > nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > CR2 st_create.testDirOffLink : PASS > CR7 st_create.testDirOffFile : RUNNING > CR7 st_create.testDirOffFile : PASS > CR6 st_create.testDirOffFIFO : RUNNING > CR6 st_create.testDirOffFIFO : PASS > COMP1 st_compound.testZeroOps : RUNNING > COMP1 st_compound.testZeroOps : PASS > COMP5 st_compound.testUndefined : RUNNING > COMP5 st_compound.testUndefined : PASS > COMP6 st_compound.testLongCompound : RUNNING > COMP6 st_compound.testLongCompound : PASS > COMP4 st_compound.testInvalidMinor : RUNNING > COMP4 st_compound.testInvalidMinor : PASS > COMP2 st_compound.testGoodTag : RUNNING > COMP2 st_compound.testGoodTag : PASS > CMT2s st_commit.testSocket : RUNNING > CMT2s st_commit.testSocket : PASS > CMT3 st_commit.testNoFh : RUNNING > CMT3 st_commit.testNoFh : PASS > CMT2a st_commit.testLink : RUNNING > CMT2a st_commit.testLink : PASS > CMT2f st_commit.testFifo : RUNNING > CMT2f st_commit.testFifo : PASS > CMT2d st_commit.testDir : RUNNING > CMT2d st_commit.testDir : PASS > CMT4 st_commit.testCommitOverflow : RUNNING > CMT4 st_commit.testCommitOverflow : PASS > CMT1d st_commit.testCommitOffsetMax2 : RUNNING > CMT1d st_commit.testCommitOffsetMax2 : PASS > CMT1c st_commit.testCommitOffsetMax1 : RUNNING > CMT1c st_commit.testCommitOffsetMax1 : PASS > CMT1b st_commit.testCommitOffset1 : RUNNING > CMT1b st_commit.testCommitOffset1 : PASS > CMT1aa st_commit.testCommitOffset0 : RUNNING > CMT1aa st_commit.testCommitOffset0 : PASS > CMT1f st_commit.testCommitCountMax : RUNNING > CMT1f st_commit.testCommitCountMax : PASS > CMT1e st_commit.testCommitCount1 : RUNNING > CMT1e st_commit.testCommitCount1 : PASS > CLOSE9 st_close.testTimedoutClose2 : RUNNING > Sleeping for 30 seconds: > Woke up > CLOSE9 st_close.testTimedoutClose2 : FAILURE > nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > CLOSE8 st_close.testTimedoutClose1 : RUNNING > Sleeping for 30 seconds: > Woke up > CLOSE8 st_close.testTimedoutClose1 : FAILURE > nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > CLOSE6 st_close.testStaleStateid : RUNNING > CLOSE6 st_close.testStaleStateid : PASS > CLOSE12 st_close.testReplaySeqid2 : RUNNING > CLOSE12 st_close.testReplaySeqid2 : PASS > CLOSE10 st_close.testReplaySeqid1 : RUNNING > CLOSE10 st_close.testReplaySeqid1 : PASS > CLOSE5 st_close.testOldStateid : RUNNING > CLOSE5 st_close.testOldStateid : PASS > CLOSE7 st_close.testNoCfh : RUNNING > CLOSE7 st_close.testNoCfh : PASS > CLOSE11 st_close.testNextSeqid : RUNNING > CLOSE11 st_close.testNextSeqid : PASS > CLOSE2 st_close.testCloseOpen : RUNNING > CLOSE2 st_close.testCloseOpen : PASS > CLOSE1 st_close.testCloseCreate : RUNNING > CLOSE1 st_close.testCloseCreate : PASS > CLOSE4 st_close.testBadStateid : RUNNING > CLOSE4 st_close.testBadStateid : PASS > CLOSE3 st_close.testBadSeqid : RUNNING > CLOSE3 st_close.testBadSeqid : PASS > ACL0 st_acl.testACLsupport : RUNNING > ACL0 st_acl.testACLsupport : PASS > ACL10 st_acl.testLargeACL : RUNNING > ACL10 st_acl.testLargeACL : PASS > ACL5 st_acl.testACL : RUNNING > ACL5 st_acl.testACL : PASS > ACC1s st_access.testReadSocket : RUNNING > ACC1s st_access.testReadSocket : PASS > ACC1a st_access.testReadLink : RUNNING > ACC1a st_access.testReadLink : PASS > ACC1r st_access.testReadFile : RUNNING > ACC1r st_access.testReadFile : PASS > ACC1f st_access.testReadFifo : RUNNING > ACC1f st_access.testReadFifo : PASS > ACC1d st_access.testReadDir : RUNNING > ACC1d st_access.testReadDir : PASS > ACC3 st_access.testNoFh : RUNNING > ACC3 st_access.testNoFh : PASS > ACC4s st_access.testInvalidsSocket : RUNNING > ACC4s st_access.testInvalidsSocket : PASS > ACC4a st_access.testInvalidsLink : RUNNING > ACC4a st_access.testInvalidsLink : PASS > ACC4r st_access.testInvalidsFile : RUNNING > ACC4r st_access.testInvalidsFile : PASS > ACC4f st_access.testInvalidsFifo : RUNNING > ACC4f st_access.testInvalidsFifo : PASS > ACC4d st_access.testInvalidsDir : RUNNING > ACC4d st_access.testInvalidsDir : PASS > ACC2s st_access.testAllSocket : RUNNING > ACC2s st_access.testAllSocket : PASS > ACC2a st_access.testAllLink : RUNNING > ACC2a st_access.testAllLink : PASS > ACC2r st_access.testAllFile : RUNNING > ACC2r st_access.testAllFile : PASS > ACC2f st_access.testAllFifo : RUNNING > ACC2f st_access.testAllFifo : PASS > ACC2d st_access.testAllDir : RUNNING > ACC2d st_access.testAllDir : PASS > ************************************************** > RENEW3 st_renew.testExpired : FAILURE > nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > LKU10 st_locku.testTimedoutUnlock : FAILURE > nfs4lib.BadCompoundRes: Opening file b'LKU10-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > CLOSE9 st_close.testTimedoutClose2 : FAILURE > nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > CLOSE8 st_close.testTimedoutClose1 : FAILURE > nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': > operation OP_OPEN should return NFS4_OK, instead got > NFS4ERR_DELAY > ************************************************** > Command line asked for 526 of 673 tests > Of those: 7 Skipped, 4 Failed, 0 Warned, 515 Passed > root pynfs tests: > MKCHAR st_create.testChar : RUNNING > MKCHAR st_create.testChar : PASS > WRT6c st_write.testChar : RUNNING > WRT6c st_write.testChar : PASS > MKBLK st_create.testBlock : RUNNING > MKBLK st_create.testBlock : PASS > WRT6b st_write.testBlock : RUNNING > WRT6b st_write.testBlock : PASS > LOOKCHAR st_lookup.testChar : RUNNING > LOOKCHAR st_lookup.testChar : PASS > VF5c st_verify.testWriteOnlyChar : RUNNING > VF5c st_verify.testWriteOnlyChar : PASS > LOOKBLK st_lookup.testBlock : RUNNING > LOOKBLK st_lookup.testBlock : PASS > VF5b st_verify.testWriteOnlyBlock : RUNNING > VF5b st_verify.testWriteOnlyBlock : PASS > VF7c st_verify.testUnsupportedChar : RUNNING > VF7c st_verify.testUnsupportedChar : PASS > VF7b st_verify.testUnsupportedBlock : RUNNING > VF7b st_verify.testUnsupportedBlock : PASS > VF2c st_verify.testTypeChar : RUNNING > VF2c st_verify.testTypeChar : PASS > VF2b st_verify.testTypeBlock : RUNNING > VF2b st_verify.testTypeBlock : PASS > VF1c st_verify.testMandChar : RUNNING > VF1c st_verify.testMandChar : PASS > VF1b st_verify.testMandBlock : RUNNING > VF1b st_verify.testMandBlock : PASS > VF3c st_verify.testBadSizeChar : RUNNING > VF3c st_verify.testBadSizeChar : PASS > VF3b st_verify.testBadSizeBlock : RUNNING > VF3b st_verify.testBadSizeBlock : PASS > SATT11c st_setattr.testUnsupportedChar : RUNNING > SATT11c st_setattr.testUnsupportedChar : PASS > SATT11b st_setattr.testUnsupportedBlock : RUNNING > SATT11b st_setattr.testUnsupportedBlock : PASS > SATT12c st_setattr.testSizeChar : RUNNING > SATT12c st_setattr.testSizeChar : PASS > SATT12b st_setattr.testSizeBlock : RUNNING > SATT12b st_setattr.testSizeBlock : PASS > MKDIR st_create.testDir : RUNNING > MKDIR st_create.testDir : PASS > SATT6d st_setattr.testReadonlyDir : RUNNING > SATT6d st_setattr.testReadonlyDir : PASS > SATT6c st_setattr.testReadonlyChar : RUNNING > SATT6c st_setattr.testReadonlyChar : PASS > SATT6b st_setattr.testReadonlyBlock : RUNNING > SATT6b st_setattr.testReadonlyBlock : PASS > MODE st_setattr.testMode : RUNNING > MODE st_setattr.testMode : PASS > SATT1c st_setattr.testChar : RUNNING > SATT1c st_setattr.testChar : PASS > SATT1b st_setattr.testBlock : RUNNING > SATT1b st_setattr.testBlock : PASS > SVFH2c st_restorefh.testValidChar : RUNNING > SVFH2c st_restorefh.testValidChar : PASS > SVFH2b st_restorefh.testValidBlock : RUNNING > SVFH2b st_restorefh.testValidBlock : PASS > RNM1c st_rename.testValidChar : RUNNING > RNM1c st_rename.testValidChar : PASS > RNM1b st_rename.testValidBlock : RUNNING > RNM1b st_rename.testValidBlock : PASS > RNM2c st_rename.testSfhChar : RUNNING > RNM2c st_rename.testSfhChar : PASS > RNM2b st_rename.testSfhBlock : RUNNING > RNM2b st_rename.testSfhBlock : PASS > RNM3c st_rename.testCfhChar : RUNNING > RNM3c st_rename.testCfhChar : PASS > RNM3b st_rename.testCfhBlock : RUNNING > RNM3b st_rename.testCfhBlock : PASS > RM1c st_remove.testChar : RUNNING > RM1c st_remove.testChar : PASS > RM2c st_remove.testCfhChar : RUNNING > RM2c st_remove.testCfhChar : PASS > RM2b st_remove.testCfhBlock : RUNNING > RM2b st_remove.testCfhBlock : PASS > RM1b st_remove.testBlock : RUNNING > RM1b st_remove.testBlock : PASS > RDLK2c st_readlink.testChar : RUNNING > RDLK2c st_readlink.testChar : PASS > RDLK2b st_readlink.testBlock : RUNNING > RDLK2b st_readlink.testBlock : PASS > RDDR5c st_readdir.testFhChar : RUNNING > RDDR5c st_readdir.testFhChar : PASS > RDDR5b st_readdir.testFhBlock : RUNNING > RDDR5b st_readdir.testFhBlock : PASS > RD7c st_read.testChar : RUNNING > RD7c st_read.testChar : PASS > RD7b st_read.testBlock : RUNNING > RD7b st_read.testBlock : PASS > PUTFH1c st_putfh.testChar : RUNNING > PUTFH1c st_putfh.testChar : PASS > PUTFH1b st_putfh.testBlock : RUNNING > PUTFH1b st_putfh.testBlock : PASS > INIT st_setclientid.testValid : RUNNING > INIT st_setclientid.testValid : PASS > OPEN7c st_open.testChar : RUNNING > OPEN7c st_open.testChar : PASS > OPEN7b st_open.testBlock : RUNNING > OPEN7b st_open.testBlock : PASS > NVF5c st_nverify.testWriteOnlyChar : RUNNING > NVF5c st_nverify.testWriteOnlyChar : PASS > NVF5b st_nverify.testWriteOnlyBlock : RUNNING > NVF5b st_nverify.testWriteOnlyBlock : PASS > NVF7c st_nverify.testUnsupportedChar : RUNNING > NVF7c st_nverify.testUnsupportedChar : PASS > NVF7b st_nverify.testUnsupportedBlock : RUNNING > NVF7b st_nverify.testUnsupportedBlock : PASS > NVF2c st_nverify.testTypeChar : RUNNING > NVF2c st_nverify.testTypeChar : PASS > NVF2b st_nverify.testTypeBlock : RUNNING > NVF2b st_nverify.testTypeBlock : PASS > NVF1c st_nverify.testMandChar : RUNNING > NVF1c st_nverify.testMandChar : PASS > NVF1b st_nverify.testMandBlock : RUNNING > NVF1b st_nverify.testMandBlock : PASS > NVF3c st_nverify.testBadSizeChar : RUNNING > NVF3c st_nverify.testBadSizeChar : PASS > NVF3b st_nverify.testBadSizeBlock : RUNNING > NVF3b st_nverify.testBadSizeBlock : PASS > LOOKP2c st_lookupp.testChar : RUNNING > LOOKP2c st_lookupp.testChar : PASS > LOOKP2b st_lookupp.testBlock : RUNNING > LOOKP2b st_lookupp.testBlock : PASS > LOOK5c st_lookup.testCharNotDir : RUNNING > LOOK5c st_lookup.testCharNotDir : PASS > LOOK5b st_lookup.testBlockNotDir : RUNNING > LOOK5b st_lookup.testBlockNotDir : PASS > LKT2c st_lockt.testChar : RUNNING > LKT2c st_lockt.testChar : PASS > LKT2b st_lockt.testBlock : RUNNING > LKT2b st_lockt.testBlock : PASS > LINKS st_link.testSupported : RUNNING > LINKS st_link.testSupported : PASS > LINK1c st_link.testChar : RUNNING > LINK1c st_link.testChar : PASS > LOOKFILE st_lookup.testFile : RUNNING > LOOKFILE st_lookup.testFile : PASS > LINK4c st_link.testCfhChar : RUNNING > LINK4c st_link.testCfhChar : PASS > LINK4b st_link.testCfhBlock : RUNNING > LINK4b st_link.testCfhBlock : PASS > LINK1b st_link.testBlock : RUNNING > LINK1b st_link.testBlock : PASS > GF1c st_getfh.testChar : RUNNING > GF1c st_getfh.testChar : PASS > GF1b st_getfh.testBlock : RUNNING > GF1b st_getfh.testBlock : PASS > GATT3c st_getattr.testWriteOnlyChar : RUNNING > GATT3c st_getattr.testWriteOnlyChar : PASS > GATT3b st_getattr.testWriteOnlyBlock : RUNNING > GATT3b st_getattr.testWriteOnlyBlock : PASS > GATT4c st_getattr.testUnknownAttrChar : RUNNING > GATT4c st_getattr.testUnknownAttrChar : PASS > GATT4b st_getattr.testUnknownAttrBlock : RUNNING > GATT4b st_getattr.testUnknownAttrBlock : PASS > GATT6c st_getattr.testSupportedChar : RUNNING > GATT6c st_getattr.testSupportedChar : PASS > GATT6b st_getattr.testSupportedBlock : RUNNING > GATT6b st_getattr.testSupportedBlock : PASS > GATT1c st_getattr.testMandChar : RUNNING > GATT1c st_getattr.testMandChar : PASS > GATT1b st_getattr.testMandBlock : RUNNING > GATT1b st_getattr.testMandBlock : PASS > GATT7c st_getattr.testLongChar : RUNNING > GATT7c st_getattr.testLongChar : PASS > GATT7b st_getattr.testLongBlock : RUNNING > GATT7b st_getattr.testLongBlock : PASS > GATT5c st_getattr.testEmptyChar : RUNNING > GATT5c st_getattr.testEmptyChar : PASS > GATT5b st_getattr.testEmptyBlock : RUNNING > GATT5b st_getattr.testEmptyBlock : PASS > CR4 st_create.testDirOffChar : RUNNING > CR4 st_create.testDirOffChar : PASS > CR3 st_create.testDirOffBlock : RUNNING > CR3 st_create.testDirOffBlock : PASS > CMT2c st_commit.testChar : RUNNING > CMT2c st_commit.testChar : PASS > CMT2b st_commit.testBlock : RUNNING > CMT2b st_commit.testBlock : PASS > ACC1c st_access.testReadChar : RUNNING > ACC1c st_access.testReadChar : PASS > ACC1b st_access.testReadBlock : RUNNING > ACC1b st_access.testReadBlock : PASS > ACC4c st_access.testInvalidsChar : RUNNING > ACC4c st_access.testInvalidsChar : PASS > ACC4b st_access.testInvalidsBlock : RUNNING > ACC4b st_access.testInvalidsBlock : PASS > ACC2c st_access.testAllChar : RUNNING > ACC2c st_access.testAllChar : PASS > ACC2b st_access.testAllBlock : RUNNING > ACC2b st_access.testAllBlock : PASS > ************************************************** > ************************************************** > Command line asked for 96 of 673 tests > Of those: 0 Skipped, 0 Failed, 0 Warned, 96 Passed > INFO :rpc.poll:got connection from ('127.0.0.1', 51342), assigned to fd=5 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Created client to test1.fieldses.org, 2049 > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=17, name=b'socket', attrs={}), entry4(cookie=19, name=b'fifo', attrs={}), entry4(cookie=21, name=b'link', attrs={}), entry4(cookie=24, name=b'block', attrs={}), entry4(cookie=26, name=b'char', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [] > INFO :test.env:client 1 creates file OK > > INFO :test.env:client 2 open file OK > > INFO :test.env:force lease to expire... > > INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > INFO :test.env:Woke up > INFO :test.env:3rd client open OK - PASSED > > INFO :test.env:client 1 creates file OK > > INFO :test.env:force lease to expire... > > INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > INFO :test.env:Woke up > INFO :test.env:2nd client open OK - PASSED > > INFO :test.env:2nd client open OK - PASSED > > INFO :test.env:local open conflict detected - PASSED > > INFO :test.env:2nd client open conflict detected - PASSED > > INFO :test.env:force lease to expire... > > INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > INFO :test.env:Woke up > INFO :test.env:3nd client opened OK - no conflict detected - PASSED > > INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > WARNING:test.env:server took approximately 13 seconds to lift grace after all clients reclaimed > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Sleeping for 10 seconds: Delaying start of reclaim > INFO :test.env:Woke up > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > WARNING:test.env:server took approximately 14 seconds to lift grace after all clients reclaimed > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :rpc.poll:Closing 6 > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 6 generated by another thread > INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > INFO :test.env:Woke up > COUR6 st_courtesy.testShareReservationDB03 : RUNNING > COUR6 st_courtesy.testShareReservationDB03 : PASS > COUR5 st_courtesy.testShareReservationDB02 : RUNNING > COUR5 st_courtesy.testShareReservationDB02 : PASS > COUR4 st_courtesy.testShareReservationDB01 : RUNNING > COUR4 st_courtesy.testShareReservationDB01 : PASS > COUR3 st_courtesy.testShareReservation00 : RUNNING > COUR3 st_courtesy.testShareReservation00 : PASS > COUR2 st_courtesy.testLockSleepLock : RUNNING > COUR2 st_courtesy.testLockSleepLock : PASS > CSID3 st_current_stateid.testOpenWriteClose : RUNNING > CSID3 st_current_stateid.testOpenWriteClose : PASS > CSID8 st_current_stateid.testOpenSetattr : RUNNING > CSID8 st_current_stateid.testOpenSetattr : PASS > CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : RUNNING > CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : PASS > CSID5 st_current_stateid.testOpenLookupClose : RUNNING > CSID5 st_current_stateid.testOpenLookupClose : PASS > CSID9 st_current_stateid.testOpenFreestateidClose : RUNNING > CSID9 st_current_stateid.testOpenFreestateidClose : PASS > CSID1 st_current_stateid.testOpenAndClose : RUNNING > CSID1 st_current_stateid.testOpenAndClose : PASS > CSID4 st_current_stateid.testLockWriteLocku : RUNNING > CSID4 st_current_stateid.testLockWriteLocku : PASS > CSID2 st_current_stateid.testLockLockU : RUNNING > CSID2 st_current_stateid.testLockLockU : PASS > CSID6 st_current_stateid.testCloseNoStateid : RUNNING > CSID6 st_current_stateid.testCloseNoStateid : PASS > REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : RUNNING > REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : PASS > REBT2b st_reboot.testRebootWithManyManyClients : RUNNING > REBT2b st_reboot.testRebootWithManyManyClients : PASS > REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : RUNNING > REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : PASS > REBT2a st_reboot.testRebootWithManyClients : RUNNING > REBT2a st_reboot.testRebootWithManyClients : PASS > REBT5 st_reboot.testRebootWithLateReclaim : RUNNING > REBT5 st_reboot.testRebootWithLateReclaim : PASS > REBT1 st_reboot.testRebootValid : RUNNING > REBT1 st_reboot.testRebootValid : PASS > REBT3b st_reboot.testDoubleRebootWithManyManyClients : RUNNING > REBT3b st_reboot.testDoubleRebootWithManyManyClients : PASS > REBT3a st_reboot.testDoubleRebootWithManyClients : RUNNING > REBT3a st_reboot.testDoubleRebootWithManyClients : PASS > PUTFH1s st_putfh.testSocket : RUNNING > PUTFH1s st_putfh.testSocket : PASS > PUTFH1a st_putfh.testLink : RUNNING > PUTFH1a st_putfh.testLink : PASS > PUTFH1r st_putfh.testFile : RUNNING > PUTFH1r st_putfh.testFile : PASS > PUTFH1f st_putfh.testFifo : RUNNING > PUTFH1f st_putfh.testFifo : PASS > PUTFH1d st_putfh.testDir : RUNNING > PUTFH1d st_putfh.testDir : PASS > PUTFH2 st_putfh.testBadHandle : RUNNING > PUTFH2 st_putfh.testBadHandle : PASS > RNM6 st_rename.testZeroLengthOldname : RUNNING > RNM6 st_rename.testZeroLengthOldname : PASS > RNM7 st_rename.testZeroLengthNewname : RUNNING > RNM7 st_rename.testZeroLengthNewname : PASS > RNM1s st_rename.testValidSocket : RUNNING > RNM1s st_rename.testValidSocket : PASS > RNM1a st_rename.testValidLink : RUNNING > RNM1a st_rename.testValidLink : PASS > RNM1r st_rename.testValidFile : RUNNING > RNM1r st_rename.testValidFile : PASS > RNM1f st_rename.testValidFifo : RUNNING > RNM1f st_rename.testValidFifo : PASS > RNM1d st_rename.testValidDir : RUNNING > RNM1d st_rename.testValidDir : PASS > RNM2s st_rename.testSfhSocket : RUNNING > RNM2s st_rename.testSfhSocket : PASS > RNM2a st_rename.testSfhLink : RUNNING > RNM2a st_rename.testSfhLink : PASS > RNM2r st_rename.testSfhFile : RUNNING > RNM2r st_rename.testSfhFile : PASS > RNM2f st_rename.testSfhFifo : RUNNING > RNM2f st_rename.testSfhFifo : PASS > RNM19 st_rename.testSelfRenameFile : RUNNING > RNM19 st_rename.testSelfRenameFile : PASS > RNM18 st_rename.testSelfRenameDir : RUNNING > RNM18 st_rename.testSelfRenameDir : PASS > RNM5 st_rename.testNonExistent : RUNNING > RNM5 st_rename.testNonExistent : PASS > RNM4 st_rename.testNoSfh : RUNNING > RNM4 st_rename.testNoSfh : PASS > RNM20 st_rename.testLinkRename : RUNNING > RNM20 st_rename.testLinkRename : PASS > RNM17 st_rename.testFileToFullDir : RUNNING > RNM17 st_rename.testFileToFullDir : PASS > RNM15 st_rename.testFileToFile : RUNNING > RNM15 st_rename.testFileToFile : PASS > RNM14 st_rename.testFileToDir : RUNNING > RNM14 st_rename.testFileToDir : PASS > RNM10 st_rename.testDotsOldname : RUNNING > RNM10 st_rename.testDotsOldname : PASS > RNM11 st_rename.testDotsNewname : RUNNING > RNM11 st_rename.testDotsNewname : PASS > RNM12 st_rename.testDirToObj : RUNNING > RNM12 st_rename.testDirToObj : PASS > RNM16 st_rename.testDirToFullDir : RUNNING > RNM16 st_rename.testDirToFullDir : PASS > RNM13 st_rename.testDirToDir : RUNNING > RNM13 st_rename.testDirToDir : PASS > RNM3s st_rename.testCfhSocket : RUNNING > RNM3s st_rename.testCfhSocket : PASS > RNM3a st_rename.testCfhLink : RUNNING > RNM3a st_rename.testCfhLink : PASS > RNM3r st_rename.testCfhFile : RUNNING > INFO :nfs.client.cb:******************** > INFO :nfs.client.cb:Handling COMPOUND > INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > INFO :nfs.client.cb:In CB_SEQUENCE > INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > INFO :nfs.client.cb:In CB_RECALL > INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9cWSo[\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > INFO :test.env:Sleeping for 0 seconds: > INFO :test.env:Woke up > INFO :nfs.client.cb:******************** > INFO :nfs.client.cb:Handling COMPOUND > INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > INFO :nfs.client.cb:In CB_SEQUENCE > INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > INFO :nfs.client.cb:In CB_RECALL > INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9eWSo]\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > INFO :test.env:Sleeping for 0 seconds: > INFO :test.env:Woke up > INFO :nfs.client.cb:******************** > INFO :nfs.client.cb:Handling COMPOUND > INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > INFO :nfs.client.cb:In CB_SEQUENCE > INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > INFO :nfs.client.cb:In CB_RECALL > INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa1WSo`\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > INFO :nfs.client.cb:******************** > INFO :nfs.client.cb:Handling COMPOUND > INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > INFO :nfs.client.cb:In CB_SEQUENCE > INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > INFO :nfs.client.cb:In CB_RECALL > INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa3WSob\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > INFO :test.env:Sleeping for 0 seconds: > INFO :test.env:Woke up > INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > INFO :rpc.poll:Adding 8 generated by another thread > RNM3r st_rename.testCfhFile : PASS > RNM3f st_rename.testCfhFifo : RUNNING > RNM3f st_rename.testCfhFifo : PASS > LKPP1s st_lookupp.testSock : RUNNING > LKPP1s st_lookupp.testSock : PASS > LKPP3 st_lookupp.testNoFH : RUNNING > LKPP3 st_lookupp.testNoFH : PASS > LKPP2 st_lookupp.testLookuppRoot : RUNNING > LKPP2 st_lookupp.testLookuppRoot : PASS > LKPP1a st_lookupp.testLink : RUNNING > LKPP1a st_lookupp.testLink : PASS > LKPP1r st_lookupp.testFile : RUNNING > LKPP1r st_lookupp.testFile : PASS > LKPP1f st_lookupp.testFifo : RUNNING > LKPP1f st_lookupp.testFifo : PASS > VF1r st_verify.testMandFile : RUNNING > VF1r st_verify.testMandFile : PASS > DELEG9 st_delegation.testWriteOpenvsReadDeleg : RUNNING > DELEG9 st_delegation.testWriteOpenvsReadDeleg : PASS > DELEG23 st_delegation.testServerSelfConflict3 : RUNNING > __create_file_with_deleg: b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1eX\xc5%' open_delegation4(delegation_type=OPEN_DELEGATE_READ, read=open_read_delegation4(stateid=stateid4(seqid=1, other=b'<\x0b\xdfa\x9cWSo\x02\x00\x00\x00'), recall=False, permissions=nfsace4(type=0, flag=0, access_mask=0, who=b''))) > open_file res: COMPOUND4res(status=NFS4_OK, tag=b'environment.py:open_create_file', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_OPEN, opopen=OPEN4res(status=NFS4_OK, resok4=OPEN4resok(stateid=stateid4(seqid=2, other=b'<\x0b\xdfa\x9cWSo\x01\x00\x00\x00'), cinfo=change_info4(atomic=False, before=1763091998602434224, after=1737777748740145092), rflags=36, attrset=0, delegation=open_delegation4(delegation_type=OPEN_DELEGATE_NONE_EXT, od_whynone=open_none_delegation4(ond_why=WND4_NOT_WANTED))))), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4_OK, resok4=GETFH4resok(object=b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1e > X\xc5%')))]) > DELEG23 st_delegation.testServerSelfConflict3 : PASS > DELEG1 st_delegation.testReadDeleg : RUNNING > DELEG1 st_delegation.testReadDeleg : PASS > DELEG4 st_delegation.testNoDeleg : RUNNING > DELEG4 st_delegation.testNoDeleg : PASS > DELEG8 st_delegation.testDelegRevocation : RUNNING > DELEG8 st_delegation.testDelegRevocation : PASS > DELEG6 st_delegation.testCBSecParmsNull : RUNNING > DELEG6 st_delegation.testCBSecParmsNull : PASS > OPEN1 st_open.testSupported : RUNNING > OPEN1 st_open.testSupported : PASS > OPEN2 st_open.testServerStateSeqid : RUNNING > OPEN2 st_open.testServerStateSeqid : PASS > OPEN30 st_open.testReadWrite : RUNNING > OPEN30 st_open.testReadWrite : PASS > OPEN7 st_open.testOPENClaimFH : RUNNING > OPEN7 st_open.testOPENClaimFH : PASS > OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : RUNNING > OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : PASS > OPEN8 st_open.testCloseWithZeroSeqid : RUNNING > OPEN8 st_open.testCloseWithZeroSeqid : PASS > OPEN31 st_open.testAnonReadWrite : RUNNING > OPEN31 st_open.testAnonReadWrite : PASS > TRUNK2 st_trunking.testUseTwoSessions : RUNNING > TRUNK2 st_trunking.testUseTwoSessions : PASS > TRUNK1 st_trunking.testTwoSessions : RUNNING > TRUNK1 st_trunking.testTwoSessions : PASS > SEQ7 st_sequence.testTooManyOps : RUNNING > SEQ7 st_sequence.testTooManyOps : PASS > SEQ1 st_sequence.testSupported : RUNNING > SEQ1 st_sequence.testSupported : PASS > SEQ12 st_sequence.testSessionidSequenceidSlotid : RUNNING > SEQ12 st_sequence.testSessionidSequenceidSlotid : PASS > SEQ6 st_sequence.testRequestTooBig : RUNNING > SEQ6 st_sequence.testRequestTooBig : PASS > SEQ10b st_sequence.testReplayCache007 : RUNNING > SEQ10b st_sequence.testReplayCache007 : PASS > SEQ9f st_sequence.testReplayCache006 : RUNNING > SEQ9f st_sequence.testReplayCache006 : PASS > SEQ9e st_sequence.testReplayCache005 : RUNNING > SEQ9e st_sequence.testReplayCache005 : PASS > SEQ9d st_sequence.testReplayCache004 : RUNNING > SEQ9d st_sequence.testReplayCache004 : PASS > SEQ9c st_sequence.testReplayCache003 : RUNNING > SEQ9c st_sequence.testReplayCache003 : PASS > SEQ9b st_sequence.testReplayCache002 : RUNNING > SEQ9b st_sequence.testReplayCache002 : PASS > SEQ9a st_sequence.testReplayCache001 : RUNNING > SEQ9a st_sequence.testReplayCache001 : PASS > SEQ11 st_sequence.testOpNotInSession : RUNNING > SEQ11 st_sequence.testOpNotInSession : PASS > SEQ2 st_sequence.testNotFirst : RUNNING > SEQ2 st_sequence.testNotFirst : PASS > SEQ4 st_sequence.testImplicitBind : RUNNING > SEQ4 st_sequence.testImplicitBind : PASS > SEQ8 st_sequence.testBadSlot : RUNNING > SEQ8 st_sequence.testBadSlot : PASS > SEQ5 st_sequence.testBadSession : RUNNING > SEQ5 st_sequence.testBadSession : PASS > SEQ13 st_sequence.testBadSequenceidAtSlot : RUNNING > SEQ13 st_sequence.testBadSequenceidAtSlot : PASS > SEC2 st_secinfo.testSupported2 : RUNNING > SEC2 st_secinfo.testSupported2 : PASS > SEC1 st_secinfo.testSupported : RUNNING > SEC1 st_secinfo.testSupported : PASS > SECNN4 st_secinfo_no_name.testSupported4 : RUNNING > SECNN4 st_secinfo_no_name.testSupported4 : PASS > SECNN3 st_secinfo_no_name.testSupported3 : RUNNING > SECNN3 st_secinfo_no_name.testSupported3 : PASS > SECNN2 st_secinfo_no_name.testSupported2 : RUNNING > COMPOUND4res(status=NFS4ERR_NOFILEHANDLE, tag=b'st_secinfo_no_name.py:testSupported2', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_SECINFO_NO_NAME, opsecinfo_no_name=SECINFO4res(status=NFS4_OK, resok4=[secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_NONE)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_INTEGRITY)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_PRIVACY)), secinfo4(flavor=1)])), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4ERR_NOFILEHANDLE))]) > SECNN2 st_secinfo_no_name.testSupported2 : PASS > SECNN1 st_secinfo_no_name.testSupported : RUNNING > SECNN1 st_secinfo_no_name.testSupported : PASS > RECC1 st_reclaim_complete.testSupported : RUNNING > RECC1 st_reclaim_complete.testSupported : PASS > RECC2 st_reclaim_complete.testReclaimAfterRECC : RUNNING > RECC2 st_reclaim_complete.testReclaimAfterRECC : PASS > RECC3 st_reclaim_complete.testOpenBeforeRECC : RUNNING > RECC3 st_reclaim_complete.testOpenBeforeRECC : PASS > RECC4 st_reclaim_complete.testDoubleRECC : RUNNING > RECC4 st_reclaim_complete.testDoubleRECC : PASS > DESCID1 st_destroy_clientid.testSupported : RUNNING > DESCID1 st_destroy_clientid.testSupported : PASS > DESCID2 st_destroy_clientid.testDestroyCIDWS : RUNNING > DESCID2 st_destroy_clientid.testDestroyCIDWS : PASS > DESCID8 st_destroy_clientid.testDestroyCIDTwice : RUNNING > DESCID8 st_destroy_clientid.testDestroyCIDTwice : PASS > DESCID5 st_destroy_clientid.testDestroyCIDSessionB : RUNNING > DESCID5 st_destroy_clientid.testDestroyCIDSessionB : PASS > DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : RUNNING > DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : PASS > DESCID6 st_destroy_clientid.testDestroyCIDCSession : RUNNING > DESCID6 st_destroy_clientid.testDestroyCIDCSession : PASS > DESCID3 st_destroy_clientid.testDestroyBadCIDWS : RUNNING > DESCID3 st_destroy_clientid.testDestroyBadCIDWS : PASS > DESCID4 st_destroy_clientid.testDestroyBadCIDIS : RUNNING > DESCID4 st_destroy_clientid.testDestroyBadCIDIS : PASS > CSESS28 st_create_session.testTooSmallMaxReq : RUNNING > CSESS28 st_create_session.testTooSmallMaxReq : PASS > CSESS25 st_create_session.testTooSmallMaxRS : RUNNING > CSESS25 st_create_session.testTooSmallMaxRS : PASS > CSESS2b st_create_session.testSupported2b : RUNNING > CSESS2b st_create_session.testSupported2b : PASS > CSESS2 st_create_session.testSupported2 : RUNNING > CSESS2 st_create_session.testSupported2 : PASS > CSESS1 st_create_session.testSupported1 : RUNNING > CSESS1 st_create_session.testSupported1 : PASS > CSESS9 st_create_session.testPrincipalCollision1 : RUNNING > CSESS9 st_create_session.testPrincipalCollision1 : PASS > CSESS6 st_create_session.testReplay2 : RUNNING > CSESS6 st_create_session.testReplay2 : PASS > CSESS5b st_create_session.testReplay1b : RUNNING > CSESS5b st_create_session.testReplay1b : PASS > CSESS5a st_create_session.testReplay1a : RUNNING > CSESS5a st_create_session.testReplay1a : PASS > CSESS5 st_create_session.testReplay1 : RUNNING > CSESS5 st_create_session.testReplay1 : PASS > CSESS27 st_create_session.testRepTooBigToCache : RUNNING > CSESS27 st_create_session.testRepTooBigToCache : PASS > CSESS26 st_create_session.testRepTooBig : RUNNING > [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19] > CSESS26 st_create_session.testRepTooBig : PASS > CSESS19 st_create_session.testRdmaArray2 : RUNNING > COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_create_session.py:testRdmaArray2', resarray=[nfs_resop4(resop=OP_CREATE_SESSION, opcreate_session=CREATE_SESSION4res(csr_status=NFS4ERR_BADXDR))]) > CSESS19 st_create_session.testRdmaArray2 : PASS > CSESS18 st_create_session.testRdmaArray1 : RUNNING > CSESS18 st_create_session.testRdmaArray1 : PASS > CSESS17 st_create_session.testRdmaArray0 : RUNNING > CSESS17 st_create_session.testRdmaArray0 : PASS > CSESS10 st_create_session.testPrincipalCollision2 : RUNNING > CSESS10 st_create_session.testPrincipalCollision2 : PASS > CSESS23 st_create_session.testNotOnlyOp : RUNNING > CSESS23 st_create_session.testNotOnlyOp : PASS > CSESS3 st_create_session.testNoExchange : RUNNING > CSESS3 st_create_session.testNoExchange : PASS > CSESS22 st_create_session.testMaxreqs : RUNNING > CSESS22 st_create_session.testMaxreqs : PASS > CSESS200 st_create_session.testManyClients : RUNNING > CSESS200 st_create_session.testManyClients : PASS > CSESS29 st_create_session.testDRCMemLeak : RUNNING > CSESS29 st_create_session.testDRCMemLeak : PASS > CSESS24 st_create_session.testCsr_sequence : RUNNING > CSESS24 st_create_session.testCsr_sequence : PASS > CSESS4 st_create_session.testContrivedReplay : RUNNING > CSESS4 st_create_session.testContrivedReplay : PASS > CSESS16a st_create_session.testCbSecParmsDec : RUNNING > CSESS16a st_create_session.testCbSecParmsDec : PASS > CSESS16 st_create_session.testCbSecParms : RUNNING > CSESS16 st_create_session.testCbSecParms : PASS > CSESS8 st_create_session.testBadSeqnum2 : RUNNING > CSESS8 st_create_session.testBadSeqnum2 : PASS > CSESS7 st_create_session.testBadSeqnum1 : RUNNING > CSESS7 st_create_session.testBadSeqnum1 : PASS > CSESS15 st_create_session.testBadFlag : RUNNING > CSESS15 st_create_session.testBadFlag : PASS > COMP1 st_compound.testZeroOps : RUNNING > COMP1 st_compound.testZeroOps : PASS > COMP5 st_compound.testUndefined : RUNNING > COMP5 st_compound.testUndefined : PASS > COMP4b st_compound.testInvalidMinor2 : RUNNING > COMP4b st_compound.testInvalidMinor2 : PASS > COMP4a st_compound.testInvalidMinor : RUNNING > COMP4a st_compound.testInvalidMinor : PASS > COMP2 st_compound.testGoodTag : RUNNING > COMP2 st_compound.testGoodTag : PASS > EID6 st_exchange_id.testUpdateNonexistant : RUNNING > EID6 st_exchange_id.testUpdateNonexistant : PASS > EID6h st_exchange_id.testUpdate111 : RUNNING > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=16, name=b'COUR6_1642007029', attrs={}), entry4(cookie=20, name=b'COUR5_1642007029', attrs={}), entry4(cookie=24, name=b'COUR4_1642007029', attrs={}), entry4(cookie=28, name=b'COUR3_1642007029', attrs={}), entry4(cookie=32, name=b'COUR2_1642007029', attrs={}), entry4(cookie=36, name=b'CSID3_1642007029', attrs={}), entry4(cookie=40, name=b'CSID8_1642007029', attrs={}), entry4(cookie=44, name=b'CSID10_1642007029', attrs={}), entry4(cookie=48, name=b'CSID5_1642007029', attrs={}), entry4(cookie=52, name=b'CSID9_1642007029', attrs={}), entry4(cookie=56, name=b'CSID1_1642007029', attrs={}), entry4(cookie=60, name=b'CSID4_1642007029', attrs={}), entry4(cookie=64, name=b'CSID2_1642007029', attrs={}), entry4(cookie=68, name=b'CSID6_1642007029', attrs={}), entry4(cookie=74, name=b'owner_REBT4b_1642007029_client_0', attrs={}), entry4(cookie=80, name=b'owner_REBT4b_1642007029_client_1', attrs={}), entry4(cookie=86, name=b'owner_REBT4b_1642007029_cli > ent_2', attrs={}), entry4(cookie=92, name=b'owner_REBT4b_1642007029_client_3', attrs={}), entry4(cookie=98, name=b'owner_REBT4b_1642007029_client_4', attrs={}), entry4(cookie=104, name=b'owner_REBT4b_1642007029_client_5', attrs={}), entry4(cookie=110, name=b'owner_REBT4b_1642007029_client_6', attrs={}), entry4(cookie=116, name=b'owner_REBT4b_1642007029_client_7', attrs={}), entry4(cookie=122, name=b'owner_REBT4b_1642007029_client_8', attrs={}), entry4(cookie=128, name=b'owner_REBT4b_1642007029_client_9', attrs={}), entry4(cookie=134, name=b'owner_REBT4b_1642007029_client_10', attrs={}), entry4(cookie=140, name=b'owner_REBT4b_1642007029_client_11', attrs={}), entry4(cookie=146, name=b'owner_REBT4b_1642007029_client_12', attrs={}), entry4(cookie=152, name=b'owner_REBT4b_1642007029_client_13', attrs={}), entry4(cookie=158, name=b'owner_REBT4b_1642007029_client_14', attrs={}), entry4(cookie=164, name=b'owner_REBT4b_1642007029_client_15', attrs={}), entry4(cookie=170, name=b'owner_REBT4b > _1642007029_client_16', attrs={}), entry4(cookie=176, name=b'owner_REBT4b_1642007029_client_17', attrs={}), entry4(cookie=182, name=b'owner_REBT4b_1642007029_client_18', attrs={}), entry4(cookie=188, name=b'owner_REBT4b_1642007029_client_19', attrs={}), entry4(cookie=194, name=b'owner_REBT4b_1642007029_client_20', attrs={}), entry4(cookie=200, name=b'owner_REBT4b_1642007029_client_21', attrs={}), entry4(cookie=206, name=b'owner_REBT4b_1642007029_client_22', attrs={}), entry4(cookie=212, name=b'owner_REBT4b_1642007029_client_23', attrs={}), entry4(cookie=218, name=b'owner_REBT4b_1642007029_client_24', attrs={}), entry4(cookie=224, name=b'owner_REBT4b_1642007029_client_25', attrs={}), entry4(cookie=230, name=b'owner_REBT4b_1642007029_client_26', attrs={}), entry4(cookie=236, name=b'owner_REBT4b_1642007029_client_27', attrs={}), entry4(cookie=242, name=b'owner_REBT4b_1642007029_client_28', attrs={}), entry4(cookie=248, name=b'owner_REBT4b_1642007029_client_29', attrs={}), entry4(cookie > =254, name=b'owner_REBT4b_1642007029_client_30', attrs={}), entry4(cookie=260, name=b'owner_REBT4b_1642007029_client_31', attrs={}), entry4(cookie=266, name=b'owner_REBT4b_1642007029_client_32', attrs={}), entry4(cookie=272, name=b'owner_REBT4b_1642007029_client_33', attrs={}), entry4(cookie=278, name=b'owner_REBT4b_1642007029_client_34', attrs={}), entry4(cookie=284, name=b'owner_REBT4b_1642007029_client_35', attrs={}), entry4(cookie=290, name=b'owner_REBT4b_1642007029_client_36', attrs={}), entry4(cookie=296, name=b'owner_REBT4b_1642007029_client_37', attrs={}), entry4(cookie=302, name=b'owner_REBT4b_1642007029_client_38', attrs={}), entry4(cookie=308, name=b'owner_REBT4b_1642007029_client_39', attrs={}), entry4(cookie=314, name=b'owner_REBT4b_1642007029_client_40', attrs={}), entry4(cookie=320, name=b'owner_REBT4b_1642007029_client_41', attrs={}), entry4(cookie=326, name=b'owner_REBT4b_1642007029_client_42', attrs={}), entry4(cookie=332, name=b'owner_REBT4b_1642007029_client_43', > attrs={}), entry4(cookie=338, name=b'owner_REBT4b_1642007029_client_44', attrs={}), entry4(cookie=344, name=b'owner_REBT4b_1642007029_client_45', attrs={}), entry4(cookie=350, name=b'owner_REBT4b_1642007029_client_46', attrs={}), entry4(cookie=356, name=b'owner_REBT4b_1642007029_client_47', attrs={}), entry4(cookie=362, name=b'owner_REBT4b_1642007029_client_48', attrs={}), entry4(cookie=368, name=b'owner_REBT4b_1642007029_client_49', attrs={}), entry4(cookie=374, name=b'owner_REBT4b_1642007029_client_50', attrs={}), entry4(cookie=380, name=b'owner_REBT4b_1642007029_client_51', attrs={}), entry4(cookie=386, name=b'owner_REBT4b_1642007029_client_52', attrs={}), entry4(cookie=392, name=b'owner_REBT4b_1642007029_client_53', attrs={}), entry4(cookie=398, name=b'owner_REBT4b_1642007029_client_54', attrs={}), entry4(cookie=404, name=b'owner_REBT4b_1642007029_client_55', attrs={}), entry4(cookie=410, name=b'owner_REBT4b_1642007029_client_56', attrs={}), entry4(cookie=416, name=b'owner_REBT > 4b_1642007029_client_57', attrs={}), entry4(cookie=422, name=b'owner_REBT4b_1642007029_client_58', attrs={}), entry4(cookie=428, name=b'owner_REBT4b_1642007029_client_59', attrs={}), entry4(cookie=434, name=b'owner_REBT4b_1642007029_client_60', attrs={}), entry4(cookie=440, name=b'owner_REBT4b_1642007029_client_61', attrs={}), entry4(cookie=446, name=b'owner_REBT4b_1642007029_client_62', attrs={}), entry4(cookie=452, name=b'owner_REBT4b_1642007029_client_63', attrs={}), entry4(cookie=458, name=b'owner_REBT4b_1642007029_client_64', attrs={}), entry4(cookie=464, name=b'owner_REBT4b_1642007029_client_65', attrs={}), entry4(cookie=470, name=b'owner_REBT4b_1642007029_client_66', attrs={}), entry4(cookie=476, name=b'owner_REBT4b_1642007029_client_67', attrs={}), entry4(cookie=482, name=b'owner_REBT4b_1642007029_client_68', attrs={}), entry4(cookie=488, name=b'owner_REBT4b_1642007029_client_69', attrs={}), entry4(cookie=494, name=b'owner_REBT4b_1642007029_client_70', attrs={}), entry4(cook > ie=500, name=b'owner_REBT4b_1642007029_client_71', attrs={}), entry4(cookie=506, name=b'owner_REBT4b_1642007029_client_72', attrs={}), entry4(cookie=520, name=b'owner_REBT4b_1642007029_client_73', attrs={}), entry4(cookie=526, name=b'owner_REBT4b_1642007029_client_74', attrs={}), entry4(cookie=532, name=b'owner_REBT4b_1642007029_client_75', attrs={}), entry4(cookie=538, name=b'owner_REBT4b_1642007029_client_76', attrs={}), entry4(cookie=544, name=b'owner_REBT4b_1642007029_client_77', attrs={}), entry4(cookie=550, name=b'owner_REBT4b_1642007029_client_78', attrs={}), entry4(cookie=556, name=b'owner_REBT4b_1642007029_client_79', attrs={}), entry4(cookie=562, name=b'owner_REBT4b_1642007029_client_80', attrs={}), entry4(cookie=568, name=b'owner_REBT4b_1642007029_client_81', attrs={}), entry4(cookie=574, name=b'owner_REBT4b_1642007029_client_82', attrs={}), entry4(cookie=580, name=b'owner_REBT4b_1642007029_client_83', attrs={}), entry4(cookie=586, name=b'owner_REBT4b_1642007029_client_84 > ', attrs={}), entry4(cookie=592, name=b'owner_REBT4b_1642007029_client_85', attrs={}), entry4(cookie=598, name=b'owner_REBT4b_1642007029_client_86', attrs={}), entry4(cookie=604, name=b'owner_REBT4b_1642007029_client_87', attrs={}), entry4(cookie=610, name=b'owner_REBT4b_1642007029_client_88', attrs={}), entry4(cookie=616, name=b'owner_REBT4b_1642007029_client_89', attrs={}), entry4(cookie=622, name=b'owner_REBT4b_1642007029_client_90', attrs={}), entry4(cookie=628, name=b'owner_REBT4b_1642007029_client_91', attrs={}), entry4(cookie=634, name=b'owner_REBT4b_1642007029_client_92', attrs={}), entry4(cookie=640, name=b'owner_REBT4b_1642007029_client_93', attrs={}), entry4(cookie=646, name=b'owner_REBT4b_1642007029_client_94', attrs={}), entry4(cookie=652, name=b'owner_REBT4b_1642007029_client_95', attrs={}), entry4(cookie=658, name=b'owner_REBT4b_1642007029_client_96', attrs={}), entry4(cookie=664, name=b'owner_REBT4b_1642007029_client_97', attrs={}), entry4(cookie=670, name=b'owner_RE > BT4b_1642007029_client_98', attrs={}), entry4(cookie=676, name=b'owner_REBT4b_1642007029_client_99', attrs={}), entry4(cookie=682, name=b'owner_REBT2b_1642007029_client_0', attrs={}), entry4(cookie=688, name=b'owner_REBT2b_1642007029_client_1', attrs={}), entry4(cookie=694, name=b'owner_REBT2b_1642007029_client_2', attrs={}), entry4(cookie=700, name=b'owner_REBT2b_1642007029_client_3', attrs={}), entry4(cookie=706, name=b'owner_REBT2b_1642007029_client_4', attrs={}), entry4(cookie=712, name=b'owner_REBT2b_1642007029_client_5', attrs={}), entry4(cookie=718, name=b'owner_REBT2b_1642007029_client_6', attrs={}), entry4(cookie=724, name=b'owner_REBT2b_1642007029_client_7', attrs={}), entry4(cookie=730, name=b'owner_REBT2b_1642007029_client_8', attrs={}), entry4(cookie=736, name=b'owner_REBT2b_1642007029_client_9', attrs={}), entry4(cookie=742, name=b'owner_REBT2b_1642007029_client_10', attrs={}), entry4(cookie=748, name=b'owner_REBT2b_1642007029_client_11', attrs={}), entry4(cookie=754, > name=b'owner_REBT2b_1642007029_client_12', attrs={}), entry4(cookie=760, name=b'owner_REBT2b_1642007029_client_13', attrs={}), entry4(cookie=766, name=b'owner_REBT2b_1642007029_client_14', attrs={}), entry4(cookie=772, name=b'owner_REBT2b_1642007029_client_15', attrs={}), entry4(cookie=778, name=b'owner_REBT2b_1642007029_client_16', attrs={}), entry4(cookie=784, name=b'owner_REBT2b_1642007029_client_17', attrs={}), entry4(cookie=790, name=b'owner_REBT2b_1642007029_client_18', attrs={}), entry4(cookie=796, name=b'owner_REBT2b_1642007029_client_19', attrs={}), entry4(cookie=802, name=b'owner_REBT2b_1642007029_client_20', attrs={}), entry4(cookie=808, name=b'owner_REBT2b_1642007029_client_21', attrs={}), entry4(cookie=814, name=b'owner_REBT2b_1642007029_client_22', attrs={}), entry4(cookie=820, name=b'owner_REBT2b_1642007029_client_23', attrs={}), entry4(cookie=826, name=b'owner_REBT2b_1642007029_client_24', attrs={}), entry4(cookie=832, name=b'owner_REBT2b_1642007029_client_25', attrs > ={}), entry4(cookie=838, name=b'owner_REBT2b_1642007029_client_26', attrs={}), entry4(cookie=844, name=b'owner_REBT2b_1642007029_client_27', attrs={}), entry4(cookie=850, name=b'owner_REBT2b_1642007029_client_28', attrs={}), entry4(cookie=856, name=b'owner_REBT2b_1642007029_client_29', attrs={}), entry4(cookie=862, name=b'owner_REBT2b_1642007029_client_30', attrs={}), entry4(cookie=868, name=b'owner_REBT2b_1642007029_client_31', attrs={}), entry4(cookie=874, name=b'owner_REBT2b_1642007029_client_32', attrs={}), entry4(cookie=880, name=b'owner_REBT2b_1642007029_client_33', attrs={}), entry4(cookie=886, name=b'owner_REBT2b_1642007029_client_34', attrs={}), entry4(cookie=892, name=b'owner_REBT2b_1642007029_client_35', attrs={}), entry4(cookie=898, name=b'owner_REBT2b_1642007029_client_36', attrs={}), entry4(cookie=904, name=b'owner_REBT2b_1642007029_client_37', attrs={}), entry4(cookie=910, name=b'owner_REBT2b_1642007029_client_38', attrs={}), entry4(cookie=916, name=b'owner_REBT2b_164 > 2007029_client_39', attrs={}), entry4(cookie=922, name=b'owner_REBT2b_1642007029_client_40', attrs={}), entry4(cookie=928, name=b'owner_REBT2b_1642007029_client_41', attrs={}), entry4(cookie=934, name=b'owner_REBT2b_1642007029_client_42', attrs={}), entry4(cookie=940, name=b'owner_REBT2b_1642007029_client_43', attrs={}), entry4(cookie=946, name=b'owner_REBT2b_1642007029_client_44', attrs={}), entry4(cookie=952, name=b'owner_REBT2b_1642007029_client_45', attrs={}), entry4(cookie=958, name=b'owner_REBT2b_1642007029_client_46', attrs={}), entry4(cookie=964, name=b'owner_REBT2b_1642007029_client_47', attrs={}), entry4(cookie=970, name=b'owner_REBT2b_1642007029_client_48', attrs={}), entry4(cookie=976, name=b'owner_REBT2b_1642007029_client_49', attrs={}), entry4(cookie=982, name=b'owner_REBT2b_1642007029_client_50', attrs={}), entry4(cookie=988, name=b'owner_REBT2b_1642007029_client_51', attrs={}), entry4(cookie=994, name=b'owner_REBT2b_1642007029_client_52', attrs={}), entry4(cookie=100 > 0, name=b'owner_REBT2b_1642007029_client_53', attrs={}), entry4(cookie=1006, name=b'owner_REBT2b_1642007029_client_54', attrs={}), entry4(cookie=1012, name=b'owner_REBT2b_1642007029_client_55', attrs={}), entry4(cookie=1018, name=b'owner_REBT2b_1642007029_client_56', attrs={}), entry4(cookie=1032, name=b'owner_REBT2b_1642007029_client_57', attrs={}), entry4(cookie=1038, name=b'owner_REBT2b_1642007029_client_58', attrs={}), entry4(cookie=1044, name=b'owner_REBT2b_1642007029_client_59', attrs={}), entry4(cookie=1050, name=b'owner_REBT2b_1642007029_client_60', attrs={}), entry4(cookie=1056, name=b'owner_REBT2b_1642007029_client_61', attrs={}), entry4(cookie=1062, name=b'owner_REBT2b_1642007029_client_62', attrs={}), entry4(cookie=1068, name=b'owner_REBT2b_1642007029_client_63', attrs={}), entry4(cookie=1074, name=b'owner_REBT2b_1642007029_client_64', attrs={}), entry4(cookie=1080, name=b'owner_REBT2b_1642007029_client_65', attrs={}), entry4(cookie=1086, name=b'owner_REBT2b_1642007029_c > lient_66', attrs={}), entry4(cookie=1092, name=b'owner_REBT2b_1642007029_client_67', attrs={}), entry4(cookie=1098, name=b'owner_REBT2b_1642007029_client_68', attrs={}), entry4(cookie=1104, name=b'owner_REBT2b_1642007029_client_69', attrs={}), entry4(cookie=1110, name=b'owner_REBT2b_1642007029_client_70', attrs={}), entry4(cookie=1116, name=b'owner_REBT2b_1642007029_client_71', attrs={}), entry4(cookie=1122, name=b'owner_REBT2b_1642007029_client_72', attrs={}), entry4(cookie=1128, name=b'owner_REBT2b_1642007029_client_73', attrs={}), entry4(cookie=1134, name=b'owner_REBT2b_1642007029_client_74', attrs={}), entry4(cookie=1140, name=b'owner_REBT2b_1642007029_client_75', attrs={}), entry4(cookie=1146, name=b'owner_REBT2b_1642007029_client_76', attrs={}), entry4(cookie=1152, name=b'owner_REBT2b_1642007029_client_77', attrs={}), entry4(cookie=1158, name=b'owner_REBT2b_1642007029_client_78', attrs={}), entry4(cookie=1164, name=b'owner_REBT2b_1642007029_client_79', attrs={}), entry4(cookie > =1170, name=b'owner_REBT2b_1642007029_client_80', attrs={}), entry4(cookie=1176, name=b'owner_REBT2b_1642007029_client_81', attrs={}), entry4(cookie=1182, name=b'owner_REBT2b_1642007029_client_82', attrs={}), entry4(cookie=1188, name=b'owner_REBT2b_1642007029_client_83', attrs={}), entry4(cookie=1194, name=b'owner_REBT2b_1642007029_client_84', attrs={}), entry4(cookie=1200, name=b'owner_REBT2b_1642007029_client_85', attrs={}), entry4(cookie=1206, name=b'owner_REBT2b_1642007029_client_86', attrs={}), entry4(cookie=1212, name=b'owner_REBT2b_1642007029_client_87', attrs={}), entry4(cookie=1218, name=b'owner_REBT2b_1642007029_client_88', attrs={}), entry4(cookie=1224, name=b'owner_REBT2b_1642007029_client_89', attrs={}), entry4(cookie=1230, name=b'owner_REBT2b_1642007029_client_90', attrs={}), entry4(cookie=1236, name=b'owner_REBT2b_1642007029_client_91', attrs={}), entry4(cookie=1242, name=b'owner_REBT2b_1642007029_client_92', attrs={}), entry4(cookie=1248, name=b'owner_REBT2b_16420070 > 29_client_93', attrs={}), entry4(cookie=1254, name=b'owner_REBT2b_1642007029_client_94', attrs={}), entry4(cookie=1260, name=b'owner_REBT2b_1642007029_client_95', attrs={}), entry4(cookie=1266, name=b'owner_REBT2b_1642007029_client_96', attrs={}), entry4(cookie=1272, name=b'owner_REBT2b_1642007029_client_97', attrs={}), entry4(cookie=1278, name=b'owner_REBT2b_1642007029_client_98', attrs={}), entry4(cookie=1284, name=b'owner_REBT2b_1642007029_client_99', attrs={}), entry4(cookie=1290, name=b'owner_REBT4a_1642007029_client_0', attrs={}), entry4(cookie=1296, name=b'owner_REBT4a_1642007029_client_1', attrs={}), entry4(cookie=1302, name=b'owner_REBT4a_1642007029_client_2', attrs={}), entry4(cookie=1308, name=b'owner_REBT4a_1642007029_client_3', attrs={}), entry4(cookie=1314, name=b'owner_REBT4a_1642007029_client_4', attrs={}), entry4(cookie=1320, name=b'owner_REBT4a_1642007029_client_5', attrs={}), entry4(cookie=1326, name=b'owner_REBT4a_1642007029_client_6', attrs={}), entry4(cookie=13 > 32, name=b'owner_REBT4a_1642007029_client_7', attrs={}), entry4(cookie=1338, name=b'owner_REBT4a_1642007029_client_8', attrs={}), entry4(cookie=1344, name=b'owner_REBT4a_1642007029_client_9', attrs={}), entry4(cookie=1350, name=b'owner_REBT2a_1642007029_client_0', attrs={}), entry4(cookie=1356, name=b'owner_REBT2a_1642007029_client_1', attrs={}), entry4(cookie=1362, name=b'owner_REBT2a_1642007029_client_2', attrs={}), entry4(cookie=1368, name=b'owner_REBT2a_1642007029_client_3', attrs={}), entry4(cookie=1374, name=b'owner_REBT2a_1642007029_client_4', attrs={}), entry4(cookie=1380, name=b'owner_REBT2a_1642007029_client_5', attrs={}), entry4(cookie=1386, name=b'owner_REBT2a_1642007029_client_6', attrs={}), entry4(cookie=1392, name=b'owner_REBT2a_1642007029_client_7', attrs={}), entry4(cookie=1398, name=b'owner_REBT2a_1642007029_client_8', attrs={}), entry4(cookie=1404, name=b'owner_REBT2a_1642007029_client_9', attrs={}), entry4(cookie=1410, name=b'owner_REBT5_1642007029_client_file_0' > , attrs={}), entry4(cookie=1416, name=b'owner_REBT5_1642007029_client_file_1', attrs={}), entry4(cookie=1422, name=b'owner_REBT5_1642007029_client_file_2', attrs={}), entry4(cookie=1428, name=b'owner_REBT5_1642007029_client_file_3', attrs={}), entry4(cookie=1434, name=b'owner_REBT5_1642007029_client_file_4', attrs={}), entry4(cookie=1440, name=b'owner_REBT5_1642007029_client_file_5', attrs={}), entry4(cookie=1446, name=b'owner_REBT5_1642007029_client_file_6', attrs={}), entry4(cookie=1452, name=b'owner_REBT5_1642007029_client_file_7', attrs={}), entry4(cookie=1458, name=b'owner_REBT5_1642007029_client_file_8', attrs={}), entry4(cookie=1464, name=b'owner_REBT5_1642007029_client_file_9', attrs={}), entry4(cookie=1471, name=b'owner_REBT5_1642007029_client_file_10', attrs={}), entry4(cookie=1478, name=b'owner_REBT5_1642007029_client_file_11', attrs={}), entry4(cookie=1485, name=b'owner_REBT5_1642007029_client_file_12', attrs={}), entry4(cookie=1492, name=b'owner_REBT5_1642007029_client_ > file_13', attrs={}), entry4(cookie=1499, name=b'owner_REBT5_1642007029_client_file_14', attrs={}), entry4(cookie=1506, name=b'owner_REBT5_1642007029_client_file_15', attrs={}), entry4(cookie=1513, name=b'owner_REBT5_1642007029_client_file_16', attrs={}), entry4(cookie=1520, name=b'owner_REBT5_1642007029_client_file_17', attrs={}), entry4(cookie=1527, name=b'owner_REBT5_1642007029_client_file_18', attrs={}), entry4(cookie=1544, name=b'owner_REBT5_1642007029_client_file_19', attrs={}), entry4(cookie=1551, name=b'owner_REBT5_1642007029_client_file_20', attrs={}), entry4(cookie=1558, name=b'owner_REBT5_1642007029_client_file_21', attrs={}), entry4(cookie=1565, name=b'owner_REBT5_1642007029_client_file_22', attrs={}), entry4(cookie=1572, name=b'owner_REBT5_1642007029_client_file_23', attrs={}), entry4(cookie=1579, name=b'owner_REBT5_1642007029_client_file_24', attrs={}), entry4(cookie=1586, name=b'owner_REBT5_1642007029_client_file_25', attrs={}), entry4(cookie=1593, name=b'owner_REBT5_1 > 642007029_client_file_26', attrs={}), entry4(cookie=1600, name=b'owner_REBT5_1642007029_client_file_27', attrs={}), entry4(cookie=1607, name=b'owner_REBT5_1642007029_client_file_28', attrs={}), entry4(cookie=1614, name=b'owner_REBT5_1642007029_client_file_29', attrs={}), entry4(cookie=1621, name=b'owner_REBT5_1642007029_client_file_30', attrs={}), entry4(cookie=1628, name=b'owner_REBT5_1642007029_client_file_31', attrs={}), entry4(cookie=1635, name=b'owner_REBT5_1642007029_client_file_32', attrs={}), entry4(cookie=1642, name=b'owner_REBT5_1642007029_client_file_33', attrs={}), entry4(cookie=1649, name=b'owner_REBT5_1642007029_client_file_34', attrs={}), entry4(cookie=1656, name=b'owner_REBT5_1642007029_client_file_35', attrs={}), entry4(cookie=1663, name=b'owner_REBT5_1642007029_client_file_36', attrs={}), entry4(cookie=1670, name=b'owner_REBT5_1642007029_client_file_37', attrs={}), entry4(cookie=1677, name=b'owner_REBT5_1642007029_client_file_38', attrs={}), entry4(cookie=1684, nam > e=b'owner_REBT5_1642007029_client_file_39', attrs={}), entry4(cookie=1691, name=b'owner_REBT5_1642007029_client_file_40', attrs={}), entry4(cookie=1698, name=b'owner_REBT5_1642007029_client_file_41', attrs={}), entry4(cookie=1703, name=b'owner_REBT1_1642007029', attrs={}), entry4(cookie=1709, name=b'owner_REBT3b_1642007029_client_0', attrs={}), entry4(cookie=1715, name=b'owner_REBT3b_1642007029_client_1', attrs={}), entry4(cookie=1721, name=b'owner_REBT3b_1642007029_client_2', attrs={}), entry4(cookie=1727, name=b'owner_REBT3b_1642007029_client_3', attrs={}), entry4(cookie=1733, name=b'owner_REBT3b_1642007029_client_4', attrs={}), entry4(cookie=1739, name=b'owner_REBT3b_1642007029_client_5', attrs={}), entry4(cookie=1745, name=b'owner_REBT3b_1642007029_client_6', attrs={}), entry4(cookie=1751, name=b'owner_REBT3b_1642007029_client_7', attrs={}), entry4(cookie=1757, name=b'owner_REBT3b_1642007029_client_8', attrs={}), entry4(cookie=1763, name=b'owner_REBT3b_1642007029_client_9', attr > s={}), entry4(cookie=1769, name=b'owner_REBT3b_1642007029_client_10', attrs={}), entry4(cookie=1775, name=b'owner_REBT3b_1642007029_client_11', attrs={}), entry4(cookie=1781, name=b'owner_REBT3b_1642007029_client_12', attrs={}), entry4(cookie=1787, name=b'owner_REBT3b_1642007029_client_13', attrs={}), entry4(cookie=1793, name=b'owner_REBT3b_1642007029_client_14', attrs={}), entry4(cookie=1799, name=b'owner_REBT3b_1642007029_client_15', attrs={}), entry4(cookie=1805, name=b'owner_REBT3b_1642007029_client_16', attrs={}), entry4(cookie=1811, name=b'owner_REBT3b_1642007029_client_17', attrs={}), entry4(cookie=1817, name=b'owner_REBT3b_1642007029_client_18', attrs={}), entry4(cookie=1823, name=b'owner_REBT3b_1642007029_client_19', attrs={}), entry4(cookie=1829, name=b'owner_REBT3b_1642007029_client_20', attrs={}), entry4(cookie=1835, name=b'owner_REBT3b_1642007029_client_21', attrs={}), entry4(cookie=1841, name=b'owner_REBT3b_1642007029_client_22', attrs={}), entry4(cookie=1847, name=b'o > wner_REBT3b_1642007029_client_23', attrs={}), entry4(cookie=1853, name=b'owner_REBT3b_1642007029_client_24', attrs={}), entry4(cookie=1859, name=b'owner_REBT3b_1642007029_client_25', attrs={}), entry4(cookie=1865, name=b'owner_REBT3b_1642007029_client_26', attrs={}), entry4(cookie=1871, name=b'owner_REBT3b_1642007029_client_27', attrs={}), entry4(cookie=1877, name=b'owner_REBT3b_1642007029_client_28', attrs={}), entry4(cookie=1883, name=b'owner_REBT3b_1642007029_client_29', attrs={}), entry4(cookie=1889, name=b'owner_REBT3b_1642007029_client_30', attrs={}), entry4(cookie=1895, name=b'owner_REBT3b_1642007029_client_31', attrs={}), entry4(cookie=1901, name=b'owner_REBT3b_1642007029_client_32', attrs={}), entry4(cookie=1907, name=b'owner_REBT3b_1642007029_client_33', attrs={}), entry4(cookie=1913, name=b'owner_REBT3b_1642007029_client_34', attrs={}), entry4(cookie=1919, name=b'owner_REBT3b_1642007029_client_35', attrs={}), entry4(cookie=1925, name=b'owner_REBT3b_1642007029_client_36', > attrs={}), entry4(cookie=1931, name=b'owner_REBT3b_1642007029_client_37', attrs={}), entry4(cookie=1937, name=b'owner_REBT3b_1642007029_client_38', attrs={}), entry4(cookie=1943, name=b'owner_REBT3b_1642007029_client_39', attrs={}), entry4(cookie=1949, name=b'owner_REBT3b_1642007029_client_40', attrs={}), entry4(cookie=1955, name=b'owner_REBT3b_1642007029_client_41', attrs={}), entry4(cookie=1961, name=b'owner_REBT3b_1642007029_client_42', attrs={}), entry4(cookie=1967, name=b'owner_REBT3b_1642007029_client_43', attrs={}), entry4(cookie=1973, name=b'owner_REBT3b_1642007029_client_44', attrs={}), entry4(cookie=1979, name=b'owner_REBT3b_1642007029_client_45', attrs={}), entry4(cookie=1985, name=b'owner_REBT3b_1642007029_client_46', attrs={}), entry4(cookie=1991, name=b'owner_REBT3b_1642007029_client_47', attrs={}), entry4(cookie=1997, name=b'owner_REBT3b_1642007029_client_48', attrs={}), entry4(cookie=2003, name=b'owner_REBT3b_1642007029_client_49', attrs={}), entry4(cookie=2009, name > =b'owner_REBT3b_1642007029_client_50', attrs={}), entry4(cookie=2015, name=b'owner_REBT3b_1642007029_client_51', attrs={}), entry4(cookie=2021, name=b'owner_REBT3b_1642007029_client_52', attrs={}), entry4(cookie=2027, name=b'owner_REBT3b_1642007029_client_53', attrs={}), entry4(cookie=2033, name=b'owner_REBT3b_1642007029_client_54', attrs={}), entry4(cookie=2039, name=b'owner_REBT3b_1642007029_client_55', attrs={}), entry4(cookie=2056, name=b'owner_REBT3b_1642007029_client_56', attrs={}), entry4(cookie=2062, name=b'owner_REBT3b_1642007029_client_57', attrs={}), entry4(cookie=2068, name=b'owner_REBT3b_1642007029_client_58', attrs={}), entry4(cookie=2074, name=b'owner_REBT3b_1642007029_client_59', attrs={}), entry4(cookie=2080, name=b'owner_REBT3b_1642007029_client_60', attrs={}), entry4(cookie=2086, name=b'owner_REBT3b_1642007029_client_61', attrs={}), entry4(cookie=2092, name=b'owner_REBT3b_1642007029_client_62', attrs={}), entry4(cookie=2098, name=b'owner_REBT3b_1642007029_client_6 > 3', attrs={}), entry4(cookie=2104, name=b'owner_REBT3b_1642007029_client_64', attrs={}), entry4(cookie=2110, name=b'owner_REBT3b_1642007029_client_65', attrs={}), entry4(cookie=2116, name=b'owner_REBT3b_1642007029_client_66', attrs={}), entry4(cookie=2122, name=b'owner_REBT3b_1642007029_client_67', attrs={}), entry4(cookie=2128, name=b'owner_REBT3b_1642007029_client_68', attrs={}), entry4(cookie=2134, name=b'owner_REBT3b_1642007029_client_69', attrs={}), entry4(cookie=2140, name=b'owner_REBT3b_1642007029_client_70', attrs={}), entry4(cookie=2146, name=b'owner_REBT3b_1642007029_client_71', attrs={}), entry4(cookie=2152, name=b'owner_REBT3b_1642007029_client_72', attrs={}), entry4(cookie=2158, name=b'owner_REBT3b_1642007029_client_73', attrs={}), entry4(cookie=2164, name=b'owner_REBT3b_1642007029_client_74', attrs={}), entry4(cookie=2170, name=b'owner_REBT3b_1642007029_client_75', attrs={}), entry4(cookie=2176, name=b'owner_REBT3b_1642007029_client_76', attrs={}), entry4(cookie=2182, > name=b'owner_REBT3b_1642007029_client_77', attrs={}), entry4(cookie=2188, name=b'owner_REBT3b_1642007029_client_78', attrs={}), entry4(cookie=2194, name=b'owner_REBT3b_1642007029_client_79', attrs={}), entry4(cookie=2200, name=b'owner_REBT3b_1642007029_client_80', attrs={}), entry4(cookie=2206, name=b'owner_REBT3b_1642007029_client_81', attrs={}), entry4(cookie=2212, name=b'owner_REBT3b_1642007029_client_82', attrs={}), entry4(cookie=2218, name=b'owner_REBT3b_1642007029_client_83', attrs={}), entry4(cookie=2224, name=b'owner_REBT3b_1642007029_client_84', attrs={}), entry4(cookie=2230, name=b'owner_REBT3b_1642007029_client_85', attrs={}), entry4(cookie=2236, name=b'owner_REBT3b_1642007029_client_86', attrs={}), entry4(cookie=2242, name=b'owner_REBT3b_1642007029_client_87', attrs={}), entry4(cookie=2248, name=b'owner_REBT3b_1642007029_client_88', attrs={}), entry4(cookie=2254, name=b'owner_REBT3b_1642007029_client_89', attrs={}), entry4(cookie=2260, name=b'owner_REBT3b_1642007029_clie > nt_90', attrs={}), entry4(cookie=2266, name=b'owner_REBT3b_1642007029_client_91', attrs={}), entry4(cookie=2272, name=b'owner_REBT3b_1642007029_client_92', attrs={}), entry4(cookie=2278, name=b'owner_REBT3b_1642007029_client_93', attrs={}), entry4(cookie=2284, name=b'owner_REBT3b_1642007029_client_94', attrs={}), entry4(cookie=2290, name=b'owner_REBT3b_1642007029_client_95', attrs={}), entry4(cookie=2296, name=b'owner_REBT3b_1642007029_client_96', attrs={}), entry4(cookie=2302, name=b'owner_REBT3b_1642007029_client_97', attrs={}), entry4(cookie=2308, name=b'owner_REBT3b_1642007029_client_98', attrs={}), entry4(cookie=2314, name=b'owner_REBT3b_1642007029_client_99', attrs={}), entry4(cookie=2320, name=b'owner_REBT3a_1642007029_client_0', attrs={}), entry4(cookie=2326, name=b'owner_REBT3a_1642007029_client_1', attrs={}), entry4(cookie=2332, name=b'owner_REBT3a_1642007029_client_2', attrs={}), entry4(cookie=2338, name=b'owner_REBT3a_1642007029_client_3', attrs={}), entry4(cookie=2344, > name=b'owner_REBT3a_1642007029_client_4', attrs={}), entry4(cookie=2350, name=b'owner_REBT3a_1642007029_client_5', attrs={}), entry4(cookie=2356, name=b'owner_REBT3a_1642007029_client_6', attrs={}), entry4(cookie=2362, name=b'owner_REBT3a_1642007029_client_7', attrs={}), entry4(cookie=2368, name=b'owner_REBT3a_1642007029_client_8', attrs={}), entry4(cookie=2374, name=b'owner_REBT3a_1642007029_client_9', attrs={}), entry4(cookie=2378, name=b'RNM6_1642007029', attrs={}), entry4(cookie=2382, name=b'RNM7_1642007029', attrs={}), entry4(cookie=2386, name=b'RNM1s_1642007029', attrs={}), entry4(cookie=2390, name=b'RNM1a_1642007029', attrs={}), entry4(cookie=2394, name=b'RNM1r_1642007029', attrs={}), entry4(cookie=2398, name=b'RNM1f_1642007029', attrs={}), entry4(cookie=2402, name=b'RNM1d_1642007029', attrs={}), entry4(cookie=2406, name=b'RNM19_1642007029', attrs={}), entry4(cookie=2410, name=b'RNM18_1642007029', attrs={}), entry4(cookie=2414, name=b'RNM5_1642007029', attrs={}), entry4(cooki > e=2418, name=b'RNM20_1642007029', attrs={}), entry4(cookie=2422, name=b'RNM17_1642007029', attrs={}), entry4(cookie=2426, name=b'RNM15_1642007029', attrs={}), entry4(cookie=2430, name=b'RNM14_1642007029', attrs={}), entry4(cookie=2434, name=b'RNM10_1642007029', attrs={}), entry4(cookie=2438, name=b'RNM11_1642007029', attrs={}), entry4(cookie=2442, name=b'RNM12_1642007029', attrs={}), entry4(cookie=2446, name=b'RNM16_1642007029', attrs={}), entry4(cookie=2450, name=b'RNM13_1642007029', attrs={}), entry4(cookie=2454, name=b'RNM3s_1642007029', attrs={}), entry4(cookie=2458, name=b'RNM3a_1642007029', attrs={}), entry4(cookie=2462, name=b'RNM3r_1642007029', attrs={}), entry4(cookie=2466, name=b'RNM3f_1642007029', attrs={}), entry4(cookie=2471, name=b'owner_DELEG9_1642007029', attrs={}), entry4(cookie=2475, name=b'DELEG23_1642007029', attrs={}), entry4(cookie=2479, name=b'DELEG1_1642007029', attrs={}), entry4(cookie=2483, name=b'DELEG4_1642007029', attrs={}), entry4(cookie=2487, name=b'DE > LEG8_1642007029', attrs={}), entry4(cookie=2491, name=b'DELEG6_1642007029', attrs={}), entry4(cookie=2495, name=b'OPEN1_1642007029', attrs={}), entry4(cookie=2499, name=b'OPEN2_1642007029', attrs={}), entry4(cookie=2503, name=b'OPEN30_1642007029', attrs={}), entry4(cookie=2507, name=b'OPEN7_1642007029', attrs={}), entry4(cookie=2511, name=b'OPEN6_1642007029', attrs={}), entry4(cookie=2515, name=b'OPEN8_1642007029', attrs={}), entry4(cookie=2523, name=b'OPEN31_1642007029', attrs={}), entry4(cookie=2531, name=b'SEQ10b_1642007029_2', attrs={}), entry4(cookie=2535, name=b'SEQ9b_1642007029_2', attrs={}), entry4(cookie=2539, name=b'SEC2_1642007029', attrs={}), entry4(cookie=2543, name=b'SEC1_1642007029', attrs={}), entry4(cookie=2560, name=b'owner_RECC2_1642007029', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'link', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'dir', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'file2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM10_1642007029', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM11_1642007029', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'dir2', attrs={})] > INFO :test.env:Called do_readdir() > INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > EID6h st_exchange_id.testUpdate111 : PASS > EID6g st_exchange_id.testUpdate110 : RUNNING > EID6g st_exchange_id.testUpdate110 : PASS > EID6f st_exchange_id.testUpdate101 : RUNNING > EID6f st_exchange_id.testUpdate101 : PASS > EID6e st_exchange_id.testUpdate100 : RUNNING > EID6e st_exchange_id.testUpdate100 : PASS > EID6d st_exchange_id.testUpdate011 : RUNNING > EID6d st_exchange_id.testUpdate011 : PASS > EID6c st_exchange_id.testUpdate010 : RUNNING > EID6c st_exchange_id.testUpdate010 : PASS > EID6b st_exchange_id.testUpdate001 : RUNNING > EID6b st_exchange_id.testUpdate001 : PASS > EID6a st_exchange_id.testUpdate000 : RUNNING > EID6a st_exchange_id.testUpdate000 : PASS > EID1b st_exchange_id.testSupported2 : RUNNING > EID1b st_exchange_id.testSupported2 : PASS > EID7 st_exchange_id.testSupported1a : RUNNING > EID7 st_exchange_id.testSupported1a : PASS > EID1 st_exchange_id.testSupported : RUNNING > EID1 st_exchange_id.testSupported : PASS > EID8 st_exchange_id.testNotOnlyOp : RUNNING > EID8 st_exchange_id.testNotOnlyOp : PASS > EID5h st_exchange_id.testNoUpdate111 : RUNNING > EID5h st_exchange_id.testNoUpdate111 : PASS > EID5g st_exchange_id.testNoUpdate110 : RUNNING > EID5g st_exchange_id.testNoUpdate110 : PASS > EID5fb st_exchange_id.testNoUpdate101b : RUNNING > EID5fb st_exchange_id.testNoUpdate101b : PASS > EID5f st_exchange_id.testNoUpdate101 : RUNNING > EID5f st_exchange_id.testNoUpdate101 : PASS > EID5e st_exchange_id.testNoUpdate100 : RUNNING > EID5e st_exchange_id.testNoUpdate100 : PASS > EID5d st_exchange_id.testNoUpdate011 : RUNNING > EID5d st_exchange_id.testNoUpdate011 : PASS > EID5c st_exchange_id.testNoUpdate010 : RUNNING > EID5c st_exchange_id.testNoUpdate010 : PASS > EID5b st_exchange_id.testNoUpdate001 : RUNNING > EID5b st_exchange_id.testNoUpdate001 : PASS > EID5a st_exchange_id.testNoUpdate000 : RUNNING > EID5a st_exchange_id.testNoUpdate000 : PASS > EID2 st_exchange_id.testNoImplId : RUNNING > EID2 st_exchange_id.testNoImplId : PASS > EID3 st_exchange_id.testLongArray : RUNNING > COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_exchange_id.py:testNoImplId', resarray=[nfs_resop4(resop=OP_EXCHANGE_ID, opexchange_id=EXCHANGE_ID4res(eir_status=NFS4ERR_BADXDR))]) > EID3 st_exchange_id.testLongArray : PASS > EID9 st_exchange_id.testLeasePeriod : RUNNING > EID9 st_exchange_id.testLeasePeriod : PASS > EID4 st_exchange_id.testBadFlags : RUNNING > EID4 st_exchange_id.testBadFlags : PASS > ************************************************** > ************************************************** > Command line asked for 172 of 260 tests > Of those: 0 Skipped, 0 Failed, 0 Warned, 172 Passed > FSTYP -- nfs > PLATFORM -- Linux/x86_64 test3 5.16.0-00002-g616758bf6583 #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > MKFS_OPTIONS -- test1.fieldses.org:/exports/xfs2 > MOUNT_OPTIONS -- -overs=4.2,sec=sys -o context=system_u:object_r:root_t:s0 test1.fieldses.org:/exports/xfs2 /mnt2 > > generic/001 41s ... 41s > generic/002 1s ... 1s > generic/003 [not run] atime related mount options have no effect on nfs > generic/004 [not run] O_TMPFILE is not supported > generic/005 2s ... 2s > generic/006 [expunged] > generic/007 [expunged] > generic/008 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/009 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/010 [not run] /root/xfstests-dev/src/dbtest not built > generic/011 68s ... 65s > generic/012 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/013 68s ... 66s > generic/014 [expunged] > generic/015 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/016 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/017 [expunged] > generic/018 [not run] defragmentation not supported for fstype "nfs" > generic/020 13s ... 13s > generic/021 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/022 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/023 4s ... 3s > generic/024 [not run] kernel doesn't support renameat2 syscall > generic/025 [not run] kernel doesn't support renameat2 syscall > generic/026 [not run] ACLs not supported by this filesystem type: nfs > generic/027 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/028 5s ... 5s > generic/029 1s ... 2s > generic/030 3s ... 3s > generic/031 [expunged] > generic/032 [expunged] > generic/033 [expunged] > generic/034 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/035 [expunged] > generic/036 11s ... 11s > generic/037 21s ... 21s > generic/038 [not run] FITRIM not supported on /mnt2 > generic/039 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/040 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/041 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/043 [not run] nfs does not support shutdown > generic/044 [not run] nfs does not support shutdown > generic/045 [not run] nfs does not support shutdown > generic/046 [not run] nfs does not support shutdown > generic/047 [not run] nfs does not support shutdown > generic/048 [not run] nfs does not support shutdown > generic/049 [not run] nfs does not support shutdown > generic/050 [not run] nfs does not support shutdown > generic/051 [not run] nfs does not support shutdown > generic/052 [not run] nfs does not support shutdown > generic/053 [expunged] > generic/054 [not run] nfs does not support shutdown > generic/055 [not run] nfs does not support shutdown > generic/056 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/057 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/058 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/059 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/060 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/061 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/062 [expunged] > generic/063 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/064 [expunged] > generic/065 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/066 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/067 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/068 [expunged] > generic/069 29s ... 30s > generic/070 60s ... 47s > generic/071 [expunged] > generic/072 24s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > generic/073 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/074 [expunged] > generic/075 61s ... 56s > generic/076 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > generic/077 [not run] ACLs not supported by this filesystem type: nfs > generic/078 [not run] kernel doesn't support renameat2 syscall > generic/079 [not run] file system doesn't support chattr +ia > generic/080 3s ... 3s > generic/081 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/082 [not run] disk quotas not supported by this filesystem type: nfs > generic/083 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/084 5s ... 6s > generic/085 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/086 2s ... 2s > generic/087 [expunged] > generic/088 [expunged] > generic/089 [expunged] > generic/090 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/091 [expunged] > generic/092 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/093 [not run] attr namespace security not supported by this filesystem type: nfs > generic/094 [expunged] > generic/095 [not run] fio utility required, skipped this test > generic/096 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/097 [not run] attr namespace trusted not supported by this filesystem type: nfs > generic/098 2s ... 2s > generic/099 [not run] ACLs not supported by this filesystem type: nfs > generic/100 [expunged] > generic/101 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/102 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/103 3s ... 3s > generic/104 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/105 [expunged] > generic/106 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/107 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/108 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/109 57s ... 56s > generic/110 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/111 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/112 61s ... 59s > generic/113 [expunged] > generic/114 [not run] device block size: 4096 greater than 512 > generic/115 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/116 1s ... 2s > generic/117 [expunged] > generic/118 2s ... 1s > generic/119 3s ... 3s > generic/120 [not run] atime related mount options have no effect on nfs > generic/121 [not run] Dedupe not supported by test filesystem type: nfs > generic/122 [not run] Dedupe not supported by test filesystem type: nfs > generic/123 [not run] fsgqa user not defined. > generic/124 60s ... 54s > generic/126 [expunged] > generic/127 [expunged] > generic/128 [not run] fsgqa user not defined. > generic/129 [expunged] > generic/130 19s ... 18s > generic/131 2s ... 2s > generic/132 20s ... 19s > generic/133 [expunged] > generic/134 2s ... 2s > generic/135 2s ... 1s > generic/136 [not run] Dedupe not supported by test filesystem type: nfs > generic/137 [not run] Dedupe not supported by test filesystem type: nfs > generic/138 3s ... 2s > generic/139 3s ... 3s > generic/140 2s ... 3s > generic/141 1s ... 1s > generic/142 10s ... 8s > generic/143 246s ... 242s > generic/144 2s ... 2s > generic/145 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > generic/146 3s ... 2s > generic/147 [not run] xfs_io finsert failed (old kernel/wrong fs?) > generic/148 2s ... 2s > generic/149 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/150 19s ... 17s > generic/151 21s ... 20s > generic/152 22s ... 20s > generic/153 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > generic/154 [expunged] > generic/155 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/156 [not run] xfs_io funshare failed (old kernel/wrong fs?) > generic/157 88s ... 86s > generic/158 [not run] Dedupe not supported by test filesystem type: nfs > generic/159 [not run] file system doesn't support chattr +i > generic/160 [not run] file system doesn't support chattr +i > generic/161 18s ... 20s > generic/162 [not run] Dedupe not supported by scratch filesystem type: nfs > generic/163 [not run] Dedupe not supported by scratch filesystem type: nfs > generic/164 71s ... 70s > generic/165 65s ... 60s > generic/166 207s ... 182s > generic/167 46s ... 42s > generic/168 319s ... 280s > generic/169 2s ... 2s > generic/170 382s ... 361s > generic/171 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/172 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/173 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/174 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/175 370s ... 235s > generic/176 [not run] Insufficient space for stress test; would only create 32768 extents. > generic/177 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/178 5s ... 5s > generic/179 1s ... 1s > generic/180 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/181 4s ... 4s > generic/182 [not run] Dedupe not supported by test filesystem type: nfs > generic/183 6s ... 6s > generic/184 [expunged] > generic/185 6s ... 6s > generic/186 832s ... 813s > generic/187 829s ... 815s > generic/188 8s ... 6s > generic/189 4s ... 4s > generic/190 5s ... 5s > generic/191 5s ... 4s > generic/192 [not run] atime related mount options have no effect on nfs > generic/193 [not run] fsgqa user not defined. > generic/194 6s ... 6s > generic/195 6s ... 6s > generic/196 4s ... 4s > generic/197 4s ... 5s > generic/198 6s ... 6s > generic/199 6s ... 6s > generic/200 6s ... 5s > generic/201 5s ... 3s > generic/202 2s ... 2s > generic/203 2s ... 3s > generic/204 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/205 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/206 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/207 22s ... 20s > generic/208 [expunged] > generic/209 33s ... 45s > generic/210 0s ... 0s > generic/211 2s ... 1s > generic/212 0s ... 0s > generic/213 1s ... 0s > generic/214 1s ... 1s > generic/215 3s ... 3s > generic/216 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/217 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/218 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/219 [not run] disk quotas not supported by this filesystem type: nfs > generic/220 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/221 1s ... 2s > generic/222 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/223 [not run] can't mkfs nfs with geometry > generic/224 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/225 [expunged] > generic/226 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/227 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/228 1s ... 1s > generic/229 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/230 [not run] disk quotas not supported by this filesystem type: nfs > generic/231 [not run] disk quotas not supported by this filesystem type: nfs > generic/232 [not run] disk quotas not supported by this filesystem type: nfs > generic/233 [not run] disk quotas not supported by this filesystem type: nfs > generic/234 [not run] disk quotas not supported by this filesystem type: nfs > generic/235 [not run] disk quotas not supported by this filesystem type: nfs > generic/236 2s ... 2s > generic/237 [not run] ACLs not supported by this filesystem type: nfs > generic/238 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > generic/239 32s ... 31s > generic/240 1s ... 1s > generic/241 [not run] dbench not found > generic/242 89s ... 85s > generic/243 89s ... 81s > generic/244 [not run] disk quotas not supported by this filesystem type: nfs > generic/245 1s ... 1s > generic/246 0s ... 0s > generic/247 85s ... 81s > generic/248 1s ... 0s > generic/249 3s ... 3s > generic/250 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/252 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/253 3s ... 2s > generic/254 2s ... 3s > generic/255 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/256 [not run] fsgqa user not defined. > generic/257 4s ... 5s > generic/258 1s ... 0s > generic/259 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/260 [not run] FITRIM not supported on /mnt2 > generic/261 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > generic/262 [not run] xfs_io finsert failed (old kernel/wrong fs?) > generic/263 [expunged] > generic/264 [not run] xfs_io funshare failed (old kernel/wrong fs?) > generic/265 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/266 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/267 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/268 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/269 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/270 [not run] disk quotas not supported by this filesystem type: nfs > generic/271 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/272 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/273 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/274 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > generic/275 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/276 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/277 [expunged] > generic/278 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/279 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/280 [not run] disk quotas not supported by this filesystem type: nfs > generic/281 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/282 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/283 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/284 4s ... 3s > generic/285 2s ... 2s > generic/286 19s ... 19s > generic/287 4s ... 4s > generic/288 [not run] FITRIM not supported on /mnt2 > generic/289 5s ... 5s > generic/290 5s ... 5s > generic/291 6s ... 6s > generic/292 6s ... 5s > generic/293 7s ... 7s > generic/294 [expunged] > generic/295 8s ... 7s > generic/296 4s ... 3s > generic/297 [not run] NFS can't interrupt clone operations > generic/298 [not run] NFS can't interrupt clone operations > generic/299 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/300 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/301 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/302 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/303 1s ... 1s > generic/304 [not run] Dedupe not supported by test filesystem type: nfs > generic/305 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/306 1s ... 1s > generic/307 3s ... [not run] ACLs not supported by this filesystem type: nfs > generic/308 1s ... 0s > generic/309 1s ... 2s > generic/310 [expunged] > generic/311 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/312 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/313 4s ... 5s > generic/314 [not run] fsgqa user not defined. > generic/315 15s ... [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > generic/316 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/317 [not run] fsgqa user not defined. > generic/318 [expunged] > generic/319 [not run] ACLs not supported by this filesystem type: nfs > generic/320 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/321 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/322 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/323 [expunged] > generic/324 [not run] defragmentation not supported for fstype "nfs" > generic/325 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/326 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/327 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/328 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/329 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/330 10s ... 9s > generic/331 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/332 9s ... 8s > generic/333 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/334 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/335 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/336 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/337 1s ... 1s > generic/338 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/339 [expunged] > generic/340 41s ... 42s > generic/341 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/342 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/343 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/344 86s ... 84s > generic/345 89s ... 84s > generic/346 41s ... 38s > generic/347 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/348 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/352 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/353 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/354 30s ... 29s > generic/355 [not run] fsgqa user not defined. > generic/356 3s ... 2s > generic/357 [expunged] > generic/358 58s ... 55s > generic/359 15s ... 15s > generic/360 0s ... 1s > generic/361 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/362 [not run] this test requires richacl support on $SCRATCH_DEV > generic/363 [not run] this test requires richacl support on $SCRATCH_DEV > generic/364 [not run] this test requires richacl support on $SCRATCH_DEV > generic/365 [not run] this test requires richacl support on $SCRATCH_DEV > generic/366 [not run] this test requires richacl support on $SCRATCH_DEV > generic/367 [not run] this test requires richacl support on $SCRATCH_DEV > generic/368 [not run] this test requires richacl support on $SCRATCH_DEV > generic/369 [not run] this test requires richacl support on $SCRATCH_DEV > generic/370 [not run] this test requires richacl support on $SCRATCH_DEV > generic/371 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/372 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/373 1s ... 1s > generic/374 [not run] Dedupe not supported by scratch filesystem type: nfs > generic/375 [not run] ACLs not supported by this filesystem type: nfs > generic/376 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/377 1s ... 1s > generic/378 [not run] fsgqa user not defined. > generic/379 [not run] disk quotas not supported by this filesystem type: nfs > generic/380 [not run] disk quotas not supported by this filesystem type: nfs > generic/381 [not run] disk quotas not supported by this filesystem type: nfs > generic/382 [not run] disk quotas not supported by this filesystem type: nfs > generic/383 [not run] disk quotas not supported by this filesystem type: nfs > generic/384 [not run] disk quotas not supported by this filesystem type: nfs > generic/385 [not run] disk quotas not supported by this filesystem type: nfs > generic/386 [not run] disk quotas not supported by this filesystem type: nfs > generic/387 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/388 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > generic/389 [not run] O_TMPFILE is not supported > generic/390 9s ... [not run] nfs does not support freezing > generic/391 24s ... 22s > generic/392 [not run] nfs does not support shutdown > generic/393 2s ... 2s > generic/394 2s ... 1s > generic/395 [not run] No encryption support for nfs > generic/396 [not run] No encryption support for nfs > generic/397 [not run] No encryption support for nfs > generic/398 [not run] No encryption support for nfs > generic/399 [not run] No encryption support for nfs > generic/400 [not run] disk quotas not supported by this filesystem type: nfs > generic/401 1s ... 2s > generic/402 [not run] filesystem nfs timestamp bounds are unknown > generic/403 [expunged] > generic/404 [not run] xfs_io finsert failed (old kernel/wrong fs?) > generic/405 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/406 9s ... 8s > generic/407 2s ... 1s > generic/408 [not run] Dedupe not supported by test filesystem type: nfs > generic/409 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > generic/410 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > generic/411 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > generic/412 2s ... 1s > generic/413 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed > generic/414 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > generic/415 15s ... 16s > generic/416 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/417 [not run] nfs does not support shutdown > generic/418 [not run] require test1.fieldses.org:/exports/xfs to be valid block disk > generic/419 [not run] No encryption support for nfs > generic/420 1s ... 0s > generic/421 [not run] No encryption support for nfs > generic/422 [expunged] > generic/423 [expunged] > generic/424 [not run] file system doesn't support any of /usr/bin/chattr +a/+c/+d/+i > generic/425 [expunged] > generic/426 [expunged] > generic/427 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/428 1s ... 0s > generic/429 [not run] No encryption support for nfs > generic/430 1s ... 1s > generic/431 1s ... 1s > generic/432 1s ... 1s > generic/433 1s ... 1s > generic/434 [expunged] > generic/435 [not run] No encryption support for nfs > generic/436 1s ... 2s > generic/437 21s ... 20s > generic/438 [expunged] > generic/439 2s ... 2s > generic/440 [not run] No encryption support for nfs > generic/441 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/443 0s ... 1s > generic/444 [not run] ACLs not supported by this filesystem type: nfs > generic/445 1s ... 2s > generic/446 [expunged] > generic/447 [not run] Insufficient space for stress test; would only create 32768 extents (10737418240/21281112064 blocks). > generic/448 1s ... 2s > generic/449 [not run] ACLs not supported by this filesystem type: nfs > generic/450 1s ... 1s > generic/451 31s ... 31s > generic/452 1s ... 1s > generic/453 2s ... 2s > generic/454 3s ... 2s > generic/455 [not run] This test requires a valid $LOGWRITES_DEV > generic/456 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/457 [not run] This test requires a valid $LOGWRITES_DEV > generic/458 [not run] xfs_io fzero failed (old kernel/wrong fs?) > generic/459 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/460 36s ... 37s > generic/461 [not run] nfs does not support shutdown > generic/462 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed > generic/463 1s ... 1s > generic/464 73s ... 73s > generic/465 [expunged] > generic/466 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/467 4s ... 4s > generic/468 [not run] nfs does not support shutdown > generic/469 [expunged] > generic/470 [not run] This test requires a valid $LOGWRITES_DEV > generic/471 [not run] xfs_io pwrite -V 1 -b 4k -N failed (old kernel/wrong fs?) > generic/472 2s ... 2s > generic/474 [not run] nfs does not support shutdown > generic/475 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/476 [expunged] > generic/477 4s ... 4s > generic/478 [expunged] > generic/479 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/480 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/481 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/482 [not run] This test requires a valid $LOGWRITES_DEV > generic/483 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/484 [expunged] > generic/485 [expunged] > generic/486 [expunged] > generic/487 [not run] This test requires a valid $SCRATCH_LOGDEV > generic/488 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/489 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/490 1s ... 2s > generic/491 [expunged] > generic/492 [not run] xfs_io label failed (old kernel/wrong fs?) > generic/493 [not run] Dedupe not supported by scratch filesystem type: nfs > generic/494 3s ... 2s > generic/495 2s ... 2s > generic/496 7s ... 7s > generic/497 2s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > generic/498 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/499 [expunged] > generic/500 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/501 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/502 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/503 [expunged] > generic/504 0s ... 0s > generic/505 [not run] nfs does not support shutdown > generic/506 [not run] nfs does not support shutdown > generic/507 [not run] file system doesn't support chattr +AsSu > generic/508 [not run] lsattr not supported by test filesystem type: nfs > generic/509 [not run] O_TMPFILE is not supported > generic/510 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/511 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > generic/512 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/513 [expunged] > generic/514 [not run] fsgqa user not defined. > generic/515 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/516 [not run] Dedupe not supported by test filesystem type: nfs > generic/517 [not run] Dedupe not supported by scratch filesystem type: nfs > generic/518 2s ... 2s > generic/519 [expunged] > generic/520 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/523 1s ... 1s > generic/524 25s ... 27s > generic/525 1s ... 2s > generic/526 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/527 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/528 [not run] inode creation time not supported by this filesystem > generic/529 [not run] ACLs not supported by this filesystem type: nfs > generic/530 [not run] nfs does not support shutdown > generic/531 [expunged] > generic/532 1s ... 1s > generic/533 1s ... 1s > generic/534 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/535 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/536 [not run] nfs does not support shutdown > generic/537 [not run] FSTRIM not supported > generic/538 26s ... 26s > generic/539 1s ... 1s > generic/540 6s ... 6s > generic/541 7s ... 6s > generic/542 6s ... 6s > generic/543 7s ... 6s > generic/544 6s ... 7s > generic/545 [not run] file system doesn't support chattr +i > generic/546 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/547 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/548 [not run] No encryption support for nfs > generic/549 [not run] No encryption support for nfs > generic/550 [not run] No encryption support for nfs > generic/551 [expunged] > generic/552 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/553 [not run] xfs_io chattr +i failed (old kernel/wrong fs?) > generic/554 3s ... 2s > generic/555 [not run] xfs_io chattr +ia failed (old kernel/wrong fs?) > generic/556 [not run] nfs does not support casefold feature > generic/557 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/558 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/559 [not run] duperemove utility required, skipped this test > generic/560 [not run] duperemove utility required, skipped this test > generic/561 [not run] duperemove utility required, skipped this test > generic/562 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > generic/563 [not run] Cgroup2 doesn't support io controller io > generic/564 2s ... 2s > generic/565 [expunged] > generic/566 [not run] disk quotas not supported by this filesystem type: nfs > generic/567 1s ... 2s > generic/568 1s ... 1s > generic/569 2s ... 3s > generic/570 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/571 [expunged] > generic/572 [not run] fsverity utility required, skipped this test > generic/573 [not run] fsverity utility required, skipped this test > generic/574 [not run] fsverity utility required, skipped this test > generic/575 [not run] fsverity utility required, skipped this test > generic/576 [not run] fsverity utility required, skipped this test > generic/577 [not run] fsverity utility required, skipped this test > generic/578 [expunged] > generic/579 [not run] fsverity utility required, skipped this test > generic/580 [not run] No encryption support for nfs > generic/581 [not run] fsgqa user not defined. > generic/582 [not run] No encryption support for nfs > generic/583 [not run] No encryption support for nfs > generic/584 [not run] No encryption support for nfs > generic/585 8s ... [not run] kernel doesn't support renameat2 syscall > generic/586 9s ... 9s > generic/587 [not run] fsgqa user not defined. > generic/588 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > generic/589 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > generic/590 281s ... 276s > generic/591 1s ... 1s > generic/592 [not run] No encryption support for nfs > generic/593 [not run] No encryption support for nfs > generic/594 [not run] disk quotas not supported by this filesystem type: nfs > generic/595 [not run] No encryption support for nfs > generic/596 [not run] file system doesn't support chattr +S > generic/597 [not run] fsgqa2 user not defined. > generic/598 [not run] fsgqa2 user not defined. > generic/599 [not run] nfs does not support shutdown > generic/600 [not run] disk quotas not supported by this filesystem type: nfs > generic/601 [not run] disk quotas not supported by this filesystem type: nfs > generic/602 [not run] No encryption support for nfs > generic/603 [not run] disk quotas not supported by this filesystem type: nfs > generic/604 6s ... 5s > generic/605 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > generic/606 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > generic/607 [expunged] > generic/608 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > generic/609 1s ... 0s > generic/610 [expunged] > generic/611 1s ... 2s > nfs/001 3s ... 2s > shared/002 [not run] not suitable for this filesystem type: nfs > shared/032 [not run] not suitable for this filesystem type: nfs > shared/298 [not run] not suitable for this filesystem type: nfs > Ran: generic/001 generic/002 generic/003 generic/004 generic/005 generic/008 generic/009 generic/010 generic/011 generic/012 generic/013 generic/015 generic/016 generic/018 generic/020 generic/021 generic/022 generic/023 generic/024 generic/025 generic/026 generic/027 generic/028 generic/029 generic/030 generic/034 generic/036 generic/037 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/069 generic/070 generic/072 generic/073 generic/075 generic/076 generic/077 generic/078 generic/079 generic/080 generic/081 generic/082 generic/083 generic/084 generic/085 generic/086 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/098 generic/099 generic/101 generic/102 generic/103 generic/104 generic/1 > 06 generic/107 generic/108 generic/109 generic/110 generic/111 generic/112 generic/114 generic/115 generic/116 generic/118 generic/119 generic/120 generic/121 generic/122 generic/123 generic/124 generic/128 generic/130 generic/131 generic/132 generic/134 generic/135 generic/136 generic/137 generic/138 generic/139 generic/140 generic/141 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/169 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/193 generic/194 generic/195 generic/196 generic/197 generic/19 > 8 generic/199 generic/200 generic/201 generic/202 generic/203 generic/204 generic/205 generic/206 generic/207 generic/209 generic/210 generic/211 generic/212 generic/213 generic/214 generic/215 generic/216 generic/217 generic/218 generic/219 generic/220 generic/221 generic/222 generic/223 generic/224 generic/226 generic/227 generic/228 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/236 generic/237 generic/238 generic/239 generic/240 generic/241 generic/242 generic/243 generic/244 generic/245 generic/246 generic/247 generic/248 generic/249 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/257 generic/258 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/285 generic/286 > generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/306 generic/307 generic/308 generic/309 generic/311 generic/312 generic/313 generic/314 generic/315 generic/316 generic/317 generic/319 generic/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/337 generic/338 generic/340 generic/341 generic/342 generic/343 generic/344 generic/345 generic/346 generic/347 generic/348 generic/352 generic/353 generic/354 generic/355 generic/356 generic/358 generic/359 generic/360 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/373 generic/374 generic/375 generic/376 generic/377 generic/378 > generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/391 generic/392 generic/393 generic/394 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/401 generic/402 generic/404 generic/405 generic/406 generic/407 generic/408 generic/409 generic/410 generic/411 generic/412 generic/413 generic/414 generic/415 generic/416 generic/417 generic/418 generic/419 generic/420 generic/421 generic/424 generic/427 generic/428 generic/429 generic/430 generic/431 generic/432 generic/433 generic/435 generic/436 generic/437 generic/439 generic/440 generic/441 generic/443 generic/444 generic/445 generic/447 generic/448 generic/449 generic/450 generic/451 generic/452 generic/453 generic/454 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/464 generic/466 generic/467 generic/468 generic/470 generic/471 generic/472 g > eneric/474 generic/475 generic/477 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/490 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/500 generic/501 generic/502 generic/504 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/518 generic/520 generic/523 generic/524 generic/525 generic/526 generic/527 generic/528 generic/529 generic/530 generic/532 generic/533 generic/534 generic/535 generic/536 generic/537 generic/538 generic/539 generic/540 generic/541 generic/542 generic/543 generic/544 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/554 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/564 generic/566 generic/567 generic/568 generic/569 generic/570 generic/572 ge > neric/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/586 generic/587 generic/588 generic/589 generic/590 generic/591 generic/592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/604 generic/605 generic/606 generic/608 generic/609 generic/611 nfs/001 shared/002 shared/032 shared/298 > Not run: generic/003 generic/004 generic/008 generic/009 generic/010 generic/012 generic/015 generic/016 generic/018 generic/021 generic/022 generic/024 generic/025 generic/026 generic/027 generic/034 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/072 generic/073 generic/076 generic/077 generic/078 generic/079 generic/081 generic/082 generic/083 generic/085 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/099 generic/101 generic/102 generic/104 generic/106 generic/107 generic/108 generic/110 generic/111 generic/114 generic/115 generic/120 generic/121 generic/122 generic/123 generic/128 generic/136 generic/137 generic/145 generic/147 generic/149 generic/153 generic/155 generic/156 gener > ic/158 generic/159 generic/160 generic/162 generic/163 generic/171 generic/172 generic/173 generic/174 generic/176 generic/177 generic/180 generic/182 generic/192 generic/193 generic/204 generic/205 generic/206 generic/216 generic/217 generic/218 generic/219 generic/220 generic/222 generic/223 generic/224 generic/226 generic/227 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/237 generic/238 generic/241 generic/244 generic/250 generic/252 generic/255 generic/256 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/288 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/304 generic/305 generic/307 generic/311 generic/312 generic/314 generic/315 generic/316 generic/317 generic/319 generi > c/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/331 generic/333 generic/334 generic/335 generic/336 generic/338 generic/341 generic/342 generic/343 generic/347 generic/348 generic/352 generic/353 generic/355 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/374 generic/375 generic/376 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/392 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/402 generic/404 generic/405 generic/408 generic/409 generic/410 generic/411 generic/413 generic/414 generic/416 generic/417 generic/418 generic/419 generic/421 generic/424 generic/427 generic/429 generic/435 generic/440 generic/441 generic/444 generic/447 generic/449 generic/455 generic/456 generic > /457 generic/458 generic/459 generic/461 generic/462 generic/466 generic/468 generic/470 generic/471 generic/474 generic/475 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/492 generic/493 generic/497 generic/498 generic/500 generic/501 generic/502 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/520 generic/526 generic/527 generic/528 generic/529 generic/530 generic/534 generic/535 generic/536 generic/537 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/566 generic/570 generic/572 generic/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/587 generic/588 generic/589 generic/ > 592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/605 generic/606 generic/608 shared/002 shared/032 shared/298 > Passed all 538 tests > > [ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > [ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' > [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. > [ 0.000000] signal: max sigframe size: 1776 > [ 0.000000] BIOS-provided physical RAM map: > [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable > [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved > [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdbfff] usable > [ 0.000000] BIOS-e820: [mem 0x000000007ffdc000-0x000000007fffffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved > [ 0.000000] NX (Execute Disable) protection: active > [ 0.000000] SMBIOS 2.8 present. > [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.14.0-6.fc35 04/01/2014 > [ 0.000000] tsc: Fast TSC calibration using PIT > [ 0.000000] tsc: Detected 3591.787 MHz processor > [ 0.000930] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved > [ 0.000938] e820: remove [mem 0x000a0000-0x000fffff] usable > [ 0.000946] last_pfn = 0x7ffdc max_arch_pfn = 0x400000000 > [ 0.000979] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT > [ 0.004415] found SMP MP-table at [mem 0x000f5c10-0x000f5c1f] > [ 0.004436] Using GB pages for direct mapping > [ 0.004911] RAMDISK: [mem 0x34784000-0x363b9fff] > [ 0.004919] ACPI: Early table checksum verification disabled > [ 0.004924] ACPI: RSDP 0x00000000000F5A20 000014 (v00 BOCHS ) > [ 0.004934] ACPI: RSDT 0x000000007FFE2066 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004943] ACPI: FACP 0x000000007FFE1E8E 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004953] ACPI: DSDT 0x000000007FFE0040 001E4E (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004960] ACPI: FACS 0x000000007FFE0000 000040 > [ 0.004966] ACPI: APIC 0x000000007FFE1F82 000080 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004972] ACPI: MCFG 0x000000007FFE2002 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004978] ACPI: WAET 0x000000007FFE203E 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004984] ACPI: Reserving FACP table memory at [mem 0x7ffe1e8e-0x7ffe1f81] > [ 0.004988] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1e8d] > [ 0.004991] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] > [ 0.004993] ACPI: Reserving APIC table memory at [mem 0x7ffe1f82-0x7ffe2001] > [ 0.004996] ACPI: Reserving MCFG table memory at [mem 0x7ffe2002-0x7ffe203d] > [ 0.004999] ACPI: Reserving WAET table memory at [mem 0x7ffe203e-0x7ffe2065] > [ 0.008477] Zone ranges: > [ 0.008484] DMA [mem 0x0000000000001000-0x0000000000ffffff] > [ 0.008491] DMA32 [mem 0x0000000001000000-0x000000007ffdbfff] > [ 0.008495] Normal empty > [ 0.008499] Movable zone start for each node > [ 0.008518] Early memory node ranges > [ 0.008521] node 0: [mem 0x0000000000001000-0x000000000009efff] > [ 0.008535] node 0: [mem 0x0000000000100000-0x000000007ffdbfff] > [ 0.008538] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdbfff] > [ 0.008548] On node 0, zone DMA: 1 pages in unavailable ranges > [ 0.008622] On node 0, zone DMA: 97 pages in unavailable ranges > [ 0.016858] On node 0, zone DMA32: 36 pages in unavailable ranges > [ 0.048098] kasan: KernelAddressSanitizer initialized > [ 0.048939] ACPI: PM-Timer IO Port: 0x608 > [ 0.048950] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) > [ 0.048993] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 > [ 0.049002] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > [ 0.049006] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) > [ 0.049009] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > [ 0.049012] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) > [ 0.049015] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) > [ 0.049021] ACPI: Using ACPI (MADT) for SMP configuration information > [ 0.049024] TSC deadline timer available > [ 0.049030] smpboot: Allowing 2 CPUs, 0 hotplug CPUs > [ 0.049050] [mem 0xc0000000-0xfed1bfff] available for PCI devices > [ 0.049055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns > [ 0.064532] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 > [ 0.064789] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u1048576 > [ 0.064798] pcpu-alloc: s231440 r8192 d30704 u1048576 alloc=1*2097152 > [ 0.064802] pcpu-alloc: [0] 0 1 > [ 0.064836] Built 1 zonelists, mobility grouping on. Total pages: 516828 > [ 0.064886] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 > [ 0.064998] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. > [ 0.065286] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) > [ 0.065405] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) > [ 0.065443] mem auto-init: stack:off, heap alloc:off, heap free:off > [ 0.217018] Memory: 1653208K/2096616K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 443152K reserved, 0K cma-reserved) > [ 0.218927] Kernel/User page tables isolation: enabled > [ 0.219010] ftrace: allocating 48466 entries in 190 pages > [ 0.236213] ftrace: allocated 190 pages with 6 groups > [ 0.236405] Dynamic Preempt: full > [ 0.236588] Running RCU self tests > [ 0.236599] rcu: Preemptible hierarchical RCU implementation. > [ 0.236602] rcu: RCU lockdep checking is enabled. > [ 0.236604] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. > [ 0.236608] Trampoline variant of Tasks RCU enabled. > [ 0.236610] Rude variant of Tasks RCU enabled. > [ 0.236612] Tracing variant of Tasks RCU enabled. > [ 0.236614] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. > [ 0.236617] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 > [ 0.246098] NR_IRQS: 4352, nr_irqs: 56, preallocated irqs: 16 > [ 0.246516] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 > [ 0.252863] Console: colour VGA+ 80x25 > [ 0.285411] printk: console [tty0] enabled > [ 0.341424] printk: console [ttyS0] enabled > [ 0.342010] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar > [ 0.343034] ... MAX_LOCKDEP_SUBCLASSES: 8 > [ 0.343564] ... MAX_LOCK_DEPTH: 48 > [ 0.344099] ... MAX_LOCKDEP_KEYS: 8192 > [ 0.344657] ... CLASSHASH_SIZE: 4096 > [ 0.345239] ... MAX_LOCKDEP_ENTRIES: 32768 > [ 0.345872] ... MAX_LOCKDEP_CHAINS: 65536 > [ 0.346470] ... CHAINHASH_SIZE: 32768 > [ 0.347042] memory used by lock dependency info: 6365 kB > [ 0.347732] memory used for stack traces: 4224 kB > [ 0.349158] per task-struct memory footprint: 1920 bytes > [ 0.350184] ACPI: Core revision 20210930 > [ 0.351362] APIC: Switch to symmetric I/O mode setup > [ 0.353278] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c604d3dd7, max_idle_ns: 440795267083 ns > [ 0.354743] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.57 BogoMIPS (lpj=14367148) > [ 0.356135] pid_max: default: 32768 minimum: 301 > [ 0.356866] LSM: Security Framework initializing > [ 0.357606] SELinux: Initializing. > [ 0.358214] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > [ 0.358743] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > [ 0.358743] x86/cpu: User Mode Instruction Prevention (UMIP) activated > [ 0.358743] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 > [ 0.358743] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 > [ 0.358743] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization > [ 0.358743] Spectre V2 : Mitigation: Full generic retpoline > [ 0.358743] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch > [ 0.358743] Spectre V2 : Enabling Restricted Speculation for firmware calls > [ 0.358743] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier > [ 0.358743] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl > [ 0.358743] SRBDS: Unknown: Dependent on hypervisor status > [ 0.358743] MDS: Mitigation: Clear CPU buffers > [ 0.358743] Freeing SMP alternatives memory: 44K > [ 0.358743] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) > [ 0.358743] Running RCU-tasks wait API self tests > [ 0.458995] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. > [ 0.460503] rcu: Hierarchical SRCU implementation. > [ 0.462157] NMI watchdog: Perf NMI watchdog permanently disabled > [ 0.463002] smp: Bringing up secondary CPUs ... > [ 0.464950] x86: Booting SMP configuration: > [ 0.465537] .... node #0, CPUs: #1 > [ 0.112317] smpboot: CPU 1 Converting physical 0 to logical die 1 > [ 0.547215] smp: Brought up 1 node, 2 CPUs > [ 0.547814] smpboot: Max logical packages: 2 > [ 0.548434] smpboot: Total of 2 processors activated (14386.42 BogoMIPS) > [ 0.550634] devtmpfs: initialized > [ 0.554801] Callback from call_rcu_tasks_trace() invoked. > [ 0.556772] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns > [ 0.558148] futex hash table entries: 512 (order: 4, 65536 bytes, linear) > [ 0.560130] NET: Registered PF_NETLINK/PF_ROUTE protocol family > [ 0.561904] audit: initializing netlink subsys (disabled) > [ 0.562980] Callback from call_rcu_tasks_rude() invoked. > [ 0.562980] audit: type=2000 audit(1642005631.208:1): state=initialized audit_enabled=0 res=1 > [ 0.564434] thermal_sys: Registered thermal governor 'step_wise' > [ 0.564897] thermal_sys: Registered thermal governor 'user_space' > [ 0.565807] cpuidle: using governor ladder > [ 0.567202] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) > [ 0.568443] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 > [ 0.569384] PCI: Using configuration type 1 for base access > [ 0.595171] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. > [ 0.597094] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages > [ 0.598409] cryptd: max_cpu_qlen set to 1000 > [ 0.666772] raid6: avx2x4 gen() 33460 MB/s > [ 0.670759] Callback from call_rcu_tasks() invoked. > [ 0.738747] raid6: avx2x4 xor() 12834 MB/s > [ 0.806748] raid6: avx2x2 gen() 31395 MB/s > [ 0.874753] raid6: avx2x2 xor() 16250 MB/s > [ 0.942748] raid6: avx2x1 gen() 21106 MB/s > [ 1.010748] raid6: avx2x1 xor() 13944 MB/s > [ 1.078749] raid6: sse2x4 gen() 15737 MB/s > [ 1.146749] raid6: sse2x4 xor() 8765 MB/s > [ 1.214864] raid6: sse2x2 gen() 15874 MB/s > [ 1.282747] raid6: sse2x2 xor() 9860 MB/s > [ 1.350748] raid6: sse2x1 gen() 12302 MB/s > [ 1.418748] raid6: sse2x1 xor() 8642 MB/s > [ 1.419372] raid6: using algorithm avx2x4 gen() 33460 MB/s > [ 1.420108] raid6: .... xor() 12834 MB/s, rmw enabled > [ 1.420790] raid6: using avx2x2 recovery algorithm > [ 1.421810] ACPI: Added _OSI(Module Device) > [ 1.422358] ACPI: Added _OSI(Processor Device) > [ 1.422750] ACPI: Added _OSI(3.0 _SCP Extensions) > [ 1.423428] ACPI: Added _OSI(Processor Aggregator Device) > [ 1.424154] ACPI: Added _OSI(Linux-Dell-Video) > [ 1.424733] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) > [ 1.425493] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) > [ 1.457880] ACPI: 1 ACPI AML tables successfully acquired and loaded > [ 1.482752] ACPI: Interpreter enabled > [ 1.482752] ACPI: PM: (supports S0 S5) > [ 1.482761] ACPI: Using IOAPIC for interrupt routing > [ 1.483660] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug > [ 1.486749] ACPI: Enabled 1 GPEs in block 00 to 3F > [ 1.519179] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) > [ 1.520193] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments HPX-Type3] > [ 1.521406] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control > [ 1.524178] PCI host bridge to bus 0000:00 > [ 1.525561] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] > [ 1.526771] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] > [ 1.527754] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] > [ 1.528814] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window] > [ 1.529801] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] > [ 1.530753] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] > [ 1.531784] pci_bus 0000:00: root bus resource [bus 00-ff] > [ 1.532720] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 > [ 1.535064] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000 > [ 1.538691] pci 0000:00:01.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] > [ 1.541347] pci 0000:00:01.0: reg 0x14: [mem 0xf8000000-0xfbffffff] > [ 1.548136] pci 0000:00:01.0: reg 0x18: [mem 0xfce14000-0xfce15fff] > [ 1.551749] pci 0000:00:01.0: reg 0x1c: [io 0xc040-0xc05f] > [ 1.562234] pci 0000:00:01.0: reg 0x30: [mem 0xfce00000-0xfce0ffff pref] > [ 1.564193] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400 > [ 1.566392] pci 0000:00:02.0: reg 0x10: [mem 0xfce16000-0xfce16fff] > [ 1.570855] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 > [ 1.572957] pci 0000:00:02.1: reg 0x10: [mem 0xfce17000-0xfce17fff] > [ 1.576544] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 > [ 1.578655] pci 0000:00:02.2: reg 0x10: [mem 0xfce18000-0xfce18fff] > [ 1.584327] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 > [ 1.587400] pci 0000:00:02.3: reg 0x10: [mem 0xfce19000-0xfce19fff] > [ 1.591318] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 > [ 1.594121] pci 0000:00:02.4: reg 0x10: [mem 0xfce1a000-0xfce1afff] > [ 1.601524] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 > [ 1.603552] pci 0000:00:02.5: reg 0x10: [mem 0xfce1b000-0xfce1bfff] > [ 1.609104] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 > [ 1.611147] pci 0000:00:02.6: reg 0x10: [mem 0xfce1c000-0xfce1cfff] > [ 1.615049] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 > [ 1.616318] pci 0000:00:1b.0: reg 0x10: [mem 0xfce10000-0xfce13fff] > [ 1.622859] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 > [ 1.624201] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO > [ 1.626532] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 > [ 1.631433] pci 0000:00:1f.2: reg 0x20: [io 0xc060-0xc07f] > [ 1.633066] pci 0000:00:1f.2: reg 0x24: [mem 0xfce1d000-0xfce1dfff] > [ 1.635263] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 > [ 1.638672] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] > [ 1.646276] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000 > [ 1.648447] pci 0000:01:00.0: reg 0x14: [mem 0xfcc40000-0xfcc40fff] > [ 1.651541] pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref] > [ 1.654708] pci 0000:01:00.0: reg 0x30: [mem 0xfcc00000-0xfcc3ffff pref] > [ 1.656245] pci 0000:00:02.0: PCI bridge to [bus 01] > [ 1.657166] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] > [ 1.658560] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] > [ 1.665128] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330 > [ 1.666639] pci 0000:02:00.0: reg 0x10: [mem 0xfca00000-0xfca03fff 64bit] > [ 1.669547] pci 0000:00:02.1: PCI bridge to [bus 02] > [ 1.670253] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] > [ 1.670778] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] > [ 1.672750] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000 > [ 1.676211] pci 0000:03:00.0: reg 0x14: [mem 0xfc800000-0xfc800fff] > [ 1.679169] pci 0000:03:00.0: reg 0x20: [mem 0xfe600000-0xfe603fff 64bit pref] > [ 1.682558] pci 0000:00:02.2: PCI bridge to [bus 03] > [ 1.682793] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] > [ 1.685144] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] > [ 1.687495] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000 > [ 1.689946] pci 0000:04:00.0: reg 0x14: [mem 0xfc600000-0xfc600fff] > [ 1.693151] pci 0000:04:00.0: reg 0x20: [mem 0xfe400000-0xfe403fff 64bit pref] > [ 1.700473] pci 0000:00:02.3: PCI bridge to [bus 04] > [ 1.701209] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] > [ 1.702128] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] > [ 1.703714] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00 > [ 1.707200] pci 0000:05:00.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] > [ 1.711310] pci 0000:00:02.4: PCI bridge to [bus 05] > [ 1.712069] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] > [ 1.713336] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] > [ 1.716482] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00 > [ 1.722542] pci 0000:06:00.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref] > [ 1.725211] pci 0000:00:02.5: PCI bridge to [bus 06] > [ 1.726212] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] > [ 1.726791] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] > [ 1.729879] pci 0000:00:02.6: PCI bridge to [bus 07] > [ 1.730651] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] > [ 1.730778] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] > [ 1.736005] pci_bus 0000:00: on NUMA node 0 > [ 1.741503] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 > [ 1.744737] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 > [ 1.746758] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 > [ 1.748846] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 > [ 1.750851] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 > [ 1.752940] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 > [ 1.754949] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 > [ 1.757050] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 > [ 1.758160] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 > [ 1.758938] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 > [ 1.759889] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 > [ 1.760914] ACPI: PCI: Interrupt link GSID configured for IRQ 19 > [ 1.761939] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 > [ 1.766937] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 > [ 1.767962] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 > [ 1.768958] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 > [ 1.773089] pci 0000:00:01.0: vgaarb: setting as boot VGA device > [ 1.773978] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none > [ 1.774767] pci 0000:00:01.0: vgaarb: bridge control possible > [ 1.775580] vgaarb: loaded > [ 1.776770] SCSI subsystem initialized > [ 1.778193] libata version 3.00 loaded. > [ 1.778193] ACPI: bus type USB registered > [ 1.778750] usbcore: registered new interface driver usbfs > [ 1.778857] usbcore: registered new interface driver hub > [ 1.779636] usbcore: registered new device driver usb > [ 1.780451] pps_core: LinuxPPS API ver. 1 registered > [ 1.781112] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> > [ 1.782493] PTP clock support registered > [ 1.784500] EDAC MC: Ver: 3.0.0 > [ 1.785785] Advanced Linux Sound Architecture Driver Initialized. > [ 1.786798] PCI: Using ACPI for IRQ routing > [ 1.842255] PCI: pci_cache_line_size set to 64 bytes > [ 1.842540] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] > [ 1.842577] e820: reserve RAM buffer [mem 0x7ffdc000-0x7fffffff] > [ 1.842970] clocksource: Switched to clocksource tsc-early > [ 2.035298] VFS: Disk quotas dquot_6.6.0 > [ 2.035981] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) > [ 2.037121] FS-Cache: Loaded > [ 2.037960] CacheFiles: Loaded > [ 2.038518] pnp: PnP ACPI init > [ 2.040511] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved > [ 2.044352] pnp: PnP ACPI: found 5 devices > [ 2.064254] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns > [ 2.065958] NET: Registered PF_INET protocol family > [ 2.066945] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) > [ 2.069039] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) > [ 2.070326] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) > [ 2.071828] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) > [ 2.073288] TCP: Hash tables configured (established 16384 bind 16384) > [ 2.074354] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) > [ 2.075383] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) > [ 2.076613] NET: Registered PF_UNIX/PF_LOCAL protocol family > [ 2.077413] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 > [ 2.078529] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 > [ 2.079641] pci 0000:00:02.2: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 > [ 2.080719] pci 0000:00:02.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000 > [ 2.081811] pci 0000:00:02.4: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000 > [ 2.082948] pci 0000:00:02.5: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 > [ 2.084025] pci 0000:00:02.6: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 > [ 2.085111] pci 0000:00:02.0: BAR 7: assigned [io 0x1000-0x1fff] > [ 2.085981] pci 0000:00:02.1: BAR 7: assigned [io 0x2000-0x2fff] > [ 2.086810] pci 0000:00:02.2: BAR 7: assigned [io 0x3000-0x3fff] > [ 2.087614] pci 0000:00:02.3: BAR 7: assigned [io 0x4000-0x4fff] > [ 2.088415] pci 0000:00:02.4: BAR 7: assigned [io 0x5000-0x5fff] > [ 2.089201] pci 0000:00:02.5: BAR 7: assigned [io 0x6000-0x6fff] > [ 2.090032] pci 0000:00:02.6: BAR 7: assigned [io 0x7000-0x7fff] > [ 2.091014] pci 0000:00:02.0: PCI bridge to [bus 01] > [ 2.091666] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff] > [ 2.093625] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] > [ 2.096206] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] > [ 2.098607] pci 0000:00:02.1: PCI bridge to [bus 02] > [ 2.107557] pci 0000:00:02.1: bridge window [io 0x2000-0x2fff] > [ 2.109321] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] > [ 2.111058] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] > [ 2.113315] pci 0000:00:02.2: PCI bridge to [bus 03] > [ 2.114828] pci 0000:00:02.2: bridge window [io 0x3000-0x3fff] > [ 2.116339] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] > [ 2.117673] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] > [ 2.119702] pci 0000:00:02.3: PCI bridge to [bus 04] > [ 2.120377] pci 0000:00:02.3: bridge window [io 0x4000-0x4fff] > [ 2.122070] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] > [ 2.123621] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] > [ 2.127750] pci 0000:00:02.4: PCI bridge to [bus 05] > [ 2.128452] pci 0000:00:02.4: bridge window [io 0x5000-0x5fff] > [ 2.129948] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] > [ 2.131293] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] > [ 2.133183] pci 0000:00:02.5: PCI bridge to [bus 06] > [ 2.133884] pci 0000:00:02.5: bridge window [io 0x6000-0x6fff] > [ 2.135463] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] > [ 2.137987] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] > [ 2.139814] pci 0000:00:02.6: PCI bridge to [bus 07] > [ 2.140490] pci 0000:00:02.6: bridge window [io 0x7000-0x7fff] > [ 2.141949] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] > [ 2.143311] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] > [ 2.145174] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > [ 2.146052] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > [ 2.148019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] > [ 2.148914] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window] > [ 2.149845] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] > [ 2.150799] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] > [ 2.151720] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] > [ 2.152452] pci_bus 0000:01: resource 1 [mem 0xfcc00000-0xfcdfffff] > [ 2.153255] pci_bus 0000:01: resource 2 [mem 0xfea00000-0xfebfffff 64bit pref] > [ 2.154240] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] > [ 2.155046] pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff] > [ 2.156636] pci_bus 0000:02: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref] > [ 2.157602] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] > [ 2.158387] pci_bus 0000:03: resource 1 [mem 0xfc800000-0xfc9fffff] > [ 2.159282] pci_bus 0000:03: resource 2 [mem 0xfe600000-0xfe7fffff 64bit pref] > [ 2.160251] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff] > [ 2.161035] pci_bus 0000:04: resource 1 [mem 0xfc600000-0xfc7fffff] > [ 2.161909] pci_bus 0000:04: resource 2 [mem 0xfe400000-0xfe5fffff 64bit pref] > [ 2.162902] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] > [ 2.163619] pci_bus 0000:05: resource 1 [mem 0xfc400000-0xfc5fffff] > [ 2.164420] pci_bus 0000:05: resource 2 [mem 0xfe200000-0xfe3fffff 64bit pref] > [ 2.165342] pci_bus 0000:06: resource 0 [io 0x6000-0x6fff] > [ 2.166091] pci_bus 0000:06: resource 1 [mem 0xfc200000-0xfc3fffff] > [ 2.166960] pci_bus 0000:06: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref] > [ 2.167884] pci_bus 0000:07: resource 0 [io 0x7000-0x7fff] > [ 2.168599] pci_bus 0000:07: resource 1 [mem 0xfc000000-0xfc1fffff] > [ 2.169400] pci_bus 0000:07: resource 2 [mem 0xfde00000-0xfdffffff 64bit pref] > [ 2.170541] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] > [ 2.180949] ACPI: \_SB_.GSIG: Enabled at IRQ 22 > [ 2.199686] pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0xa70 took 27224 usecs > [ 2.200800] PCI: CLS 0 bytes, default 64 > [ 2.202085] Trying to unpack rootfs image as initramfs... > [ 2.203583] Initialise system trusted keyrings > [ 2.204372] workingset: timestamp_bits=62 max_order=19 bucket_order=0 > [ 2.206592] DLM installed > [ 2.210086] Key type cifs.idmap registered > [ 2.210915] fuse: init (API version 7.35) > [ 2.211730] SGI XFS with ACLs, security attributes, no debug enabled > [ 2.213541] ocfs2: Registered cluster interface o2cb > [ 2.214457] ocfs2: Registered cluster interface user > [ 2.215320] OCFS2 User DLM kernel interface loaded > [ 2.223471] gfs2: GFS2 installed > [ 2.232573] xor: automatically using best checksumming function avx > [ 2.233488] Key type asymmetric registered > [ 2.234109] Asymmetric key parser 'x509' registered > [ 2.235034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) > [ 2.236044] io scheduler mq-deadline registered > [ 2.236631] io scheduler kyber registered > [ 2.237151] test_string_helpers: Running tests... > [ 2.251590] cryptomgr_test (80) used greatest stack depth: 30192 bytes left > [ 2.253812] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 > [ 2.255322] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 > [ 2.263630] ACPI: button: Power Button [PWRF] > [ 2.503777] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled > [ 2.505227] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A > [ 2.512214] Non-volatile memory driver v1.3 > [ 2.513012] Linux agpgart interface v0.103 > [ 2.515374] ACPI: bus type drm_connector registered > [ 2.536836] brd: module loaded > [ 2.553358] loop: module loaded > [ 2.554597] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) > [ 2.560013] vda: vda1 vda2 > [ 2.563947] zram: Added device: zram0 > [ 2.565170] ahci 0000:00:1f.2: version 3.0 > [ 2.577984] ACPI: \_SB_.GSIA: Enabled at IRQ 16 > [ 2.581236] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode > [ 2.582629] ahci 0000:00:1f.2: flags: 64bit ncq only > [ 2.591294] scsi host0: ahci > [ 2.593071] scsi host1: ahci > [ 2.594746] scsi host2: ahci > [ 2.596433] scsi host3: ahci > [ 2.598107] scsi host4: ahci > [ 2.599711] scsi host5: ahci > [ 2.600666] ata1: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d100 irq 16 > [ 2.601704] ata2: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d180 irq 16 > [ 2.602728] ata3: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d200 irq 16 > [ 2.603965] ata4: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d280 irq 16 > [ 2.604966] ata5: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d300 irq 16 > [ 2.606025] ata6: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d380 irq 16 > [ 2.608967] tun: Universal TUN/TAP device driver, 1.6 > [ 2.615031] e1000: Intel(R) PRO/1000 Network Driver > [ 2.615697] e1000: Copyright (c) 1999-2006 Intel Corporation. > [ 2.616600] e1000e: Intel(R) PRO/1000 Network Driver > [ 2.617285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. > [ 2.618418] PPP generic driver version 2.4.2 > [ 2.621200] aoe: AoE v85 initialised. > [ 2.622145] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver > [ 2.623064] ehci-pci: EHCI PCI platform driver > [ 2.623725] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > [ 2.624583] ohci-pci: OHCI PCI platform driver > [ 2.625273] uhci_hcd: USB Universal Host Controller Interface driver > [ 2.626383] usbcore: registered new interface driver usblp > [ 2.627485] usbcore: registered new interface driver usb-storage > [ 2.628515] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 > [ 2.630612] serio: i8042 KBD port at 0x60,0x64 irq 1 > [ 2.632241] serio: i8042 AUX port at 0x60,0x64 irq 12 > [ 2.633725] mousedev: PS/2 mouse device common for all mice > [ 2.635967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 > [ 2.641790] input: PC Speaker as /devices/platform/pcspkr/input/input4 > [ 2.665764] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt > [ 2.667260] i2c i2c-0: 1/1 memory slots populated (from DMI) > [ 2.668024] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD > [ 2.675052] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. > [ 2.676742] device-mapper: uevent: version 1.0.3 > [ 2.678918] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com > [ 2.683257] device-mapper: multipath round-robin: version 1.2.0 loaded > [ 2.684241] intel_pstate: CPU model not supported > [ 2.688823] usbcore: registered new interface driver usbhid > [ 2.689598] usbhid: USB HID core driver > [ 2.705474] netem: version 1.3 > [ 2.706277] NET: Registered PF_INET6 protocol family > [ 2.712188] Segment Routing with IPv6 > [ 2.712717] In-situ OAM (IOAM) with IPv6 > [ 2.713285] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver > [ 2.715480] NET: Registered PF_PACKET protocol family > [ 2.716182] NET: Registered PF_KEY protocol family > [ 2.716862] sctp: Hash tables configured (bind 32/56) > [ 2.717728] Key type dns_resolver registered > [ 2.726933] IPI shorthand broadcast: enabled > [ 2.727537] AVX2 version of gcm_enc/dec engaged. > [ 2.728259] AES CTR mode by8 optimization enabled > [ 2.730257] sched_clock: Marking stable (2618472228, 108317297)->(2782282047, -55492522) > [ 2.735020] Loading compiled-in X.509 certificates > [ 2.736126] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers > [ 2.738851] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no > [ 2.739983] ima: No TPM chip found, activating TPM-bypass! > [ 2.746925] ima: Allocated hash algorithm: sha1 > [ 2.747568] ima: No architecture policies found > [ 2.760119] cryptomgr_test (960) used greatest stack depth: 29896 bytes left > [ 2.774263] ALSA device list: > [ 2.774801] #0: Virtual MIDI Card 1 > [ 2.927000] ata2: SATA link down (SStatus 0 SControl 300) > [ 2.928006] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) > [ 2.929043] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 > [ 2.929850] ata1.00: applying bridge limits > [ 2.930655] ata1.00: configured for UDMA/100 > [ 2.943534] ata3: SATA link down (SStatus 0 SControl 300) > [ 2.944410] ata5: SATA link down (SStatus 0 SControl 300) > [ 2.945288] ata4: SATA link down (SStatus 0 SControl 300) > [ 2.947488] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 > [ 2.950893] ata6: SATA link down (SStatus 0 SControl 300) > [ 2.983329] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray > [ 2.984315] cdrom: Uniform CD-ROM driver Revision: 3.20 > [ 3.002413] Freeing initrd memory: 28888K > [ 3.003747] kworker/u4:10 (919) used greatest stack depth: 28568 bytes left > [ 3.007194] kworker/u4:2 (706) used greatest stack depth: 28384 bytes left > [ 3.083826] sr 0:0:0:0: Attached scsi CD-ROM sr0 > [ 3.085147] sr 0:0:0:0: Attached scsi generic sg0 type 5 > [ 3.103164] Freeing unused kernel image (initmem) memory: 2076K > [ 3.117192] Write protecting the kernel read-only data: 61440k > [ 3.120374] Freeing unused kernel image (text/rodata gap) memory: 2028K > [ 3.122810] Freeing unused kernel image (rodata/data gap) memory: 948K > [ 3.126083] Run /init as init process > [ 3.127909] with arguments: > [ 3.127914] /init > [ 3.127917] with environment: > [ 3.127920] HOME=/ > [ 3.127923] TERM=linux > [ 3.127926] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 > [ 3.127929] resume=/dev/mapper/fedora-swap > [ 3.177129] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > [ 3.191635] systemd[1]: Detected virtualization kvm. > [ 3.192554] systemd[1]: Detected architecture x86-64. > [ 3.193497] systemd[1]: Running in initial RAM disk. > [ 3.200495] systemd[1]: Set hostname to <test3.fieldses.org>. > [ 3.206888] tsc: Refined TSC clocksource calibration: 3591.601 MHz > [ 3.207931] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55573deb, max_idle_ns: 440795385523 ns > [ 3.209808] clocksource: Switched to clocksource tsc > [ 3.276323] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 > [ 3.410362] dracut-rootfs-g (994) used greatest stack depth: 28168 bytes left > [ 3.459425] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > [ 3.483169] systemd[1]: Queued start job for default target Initrd Default Target. > [ 3.486365] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. > [ 3.490492] systemd[1]: Reached target Slices. > [ 3.492032] systemd[1]: Reached target Swap. > [ 3.493442] systemd[1]: Reached target Timers. > [ 3.496270] systemd[1]: Listening on Journal Audit Socket. > [ 3.499878] systemd[1]: Listening on Journal Socket (/dev/log). > [ 3.503436] systemd[1]: Listening on Journal Socket. > [ 3.506420] systemd[1]: Listening on udev Control Socket. > [ 3.509264] systemd[1]: Listening on udev Kernel Socket. > [ 3.511877] systemd[1]: Reached target Sockets. > [ 3.513442] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > [ 3.520259] systemd[1]: Started Memstrack Anylazing Service. > [ 3.527783] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. > [ 3.530307] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. > [ 3.532742] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) > [ 3.540109] systemd[1]: Starting Journal Service... > [ 3.550015] systemd[1]: Starting Load Kernel Modules... > [ 3.559017] systemd[1]: Starting Create Static Device Nodes in /dev... > [ 3.565890] random: rngd: uninitialized urandom read (16 bytes read) > [ 3.579371] systemd[1]: Starting Setup Virtual Console... > [ 3.611362] systemd[1]: memstrack.service: Succeeded. > [ 3.627660] systemd[1]: Finished Create Static Device Nodes in /dev. > [ 3.668283] systemd[1]: Finished Load Kernel Modules. > [ 3.683342] systemd[1]: Starting Apply Kernel Variables... > [ 3.793704] systemd[1]: Finished Apply Kernel Variables. > [ 3.852545] audit: type=1130 audit(1642005634.495:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 4.017096] systemd[1]: Started Journal Service. > [ 4.019152] audit: type=1130 audit(1642005634.663:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 4.367941] audit: type=1130 audit(1642005635.011:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 5.158530] audit: type=1130 audit(1642005635.799:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 5.240723] random: crng init done > [ 5.428343] audit: type=1130 audit(1642005636.071:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 5.562117] audit: type=1130 audit(1642005636.203:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 5.826193] kworker/u4:0 (1195) used greatest stack depth: 27960 bytes left > [ 7.667205] virtio_net virtio0 enp1s0: renamed from eth0 > [ 8.061253] ata_id (1566) used greatest stack depth: 27648 bytes left > [ 8.873062] audit: type=1130 audit(1642005639.515:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 9.126782] audit: type=1130 audit(1642005639.767:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 9.898584] lvm (2335) used greatest stack depth: 27600 bytes left > [ 10.171243] lvm (2337) used greatest stack depth: 27504 bytes left > [ 10.389632] audit: type=1130 audit(1642005641.031:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' > [ 10.456068] audit: type=1130 audit(1642005641.099:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 10.477828] dracut-initqueu (2286) used greatest stack depth: 27416 bytes left > [ 10.481902] audit: type=1130 audit(1642005641.123:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 10.545851] fsck (2364) used greatest stack depth: 26560 bytes left > [ 10.555806] audit: type=1130 audit(1642005641.195:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 10.584297] XFS (dm-0): Mounting V5 Filesystem > [ 10.767936] XFS (dm-0): Ending clean mount > [ 10.840832] mount (2366) used greatest stack depth: 25344 bytes left > [ 10.996402] systemd-fstab-g (2379) used greatest stack depth: 24872 bytes left > [ 11.699148] audit: type=1130 audit(1642005642.339:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 11.702004] audit: type=1131 audit(1642005642.339:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 11.858512] audit: type=1130 audit(1642005642.499:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 11.895749] audit: type=1131 audit(1642005642.535:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 14.895253] SELinux: Permission watch in class filesystem not defined in policy. > [ 14.896380] SELinux: Permission watch in class file not defined in policy. > [ 14.898184] SELinux: Permission watch_mount in class file not defined in policy. > [ 14.899597] SELinux: Permission watch_sb in class file not defined in policy. > [ 14.900888] SELinux: Permission watch_with_perm in class file not defined in policy. > [ 14.902011] SELinux: Permission watch_reads in class file not defined in policy. > [ 14.903080] SELinux: Permission watch in class dir not defined in policy. > [ 14.915479] SELinux: Permission watch_mount in class dir not defined in policy. > [ 14.916793] SELinux: Permission watch_sb in class dir not defined in policy. > [ 14.918117] SELinux: Permission watch_with_perm in class dir not defined in policy. > [ 14.919521] SELinux: Permission watch_reads in class dir not defined in policy. > [ 14.920832] SELinux: Permission watch in class lnk_file not defined in policy. > [ 14.922158] SELinux: Permission watch_mount in class lnk_file not defined in policy. > [ 14.923410] SELinux: Permission watch_sb in class lnk_file not defined in policy. > [ 14.924406] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. > [ 14.925567] SELinux: Permission watch_reads in class lnk_file not defined in policy. > [ 14.927302] SELinux: Permission watch in class chr_file not defined in policy. > [ 14.928363] SELinux: Permission watch_mount in class chr_file not defined in policy. > [ 14.929448] SELinux: Permission watch_sb in class chr_file not defined in policy. > [ 14.930486] SELinux: Permission watch_with_perm in class chr_file not defined in policy. > [ 14.931631] SELinux: Permission watch_reads in class chr_file not defined in policy. > [ 14.932702] SELinux: Permission watch in class blk_file not defined in policy. > [ 14.933695] SELinux: Permission watch_mount in class blk_file not defined in policy. > [ 14.934779] SELinux: Permission watch_sb in class blk_file not defined in policy. > [ 14.935782] SELinux: Permission watch_with_perm in class blk_file not defined in policy. > [ 14.936834] SELinux: Permission watch_reads in class blk_file not defined in policy. > [ 14.937933] SELinux: Permission watch in class sock_file not defined in policy. > [ 14.938979] SELinux: Permission watch_mount in class sock_file not defined in policy. > [ 14.940022] SELinux: Permission watch_sb in class sock_file not defined in policy. > [ 14.941043] SELinux: Permission watch_with_perm in class sock_file not defined in policy. > [ 14.942178] SELinux: Permission watch_reads in class sock_file not defined in policy. > [ 14.943287] SELinux: Permission watch in class fifo_file not defined in policy. > [ 14.944263] SELinux: Permission watch_mount in class fifo_file not defined in policy. > [ 14.945325] SELinux: Permission watch_sb in class fifo_file not defined in policy. > [ 14.946386] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. > [ 14.947525] SELinux: Permission watch_reads in class fifo_file not defined in policy. > [ 14.948611] SELinux: Permission perfmon in class capability2 not defined in policy. > [ 14.949662] SELinux: Permission bpf in class capability2 not defined in policy. > [ 14.950682] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. > [ 14.951921] SELinux: Permission perfmon in class cap2_userns not defined in policy. > [ 14.952939] SELinux: Permission bpf in class cap2_userns not defined in policy. > [ 14.953970] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. > [ 14.955277] SELinux: Class mctp_socket not defined in policy. > [ 14.956110] SELinux: Class perf_event not defined in policy. > [ 14.957746] SELinux: Class anon_inode not defined in policy. > [ 14.958536] SELinux: Class io_uring not defined in policy. > [ 14.959313] SELinux: the above unknown classes and permissions will be allowed > [ 15.013559] SELinux: policy capability network_peer_controls=1 > [ 15.014417] SELinux: policy capability open_perms=1 > [ 15.015183] SELinux: policy capability extended_socket_class=1 > [ 15.015968] SELinux: policy capability always_check_network=0 > [ 15.017534] SELinux: policy capability cgroup_seclabel=1 > [ 15.018305] SELinux: policy capability nnp_nosuid_transition=1 > [ 15.019126] SELinux: policy capability genfs_seclabel_symlinks=0 > [ 15.244501] kauditd_printk_skb: 16 callbacks suppressed > [ 15.244506] audit: type=1403 audit(1642005645.887:34): auid=4294967295 ses=4294967295 lsm=selinux res=1 > [ 15.255513] systemd[1]: Successfully loaded SELinux policy in 2.766323s. > [ 15.619234] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 261.945ms. > [ 15.628383] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > [ 15.632666] systemd[1]: Detected virtualization kvm. > [ 15.633353] systemd[1]: Detected architecture x86-64. > [ 15.639738] systemd[1]: Set hostname to <test3.fieldses.org>. > [ 15.905148] lvmconfig (2442) used greatest stack depth: 24544 bytes left > [ 15.941811] kdump-dep-gener (2432) used greatest stack depth: 24464 bytes left > [ 15.942995] grep (2450) used greatest stack depth: 24448 bytes left > [ 16.222623] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > [ 16.548178] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. > [ 17.024523] audit: type=1131 audit(1642005647.667:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.032331] systemd[1]: initrd-switch-root.service: Succeeded. > [ 17.034511] systemd[1]: Stopped Switch Root. > [ 17.037797] audit: type=1130 audit(1642005647.679:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.039820] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. > [ 17.040822] audit: type=1131 audit(1642005647.679:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.044319] systemd[1]: Created slice system-getty.slice. > [ 17.048401] systemd[1]: Created slice system-modprobe.slice. > [ 17.052765] systemd[1]: Created slice system-serial\x2dgetty.slice. > [ 17.055258] systemd[1]: Created slice system-sshd\x2dkeygen.slice. > [ 17.058406] systemd[1]: Created slice User and Session Slice. > [ 17.060191] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. > [ 17.063067] systemd[1]: Started Forward Password Requests to Wall Directory Watch. > [ 17.066845] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. > [ 17.068244] systemd[1]: Reached target Local Encrypted Volumes. > [ 17.070271] systemd[1]: Stopped target Switch Root. > [ 17.071236] systemd[1]: Stopped target Initrd File Systems. > [ 17.072219] systemd[1]: Stopped target Initrd Root File System. > [ 17.075495] systemd[1]: Reached target Paths. > [ 17.076283] systemd[1]: Reached target Slices. > [ 17.080904] systemd[1]: Listening on Device-mapper event daemon FIFOs. > [ 17.084889] systemd[1]: Listening on LVM2 poll daemon socket. > [ 17.087729] systemd[1]: Listening on multipathd control socket. > [ 17.093018] systemd[1]: Listening on Process Core Dump Socket. > [ 17.095415] systemd[1]: Listening on initctl Compatibility Named Pipe. > [ 17.099466] systemd[1]: Listening on udev Control Socket. > [ 17.102467] systemd[1]: Listening on udev Kernel Socket. > [ 17.109715] systemd[1]: Activating swap /dev/mapper/fedora-swap... > [ 17.117743] systemd[1]: Mounting Huge Pages File System... > [ 17.125890] systemd[1]: Mounting POSIX Message Queue File System... > [ 17.130492] Adding 2097148k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:2097148k > [ 17.140236] systemd[1]: Mounting Kernel Debug File System... > [ 17.149754] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... > [ 17.151753] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > [ 17.159082] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... > [ 17.166647] systemd[1]: Starting Load Kernel Module configfs... > [ 17.173097] systemd[1]: Starting Load Kernel Module drm... > [ 17.181757] systemd[1]: Starting Load Kernel Module fuse... > [ 17.199195] systemd[1]: Starting Preprocess NFS configuration convertion... > [ 17.203114] systemd[1]: plymouth-switch-root.service: Succeeded. > [ 17.217307] systemd[1]: Stopped Plymouth switch root service. > [ 17.220790] audit: type=1131 audit(1642005647.863:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.222477] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. > [ 17.235950] systemd[1]: systemd-fsck-root.service: Succeeded. > [ 17.239114] systemd[1]: Stopped File System Check on Root Device. > [ 17.241914] systemd[1]: Stopped Journal Service. > [ 17.246822] audit: type=1131 audit(1642005647.883:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.248647] systemd[1]: Starting Journal Service... > [ 17.250212] audit: type=1130 audit(1642005647.883:40): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.263202] audit: type=1131 audit(1642005647.887:41): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.276489] systemd[1]: Starting Load Kernel Modules... > [ 17.295377] systemd[1]: Starting Remount Root and Kernel File Systems... > [ 17.297774] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. > [ 17.324773] systemd[1]: Starting Coldplug All udev Devices... > [ 17.328304] systemd[1]: sysroot.mount: Succeeded. > [ 17.374101] systemd[1]: Activated swap /dev/mapper/fedora-swap. > [ 17.401071] systemd[1]: Mounted Huge Pages File System. > [ 17.410741] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) > [ 17.425620] systemd[1]: Mounted POSIX Message Queue File System. > [ 17.440432] systemd[1]: Mounted Kernel Debug File System. > [ 17.447566] RPC: Registered named UNIX socket transport module. > [ 17.448425] RPC: Registered udp transport module. > [ 17.449052] RPC: Registered tcp transport module. > [ 17.449719] RPC: Registered tcp NFSv4.1 backchannel transport module. > [ 17.457211] systemd[1]: modprobe@configfs.service: Succeeded. > [ 17.459723] systemd[1]: Finished Load Kernel Module configfs. > [ 17.461450] audit: type=1130 audit(1642005648.103:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.464558] audit: type=1131 audit(1642005648.103:43): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 17.476290] systemd[1]: modprobe@drm.service: Succeeded. > [ 17.491863] systemd[1]: Finished Load Kernel Module drm. > [ 17.496010] systemd[1]: Finished Kernel Module supporting RPCSEC_GSS. > [ 17.501497] systemd[1]: modprobe@fuse.service: Succeeded. > [ 17.504499] systemd[1]: Finished Load Kernel Module fuse. > [ 17.517872] systemd[1]: Started Journal Service. > [ 20.438290] kauditd_printk_skb: 22 callbacks suppressed > [ 20.438294] audit: type=1130 audit(1642005651.079:64): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 20.725931] audit: type=1130 audit(1642005651.367:65): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-pvscan@253:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 20.998904] audit: type=1130 audit(1642005651.639:66): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 22.158644] audit: type=1130 audit(1642005652.799:67): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 22.183237] XFS (vda1): Mounting V5 Filesystem > [ 22.329168] XFS (vda1): Ending clean mount > [ 22.344447] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) > [ 22.381960] audit: type=1130 audit(1642005653.023:68): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 22.430820] audit: type=1130 audit(1642005653.071:69): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 22.485659] audit: type=1130 audit(1642005653.127:70): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=import-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 22.749894] audit: type=1130 audit(1642005653.391:71): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 22.857336] audit: type=1400 audit(1642005653.499:72): avc: denied { fowner } for pid=3657 comm="auditd" capability=3 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:system_r:auditd_t:s0 tclass=capability permissive=0 > [ 22.861281] audit: type=1300 audit(1642005653.499:72): arch=c000003e syscall=90 success=yes exit=0 a0=56090a1699e0 a1=1c0 a2=19 a3=56090a169c40 items=0 ppid=3655 pid=3657 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > [ 121.479732] rpm (3866) used greatest stack depth: 23336 bytes left > [ 160.313750] FS-Cache: Netfs 'nfs' registered for caching > [ 267.826493] NFS: Registering the id_resolver key type > [ 267.827159] Key type id_resolver registered > [ 267.827643] Key type id_legacy registered > [ 268.393694] mount.nfs (5859) used greatest stack depth: 22896 bytes left > [ 523.352374] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > [ 938.809224] kworker/dying (2523) used greatest stack depth: 21832 bytes left > [ 1827.841420] run fstests generic/001 at 2022-01-12 12:10:59 > [ 1867.998292] run fstests generic/002 at 2022-01-12 12:11:39 > [ 1869.297577] run fstests generic/003 at 2022-01-12 12:11:40 > [ 1869.823503] run fstests generic/004 at 2022-01-12 12:11:40 > [ 1870.357158] run fstests generic/005 at 2022-01-12 12:11:41 > [ 1872.033166] run fstests generic/008 at 2022-01-12 12:11:43 > [ 1872.682257] run fstests generic/009 at 2022-01-12 12:11:43 > [ 1873.300870] run fstests generic/010 at 2022-01-12 12:11:44 > [ 1873.867023] run fstests generic/011 at 2022-01-12 12:11:45 > [ 1939.414212] run fstests generic/012 at 2022-01-12 12:12:50 > [ 1940.257756] run fstests generic/013 at 2022-01-12 12:12:51 > [ 2006.667055] run fstests generic/015 at 2022-01-12 12:13:57 > [ 2007.186484] run fstests generic/016 at 2022-01-12 12:13:58 > [ 2008.063569] run fstests generic/018 at 2022-01-12 12:13:59 > [ 2008.831790] run fstests generic/020 at 2022-01-12 12:14:00 > [ 2020.997738] run fstests generic/021 at 2022-01-12 12:14:12 > [ 2021.774590] run fstests generic/022 at 2022-01-12 12:14:12 > [ 2022.542934] run fstests generic/023 at 2022-01-12 12:14:13 > [ 2025.824308] run fstests generic/024 at 2022-01-12 12:14:16 > [ 2026.390736] run fstests generic/025 at 2022-01-12 12:14:17 > [ 2026.963217] run fstests generic/026 at 2022-01-12 12:14:18 > [ 2027.592530] run fstests generic/027 at 2022-01-12 12:14:18 > [ 2028.101801] run fstests generic/028 at 2022-01-12 12:14:19 > [ 2033.709852] run fstests generic/029 at 2022-01-12 12:14:24 > [ 2035.495458] run fstests generic/030 at 2022-01-12 12:14:26 > [ 2038.537954] run fstests generic/034 at 2022-01-12 12:14:29 > [ 2039.329741] run fstests generic/036 at 2022-01-12 12:14:30 > [ 2050.072609] run fstests generic/037 at 2022-01-12 12:14:41 > [ 2071.336677] run fstests generic/038 at 2022-01-12 12:15:02 > [ 2072.411721] run fstests generic/039 at 2022-01-12 12:15:03 > [ 2073.123576] run fstests generic/040 at 2022-01-12 12:15:04 > [ 2073.748265] run fstests generic/041 at 2022-01-12 12:15:04 > [ 2074.344951] run fstests generic/043 at 2022-01-12 12:15:05 > [ 2075.114885] run fstests generic/044 at 2022-01-12 12:15:06 > [ 2075.977059] run fstests generic/045 at 2022-01-12 12:15:07 > [ 2076.855028] run fstests generic/046 at 2022-01-12 12:15:08 > [ 2077.696747] run fstests generic/047 at 2022-01-12 12:15:08 > [ 2078.533668] run fstests generic/048 at 2022-01-12 12:15:09 > [ 2079.397374] run fstests generic/049 at 2022-01-12 12:15:10 > [ 2080.261339] run fstests generic/050 at 2022-01-12 12:15:11 > [ 2081.107141] run fstests generic/051 at 2022-01-12 12:15:12 > [ 2082.008096] run fstests generic/052 at 2022-01-12 12:15:13 > [ 2082.858320] run fstests generic/054 at 2022-01-12 12:15:14 > [ 2083.731997] run fstests generic/055 at 2022-01-12 12:15:14 > [ 2084.590242] run fstests generic/056 at 2022-01-12 12:15:15 > [ 2085.303754] run fstests generic/057 at 2022-01-12 12:15:16 > [ 2085.908458] run fstests generic/058 at 2022-01-12 12:15:17 > [ 2086.640354] run fstests generic/059 at 2022-01-12 12:15:17 > [ 2087.217469] run fstests generic/060 at 2022-01-12 12:15:18 > [ 2087.944489] run fstests generic/061 at 2022-01-12 12:15:19 > [ 2088.749344] run fstests generic/063 at 2022-01-12 12:15:19 > [ 2089.524340] run fstests generic/065 at 2022-01-12 12:15:20 > [ 2090.121276] run fstests generic/066 at 2022-01-12 12:15:21 > [ 2090.702873] run fstests generic/067 at 2022-01-12 12:15:21 > [ 2091.333532] run fstests generic/069 at 2022-01-12 12:15:22 > [ 2121.140927] run fstests generic/070 at 2022-01-12 12:15:52 > [ 2168.861297] run fstests generic/072 at 2022-01-12 12:16:40 > [ 2169.690898] run fstests generic/073 at 2022-01-12 12:16:40 > [ 2170.302749] run fstests generic/075 at 2022-01-12 12:16:41 > [ 2226.187399] run fstests generic/076 at 2022-01-12 12:17:37 > [ 2226.692121] run fstests generic/077 at 2022-01-12 12:17:37 > [ 2230.646484] run fstests generic/078 at 2022-01-12 12:17:41 > [ 2231.233467] run fstests generic/079 at 2022-01-12 12:17:42 > [ 2231.792759] run fstests generic/080 at 2022-01-12 12:17:42 > [ 2234.478551] run fstests generic/081 at 2022-01-12 12:17:45 > [ 2235.016264] run fstests generic/082 at 2022-01-12 12:17:46 > [ 2235.544754] run fstests generic/083 at 2022-01-12 12:17:46 > [ 2236.070354] run fstests generic/084 at 2022-01-12 12:17:47 > [ 2242.089643] run fstests generic/085 at 2022-01-12 12:17:53 > [ 2242.829424] run fstests generic/086 at 2022-01-12 12:17:54 > [ 2244.627985] 086 (63919): drop_caches: 3 > [ 2245.004053] run fstests generic/090 at 2022-01-12 12:17:56 > [ 2245.726297] run fstests generic/092 at 2022-01-12 12:17:56 > [ 2246.386331] run fstests generic/093 at 2022-01-12 12:17:57 > [ 2246.989287] run fstests generic/095 at 2022-01-12 12:17:58 > [ 2247.568818] run fstests generic/096 at 2022-01-12 12:17:58 > [ 2248.194588] run fstests generic/097 at 2022-01-12 12:17:59 > [ 2248.808142] run fstests generic/098 at 2022-01-12 12:17:59 > [ 2250.531860] run fstests generic/099 at 2022-01-12 12:18:01 > [ 2251.371697] run fstests generic/101 at 2022-01-12 12:18:02 > [ 2251.916640] run fstests generic/102 at 2022-01-12 12:18:03 > [ 2252.419409] run fstests generic/103 at 2022-01-12 12:18:03 > [ 2255.825340] run fstests generic/104 at 2022-01-12 12:18:06 > [ 2256.640587] run fstests generic/106 at 2022-01-12 12:18:07 > [ 2257.275429] run fstests generic/107 at 2022-01-12 12:18:08 > [ 2257.871596] run fstests generic/108 at 2022-01-12 12:18:09 > [ 2258.649789] run fstests generic/109 at 2022-01-12 12:18:09 > [ 2314.619077] run fstests generic/110 at 2022-01-12 12:19:05 > [ 2315.511518] run fstests generic/111 at 2022-01-12 12:19:06 > [ 2316.200429] run fstests generic/112 at 2022-01-12 12:19:07 > [ 2375.093348] run fstests generic/114 at 2022-01-12 12:20:06 > [ 2375.726022] run fstests generic/115 at 2022-01-12 12:20:06 > [ 2376.417534] run fstests generic/116 at 2022-01-12 12:20:07 > [ 2378.207570] run fstests generic/118 at 2022-01-12 12:20:09 > [ 2379.767855] run fstests generic/119 at 2022-01-12 12:20:10 > [ 2382.596453] run fstests generic/120 at 2022-01-12 12:20:13 > [ 2383.118291] run fstests generic/121 at 2022-01-12 12:20:14 > [ 2383.763385] run fstests generic/122 at 2022-01-12 12:20:14 > [ 2384.417857] run fstests generic/123 at 2022-01-12 12:20:15 > [ 2384.952387] run fstests generic/124 at 2022-01-12 12:20:16 > [ 2439.979901] run fstests generic/128 at 2022-01-12 12:21:11 > [ 2440.534640] run fstests generic/130 at 2022-01-12 12:21:11 > [ 2458.532247] run fstests generic/131 at 2022-01-12 12:21:29 > [ 2460.624455] run fstests generic/132 at 2022-01-12 12:21:31 > [ 2479.380043] run fstests generic/134 at 2022-01-12 12:21:50 > [ 2481.259289] run fstests generic/135 at 2022-01-12 12:21:52 > [ 2482.602837] run fstests generic/136 at 2022-01-12 12:21:53 > [ 2483.422863] run fstests generic/137 at 2022-01-12 12:21:54 > [ 2484.225794] run fstests generic/138 at 2022-01-12 12:21:55 > [ 2486.911951] run fstests generic/139 at 2022-01-12 12:21:58 > [ 2490.247175] run fstests generic/140 at 2022-01-12 12:22:01 > [ 2492.960214] run fstests generic/141 at 2022-01-12 12:22:04 > [ 2493.949160] run fstests generic/142 at 2022-01-12 12:22:05 > [ 2502.811792] run fstests generic/143 at 2022-01-12 12:22:13 > [ 2744.562632] run fstests generic/144 at 2022-01-12 12:26:15 > [ 2746.679337] run fstests generic/145 at 2022-01-12 12:26:17 > [ 2747.559239] run fstests generic/146 at 2022-01-12 12:26:18 > [ 2749.654314] run fstests generic/147 at 2022-01-12 12:26:20 > [ 2750.441774] run fstests generic/148 at 2022-01-12 12:26:21 > [ 2752.169829] run fstests generic/149 at 2022-01-12 12:26:23 > [ 2752.935800] run fstests generic/150 at 2022-01-12 12:26:24 > [ 2770.733819] run fstests generic/151 at 2022-01-12 12:26:41 > [ 2790.154829] run fstests generic/152 at 2022-01-12 12:27:01 > [ 2810.016846] run fstests generic/153 at 2022-01-12 12:27:21 > [ 2810.829252] run fstests generic/155 at 2022-01-12 12:27:22 > [ 2811.642982] run fstests generic/156 at 2022-01-12 12:27:22 > [ 2812.435476] run fstests generic/157 at 2022-01-12 12:27:23 > [ 2898.516142] run fstests generic/158 at 2022-01-12 12:28:49 > [ 2899.169820] run fstests generic/159 at 2022-01-12 12:28:50 > [ 2899.707414] run fstests generic/160 at 2022-01-12 12:28:50 > [ 2900.240792] run fstests generic/161 at 2022-01-12 12:28:51 > [ 2920.346459] run fstests generic/162 at 2022-01-12 12:29:11 > [ 2921.465497] run fstests generic/163 at 2022-01-12 12:29:12 > [ 2922.457235] run fstests generic/164 at 2022-01-12 12:29:13 > [ 2992.429168] run fstests generic/165 at 2022-01-12 12:30:23 > [ 3052.173968] run fstests generic/166 at 2022-01-12 12:31:23 > [ 3234.652685] run fstests generic/167 at 2022-01-12 12:34:25 > [ 3276.304549] run fstests generic/168 at 2022-01-12 12:35:07 > [ 3556.737914] run fstests generic/169 at 2022-01-12 12:39:47 > [ 3558.300604] run fstests generic/170 at 2022-01-12 12:39:49 > [ 3919.058972] run fstests generic/171 at 2022-01-12 12:45:50 > [ 3920.624329] run fstests generic/172 at 2022-01-12 12:45:51 > [ 3921.953882] run fstests generic/173 at 2022-01-12 12:45:53 > [ 3923.239526] run fstests generic/174 at 2022-01-12 12:45:54 > [ 3924.575586] run fstests generic/175 at 2022-01-12 12:45:55 > [ 4159.652128] run fstests generic/176 at 2022-01-12 12:49:50 > [ 4231.459928] run fstests generic/177 at 2022-01-12 12:51:02 > [ 4232.370516] run fstests generic/178 at 2022-01-12 12:51:03 > [ 4237.868525] run fstests generic/179 at 2022-01-12 12:51:09 > [ 4239.533836] run fstests generic/180 at 2022-01-12 12:51:10 > [ 4240.307772] run fstests generic/181 at 2022-01-12 12:51:11 > [ 4244.757968] run fstests generic/182 at 2022-01-12 12:51:15 > [ 4245.418557] run fstests generic/183 at 2022-01-12 12:51:16 > [ 4251.302820] run fstests generic/185 at 2022-01-12 12:51:22 > [ 4257.418284] run fstests generic/186 at 2022-01-12 12:51:28 > [ 5070.488206] run fstests generic/187 at 2022-01-12 13:05:01 > [ 5885.066194] run fstests generic/188 at 2022-01-12 13:18:36 > [ 5891.287909] run fstests generic/189 at 2022-01-12 13:18:42 > [ 5895.605867] run fstests generic/190 at 2022-01-12 13:18:46 > [ 5900.073040] run fstests generic/191 at 2022-01-12 13:18:51 > [ 5904.614273] run fstests generic/192 at 2022-01-12 13:18:55 > [ 5905.308580] run fstests generic/193 at 2022-01-12 13:18:56 > [ 5905.844031] run fstests generic/194 at 2022-01-12 13:18:57 > [ 5912.087984] run fstests generic/195 at 2022-01-12 13:19:03 > [ 5918.021826] run fstests generic/196 at 2022-01-12 13:19:09 > [ 5922.532326] run fstests generic/197 at 2022-01-12 13:19:13 > [ 5927.467154] run fstests generic/198 at 2022-01-12 13:19:18 > [ 5933.061489] run fstests generic/199 at 2022-01-12 13:19:24 > [ 5938.925983] run fstests generic/200 at 2022-01-12 13:19:30 > [ 5944.827402] run fstests generic/201 at 2022-01-12 13:19:36 > [ 5948.708601] run fstests generic/202 at 2022-01-12 13:19:39 > [ 5950.790927] run fstests generic/203 at 2022-01-12 13:19:41 > [ 5953.029748] run fstests generic/204 at 2022-01-12 13:19:44 > [ 5954.153740] run fstests generic/205 at 2022-01-12 13:19:45 > [ 5955.124318] run fstests generic/206 at 2022-01-12 13:19:46 > [ 5956.139535] run fstests generic/207 at 2022-01-12 13:19:47 > [ 5976.917435] run fstests generic/209 at 2022-01-12 13:20:08 > [ 6022.149019] run fstests generic/210 at 2022-01-12 13:20:53 > [ 6022.898911] run fstests generic/211 at 2022-01-12 13:20:54 > [ 6024.148505] run fstests generic/212 at 2022-01-12 13:20:55 > [ 6024.829471] run fstests generic/213 at 2022-01-12 13:20:56 > [ 6025.661954] run fstests generic/214 at 2022-01-12 13:20:56 > [ 6026.799438] run fstests generic/215 at 2022-01-12 13:20:57 > [ 6029.680826] run fstests generic/216 at 2022-01-12 13:21:00 > [ 6030.690346] run fstests generic/217 at 2022-01-12 13:21:01 > [ 6031.755530] run fstests generic/218 at 2022-01-12 13:21:02 > [ 6032.778991] run fstests generic/219 at 2022-01-12 13:21:03 > [ 6033.283631] run fstests generic/220 at 2022-01-12 13:21:04 > [ 6034.360789] run fstests generic/221 at 2022-01-12 13:21:05 > [ 6035.998554] run fstests generic/222 at 2022-01-12 13:21:07 > [ 6036.984890] run fstests generic/223 at 2022-01-12 13:21:08 > [ 6037.549093] run fstests generic/224 at 2022-01-12 13:21:08 > [ 6038.116815] run fstests generic/226 at 2022-01-12 13:21:09 > [ 6038.692541] run fstests generic/227 at 2022-01-12 13:21:09 > [ 6039.755092] run fstests generic/228 at 2022-01-12 13:21:10 > [ 6040.281881] Unsafe core_pattern used with fs.suid_dumpable=2. > Pipe handler or fully qualified core dump path required. > Set kernel.core_pattern before fs.suid_dumpable. > [ 6040.553574] run fstests generic/229 at 2022-01-12 13:21:11 > [ 6041.551145] run fstests generic/230 at 2022-01-12 13:21:12 > [ 6042.058550] run fstests generic/231 at 2022-01-12 13:21:13 > [ 6042.559297] run fstests generic/232 at 2022-01-12 13:21:13 > [ 6043.063531] run fstests generic/233 at 2022-01-12 13:21:14 > [ 6043.572898] run fstests generic/234 at 2022-01-12 13:21:14 > [ 6044.083619] run fstests generic/235 at 2022-01-12 13:21:15 > [ 6044.595386] run fstests generic/236 at 2022-01-12 13:21:15 > [ 6046.330897] run fstests generic/237 at 2022-01-12 13:21:17 > [ 6046.995456] run fstests generic/238 at 2022-01-12 13:21:18 > [ 6048.062920] run fstests generic/239 at 2022-01-12 13:21:19 > [ 6079.167087] run fstests generic/240 at 2022-01-12 13:21:50 > [ 6080.262050] run fstests generic/241 at 2022-01-12 13:21:51 > [ 6080.777265] run fstests generic/242 at 2022-01-12 13:21:51 > [ 6165.131825] run fstests generic/243 at 2022-01-12 13:23:16 > [ 6246.858636] run fstests generic/244 at 2022-01-12 13:24:38 > [ 6247.538623] run fstests generic/245 at 2022-01-12 13:24:38 > [ 6248.262918] run fstests generic/246 at 2022-01-12 13:24:39 > [ 6248.891286] run fstests generic/247 at 2022-01-12 13:24:40 > [ 6330.034484] run fstests generic/248 at 2022-01-12 13:26:01 > [ 6330.856382] run fstests generic/249 at 2022-01-12 13:26:02 > [ 6334.074505] run fstests generic/250 at 2022-01-12 13:26:05 > [ 6334.909446] run fstests generic/252 at 2022-01-12 13:26:06 > [ 6335.473954] run fstests generic/253 at 2022-01-12 13:26:06 > [ 6337.650997] run fstests generic/254 at 2022-01-12 13:26:08 > [ 6340.130137] run fstests generic/255 at 2022-01-12 13:26:11 > [ 6341.103237] run fstests generic/256 at 2022-01-12 13:26:12 > [ 6341.796869] run fstests generic/257 at 2022-01-12 13:26:12 > [ 6345.943041] run fstests generic/258 at 2022-01-12 13:26:17 > [ 6346.813066] run fstests generic/259 at 2022-01-12 13:26:18 > [ 6347.896367] run fstests generic/260 at 2022-01-12 13:26:19 > [ 6348.746022] run fstests generic/261 at 2022-01-12 13:26:19 > [ 6349.851327] run fstests generic/262 at 2022-01-12 13:26:21 > [ 6350.974652] run fstests generic/264 at 2022-01-12 13:26:22 > [ 6352.017430] run fstests generic/265 at 2022-01-12 13:26:23 > [ 6353.016731] run fstests generic/266 at 2022-01-12 13:26:24 > [ 6353.983465] run fstests generic/267 at 2022-01-12 13:26:25 > [ 6354.953896] run fstests generic/268 at 2022-01-12 13:26:26 > [ 6355.951768] run fstests generic/269 at 2022-01-12 13:26:27 > [ 6356.458572] run fstests generic/270 at 2022-01-12 13:26:27 > [ 6356.938338] run fstests generic/271 at 2022-01-12 13:26:28 > [ 6357.892032] run fstests generic/272 at 2022-01-12 13:26:29 > [ 6358.849363] run fstests generic/273 at 2022-01-12 13:26:30 > [ 6359.360457] run fstests generic/274 at 2022-01-12 13:26:30 > [ 6359.918582] run fstests generic/275 at 2022-01-12 13:26:31 > [ 6360.433874] run fstests generic/276 at 2022-01-12 13:26:31 > [ 6361.462929] run fstests generic/278 at 2022-01-12 13:26:32 > [ 6362.446136] run fstests generic/279 at 2022-01-12 13:26:33 > [ 6363.428985] run fstests generic/280 at 2022-01-12 13:26:34 > [ 6363.934111] run fstests generic/281 at 2022-01-12 13:26:35 > [ 6364.932675] run fstests generic/282 at 2022-01-12 13:26:36 > [ 6365.931183] run fstests generic/283 at 2022-01-12 13:26:37 > [ 6366.950101] run fstests generic/284 at 2022-01-12 13:26:38 > [ 6370.483205] run fstests generic/285 at 2022-01-12 13:26:41 > [ 6372.532605] run fstests generic/286 at 2022-01-12 13:26:43 > [ 6391.552588] run fstests generic/287 at 2022-01-12 13:27:02 > [ 6395.221066] run fstests generic/288 at 2022-01-12 13:27:06 > [ 6396.199239] run fstests generic/289 at 2022-01-12 13:27:07 > [ 6401.494200] run fstests generic/290 at 2022-01-12 13:27:12 > [ 6406.705872] run fstests generic/291 at 2022-01-12 13:27:17 > [ 6411.919310] run fstests generic/292 at 2022-01-12 13:27:23 > [ 6417.313613] run fstests generic/293 at 2022-01-12 13:27:28 > [ 6424.177254] run fstests generic/295 at 2022-01-12 13:27:35 > [ 6430.984886] run fstests generic/296 at 2022-01-12 13:27:42 > [ 6434.891933] run fstests generic/297 at 2022-01-12 13:27:46 > [ 6435.979562] run fstests generic/298 at 2022-01-12 13:27:47 > [ 6436.941076] run fstests generic/299 at 2022-01-12 13:27:48 > [ 6437.539615] run fstests generic/300 at 2022-01-12 13:27:48 > [ 6438.104575] run fstests generic/301 at 2022-01-12 13:27:49 > [ 6439.145713] run fstests generic/302 at 2022-01-12 13:27:50 > [ 6440.109454] run fstests generic/303 at 2022-01-12 13:27:51 > [ 6441.507025] run fstests generic/304 at 2022-01-12 13:27:52 > [ 6442.163632] run fstests generic/305 at 2022-01-12 13:27:53 > [ 6443.161513] run fstests generic/306 at 2022-01-12 13:27:54 > [ 6444.462375] run fstests generic/307 at 2022-01-12 13:27:55 > [ 6445.026925] run fstests generic/308 at 2022-01-12 13:27:56 > [ 6445.694065] run fstests generic/309 at 2022-01-12 13:27:56 > [ 6447.429347] run fstests generic/311 at 2022-01-12 13:27:58 > [ 6448.065661] run fstests generic/312 at 2022-01-12 13:27:59 > [ 6448.641786] run fstests generic/313 at 2022-01-12 13:27:59 > [ 6453.330380] run fstests generic/314 at 2022-01-12 13:28:04 > [ 6453.869735] run fstests generic/315 at 2022-01-12 13:28:05 > [ 6454.432871] run fstests generic/316 at 2022-01-12 13:28:05 > [ 6455.179812] run fstests generic/317 at 2022-01-12 13:28:06 > [ 6455.744870] run fstests generic/319 at 2022-01-12 13:28:06 > [ 6456.295368] run fstests generic/320 at 2022-01-12 13:28:07 > [ 6456.823414] run fstests generic/321 at 2022-01-12 13:28:08 > [ 6457.398078] run fstests generic/322 at 2022-01-12 13:28:08 > [ 6457.986300] run fstests generic/324 at 2022-01-12 13:28:09 > [ 6458.486502] run fstests generic/325 at 2022-01-12 13:28:09 > [ 6459.043391] run fstests generic/326 at 2022-01-12 13:28:10 > [ 6460.040241] run fstests generic/327 at 2022-01-12 13:28:11 > [ 6461.054872] run fstests generic/328 at 2022-01-12 13:28:12 > [ 6462.066528] run fstests generic/329 at 2022-01-12 13:28:13 > [ 6463.065254] run fstests generic/330 at 2022-01-12 13:28:14 > [ 6471.961534] run fstests generic/331 at 2022-01-12 13:28:23 > [ 6473.162639] run fstests generic/332 at 2022-01-12 13:28:24 > [ 6481.558320] run fstests generic/333 at 2022-01-12 13:28:32 > [ 6482.970708] run fstests generic/334 at 2022-01-12 13:28:34 > [ 6483.883159] run fstests generic/335 at 2022-01-12 13:28:35 > [ 6484.424615] run fstests generic/336 at 2022-01-12 13:28:35 > [ 6485.026317] run fstests generic/337 at 2022-01-12 13:28:36 > [ 6486.087022] run fstests generic/338 at 2022-01-12 13:28:37 > [ 6486.853279] run fstests generic/340 at 2022-01-12 13:28:38 > [ 6529.018625] run fstests generic/341 at 2022-01-12 13:29:20 > [ 6529.743485] run fstests generic/342 at 2022-01-12 13:29:20 > [ 6530.324586] run fstests generic/343 at 2022-01-12 13:29:21 > [ 6530.920079] run fstests generic/344 at 2022-01-12 13:29:22 > [ 6615.377472] run fstests generic/345 at 2022-01-12 13:30:46 > [ 6699.843608] run fstests generic/346 at 2022-01-12 13:32:11 > [ 6738.437542] run fstests generic/347 at 2022-01-12 13:32:49 > [ 6739.294108] run fstests generic/348 at 2022-01-12 13:32:50 > [ 6739.898344] run fstests generic/352 at 2022-01-12 13:32:51 > [ 6741.077399] run fstests generic/353 at 2022-01-12 13:32:52 > [ 6742.043936] run fstests generic/354 at 2022-01-12 13:32:53 > [ 6762.336256] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > [ 6771.148344] run fstests generic/355 at 2022-01-12 13:33:22 > [ 6771.867718] run fstests generic/356 at 2022-01-12 13:33:23 > [ 6772.723288] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 6774.212765] Adding 10236k swap on /mnt2/test-356/file1. Priority:-3 extents:1 across:10236k > [ 6774.563473] run fstests generic/358 at 2022-01-12 13:33:25 > [ 6829.824103] run fstests generic/359 at 2022-01-12 13:34:21 > [ 6844.529776] run fstests generic/360 at 2022-01-12 13:34:35 > [ 6845.353612] run fstests generic/361 at 2022-01-12 13:34:36 > [ 6845.922540] run fstests generic/362 at 2022-01-12 13:34:37 > [ 6846.514415] run fstests generic/363 at 2022-01-12 13:34:37 > [ 6847.212681] run fstests generic/364 at 2022-01-12 13:34:38 > [ 6847.905685] run fstests generic/365 at 2022-01-12 13:34:39 > [ 6848.597706] run fstests generic/366 at 2022-01-12 13:34:39 > [ 6849.301636] run fstests generic/367 at 2022-01-12 13:34:40 > [ 6849.993675] run fstests generic/368 at 2022-01-12 13:34:41 > [ 6850.694262] run fstests generic/369 at 2022-01-12 13:34:41 > [ 6851.389744] run fstests generic/370 at 2022-01-12 13:34:42 > [ 6852.089253] run fstests generic/371 at 2022-01-12 13:34:43 > [ 6852.772792] run fstests generic/372 at 2022-01-12 13:34:43 > [ 6853.867908] run fstests generic/373 at 2022-01-12 13:34:45 > [ 6855.370332] run fstests generic/374 at 2022-01-12 13:34:46 > [ 6856.417262] run fstests generic/375 at 2022-01-12 13:34:47 > [ 6857.021504] run fstests generic/376 at 2022-01-12 13:34:48 > [ 6857.662821] run fstests generic/377 at 2022-01-12 13:34:48 > [ 6858.728302] run fstests generic/378 at 2022-01-12 13:34:49 > [ 6859.437621] run fstests generic/379 at 2022-01-12 13:34:50 > [ 6859.958758] run fstests generic/380 at 2022-01-12 13:34:51 > [ 6860.467861] run fstests generic/381 at 2022-01-12 13:34:51 > [ 6860.979217] run fstests generic/382 at 2022-01-12 13:34:52 > [ 6861.490673] run fstests generic/383 at 2022-01-12 13:34:52 > [ 6862.007029] run fstests generic/384 at 2022-01-12 13:34:53 > [ 6862.539285] run fstests generic/385 at 2022-01-12 13:34:53 > [ 6863.056895] run fstests generic/386 at 2022-01-12 13:34:54 > [ 6863.540959] run fstests generic/387 at 2022-01-12 13:34:54 > [ 6864.451640] run fstests generic/388 at 2022-01-12 13:34:55 > [ 6865.020938] run fstests generic/389 at 2022-01-12 13:34:56 > [ 6865.578808] run fstests generic/390 at 2022-01-12 13:34:56 > [ 6866.159617] run fstests generic/391 at 2022-01-12 13:34:57 > [ 6886.115735] 391 (267517): drop_caches: 3 > [ 6889.286981] run fstests generic/392 at 2022-01-12 13:35:20 > [ 6891.203337] run fstests generic/393 at 2022-01-12 13:35:22 > [ 6893.177969] run fstests generic/394 at 2022-01-12 13:35:24 > [ 6894.586568] run fstests generic/395 at 2022-01-12 13:35:25 > [ 6895.341072] run fstests generic/396 at 2022-01-12 13:35:26 > [ 6896.026789] run fstests generic/397 at 2022-01-12 13:35:27 > [ 6896.798172] run fstests generic/398 at 2022-01-12 13:35:27 > [ 6897.556444] run fstests generic/399 at 2022-01-12 13:35:28 > [ 6898.303641] run fstests generic/400 at 2022-01-12 13:35:29 > [ 6898.815244] run fstests generic/401 at 2022-01-12 13:35:30 > [ 6899.937180] run fstests generic/402 at 2022-01-12 13:35:31 > [ 6901.017461] run fstests generic/404 at 2022-01-12 13:35:32 > [ 6901.789100] run fstests generic/405 at 2022-01-12 13:35:32 > [ 6902.645105] run fstests generic/406 at 2022-01-12 13:35:33 > [ 6910.841871] run fstests generic/407 at 2022-01-12 13:35:42 > [ 6912.903774] run fstests generic/408 at 2022-01-12 13:35:44 > [ 6913.608890] run fstests generic/409 at 2022-01-12 13:35:44 > [ 6914.156131] run fstests generic/410 at 2022-01-12 13:35:45 > [ 6914.704550] run fstests generic/411 at 2022-01-12 13:35:45 > [ 6915.251230] run fstests generic/412 at 2022-01-12 13:35:46 > [ 6916.526789] run fstests generic/413 at 2022-01-12 13:35:47 > [ 6917.304149] nfs: Unknown parameter 'dax' > [ 6917.410347] run fstests generic/414 at 2022-01-12 13:35:48 > [ 6918.634861] run fstests generic/415 at 2022-01-12 13:35:49 > [ 6933.976957] run fstests generic/416 at 2022-01-12 13:36:05 > [ 6934.691603] run fstests generic/417 at 2022-01-12 13:36:05 > [ 6935.629054] run fstests generic/418 at 2022-01-12 13:36:06 > [ 6936.242138] run fstests generic/419 at 2022-01-12 13:36:07 > [ 6937.045544] run fstests generic/420 at 2022-01-12 13:36:08 > [ 6937.839373] run fstests generic/421 at 2022-01-12 13:36:09 > [ 6938.636575] run fstests generic/424 at 2022-01-12 13:36:09 > [ 6939.351034] run fstests generic/427 at 2022-01-12 13:36:10 > [ 6939.996982] run fstests generic/428 at 2022-01-12 13:36:11 > [ 6940.637416] run fstests generic/429 at 2022-01-12 13:36:11 > [ 6941.362410] run fstests generic/430 at 2022-01-12 13:36:12 > [ 6942.506724] run fstests generic/431 at 2022-01-12 13:36:13 > [ 6943.556512] run fstests generic/432 at 2022-01-12 13:36:14 > [ 6944.645630] run fstests generic/433 at 2022-01-12 13:36:15 > [ 6945.677486] run fstests generic/435 at 2022-01-12 13:36:16 > [ 6946.409026] run fstests generic/436 at 2022-01-12 13:36:17 > [ 6947.992848] run fstests generic/437 at 2022-01-12 13:36:19 > [ 6968.653759] run fstests generic/439 at 2022-01-12 13:36:39 > [ 6970.194179] run fstests generic/440 at 2022-01-12 13:36:41 > [ 6970.921973] run fstests generic/441 at 2022-01-12 13:36:42 > [ 6971.489914] run fstests generic/443 at 2022-01-12 13:36:42 > [ 6972.110321] run fstests generic/444 at 2022-01-12 13:36:43 > [ 6972.734069] run fstests generic/445 at 2022-01-12 13:36:43 > [ 6974.220817] run fstests generic/447 at 2022-01-12 13:36:45 > [ 6975.531450] run fstests generic/448 at 2022-01-12 13:36:46 > [ 6976.914815] run fstests generic/449 at 2022-01-12 13:36:48 > [ 6977.512944] run fstests generic/450 at 2022-01-12 13:36:48 > [ 6978.444175] run fstests generic/451 at 2022-01-12 13:36:49 > [ 7009.200274] run fstests generic/452 at 2022-01-12 13:37:20 > [ 7010.248330] run fstests generic/453 at 2022-01-12 13:37:21 > [ 7012.836935] run fstests generic/454 at 2022-01-12 13:37:24 > [ 7015.394697] run fstests generic/455 at 2022-01-12 13:37:26 > [ 7016.318699] run fstests generic/456 at 2022-01-12 13:37:27 > [ 7016.892196] run fstests generic/457 at 2022-01-12 13:37:28 > [ 7018.100645] run fstests generic/458 at 2022-01-12 13:37:29 > [ 7019.153106] run fstests generic/459 at 2022-01-12 13:37:30 > [ 7020.261614] run fstests generic/460 at 2022-01-12 13:37:31 > [ 7057.684200] run fstests generic/461 at 2022-01-12 13:38:08 > [ 7058.928713] run fstests generic/462 at 2022-01-12 13:38:10 > [ 7059.578267] nfs: Unknown parameter 'dax' > [ 7059.685070] run fstests generic/463 at 2022-01-12 13:38:10 > [ 7060.682186] run fstests generic/464 at 2022-01-12 13:38:11 > [ 7133.376125] run fstests generic/466 at 2022-01-12 13:39:24 > [ 7134.033001] run fstests generic/467 at 2022-01-12 13:39:25 > [ 7134.958056] sh (300657): drop_caches: 3 > [ 7135.273575] sh (300664): drop_caches: 3 > [ 7135.779078] sh (300671): drop_caches: 3 > [ 7136.171387] sh (300678): drop_caches: 3 > [ 7136.372701] sh (300683): drop_caches: 3 > [ 7136.858710] sh (300690): drop_caches: 3 > [ 7137.390146] sh (300699): drop_caches: 3 > [ 7137.986292] sh (300709): drop_caches: 3 > [ 7138.252495] run fstests generic/468 at 2022-01-12 13:39:29 > [ 7140.487581] run fstests generic/470 at 2022-01-12 13:39:31 > [ 7141.285153] run fstests generic/471 at 2022-01-12 13:39:32 > [ 7141.971971] run fstests generic/472 at 2022-01-12 13:39:33 > [ 7142.757677] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7143.294807] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > [ 7143.500315] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > [ 7143.621722] Adding 8k swap on /mnt2/swap. Priority:-3 extents:1 across:8k > [ 7144.046333] run fstests generic/474 at 2022-01-12 13:39:35 > [ 7144.988579] run fstests generic/475 at 2022-01-12 13:39:36 > [ 7145.710624] run fstests generic/477 at 2022-01-12 13:39:36 > [ 7146.845233] sh (302346): drop_caches: 3 > [ 7147.640367] sh (302387): drop_caches: 3 > [ 7148.536961] sh (302428): drop_caches: 3 > [ 7149.466709] sh (302470): drop_caches: 3 > [ 7149.738194] run fstests generic/479 at 2022-01-12 13:39:40 > [ 7150.443204] run fstests generic/480 at 2022-01-12 13:39:41 > [ 7151.048938] run fstests generic/481 at 2022-01-12 13:39:42 > [ 7151.619524] run fstests generic/482 at 2022-01-12 13:39:42 > [ 7152.348315] run fstests generic/483 at 2022-01-12 13:39:43 > [ 7153.020108] run fstests generic/487 at 2022-01-12 13:39:44 > [ 7153.578129] run fstests generic/488 at 2022-01-12 13:39:44 > [ 7154.092708] run fstests generic/489 at 2022-01-12 13:39:45 > [ 7154.645766] run fstests generic/490 at 2022-01-12 13:39:45 > [ 7156.152532] run fstests generic/492 at 2022-01-12 13:39:47 > [ 7156.687978] run fstests generic/493 at 2022-01-12 13:39:47 > [ 7157.440775] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7158.071570] run fstests generic/494 at 2022-01-12 13:39:49 > [ 7158.945655] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7159.987483] Adding 10236k swap on /mnt2/test-494/file1. Priority:-3 extents:1 across:10236k > [ 7160.426306] run fstests generic/495 at 2022-01-12 13:39:51 > [ 7161.398950] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7161.828770] swap activate: swapfile has holes > [ 7161.924587] Empty swap-file > [ 7162.186835] run fstests generic/496 at 2022-01-12 13:39:53 > [ 7163.145304] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7163.664228] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > [ 7169.433211] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > [ 7169.727608] run fstests generic/497 at 2022-01-12 13:40:00 > [ 7170.735141] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7171.069079] run fstests generic/498 at 2022-01-12 13:40:02 > [ 7171.732186] run fstests generic/500 at 2022-01-12 13:40:02 > [ 7172.402636] run fstests generic/501 at 2022-01-12 13:40:03 > [ 7173.367894] run fstests generic/502 at 2022-01-12 13:40:04 > [ 7174.036468] run fstests generic/504 at 2022-01-12 13:40:05 > [ 7174.679080] run fstests generic/505 at 2022-01-12 13:40:05 > [ 7175.476364] run fstests generic/506 at 2022-01-12 13:40:06 > [ 7176.336327] run fstests generic/507 at 2022-01-12 13:40:07 > [ 7176.906752] run fstests generic/508 at 2022-01-12 13:40:08 > [ 7177.443466] run fstests generic/509 at 2022-01-12 13:40:08 > [ 7178.113899] run fstests generic/510 at 2022-01-12 13:40:09 > [ 7178.665874] run fstests generic/511 at 2022-01-12 13:40:09 > [ 7179.212399] run fstests generic/512 at 2022-01-12 13:40:10 > [ 7179.863716] run fstests generic/514 at 2022-01-12 13:40:11 > [ 7180.815618] run fstests generic/515 at 2022-01-12 13:40:12 > [ 7181.850294] run fstests generic/516 at 2022-01-12 13:40:13 > [ 7182.497964] run fstests generic/517 at 2022-01-12 13:40:13 > [ 7183.397705] run fstests generic/518 at 2022-01-12 13:40:14 > [ 7185.260858] run fstests generic/520 at 2022-01-12 13:40:16 > [ 7185.995518] run fstests generic/523 at 2022-01-12 13:40:17 > [ 7187.015108] run fstests generic/524 at 2022-01-12 13:40:18 > [ 7214.588812] run fstests generic/525 at 2022-01-12 13:40:45 > [ 7215.945729] run fstests generic/526 at 2022-01-12 13:40:47 > [ 7216.731432] run fstests generic/527 at 2022-01-12 13:40:47 > [ 7217.332036] run fstests generic/528 at 2022-01-12 13:40:48 > [ 7217.928387] run fstests generic/529 at 2022-01-12 13:40:49 > [ 7218.474947] run fstests generic/530 at 2022-01-12 13:40:49 > [ 7219.289577] run fstests generic/532 at 2022-01-12 13:40:50 > [ 7219.984287] run fstests generic/533 at 2022-01-12 13:40:51 > [ 7221.588573] run fstests generic/534 at 2022-01-12 13:40:52 > [ 7222.205596] run fstests generic/535 at 2022-01-12 13:40:53 > [ 7222.829546] run fstests generic/536 at 2022-01-12 13:40:54 > [ 7223.590202] run fstests generic/537 at 2022-01-12 13:40:54 > [ 7224.466640] run fstests generic/538 at 2022-01-12 13:40:55 > [ 7250.048839] run fstests generic/539 at 2022-01-12 13:41:21 > [ 7251.550550] run fstests generic/540 at 2022-01-12 13:41:22 > [ 7257.243669] run fstests generic/541 at 2022-01-12 13:41:28 > [ 7263.478824] run fstests generic/542 at 2022-01-12 13:41:34 > [ 7269.624181] run fstests generic/543 at 2022-01-12 13:41:40 > [ 7275.817103] run fstests generic/544 at 2022-01-12 13:41:47 > [ 7282.092977] run fstests generic/545 at 2022-01-12 13:41:53 > [ 7282.904252] run fstests generic/546 at 2022-01-12 13:41:54 > [ 7283.957773] run fstests generic/547 at 2022-01-12 13:41:55 > [ 7284.580048] run fstests generic/548 at 2022-01-12 13:41:55 > [ 7285.326032] run fstests generic/549 at 2022-01-12 13:41:56 > [ 7286.075114] run fstests generic/550 at 2022-01-12 13:41:57 > [ 7286.842980] run fstests generic/552 at 2022-01-12 13:41:58 > [ 7287.485856] run fstests generic/553 at 2022-01-12 13:41:58 > [ 7288.214457] run fstests generic/554 at 2022-01-12 13:41:59 > [ 7289.123966] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7290.370393] Adding 16380k swap on /mnt2/swapfile. Priority:-3 extents:1 across:16380k > [ 7290.687659] run fstests generic/555 at 2022-01-12 13:42:01 > [ 7291.521126] run fstests generic/556 at 2022-01-12 13:42:02 > [ 7292.049123] run fstests generic/557 at 2022-01-12 13:42:03 > [ 7292.594633] run fstests generic/558 at 2022-01-12 13:42:03 > [ 7293.116986] run fstests generic/559 at 2022-01-12 13:42:04 > [ 7293.625068] run fstests generic/560 at 2022-01-12 13:42:04 > [ 7294.150767] run fstests generic/561 at 2022-01-12 13:42:05 > [ 7294.672595] run fstests generic/562 at 2022-01-12 13:42:05 > [ 7295.755050] run fstests generic/563 at 2022-01-12 13:42:06 > [ 7296.284954] run fstests generic/564 at 2022-01-12 13:42:07 > [ 7297.286052] loop0: detected capacity change from 0 to 256 > [ 7298.231618] run fstests generic/566 at 2022-01-12 13:42:09 > [ 7298.730755] run fstests generic/567 at 2022-01-12 13:42:09 > [ 7300.222707] run fstests generic/568 at 2022-01-12 13:42:11 > [ 7301.134560] run fstests generic/569 at 2022-01-12 13:42:12 > [ 7302.142643] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > [ 7303.448133] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > [ 7303.452275] NFS: attempt to write to active swap file! > [ 7303.487542] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > [ 7303.530750] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > [ 7303.587615] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > [ 7303.629119] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > [ 7303.646860] NFS: attempt to write to active swap file! > [ 7303.979451] run fstests generic/570 at 2022-01-12 13:42:15 > [ 7304.692420] run fstests generic/572 at 2022-01-12 13:42:15 > [ 7305.210036] run fstests generic/573 at 2022-01-12 13:42:16 > [ 7305.731408] run fstests generic/574 at 2022-01-12 13:42:16 > [ 7306.245226] run fstests generic/575 at 2022-01-12 13:42:17 > [ 7306.755327] run fstests generic/576 at 2022-01-12 13:42:17 > [ 7307.415264] run fstests generic/577 at 2022-01-12 13:42:18 > [ 7307.966901] run fstests generic/579 at 2022-01-12 13:42:19 > [ 7308.532284] run fstests generic/580 at 2022-01-12 13:42:19 > [ 7309.267749] run fstests generic/581 at 2022-01-12 13:42:20 > [ 7309.916075] run fstests generic/582 at 2022-01-12 13:42:21 > [ 7310.643888] run fstests generic/583 at 2022-01-12 13:42:21 > [ 7311.371543] run fstests generic/584 at 2022-01-12 13:42:22 > [ 7312.108260] run fstests generic/585 at 2022-01-12 13:42:23 > [ 7312.708730] run fstests generic/586 at 2022-01-12 13:42:23 > [ 7321.372427] run fstests generic/587 at 2022-01-12 13:42:32 > [ 7321.882959] run fstests generic/588 at 2022-01-12 13:42:33 > [ 7322.869048] run fstests generic/589 at 2022-01-12 13:42:34 > [ 7323.420928] run fstests generic/590 at 2022-01-12 13:42:34 > [ 7599.522683] run fstests generic/591 at 2022-01-12 13:47:10 > [ 7600.469219] run fstests generic/592 at 2022-01-12 13:47:11 > [ 7601.209667] run fstests generic/593 at 2022-01-12 13:47:12 > [ 7601.925298] run fstests generic/594 at 2022-01-12 13:47:13 > [ 7602.455466] run fstests generic/595 at 2022-01-12 13:47:13 > [ 7603.181000] run fstests generic/596 at 2022-01-12 13:47:14 > [ 7603.583124] Process accounting resumed > [ 7603.780139] run fstests generic/597 at 2022-01-12 13:47:14 > [ 7604.359127] run fstests generic/598 at 2022-01-12 13:47:15 > [ 7604.907400] run fstests generic/599 at 2022-01-12 13:47:16 > [ 7605.710364] run fstests generic/600 at 2022-01-12 13:47:16 > [ 7606.295426] run fstests generic/601 at 2022-01-12 13:47:17 > [ 7606.813031] run fstests generic/602 at 2022-01-12 13:47:18 > [ 7607.566587] run fstests generic/603 at 2022-01-12 13:47:18 > [ 7608.093235] run fstests generic/604 at 2022-01-12 13:47:19 > [ 7613.505790] run fstests generic/605 at 2022-01-12 13:47:24 > [ 7614.268456] nfs: Unknown parameter 'dax' > [ 7614.378027] run fstests generic/606 at 2022-01-12 13:47:25 > [ 7614.970728] nfs: Unknown parameter 'dax' > [ 7615.132524] run fstests generic/608 at 2022-01-12 13:47:26 > [ 7615.730417] nfs: Unknown parameter 'dax' > [ 7615.838044] run fstests generic/609 at 2022-01-12 13:47:27 > [ 7616.725570] run fstests generic/611 at 2022-01-12 13:47:27 > [ 7617.915374] run fstests nfs/001 at 2022-01-12 13:47:29 > [ 7620.841996] run fstests shared/002 at 2022-01-12 13:47:32 > [ 7621.379231] run fstests shared/032 at 2022-01-12 13:47:32 > [ 7621.870631] run fstests shared/298 at 2022-01-12 13:47:33 > [ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > [ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' > [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. > [ 0.000000] signal: max sigframe size: 1776 > [ 0.000000] BIOS-provided physical RAM map: > [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable > [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved > [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffd7fff] usable > [ 0.000000] BIOS-e820: [mem 0x000000007ffd8000-0x000000007fffffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved > [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved > [ 0.000000] NX (Execute Disable) protection: active > [ 0.000000] SMBIOS 2.8 present. > [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > [ 0.000000] tsc: Fast TSC calibration using PIT > [ 0.000000] tsc: Detected 3591.667 MHz processor > [ 0.000880] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved > [ 0.000887] e820: remove [mem 0x000a0000-0x000fffff] usable > [ 0.000894] last_pfn = 0x7ffd8 max_arch_pfn = 0x400000000 > [ 0.000926] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT > [ 0.004010] found SMP MP-table at [mem 0x000f5b80-0x000f5b8f] > [ 0.004443] RAMDISK: [mem 0x346ce000-0x3635efff] > [ 0.004450] ACPI: Early table checksum verification disabled > [ 0.004455] ACPI: RSDP 0x00000000000F58F0 000014 (v00 BOCHS ) > [ 0.004464] ACPI: RSDT 0x000000007FFE1902 000030 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004473] ACPI: FACP 0x000000007FFE17D6 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004482] ACPI: DSDT 0x000000007FFE0040 001796 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004489] ACPI: FACS 0x000000007FFE0000 000040 > [ 0.004494] ACPI: APIC 0x000000007FFE184A 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004501] ACPI: WAET 0x000000007FFE18DA 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) > [ 0.004506] ACPI: Reserving FACP table memory at [mem 0x7ffe17d6-0x7ffe1849] > [ 0.004510] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe17d5] > [ 0.004513] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] > [ 0.004515] ACPI: Reserving APIC table memory at [mem 0x7ffe184a-0x7ffe18d9] > [ 0.004518] ACPI: Reserving WAET table memory at [mem 0x7ffe18da-0x7ffe1901] > [ 0.007926] Zone ranges: > [ 0.007934] DMA [mem 0x0000000000001000-0x0000000000ffffff] > [ 0.007940] DMA32 [mem 0x0000000001000000-0x000000007ffd7fff] > [ 0.007944] Normal empty > [ 0.007947] Movable zone start for each node > [ 0.007949] Early memory node ranges > [ 0.007952] node 0: [mem 0x0000000000001000-0x000000000009efff] > [ 0.007955] node 0: [mem 0x0000000000100000-0x000000007ffd7fff] > [ 0.007959] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffd7fff] > [ 0.007968] On node 0, zone DMA: 1 pages in unavailable ranges > [ 0.008031] On node 0, zone DMA: 97 pages in unavailable ranges > [ 0.015752] On node 0, zone DMA32: 40 pages in unavailable ranges > [ 0.043852] kasan: KernelAddressSanitizer initialized > [ 0.044423] ACPI: PM-Timer IO Port: 0x608 > [ 0.044432] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) > [ 0.044477] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 > [ 0.044486] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > [ 0.044490] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) > [ 0.044494] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > [ 0.044497] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) > [ 0.044500] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) > [ 0.044505] ACPI: Using ACPI (MADT) for SMP configuration information > [ 0.044508] TSC deadline timer available > [ 0.044514] smpboot: Allowing 4 CPUs, 0 hotplug CPUs > [ 0.044531] [mem 0x80000000-0xfeffbfff] available for PCI devices > [ 0.044536] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns > [ 0.059178] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 > [ 0.059473] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u524288 > [ 0.059481] pcpu-alloc: s231440 r8192 d30704 u524288 alloc=1*2097152 > [ 0.059486] pcpu-alloc: [0] 0 1 2 3 > [ 0.059518] Built 1 zonelists, mobility grouping on. Total pages: 516824 > [ 0.059528] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 > [ 0.059605] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. > [ 0.059829] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) > [ 0.059938] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) > [ 0.059987] mem auto-init: stack:off, heap alloc:off, heap free:off > [ 0.189829] Memory: 1652304K/2096600K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 444040K reserved, 0K cma-reserved) > [ 0.191638] Kernel/User page tables isolation: enabled > [ 0.191721] ftrace: allocating 48466 entries in 190 pages > [ 0.208382] ftrace: allocated 190 pages with 6 groups > [ 0.208563] Dynamic Preempt: full > [ 0.208737] Running RCU self tests > [ 0.208749] rcu: Preemptible hierarchical RCU implementation. > [ 0.208751] rcu: RCU lockdep checking is enabled. > [ 0.208754] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. > [ 0.208758] Trampoline variant of Tasks RCU enabled. > [ 0.208760] Rude variant of Tasks RCU enabled. > [ 0.208762] Tracing variant of Tasks RCU enabled. > [ 0.208765] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. > [ 0.208767] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 > [ 0.218069] NR_IRQS: 4352, nr_irqs: 72, preallocated irqs: 16 > [ 0.218411] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 > [ 0.224704] Console: colour VGA+ 80x25 > [ 0.273917] printk: console [ttyS0] enabled > [ 0.274215] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar > [ 0.274876] ... MAX_LOCKDEP_SUBCLASSES: 8 > [ 0.275165] ... MAX_LOCK_DEPTH: 48 > [ 0.275459] ... MAX_LOCKDEP_KEYS: 8192 > [ 0.275790] ... CLASSHASH_SIZE: 4096 > [ 0.276100] ... MAX_LOCKDEP_ENTRIES: 32768 > [ 0.276423] ... MAX_LOCKDEP_CHAINS: 65536 > [ 0.276742] ... CHAINHASH_SIZE: 32768 > [ 0.277061] memory used by lock dependency info: 6365 kB > [ 0.277476] memory used for stack traces: 4224 kB > [ 0.277830] per task-struct memory footprint: 1920 bytes > [ 0.278254] ACPI: Core revision 20210930 > [ 0.278762] APIC: Switch to symmetric I/O mode setup > [ 0.280353] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c5939df6d, max_idle_ns: 440795297647 ns > [ 0.281280] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.33 BogoMIPS (lpj=14366668) > [ 0.282204] pid_max: default: 32768 minimum: 301 > [ 0.282676] LSM: Security Framework initializing > [ 0.283076] SELinux: Initializing. > [ 0.283465] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > [ 0.284092] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > [ 0.285279] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 > [ 0.285279] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 > [ 0.285279] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization > [ 0.285279] Spectre V2 : Mitigation: Full generic retpoline > [ 0.285279] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch > [ 0.285279] Spectre V2 : Enabling Restricted Speculation for firmware calls > [ 0.285279] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier > [ 0.285279] Speculative Store Bypass: Vulnerable > [ 0.285279] SRBDS: Unknown: Dependent on hypervisor status > [ 0.285279] MDS: Vulnerable: Clear CPU buffers attempted, no microcode > [ 0.285279] Freeing SMP alternatives memory: 44K > [ 0.285279] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) > [ 0.285279] Running RCU-tasks wait API self tests > [ 0.386107] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. > [ 0.389599] rcu: Hierarchical SRCU implementation. > [ 0.392441] NMI watchdog: Perf NMI watchdog permanently disabled > [ 0.393385] Callback from call_rcu_tasks_trace() invoked. > [ 0.394170] smp: Bringing up secondary CPUs ... > [ 0.396370] x86: Booting SMP configuration: > [ 0.396786] .... node #0, CPUs: #1 > [ 0.066931] smpboot: CPU 1 Converting physical 0 to logical die 1 > [ 0.482790] #2 > [ 0.066931] smpboot: CPU 2 Converting physical 0 to logical die 2 > [ 0.565821] Callback from call_rcu_tasks_rude() invoked. > [ 0.567462] #3 > [ 0.066931] smpboot: CPU 3 Converting physical 0 to logical die 3 > [ 0.649444] smp: Brought up 1 node, 4 CPUs > [ 0.649755] smpboot: Max logical packages: 4 > [ 0.650109] smpboot: Total of 4 processors activated (28813.78 BogoMIPS) > [ 0.652111] devtmpfs: initialized > [ 0.656548] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns > [ 0.657296] futex hash table entries: 1024 (order: 5, 131072 bytes, linear) > [ 0.659317] NET: Registered PF_NETLINK/PF_ROUTE protocol family > [ 0.660716] audit: initializing netlink subsys (disabled) > [ 0.661311] audit: type=2000 audit(1642005696.380:1): state=initialized audit_enabled=0 res=1 > [ 0.662148] thermal_sys: Registered thermal governor 'step_wise' > [ 0.662161] thermal_sys: Registered thermal governor 'user_space' > [ 0.662741] cpuidle: using governor ladder > [ 0.663957] PCI: Using configuration type 1 for base access > [ 0.673336] Callback from call_rcu_tasks() invoked. > [ 0.688468] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. > [ 0.689933] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages > [ 0.690902] cryptd: max_cpu_qlen set to 1000 > [ 0.757333] raid6: avx2x4 gen() 34683 MB/s > [ 0.825285] raid6: avx2x4 xor() 13341 MB/s > [ 0.893285] raid6: avx2x2 gen() 32969 MB/s > [ 0.961293] raid6: avx2x2 xor() 18290 MB/s > [ 1.029283] raid6: avx2x1 gen() 25495 MB/s > [ 1.097283] raid6: avx2x1 xor() 16599 MB/s > [ 1.165417] raid6: sse2x4 gen() 18858 MB/s > [ 1.233284] raid6: sse2x4 xor() 9882 MB/s > [ 1.301284] raid6: sse2x2 gen() 17529 MB/s > [ 1.369284] raid6: sse2x2 xor() 10528 MB/s > [ 1.437284] raid6: sse2x1 gen() 12868 MB/s > [ 1.505284] raid6: sse2x1 xor() 9047 MB/s > [ 1.505592] raid6: using algorithm avx2x4 gen() 34683 MB/s > [ 1.506016] raid6: .... xor() 13341 MB/s, rmw enabled > [ 1.506395] raid6: using avx2x2 recovery algorithm > [ 1.507187] ACPI: Added _OSI(Module Device) > [ 1.507507] ACPI: Added _OSI(Processor Device) > [ 1.507827] ACPI: Added _OSI(3.0 _SCP Extensions) > [ 1.508176] ACPI: Added _OSI(Processor Aggregator Device) > [ 1.508594] ACPI: Added _OSI(Linux-Dell-Video) > [ 1.508918] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) > [ 1.509291] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) > [ 1.529597] ACPI: 1 ACPI AML tables successfully acquired and loaded > [ 1.536937] ACPI: Interpreter enabled > [ 1.537121] ACPI: PM: (supports S0 S5) > [ 1.537300] ACPI: Using IOAPIC for interrupt routing > [ 1.537790] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug > [ 1.539878] ACPI: Enabled 2 GPEs in block 00 to 0F > [ 1.582821] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) > [ 1.583389] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments HPX-Type3] > [ 1.584011] acpi PNP0A03:00: PCIe port services disabled; not requesting _OSC control > [ 1.584761] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. > [ 1.585813] PCI host bridge to bus 0000:00 > [ 1.586147] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] > [ 1.586722] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] > [ 1.587293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] > [ 1.587921] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] > [ 1.588545] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] > [ 1.589183] pci_bus 0000:00: root bus resource [bus 00-ff] > [ 1.593451] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 > [ 1.604897] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 > [ 1.606756] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 > [ 1.609820] pci 0000:00:01.1: reg 0x20: [io 0xc2e0-0xc2ef] > [ 1.611254] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] > [ 1.611843] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] > [ 1.612367] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] > [ 1.612952] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] > [ 1.613748] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 > [ 1.614670] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI > [ 1.615271] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB > [ 1.616279] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 > [ 1.618571] pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] > [ 1.621026] pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] > [ 1.623401] pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] > [ 1.625293] pci 0000:00:02.0: reg 0x1c: [io 0xc200-0xc21f] > [ 1.632521] pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] > [ 1.643746] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 > [ 1.645084] pci 0000:00:03.0: reg 0x10: [io 0xc220-0xc23f] > [ 1.646115] pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc056fff] > [ 1.650262] pci 0000:00:03.0: reg 0x20: [mem 0xfebd4000-0xfebd7fff 64bit pref] > [ 1.651726] pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] > [ 1.663001] pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 > [ 1.663848] pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] > [ 1.676622] pci 0000:00:05.0: [8086:2934] type 00 class 0x0c0300 > [ 1.678734] pci 0000:00:05.0: reg 0x20: [io 0xc240-0xc25f] > [ 1.690560] pci 0000:00:05.1: [8086:2935] type 00 class 0x0c0300 > [ 1.692610] pci 0000:00:05.1: reg 0x20: [io 0xc260-0xc27f] > [ 1.694089] pci 0000:00:05.2: [8086:2936] type 00 class 0x0c0300 > [ 1.696372] pci 0000:00:05.2: reg 0x20: [io 0xc280-0xc29f] > [ 1.697989] pci 0000:00:05.7: [8086:293a] type 00 class 0x0c0320 > [ 1.698889] pci 0000:00:05.7: reg 0x10: [mem 0xfc057000-0xfc057fff] > [ 1.707037] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000 > [ 1.708590] pci 0000:00:06.0: reg 0x10: [io 0xc000-0xc03f] > [ 1.709714] pci 0000:00:06.0: reg 0x14: [mem 0xfc058000-0xfc058fff] > [ 1.712836] pci 0000:00:06.0: reg 0x20: [mem 0xfebd8000-0xfebdbfff 64bit pref] > [ 1.726059] pci 0000:00:07.0: [1af4:1001] type 00 class 0x010000 > [ 1.727542] pci 0000:00:07.0: reg 0x10: [io 0xc040-0xc07f] > [ 1.728892] pci 0000:00:07.0: reg 0x14: [mem 0xfc059000-0xfc059fff] > [ 1.731824] pci 0000:00:07.0: reg 0x20: [mem 0xfebdc000-0xfebdffff 64bit pref] > [ 1.744361] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 > [ 1.745286] pci 0000:00:08.0: reg 0x10: [io 0xc2a0-0xc2bf] > [ 1.748005] pci 0000:00:08.0: reg 0x20: [mem 0xfebe0000-0xfebe3fff 64bit pref] > [ 1.760699] pci 0000:00:09.0: [1af4:1005] type 00 class 0x00ff00 > [ 1.761568] pci 0000:00:09.0: reg 0x10: [io 0xc2c0-0xc2df] > [ 1.764291] pci 0000:00:09.0: reg 0x20: [mem 0xfebe4000-0xfebe7fff 64bit pref] > [ 1.775904] pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000 > [ 1.777237] pci 0000:00:0a.0: reg 0x10: [io 0xc080-0xc0bf] > [ 1.778068] pci 0000:00:0a.0: reg 0x14: [mem 0xfc05a000-0xfc05afff] > [ 1.781719] pci 0000:00:0a.0: reg 0x20: [mem 0xfebe8000-0xfebebfff 64bit pref] > [ 1.794394] pci 0000:00:0b.0: [1af4:1001] type 00 class 0x010000 > [ 1.795745] pci 0000:00:0b.0: reg 0x10: [io 0xc0c0-0xc0ff] > [ 1.796982] pci 0000:00:0b.0: reg 0x14: [mem 0xfc05b000-0xfc05bfff] > [ 1.799779] pci 0000:00:0b.0: reg 0x20: [mem 0xfebec000-0xfebeffff 64bit pref] > [ 1.812867] pci 0000:00:0c.0: [1af4:1001] type 00 class 0x010000 > [ 1.814289] pci 0000:00:0c.0: reg 0x10: [io 0xc100-0xc13f] > [ 1.815517] pci 0000:00:0c.0: reg 0x14: [mem 0xfc05c000-0xfc05cfff] > [ 1.818535] pci 0000:00:0c.0: reg 0x20: [mem 0xfebf0000-0xfebf3fff 64bit pref] > [ 1.830979] pci 0000:00:0d.0: [1af4:1001] type 00 class 0x010000 > [ 1.832321] pci 0000:00:0d.0: reg 0x10: [io 0xc140-0xc17f] > [ 1.833286] pci 0000:00:0d.0: reg 0x14: [mem 0xfc05d000-0xfc05dfff] > [ 1.836445] pci 0000:00:0d.0: reg 0x20: [mem 0xfebf4000-0xfebf7fff 64bit pref] > [ 1.848403] pci 0000:00:0e.0: [1af4:1001] type 00 class 0x010000 > [ 1.849691] pci 0000:00:0e.0: reg 0x10: [io 0xc180-0xc1bf] > [ 1.850908] pci 0000:00:0e.0: reg 0x14: [mem 0xfc05e000-0xfc05efff] > [ 1.853728] pci 0000:00:0e.0: reg 0x20: [mem 0xfebf8000-0xfebfbfff 64bit pref] > [ 1.867912] pci 0000:00:0f.0: [1af4:1001] type 00 class 0x010000 > [ 1.869286] pci 0000:00:0f.0: reg 0x10: [io 0xc1c0-0xc1ff] > [ 1.870507] pci 0000:00:0f.0: reg 0x14: [mem 0xfc05f000-0xfc05ffff] > [ 1.873286] pci 0000:00:0f.0: reg 0x20: [mem 0xfebfc000-0xfebfffff 64bit pref] > [ 1.886571] pci_bus 0000:00: on NUMA node 0 > [ 1.890389] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 > [ 1.892145] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 > [ 1.893842] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 > [ 1.895486] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 > [ 1.896509] ACPI: PCI: Interrupt link LNKS configured for IRQ 9 > [ 1.904775] pci 0000:00:02.0: vgaarb: setting as boot VGA device > [ 1.904775] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none > [ 1.904775] pci 0000:00:02.0: vgaarb: bridge control possible > [ 1.904775] vgaarb: loaded > [ 1.904775] SCSI subsystem initialized > [ 1.904775] libata version 3.00 loaded. > [ 1.904775] ACPI: bus type USB registered > [ 1.905259] usbcore: registered new interface driver usbfs > [ 1.909389] usbcore: registered new interface driver hub > [ 1.909860] usbcore: registered new device driver usb > [ 1.910380] pps_core: LinuxPPS API ver. 1 registered > [ 1.910754] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> > [ 1.911613] PTP clock support registered > [ 1.912179] EDAC MC: Ver: 3.0.0 > [ 1.913040] Advanced Linux Sound Architecture Driver Initialized. > [ 1.913040] PCI: Using ACPI for IRQ routing > [ 1.913040] PCI: pci_cache_line_size set to 64 bytes > [ 1.913040] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] > [ 1.913040] e820: reserve RAM buffer [mem 0x7ffd8000-0x7fffffff] > [ 1.913283] clocksource: Switched to clocksource tsc-early > [ 2.100358] VFS: Disk quotas dquot_6.6.0 > [ 2.100783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) > [ 2.101643] FS-Cache: Loaded > [ 2.102237] CacheFiles: Loaded > [ 2.102534] pnp: PnP ACPI init > [ 2.103635] pnp 00:03: [dma 2] > [ 2.106017] pnp: PnP ACPI: found 5 devices > [ 2.127076] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns > [ 2.127982] NET: Registered PF_INET protocol family > [ 2.128550] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) > [ 2.130129] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) > [ 2.130900] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) > [ 2.131794] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) > [ 2.132819] TCP: Hash tables configured (established 16384 bind 16384) > [ 2.133780] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) > [ 2.134414] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) > [ 2.135294] NET: Registered PF_UNIX/PF_LOCAL protocol family > [ 2.135777] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > [ 2.136308] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > [ 2.136806] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] > [ 2.137427] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] > [ 2.137992] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] > [ 2.138908] pci 0000:00:01.0: PIIX3: Enabling Passive Release > [ 2.139376] pci 0000:00:00.0: Limiting direct PCI/PCI transfers > [ 2.139854] pci 0000:00:01.0: Activating ISA DMA hang workarounds > [ 2.140425] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] > [ 3.202115] ACPI: \_SB_.LNKA: Enabled at IRQ 10 > [ 4.239171] pci 0000:00:05.0: quirk_usb_early_handoff+0x0/0xa70 took 2048819 usecs > [ 5.300725] ACPI: \_SB_.LNKB: Enabled at IRQ 11 > [ 6.347387] pci 0000:00:05.1: quirk_usb_early_handoff+0x0/0xa70 took 2058145 usecs > [ 7.421229] ACPI: \_SB_.LNKC: Enabled at IRQ 11 > [ 8.471039] pci 0000:00:05.2: quirk_usb_early_handoff+0x0/0xa70 took 2073223 usecs > [ 9.544718] ACPI: \_SB_.LNKD: Enabled at IRQ 10 > [ 10.599331] pci 0000:00:05.7: quirk_usb_early_handoff+0x0/0xa70 took 2077756 usecs > [ 10.600123] PCI: CLS 0 bytes, default 64 > [ 10.601188] Trying to unpack rootfs image as initramfs... > [ 10.604786] Initialise system trusted keyrings > [ 10.605377] workingset: timestamp_bits=62 max_order=19 bucket_order=0 > [ 10.607827] DLM installed > [ 10.610089] Key type cifs.idmap registered > [ 10.610742] fuse: init (API version 7.35) > [ 10.611401] SGI XFS with ACLs, security attributes, no debug enabled > [ 10.612942] ocfs2: Registered cluster interface o2cb > [ 10.613684] ocfs2: Registered cluster interface user > [ 10.614265] OCFS2 User DLM kernel interface loaded > [ 10.617912] gfs2: GFS2 installed > [ 10.626466] xor: automatically using best checksumming function avx > [ 10.627049] Key type asymmetric registered > [ 10.627348] Asymmetric key parser 'x509' registered > [ 10.627936] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) > [ 10.628640] io scheduler mq-deadline registered > [ 10.628991] io scheduler kyber registered > [ 10.629268] test_string_helpers: Running tests... > [ 10.646349] cryptomgr_test (94) used greatest stack depth: 30192 bytes left > [ 10.647783] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 > [ 10.649320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 > [ 10.661911] ACPI: button: Power Button [PWRF] > [ 11.308291] Freeing initrd memory: 29252K > [ 11.309219] kworker/u8:1 (116) used greatest stack depth: 28384 bytes left > [ 11.613446] tsc: Refined TSC clocksource calibration: 3591.600 MHz > [ 11.614007] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55424d7b, max_idle_ns: 440795215499 ns > [ 11.615017] clocksource: Switched to clocksource tsc > [ 24.416686] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled > [ 24.417569] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A > [ 24.421615] Non-volatile memory driver v1.3 > [ 24.421936] Linux agpgart interface v0.103 > [ 24.423208] ACPI: bus type drm_connector registered > [ 24.444467] brd: module loaded > [ 24.457220] loop: module loaded > [ 24.458122] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 GB/8.00 GiB) > [ 24.462053] vda: vda1 vda2 > [ 24.465619] virtio_blk virtio5: [vdb] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > [ 24.469543] virtio_blk virtio6: [vdc] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > [ 24.473451] virtio_blk virtio7: [vdd] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > [ 24.477416] virtio_blk virtio8: [vde] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > [ 24.481188] virtio_blk virtio9: [vdf] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) > [ 24.484978] virtio_blk virtio10: [vdg] 20971520 512-byte logical blocks (10.7 GB/10.0 GiB) > [ 24.488125] vdg: > [ 24.489758] zram: Added device: zram0 > [ 24.492368] ata_piix 0000:00:01.1: version 2.13 > [ 24.496603] scsi host0: ata_piix > [ 24.498008] scsi host1: ata_piix > [ 24.498675] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc2e0 irq 14 > [ 24.499256] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc2e8 irq 15 > [ 24.501218] tun: Universal TUN/TAP device driver, 1.6 > [ 24.504829] e1000: Intel(R) PRO/1000 Network Driver > [ 24.505219] e1000: Copyright (c) 1999-2006 Intel Corporation. > [ 24.505862] e1000e: Intel(R) PRO/1000 Network Driver > [ 24.506254] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. > [ 24.507072] PPP generic driver version 2.4.2 > [ 24.509436] aoe: AoE v85 initialised. > [ 24.510102] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver > [ 24.510679] ehci-pci: EHCI PCI platform driver > [ 24.657958] ata1.01: NODEV after polling detection > [ 24.658233] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 > [ 24.660230] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 > [ 24.714138] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray > [ 24.714722] cdrom: Uniform CD-ROM driver Revision: 3.20 > [ 24.749225] sr 0:0:0:0: Attached scsi CD-ROM sr0 > [ 24.750199] sr 0:0:0:0: Attached scsi generic sg0 type 5 > [ 25.753762] ehci-pci 0000:00:05.7: EHCI Host Controller > [ 25.755008] ehci-pci 0000:00:05.7: new USB bus registered, assigned bus number 1 > [ 25.755944] ehci-pci 0000:00:05.7: irq 10, io mem 0xfc057000 > [ 25.769490] ehci-pci 0000:00:05.7: USB 2.0 started, EHCI 1.00 > [ 25.773616] hub 1-0:1.0: USB hub found > [ 25.774306] hub 1-0:1.0: 6 ports detected > [ 25.779054] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > [ 25.779761] ohci-pci: OHCI PCI platform driver > [ 25.780223] uhci_hcd: USB Universal Host Controller Interface driver > [ 26.041366] usb 1-1: new high-speed USB device number 2 using ehci-pci > [ 27.054250] uhci_hcd 0000:00:05.0: UHCI Host Controller > [ 27.055419] uhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 2 > [ 27.056446] uhci_hcd 0000:00:05.0: irq 10, io port 0x0000c240 > [ 27.058858] hub 2-0:1.0: USB hub found > [ 27.059323] hub 2-0:1.0: 2 ports detected > [ 28.319755] uhci_hcd 0000:00:05.1: UHCI Host Controller > [ 28.320738] uhci_hcd 0000:00:05.1: new USB bus registered, assigned bus number 3 > [ 28.321673] uhci_hcd 0000:00:05.1: irq 11, io port 0x0000c260 > [ 28.323716] hub 3-0:1.0: USB hub found > [ 28.324067] hub 3-0:1.0: 2 ports detected > [ 29.592163] uhci_hcd 0000:00:05.2: UHCI Host Controller > [ 29.593127] uhci_hcd 0000:00:05.2: new USB bus registered, assigned bus number 4 > [ 29.594072] uhci_hcd 0000:00:05.2: irq 11, io port 0x0000c280 > [ 29.596130] hub 4-0:1.0: USB hub found > [ 29.596496] hub 4-0:1.0: 2 ports detected > [ 29.598855] usbcore: registered new interface driver usblp > [ 29.599462] usbcore: registered new interface driver usb-storage > [ 29.600541] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 > [ 29.602527] serio: i8042 KBD port at 0x60,0x64 irq 1 > [ 29.603702] serio: i8042 AUX port at 0x60,0x64 irq 12 > [ 29.605764] mousedev: PS/2 mouse device common for all mice > [ 29.607846] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 > [ 29.609776] input: PC Speaker as /devices/platform/pcspkr/input/input3 > [ 29.611498] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. > [ 29.613021] device-mapper: uevent: version 1.0.3 > [ 29.614146] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com > [ 29.615545] device-mapper: multipath round-robin: version 1.2.0 loaded > [ 29.616195] intel_pstate: CPU model not supported > [ 29.627242] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.7/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 > [ 29.629270] hid-generic 0003:0627:0001.0001: input: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.7-1/input0 > [ 29.631016] usbcore: registered new interface driver usbhid > [ 29.631500] usbhid: USB HID core driver > [ 29.640019] netem: version 1.3 > [ 29.640848] NET: Registered PF_INET6 protocol family > [ 29.643109] Segment Routing with IPv6 > [ 29.643405] In-situ OAM (IOAM) with IPv6 > [ 29.643760] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver > [ 29.645948] NET: Registered PF_PACKET protocol family > [ 29.646371] NET: Registered PF_KEY protocol family > [ 29.646805] sctp: Hash tables configured (bind 32/56) > [ 29.647357] Key type dns_resolver registered > [ 29.649453] IPI shorthand broadcast: enabled > [ 29.649838] AVX2 version of gcm_enc/dec engaged. > [ 29.650351] AES CTR mode by8 optimization enabled > [ 29.651971] sched_clock: Marking stable (29586356484, 62931318)->(29723854493, -74566691) > [ 29.654238] Loading compiled-in X.509 certificates > [ 29.655218] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers > [ 29.657030] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no > [ 29.659515] ima: No TPM chip found, activating TPM-bypass! > [ 29.660173] ima: Allocated hash algorithm: sha1 > [ 29.660593] ima: No architecture policies found > [ 29.673045] ALSA device list: > [ 29.673234] #0: Virtual MIDI Card 1 > [ 29.682863] Freeing unused kernel image (initmem) memory: 2076K > [ 29.717568] Write protecting the kernel read-only data: 61440k > [ 29.721990] Freeing unused kernel image (text/rodata gap) memory: 2028K > [ 29.724251] Freeing unused kernel image (rodata/data gap) memory: 948K > [ 29.727486] Run /init as init process > [ 29.727944] with arguments: > [ 29.727947] /init > [ 29.727951] with environment: > [ 29.727954] HOME=/ > [ 29.727957] TERM=linux > [ 29.727960] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 > [ 29.727964] resume=/dev/mapper/fedora-swap > [ 29.803093] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > [ 29.806218] systemd[1]: Detected virtualization kvm. > [ 29.806681] systemd[1]: Detected architecture x86-64. > [ 29.807140] systemd[1]: Running in initial RAM disk. > [ 29.809901] systemd[1]: Set hostname to <test1.fieldses.org>. > [ 29.885369] systemd-hiberna (1054) used greatest stack depth: 28256 bytes left > [ 29.979654] dracut-rootfs-g (1047) used greatest stack depth: 28216 bytes left > [ 30.021117] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > [ 30.044537] systemd[1]: Queued start job for default target Initrd Default Target. > [ 30.047340] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. > [ 30.050175] systemd[1]: Reached target Slices. > [ 30.051386] systemd[1]: Reached target Swap. > [ 30.052613] systemd[1]: Reached target Timers. > [ 30.054515] systemd[1]: Listening on Journal Audit Socket. > [ 30.056550] systemd[1]: Listening on Journal Socket (/dev/log). > [ 30.058686] systemd[1]: Listening on Journal Socket. > [ 30.060760] systemd[1]: Listening on udev Control Socket. > [ 30.063831] systemd[1]: Listening on udev Kernel Socket. > [ 30.065248] systemd[1]: Reached target Sockets. > [ 30.066604] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > [ 30.071265] systemd[1]: Started Memstrack Anylazing Service. > [ 30.077532] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. > [ 30.079586] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. > [ 30.080901] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) > [ 30.085726] systemd[1]: Starting Journal Service... > [ 30.087684] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. > [ 30.089551] random: rngd: uninitialized urandom read (16 bytes read) > [ 30.092470] systemd[1]: Starting Apply Kernel Variables... > [ 30.098065] systemd[1]: Starting Create Static Device Nodes in /dev... > [ 30.117909] systemd[1]: Starting Setup Virtual Console... > [ 30.149991] systemd[1]: Finished Create Static Device Nodes in /dev. > [ 30.159172] systemd[1]: memstrack.service: Succeeded. > [ 30.198818] systemd[1]: Finished Apply Kernel Variables. > [ 30.200519] audit: type=1130 audit(1642005725.913:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 30.227486] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 > [ 30.460095] systemd[1]: Started Journal Service. > [ 30.461750] audit: type=1130 audit(1642005726.177:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 30.803462] audit: type=1130 audit(1642005726.517:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 31.357792] random: crng init done > [ 31.748912] dracut-cmdline (1106) used greatest stack depth: 27968 bytes left > [ 31.752614] audit: type=1130 audit(1642005727.465:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 32.032836] audit: type=1130 audit(1642005727.745:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 32.157892] audit: type=1130 audit(1642005727.873:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 34.122946] virtio_net virtio0 enp0s3: renamed from eth0 > [ 34.168250] kworker/u8:4 (1729) used greatest stack depth: 27536 bytes left > [ 34.330444] ata_id (1886) used greatest stack depth: 26656 bytes left > [ 34.467966] audit: type=1130 audit(1642005730.181:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 34.581444] audit: type=1130 audit(1642005730.293:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 35.924826] audit: type=1130 audit(1642005731.637:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' > [ 35.979064] audit: type=1130 audit(1642005731.693:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 36.080161] audit: type=1130 audit(1642005731.793:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 36.137141] fsck (2468) used greatest stack depth: 26560 bytes left > [ 36.142664] audit: type=1130 audit(1642005731.857:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 36.170836] XFS (dm-0): Mounting V5 Filesystem > [ 36.314126] XFS (dm-0): Ending clean mount > [ 36.383563] mount (2470) used greatest stack depth: 25344 bytes left > [ 36.491652] systemd-fstab-g (2483) used greatest stack depth: 25008 bytes left > [ 37.102323] audit: type=1130 audit(1642005732.817:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 37.104426] audit: type=1131 audit(1642005732.817:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 37.254915] audit: type=1130 audit(1642005732.969:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 37.290146] audit: type=1131 audit(1642005733.005:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 37.296542] audit: type=1131 audit(1642005733.009:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 37.304265] audit: type=1131 audit(1642005733.017:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 40.558013] SELinux: Permission watch in class filesystem not defined in policy. > [ 40.558745] SELinux: Permission watch in class file not defined in policy. > [ 40.559313] SELinux: Permission watch_mount in class file not defined in policy. > [ 40.559934] SELinux: Permission watch_sb in class file not defined in policy. > [ 40.560593] SELinux: Permission watch_with_perm in class file not defined in policy. > [ 40.561264] SELinux: Permission watch_reads in class file not defined in policy. > [ 40.561928] SELinux: Permission watch in class dir not defined in policy. > [ 40.562491] SELinux: Permission watch_mount in class dir not defined in policy. > [ 40.563098] SELinux: Permission watch_sb in class dir not defined in policy. > [ 40.563684] SELinux: Permission watch_with_perm in class dir not defined in policy. > [ 40.564391] SELinux: Permission watch_reads in class dir not defined in policy. > [ 40.565023] SELinux: Permission watch in class lnk_file not defined in policy. > [ 40.565673] SELinux: Permission watch_mount in class lnk_file not defined in policy. > [ 40.566349] SELinux: Permission watch_sb in class lnk_file not defined in policy. > [ 40.566973] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. > [ 40.567658] SELinux: Permission watch_reads in class lnk_file not defined in policy. > [ 40.568356] SELinux: Permission watch in class chr_file not defined in policy. > [ 40.568977] SELinux: Permission watch_mount in class chr_file not defined in policy. > [ 40.569671] SELinux: Permission watch_sb in class chr_file not defined in policy. > [ 40.570298] SELinux: Permission watch_with_perm in class chr_file not defined in policy. > [ 40.570986] SELinux: Permission watch_reads in class chr_file not defined in policy. > [ 40.571646] SELinux: Permission watch in class blk_file not defined in policy. > [ 40.572293] SELinux: Permission watch_mount in class blk_file not defined in policy. > [ 40.573045] SELinux: Permission watch_sb in class blk_file not defined in policy. > [ 40.573722] SELinux: Permission watch_with_perm in class blk_file not defined in policy. > [ 40.574413] SELinux: Permission watch_reads in class blk_file not defined in policy. > [ 40.575086] SELinux: Permission watch in class sock_file not defined in policy. > [ 40.575697] SELinux: Permission watch_mount in class sock_file not defined in policy. > [ 40.576405] SELinux: Permission watch_sb in class sock_file not defined in policy. > [ 40.577058] SELinux: Permission watch_with_perm in class sock_file not defined in policy. > [ 40.577794] SELinux: Permission watch_reads in class sock_file not defined in policy. > [ 40.578458] SELinux: Permission watch in class fifo_file not defined in policy. > [ 40.579066] SELinux: Permission watch_mount in class fifo_file not defined in policy. > [ 40.579727] SELinux: Permission watch_sb in class fifo_file not defined in policy. > [ 40.580405] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. > [ 40.581116] SELinux: Permission watch_reads in class fifo_file not defined in policy. > [ 40.581870] SELinux: Permission perfmon in class capability2 not defined in policy. > [ 40.582516] SELinux: Permission bpf in class capability2 not defined in policy. > [ 40.583123] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. > [ 40.583865] SELinux: Permission perfmon in class cap2_userns not defined in policy. > [ 40.584574] SELinux: Permission bpf in class cap2_userns not defined in policy. > [ 40.585208] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. > [ 40.586020] SELinux: Class mctp_socket not defined in policy. > [ 40.586482] SELinux: Class perf_event not defined in policy. > [ 40.586930] SELinux: Class anon_inode not defined in policy. > [ 40.587380] SELinux: Class io_uring not defined in policy. > [ 40.587811] SELinux: the above unknown classes and permissions will be allowed > [ 40.638612] SELinux: policy capability network_peer_controls=1 > [ 40.639094] SELinux: policy capability open_perms=1 > [ 40.639471] SELinux: policy capability extended_socket_class=1 > [ 40.639937] SELinux: policy capability always_check_network=0 > [ 40.640472] SELinux: policy capability cgroup_seclabel=1 > [ 40.640907] SELinux: policy capability nnp_nosuid_transition=1 > [ 40.641442] SELinux: policy capability genfs_seclabel_symlinks=0 > [ 40.858863] systemd[1]: Successfully loaded SELinux policy in 2.430314s. > [ 41.410189] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 249.521ms. > [ 41.418749] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > [ 41.421461] systemd[1]: Detected virtualization kvm. > [ 41.421851] systemd[1]: Detected architecture x86-64. > [ 41.439136] systemd[1]: Set hostname to <test1.fieldses.org>. > [ 41.753375] lvmconfig (2543) used greatest stack depth: 24544 bytes left > [ 41.774174] grep (2557) used greatest stack depth: 24448 bytes left > [ 41.800082] zram_generator::generator[2554]: Creating dev-zram0.swap for /dev/zram0 (823MB) > [ 41.850246] systemd-sysv-generator[2552]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust. > [ 42.699764] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > [ 42.961005] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. > [ 43.550746] kauditd_printk_skb: 13 callbacks suppressed > [ 43.550750] audit: type=1131 audit(1642005739.265:33): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.557309] systemd[1]: initrd-switch-root.service: Succeeded. > [ 43.559018] systemd[1]: Stopped Switch Root. > [ 43.559933] audit: type=1130 audit(1642005739.273:34): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.562887] audit: type=1131 audit(1642005739.277:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.563870] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. > [ 43.566772] systemd[1]: Created slice system-getty.slice. > [ 43.568626] systemd[1]: Created slice system-modprobe.slice. > [ 43.570533] systemd[1]: Created slice system-serial\x2dgetty.slice. > [ 43.572518] systemd[1]: Created slice system-sshd\x2dkeygen.slice. > [ 43.575249] systemd[1]: Created slice system-swap\x2dcreate.slice. > [ 43.577790] systemd[1]: Created slice system-systemd\x2dfsck.slice. > [ 43.580470] systemd[1]: Created slice User and Session Slice. > [ 43.581081] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. > [ 43.583848] systemd[1]: Started Forward Password Requests to Wall Directory Watch. > [ 43.587144] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. > [ 43.588834] systemd[1]: Reached target Local Encrypted Volumes. > [ 43.589488] systemd[1]: Stopped target Switch Root. > [ 43.590478] systemd[1]: Stopped target Initrd File Systems. > [ 43.591448] systemd[1]: Stopped target Initrd Root File System. > [ 43.592607] systemd[1]: Reached target Paths. > [ 43.593681] systemd[1]: Reached target Slices. > [ 43.595921] systemd[1]: Listening on Device-mapper event daemon FIFOs. > [ 43.599288] systemd[1]: Listening on LVM2 poll daemon socket. > [ 43.603589] systemd[1]: Listening on RPCbind Server Activation Socket. > [ 43.604301] systemd[1]: Reached target RPC Port Mapper. > [ 43.621281] systemd[1]: Listening on Process Core Dump Socket. > [ 43.623666] systemd[1]: Listening on initctl Compatibility Named Pipe. > [ 43.639128] systemd[1]: Listening on udev Control Socket. > [ 43.641921] systemd[1]: Listening on udev Kernel Socket. > [ 43.648355] systemd[1]: Activating swap /dev/mapper/fedora-swap... > [ 43.654892] systemd[1]: Mounting Huge Pages File System... > [ 43.661099] systemd[1]: Mounting POSIX Message Queue File System... > [ 43.667262] systemd[1]: Mounting NFSD configuration filesystem... > [ 43.676216] systemd[1]: Mounting Kernel Debug File System... > [ 43.682222] Adding 839676k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:839676k > [ 43.684653] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... > [ 43.686822] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > [ 43.696795] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... > [ 43.703564] systemd[1]: Starting Load Kernel Module configfs... > [ 43.711831] systemd[1]: Starting Load Kernel Module drm... > [ 43.721843] systemd[1]: Starting Load Kernel Module fuse... > [ 43.735057] systemd[1]: Starting Preprocess NFS configuration convertion... > [ 43.739099] systemd[1]: plymouth-switch-root.service: Succeeded. > [ 43.742433] systemd[1]: Stopped Plymouth switch root service. > [ 43.744497] audit: type=1131 audit(1642005739.457:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.751143] systemd[1]: Starting Create swap on /dev/zram0... > [ 43.752961] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. > [ 43.755225] systemd[1]: systemd-fsck-root.service: Succeeded. > [ 43.758291] systemd[1]: Stopped File System Check on Root Device. > [ 43.759755] audit: type=1131 audit(1642005739.473:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.759862] systemd[1]: Stopped Journal Service. > [ 43.766144] audit: type=1130 audit(1642005739.481:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.770089] audit: type=1131 audit(1642005739.481:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 43.785015] systemd[1]: Starting Journal Service... > [ 43.786753] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. > [ 43.788967] zram0: detected capacity change from 0 to 1685504 > [ 43.792217] systemd[1]: Starting Remount Root and Kernel File Systems... > [ 43.793231] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. > [ 43.799775] systemd[1]: Starting Apply Kernel Variables... > [ 43.830240] systemd[1]: Starting Coldplug All udev Devices... > [ 43.833802] systemd[1]: sysroot.mount: Succeeded. > [ 43.838089] RPC: Registered named UNIX socket transport module. > [ 43.838642] RPC: Registered udp transport module. > [ 43.838999] RPC: Registered tcp transport module. > [ 43.839369] RPC: Registered tcp NFSv4.1 backchannel transport module. > [ 43.854269] systemd[1]: Activated swap /dev/mapper/fedora-swap. > [ 43.871240] audit: type=1305 audit(1642005739.585:40): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:syslogd_t:s0 res=1 > [ 43.872637] audit: type=1300 audit(1642005739.585:40): arch=c000003e syscall=46 success=yes exit=60 a0=5 a1=7ffd304bc550 a2=4000 a3=7ffd304bc5fc items=0 ppid=1 pid=2572 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-journal" exe="/usr/lib/systemd/systemd-journald" subj=system_u:system_r:syslogd_t:s0 key=(null) > [ 43.876478] audit: type=1327 audit(1642005739.585:40): proctitle="/usr/lib/systemd/systemd-journald" > [ 43.882944] systemd[1]: Mounted Huge Pages File System. > [ 43.886495] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) > [ 43.895767] systemd[1]: Started Journal Service. > [ 43.974904] Adding 842748k swap on /dev/zram0. Priority:100 extents:1 across:842748k SS > [ 43.996937] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). > [ 46.194003] BTRFS: device fsid 27379e6a-3b97-45ef-bf83-dc7e8178b695 devid 1 transid 865 /dev/vde scanned by systemd-udevd (3767) > [ 47.371666] FAT-fs (vdg): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. > [ 47.378054] XFS (vdb): Mounting V5 Filesystem > [ 47.384999] XFS (vdf): Mounting V5 Filesystem > [ 47.404867] EXT4-fs (vdd): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. > [ 47.576714] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. > [ 48.050435] XFS (vdf): Ending clean mount > [ 48.091447] XFS (vdb): Ending clean mount > [ 48.100548] xfs filesystem being mounted at /exports/xfs2 supports timestamps until 2038 (0x7fffffff) > [ 48.102015] xfs filesystem being mounted at /exports/xfs supports timestamps until 2038 (0x7fffffff) > [ 48.600280] kauditd_printk_skb: 40 callbacks suppressed > [ 48.600285] audit: type=1130 audit(1642005744.313:73): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=nfs-idmapd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > [ 48.650555] audit: type=1400 audit(1642005744.365:74): avc: denied { map } for pid=3849 comm="nfsdcld" path="/var/lib/nfs/nfsdcld/main.sqlite-shm" dev="dm-0" ino=873070 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:var_lib_nfs_t:s0 tclass=file permissive=1 > [ 48.655197] audit: type=1300 audit(1642005744.365:74): arch=c000003e syscall=9 success=yes exit=140401715851264 a0=0 a1=8000 a2=3 a3=1 items=0 ppid=1 pid=3849 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nfsdcld" exe="/root/nfsdcld" subj=system_u:system_r:init_t:s0 key=(null) > [ 48.659212] audit: type=1327 audit(1642005744.365:74): proctitle="/root/nfsdcld" > [ 48.662263] audit: type=1305 audit(1642005744.377:75): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 > [ 48.663809] audit: type=1300 audit(1642005744.377:75): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd61589d20 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > [ 48.668534] audit: type=1327 audit(1642005744.377:75): proctitle="/sbin/auditd" > [ 48.669369] audit: type=1305 audit(1642005744.377:76): op=set audit_pid=3850 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 > [ 48.670842] audit: type=1300 audit(1642005744.377:76): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd615879d0 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > [ 48.673934] audit: type=1327 audit(1642005744.377:76): proctitle="/sbin/auditd" > [ 51.467504] plymouthd (2385) used greatest stack depth: 24080 bytes left > [ 52.964929] NFSD: Using nfsdcld client tracking operations. > [ 52.965487] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000098) > [ 57.672761] rpm (4068) used greatest stack depth: 22976 bytes left > [ 201.516445] clocksource: timekeeping watchdog on CPU2: acpi_pm retried 2 times before success > > [ 335.595143] ====================================================== > [ 335.596176] WARNING: possible circular locking dependency detected > [ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted > [ 335.597903] ------------------------------------------------------ > [ 335.598845] kworker/u8:0/7 is trying to acquire lock: > [ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.601111] > but task is already holding lock: > [ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > [ 335.602896] > which lock already depends on the new lock. > > [ 335.603378] > the existing dependency chain (in reverse order) is: > [ 335.603897] > -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: > [ 335.604305] _raw_spin_lock+0x2f/0x40 > [ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] > [ 335.605078] posix_lock_inode+0x9b8/0x1a50 > [ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] > [ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > [ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > [ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] > [ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] > [ 335.607604] nfsd+0x306/0x530 [nfsd] > [ 335.607923] kthread+0x3b1/0x490 > [ 335.608199] ret_from_fork+0x22/0x30 > [ 335.608512] > -> #1 (&ctx->flc_lock){+.+.}-{2:2}: > [ 335.608878] _raw_spin_lock+0x2f/0x40 > [ 335.609187] check_for_locks+0xcf/0x200 [nfsd] > [ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] > [ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > [ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > [ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] > [ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] > [ 335.611863] nfsd+0x306/0x530 [nfsd] > [ 335.612193] kthread+0x3b1/0x490 > [ 335.612463] ret_from_fork+0x22/0x30 > [ 335.612764] > -> #0 (&clp->cl_lock){+.+.}-{2:2}: > [ 335.613120] __lock_acquire+0x29f8/0x5b80 > [ 335.613469] lock_acquire+0x1a6/0x4b0 > [ 335.613763] _raw_spin_lock+0x2f/0x40 > [ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.614477] process_one_work+0x7ec/0x1320 > [ 335.614813] worker_thread+0x59e/0xf90 > [ 335.615135] kthread+0x3b1/0x490 > [ 335.615409] ret_from_fork+0x22/0x30 > [ 335.615695] > other info that might help us debug this: > > [ 335.616135] Chain exists of: > &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock > > [ 335.616806] Possible unsafe locking scenario: > > [ 335.617140] CPU0 CPU1 > [ 335.617467] ---- ---- > [ 335.617793] lock(&clp->cl_cs_lock); > [ 335.618036] lock(&ctx->flc_lock); > [ 335.618531] lock(&clp->cl_cs_lock); > [ 335.619037] lock(&clp->cl_lock); > [ 335.619256] > *** DEADLOCK *** > > [ 335.619487] 4 locks held by kworker/u8:0/7: > [ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 > [ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 > [ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] > [ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > [ 335.623462] > stack backtrace: > [ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 > [ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > [ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] > [ 335.625514] Call Trace: > [ 335.625641] <TASK> > [ 335.625734] dump_stack_lvl+0x45/0x59 > [ 335.625981] check_noncircular+0x23e/0x2e0 > [ 335.626268] ? print_circular_bug+0x450/0x450 > [ 335.626583] ? mark_lock+0xf1/0x30c0 > [ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 > [ 335.627156] __lock_acquire+0x29f8/0x5b80 > [ 335.627463] ? lock_chain_count+0x20/0x20 > [ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 > [ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 > [ 335.628555] lock_acquire+0x1a6/0x4b0 > [ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.629184] ? lock_release+0x6d0/0x6d0 > [ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] > [ 335.629825] ? do_raw_spin_lock+0x11e/0x240 > [ 335.630120] ? rwlock_bug.part.0+0x90/0x90 > [ 335.630409] _raw_spin_lock+0x2f/0x40 > [ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] > [ 335.631450] ? lock_release+0x6d0/0x6d0 > [ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] > [ 335.632110] process_one_work+0x7ec/0x1320 > [ 335.632411] ? lock_release+0x6d0/0x6d0 > [ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 > [ 335.633002] ? rwlock_bug.part.0+0x90/0x90 > [ 335.633290] worker_thread+0x59e/0xf90 > [ 335.633548] ? process_one_work+0x1320/0x1320 > [ 335.633860] kthread+0x3b1/0x490 > [ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 > [ 335.634396] ? set_kthread_struct+0x100/0x100 > [ 335.634709] ret_from_fork+0x22/0x30 > [ 335.634961] </TASK> > [ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left > [ 751.769042] nfsd: last server has exited, flushing export cache > [ 751.957555] NFSD: Using nfsdcld client tracking operations. > [ 751.958050] NFSD: starting 15-second grace period (net f0000098) > [ 773.101065] nfsd: last server has exited, flushing export cache > [ 773.341554] NFSD: Using nfsdcld client tracking operations. > [ 773.342404] NFSD: starting 15-second grace period (net f0000098) > [ 795.757041] nfsd: last server has exited, flushing export cache > [ 795.881057] NFSD: Using nfsdcld client tracking operations. > [ 795.881637] NFSD: starting 15-second grace period (net f0000098) > [ 816.968871] nfsd: last server has exited, flushing export cache > [ 817.199987] NFSD: Using nfsdcld client tracking operations. > [ 817.201123] NFSD: starting 15-second grace period (net f0000098) > [ 817.696746] nfsd: last server has exited, flushing export cache > [ 817.925616] NFSD: Using nfsdcld client tracking operations. > [ 817.926073] NFSD: starting 15-second grace period (net f0000098) > [ 839.080820] nfsd: last server has exited, flushing export cache > [ 839.321569] NFSD: Using nfsdcld client tracking operations. > [ 839.322562] NFSD: starting 15-second grace period (net f0000098) > [ 860.492782] nfsd: last server has exited, flushing export cache > [ 860.749705] NFSD: Using nfsdcld client tracking operations. > [ 860.751710] NFSD: starting 15-second grace period (net f0000098) > [ 882.889711] nfsd: last server has exited, flushing export cache > [ 883.125502] NFSD: Using nfsdcld client tracking operations. > [ 883.126399] NFSD: starting 15-second grace period (net f0000098) > [ 904.224662] nfsd: last server has exited, flushing export cache > [ 904.342387] NFSD: Using nfsdcld client tracking operations. > [ 904.342962] NFSD: starting 15-second grace period (net f0000098) > [ 947.528620] nfsd: last server has exited, flushing export cache > [ 947.763520] NFSD: Using nfsdcld client tracking operations. > [ 947.764569] NFSD: starting 15-second grace period (net f0000098) > [ 1442.187410] nfsd: last server has exited, flushing export cache > [ 1442.430496] NFSD: Using nfsdcld client tracking operations. > [ 1442.430974] NFSD: starting 15-second grace period (net f0000098) > [ 1483.739309] nfsd: last server has exited, flushing export cache > [ 1483.864102] NFSD: Using nfsdcld client tracking operations. > [ 1483.864606] NFSD: starting 15-second grace period (net f0000098) > [ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > [ 1508.807419] nfsd: last server has exited, flushing export cache > [ 1508.925396] NFSD: Using nfsdcld client tracking operations. > [ 1508.925905] NFSD: starting 15-second grace period (net f0000098) > [ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1530.667340] nfsd: last server has exited, flushing export cache > [ 1530.803387] NFSD: Using nfsdcld client tracking operations. > [ 1530.804150] NFSD: starting 15-second grace period (net f0000098) > [ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1552.563368] nfsd: last server has exited, flushing export cache > [ 1552.794957] NFSD: Using nfsdcld client tracking operations. > [ 1552.797092] NFSD: starting 15-second grace period (net f0000098) > [ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1594.943247] nfsd: last server has exited, flushing export cache > [ 1595.175609] NFSD: Using nfsdcld client tracking operations. > [ 1595.177610] NFSD: starting 15-second grace period (net f0000098) > [ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 1618.323178] nfsd: last server has exited, flushing export cache > [ 1618.553210] NFSD: Using nfsdcld client tracking operations. > [ 1618.555049] NFSD: starting 15-second grace period (net f0000098) > [ 1620.455011] nfsd: last server has exited, flushing export cache > [ 1620.687824] NFSD: Using nfsdcld client tracking operations. > [ 1620.688329] NFSD: starting 15-second grace period (net f0000098) > [ 1660.003178] nfsd: last server has exited, flushing export cache > [ 1660.236374] NFSD: Using nfsdcld client tracking operations. > [ 1660.237760] NFSD: starting 15-second grace period (net f0000098) > [ 1660.842977] nfsd: last server has exited, flushing export cache > [ 1661.061619] NFSD: Using nfsdcld client tracking operations. > [ 1661.062070] NFSD: starting 15-second grace period (net f0000098) > [ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > [ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > [ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > [ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success > > > I will update the >> Documentation/filesystems/locking.rst in v10. >> >>> I agree with Chuck that we don't need to reschedule the laundromat, it's >>> OK if it takes longer to get around to cleaning up a dead client. >> Yes, it is now implemented for lock conflict and share reservation >> resolution. I'm doing the same for delegation conflict. >> >> -Dai >> >>> --b. >>> >>> On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: >>>> Hi Bruce, Chuck >>>> >>>> This series of patches implement the NFSv4 Courteous Server. >>>> >>>> A server which does not immediately expunge the state on lease expiration >>>> is known as a Courteous Server. A Courteous Server continues to recognize >>>> previously generated state tokens as valid until conflict arises between >>>> the expired state and the requests from another client, or the server >>>> reboots. >>>> >>>> The v2 patch includes the following: >>>> >>>> . add new callback, lm_expire_lock, to lock_manager_operations to >>>> allow the lock manager to take appropriate action with conflict lock. >>>> >>>> . handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. >>>> >>>> . expire courtesy client after 24hr if client has not reconnected. >>>> >>>> . do not allow expired client to become courtesy client if there are >>>> waiters for client's locks. >>>> >>>> . modify client_info_show to show courtesy client and seconds from >>>> last renew. >>>> >>>> . fix a problem with NFSv4.1 server where the it keeps returning >>>> SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after >>>> the courtesy client re-connects, causing the client to keep sending >>>> BCTS requests to server. >>>> >>>> The v3 patch includes the following: >>>> >>>> . modified posix_test_lock to check and resolve conflict locks >>>> to handle NLM TEST and NFSv4 LOCKT requests. >>>> >>>> . separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. >>>> >>>> The v4 patch includes: >>>> >>>> . rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock >>>> by asking the laudromat thread to destroy the courtesy client. >>>> >>>> . handle NFSv4 share reservation conflicts with courtesy client. This >>>> includes conflicts between access mode and deny mode and vice versa. >>>> >>>> . drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. >>>> >>>> The v5 patch includes: >>>> >>>> . fix recursive locking of file_rwsem from posix_lock_file. >>>> >>>> . retest with LOCKDEP enabled. >>>> >>>> The v6 patch includes: >>>> >>>> . merge witn 5.15-rc7 >>>> >>>> . fix a bug in nfs4_check_deny_bmap that did not check for matched >>>> nfs4_file before checking for access/deny conflict. This bug causes >>>> pynfs OPEN18 to fail since the server taking too long to release >>>> lots of un-conflict clients' state. >>>> >>>> . enhance share reservation conflict handler to handle case where >>>> a large number of conflict courtesy clients need to be expired. >>>> The 1st 100 clients are expired synchronously and the rest are >>>> expired in the background by the laundromat and NFS4ERR_DELAY >>>> is returned to the NFS client. This is needed to prevent the >>>> NFS client from timing out waiting got the reply. >>>> >>>> The v7 patch includes: >>>> >>>> . Fix race condition in posix_test_lock and posix_lock_inode after >>>> dropping spinlock. >>>> >>>> . Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock >>>> callback >>>> >>>> . Always resolve share reservation conflicts asynchrously. >>>> >>>> . Fix bug in nfs4_laundromat where spinlock is not used when >>>> scanning cl_ownerstr_hashtbl. >>>> >>>> . Fix bug in nfs4_laundromat where idr_get_next was called >>>> with incorrect 'id'. >>>> >>>> . Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. >>>> >>>> The v8 patch includes: >>>> >>>> . Fix warning in nfsd4_fl_expire_lock reported by test robot. >>>> >>>> The V9 patch include: >>>> >>>> . Simplify lm_expire_lock API by (1) remove the 'testonly' flag >>>> and (2) specifying return value as true/false to indicate >>>> whether conflict was succesfully resolved. >>>> >>>> . Rework nfsd4_fl_expire_lock to mark client with >>>> NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire >>>> the client in the background. >>>> >>>> . Add a spinlock in nfs4_client to synchronize access to the >>>> NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to >>>> handle race conditions when resolving lock and share reservation >>>> conflict. >>>> >>>> . Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT >>>> are now consisdered 'dead', waiting for the laundromat to expire >>>> it. This client is no longer allowed to use its states if it >>>> re-connects before the laundromat finishes expiring the client. >>>> >>>> For v4.1 client, the detection is done in the processing of the >>>> SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client >>>> to re-establish new clientid and session. >>>> For v4.0 client, the detection is done in the processing of the >>>> RENEW and state-related ops and return NFS4ERR_EXPIRE to force >>>> the client to re-establish new clientid.
On Wed, Jan 12, 2022 at 11:31:55AM -0800, dai.ngo@oracle.com wrote: > > On 1/12/22 11:21 AM, J. Bruce Fields wrote: > >On Wed, Jan 12, 2022 at 11:05:03AM -0800, dai.ngo@oracle.com wrote: > >>On 1/12/22 10:59 AM, J. Bruce Fields wrote: > >>>Could you look back over previous comments? I notice there's a couple > >>>unaddressed (circular locking dependency, Documentation/filesystems/). > >>I think v9 addresses the circular locking dependency. > >The below is on 5.16 + these two v9 patches. > > > >--b. > > > >[ 335.595143] ====================================================== > >[ 335.596176] WARNING: possible circular locking dependency detected > >[ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted > >[ 335.597903] ------------------------------------------------------ > >[ 335.598845] kworker/u8:0/7 is trying to acquire lock: > >[ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.601111] > > but task is already holding lock: > >[ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > > This is the new spinlock that I added. It's weird that I don't see it > my messages log, I will check. Not especially weird, we probably have different config options and run different tests. You'll need to just inspect the code and figure ou why these locks are being taken in different orders. --b. > > Thanks, > -Dai > > >[ 335.602896] > > which lock already depends on the new lock. > > > >[ 335.603378] > > the existing dependency chain (in reverse order) is: > >[ 335.603897] > > -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: > >[ 335.604305] _raw_spin_lock+0x2f/0x40 > >[ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] > >[ 335.605078] posix_lock_inode+0x9b8/0x1a50 > >[ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] > >[ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >[ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >[ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] > >[ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] > >[ 335.607604] nfsd+0x306/0x530 [nfsd] > >[ 335.607923] kthread+0x3b1/0x490 > >[ 335.608199] ret_from_fork+0x22/0x30 > >[ 335.608512] > > -> #1 (&ctx->flc_lock){+.+.}-{2:2}: > >[ 335.608878] _raw_spin_lock+0x2f/0x40 > >[ 335.609187] check_for_locks+0xcf/0x200 [nfsd] > >[ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] > >[ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >[ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >[ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] > >[ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] > >[ 335.611863] nfsd+0x306/0x530 [nfsd] > >[ 335.612193] kthread+0x3b1/0x490 > >[ 335.612463] ret_from_fork+0x22/0x30 > >[ 335.612764] > > -> #0 (&clp->cl_lock){+.+.}-{2:2}: > >[ 335.613120] __lock_acquire+0x29f8/0x5b80 > >[ 335.613469] lock_acquire+0x1a6/0x4b0 > >[ 335.613763] _raw_spin_lock+0x2f/0x40 > >[ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.614477] process_one_work+0x7ec/0x1320 > >[ 335.614813] worker_thread+0x59e/0xf90 > >[ 335.615135] kthread+0x3b1/0x490 > >[ 335.615409] ret_from_fork+0x22/0x30 > >[ 335.615695] > > other info that might help us debug this: > > > >[ 335.616135] Chain exists of: > > &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock > > > >[ 335.616806] Possible unsafe locking scenario: > > > >[ 335.617140] CPU0 CPU1 > >[ 335.617467] ---- ---- > >[ 335.617793] lock(&clp->cl_cs_lock); > >[ 335.618036] lock(&ctx->flc_lock); > >[ 335.618531] lock(&clp->cl_cs_lock); > >[ 335.619037] lock(&clp->cl_lock); > >[ 335.619256] > > *** DEADLOCK *** > > > >[ 335.619487] 4 locks held by kworker/u8:0/7: > >[ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 > >[ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 > >[ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] > >[ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >[ 335.623462] > > stack backtrace: > >[ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 > >[ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > >[ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] > >[ 335.625514] Call Trace: > >[ 335.625641] <TASK> > >[ 335.625734] dump_stack_lvl+0x45/0x59 > >[ 335.625981] check_noncircular+0x23e/0x2e0 > >[ 335.626268] ? print_circular_bug+0x450/0x450 > >[ 335.626583] ? mark_lock+0xf1/0x30c0 > >[ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 > >[ 335.627156] __lock_acquire+0x29f8/0x5b80 > >[ 335.627463] ? lock_chain_count+0x20/0x20 > >[ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >[ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >[ 335.628555] lock_acquire+0x1a6/0x4b0 > >[ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.629184] ? lock_release+0x6d0/0x6d0 > >[ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] > >[ 335.629825] ? do_raw_spin_lock+0x11e/0x240 > >[ 335.630120] ? rwlock_bug.part.0+0x90/0x90 > >[ 335.630409] _raw_spin_lock+0x2f/0x40 > >[ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.631450] ? lock_release+0x6d0/0x6d0 > >[ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] > >[ 335.632110] process_one_work+0x7ec/0x1320 > >[ 335.632411] ? lock_release+0x6d0/0x6d0 > >[ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 > >[ 335.633002] ? rwlock_bug.part.0+0x90/0x90 > >[ 335.633290] worker_thread+0x59e/0xf90 > >[ 335.633548] ? process_one_work+0x1320/0x1320 > >[ 335.633860] kthread+0x3b1/0x490 > >[ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 > >[ 335.634396] ? set_kthread_struct+0x100/0x100 > >[ 335.634709] ret_from_fork+0x22/0x30 > >[ 335.634961] </TASK> > >[ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left > >[ 751.769042] nfsd: last server has exited, flushing export cache > >[ 751.957555] NFSD: Using nfsdcld client tracking operations. > >[ 751.958050] NFSD: starting 15-second grace period (net f0000098) > >[ 773.101065] nfsd: last server has exited, flushing export cache > >[ 773.341554] NFSD: Using nfsdcld client tracking operations. > >[ 773.342404] NFSD: starting 15-second grace period (net f0000098) > >[ 795.757041] nfsd: last server has exited, flushing export cache > >[ 795.881057] NFSD: Using nfsdcld client tracking operations. > >[ 795.881637] NFSD: starting 15-second grace period (net f0000098) > >[ 816.968871] nfsd: last server has exited, flushing export cache > >[ 817.199987] NFSD: Using nfsdcld client tracking operations. > >[ 817.201123] NFSD: starting 15-second grace period (net f0000098) > >[ 817.696746] nfsd: last server has exited, flushing export cache > >[ 817.925616] NFSD: Using nfsdcld client tracking operations. > >[ 817.926073] NFSD: starting 15-second grace period (net f0000098) > >[ 839.080820] nfsd: last server has exited, flushing export cache > >[ 839.321569] NFSD: Using nfsdcld client tracking operations. > >[ 839.322562] NFSD: starting 15-second grace period (net f0000098) > >[ 860.492782] nfsd: last server has exited, flushing export cache > >[ 860.749705] NFSD: Using nfsdcld client tracking operations. > >[ 860.751710] NFSD: starting 15-second grace period (net f0000098) > >[ 882.889711] nfsd: last server has exited, flushing export cache > >[ 883.125502] NFSD: Using nfsdcld client tracking operations. > >[ 883.126399] NFSD: starting 15-second grace period (net f0000098) > >[ 904.224662] nfsd: last server has exited, flushing export cache > >[ 904.342387] NFSD: Using nfsdcld client tracking operations. > >[ 904.342962] NFSD: starting 15-second grace period (net f0000098) > >[ 947.528620] nfsd: last server has exited, flushing export cache > >[ 947.763520] NFSD: Using nfsdcld client tracking operations. > >[ 947.764569] NFSD: starting 15-second grace period (net f0000098) > >[ 1442.187410] nfsd: last server has exited, flushing export cache > >[ 1442.430496] NFSD: Using nfsdcld client tracking operations. > >[ 1442.430974] NFSD: starting 15-second grace period (net f0000098) > >[ 1483.739309] nfsd: last server has exited, flushing export cache > >[ 1483.864102] NFSD: Using nfsdcld client tracking operations. > >[ 1483.864606] NFSD: starting 15-second grace period (net f0000098) > >[ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >[ 1508.807419] nfsd: last server has exited, flushing export cache > >[ 1508.925396] NFSD: Using nfsdcld client tracking operations. > >[ 1508.925905] NFSD: starting 15-second grace period (net f0000098) > >[ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1530.667340] nfsd: last server has exited, flushing export cache > >[ 1530.803387] NFSD: Using nfsdcld client tracking operations. > >[ 1530.804150] NFSD: starting 15-second grace period (net f0000098) > >[ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1552.563368] nfsd: last server has exited, flushing export cache > >[ 1552.794957] NFSD: Using nfsdcld client tracking operations. > >[ 1552.797092] NFSD: starting 15-second grace period (net f0000098) > >[ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1594.943247] nfsd: last server has exited, flushing export cache > >[ 1595.175609] NFSD: Using nfsdcld client tracking operations. > >[ 1595.177610] NFSD: starting 15-second grace period (net f0000098) > >[ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1618.323178] nfsd: last server has exited, flushing export cache > >[ 1618.553210] NFSD: Using nfsdcld client tracking operations. > >[ 1618.555049] NFSD: starting 15-second grace period (net f0000098) > >[ 1620.455011] nfsd: last server has exited, flushing export cache > >[ 1620.687824] NFSD: Using nfsdcld client tracking operations. > >[ 1620.688329] NFSD: starting 15-second grace period (net f0000098) > >[ 1660.003178] nfsd: last server has exited, flushing export cache > >[ 1660.236374] NFSD: Using nfsdcld client tracking operations. > >[ 1660.237760] NFSD: starting 15-second grace period (net f0000098) > >[ 1660.842977] nfsd: last server has exited, flushing export cache > >[ 1661.061619] NFSD: Using nfsdcld client tracking operations. > >[ 1661.062070] NFSD: starting 15-second grace period (net f0000098) > >[ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >[ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >[ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success > > > >started Wed Jan 12 11:28:28 AM EST 2022, finished Wed Jan 12 01:47:36 PM EST 2022 > > > > > >+-----------------------------------------+ > >| verbose output | > >+-----------------------------------------+ > >fs/select.c: In function ‘do_select’: > >fs/select.c:611:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 611 | } > > | ^ > >fs/select.c: In function ‘do_sys_poll’: > >fs/select.c:1041:1: warning: the frame size of 1296 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 1041 | } > > | ^ > >net/core/rtnetlink.c: In function ‘__rtnl_newlink’: > >net/core/rtnetlink.c:3494:1: warning: the frame size of 1368 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 3494 | } > > | ^ > >drivers/tty/serial/8250/8250_core.c: In function ‘serial8250_probe’: > >drivers/tty/serial/8250/8250_core.c:840:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 840 | } > > | ^ > >drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’: > >drivers/tty/serial/8250/8250_pnp.c:488:1: warning: the frame size of 1136 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 488 | } > > | ^ > >drivers/tty/serial/8250/8250_pci.c: In function ‘pciserial_init_ports’: > >drivers/tty/serial/8250/8250_pci.c:4030:1: warning: the frame size of 1160 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 4030 | } > > | ^ > >drivers/tty/serial/8250/8250_exar.c: In function ‘exar_pci_probe’: > >drivers/tty/serial/8250/8250_exar.c:678:1: warning: the frame size of 1176 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 678 | } > > | ^ > >drivers/tty/serial/8250/8250_lpss.c: In function ‘lpss8250_probe.part.0’: > >drivers/tty/serial/8250/8250_lpss.c:351:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 351 | } > > | ^ > >drivers/tty/serial/8250/8250_mid.c: In function ‘mid8250_probe.part.0’: > >drivers/tty/serial/8250/8250_mid.c:337:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 337 | } > > | ^ > >lib/zstd/common/entropy_common.c: In function ‘HUF_readStats’: > >lib/zstd/common/entropy_common.c:257:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 257 | } > > | ^ > >drivers/acpi/processor_thermal.c: In function ‘cpu_has_cpufreq’: > >drivers/acpi/processor_thermal.c:60:1: warning: the frame size of 1384 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 60 | } > > | ^ > >drivers/dma-buf/dma-resv.c: In function ‘dma_resv_lockdep’: > >drivers/dma-buf/dma-resv.c:708:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 708 | } > > | ^ > >fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: > >fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 418 | } > > | ^ > >drivers/md/raid5-ppl.c: In function ‘ppl_recover_entry’: > >drivers/md/raid5-ppl.c:968:1: warning: the frame size of 1200 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 968 | } > > | ^ > >fs/ocfs2/namei.c: In function ‘ocfs2_rename’: > >fs/ocfs2/namei.c:1686:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 1686 | } > > | ^ > >net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: > >net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 717 | } > > | ^ > >net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: > >net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 810 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘nldev_set_doit’: > >drivers/infiniband/core/nldev.c:1112:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 1112 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘nldev_newlink’: > >drivers/infiniband/core/nldev.c:1722:1: warning: the frame size of 1128 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 1722 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘nldev_get_chardev’: > >drivers/infiniband/core/nldev.c:1833:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 1833 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘nldev_stat_set_doit’: > >drivers/infiniband/core/nldev.c:2061:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 2061 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘res_get_common_dumpit’: > >drivers/infiniband/core/nldev.c:1613:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 1613 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_doit’: > >drivers/infiniband/core/nldev.c:2318:1: warning: the frame size of 1088 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 2318 | } > > | ^ > >drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_counter_status_doit’: > >drivers/infiniband/core/nldev.c:2438:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 2438 | } > > | ^ > >net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: > >net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 717 | } > > | ^ > >net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: > >net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 810 | } > > | ^ > >fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: > >fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > > 418 | } > > | ^ > >make -f ./Makefile > > CALL scripts/checksyscalls.sh > > CALL scripts/atomic/check-atomics.sh > > DESCEND objtool > > CHK include/generated/compile.h > > BUILD arch/x86/boot/bzImage > >Kernel: arch/x86/boot/bzImage is ready (#1278) > >sh ./scripts/package/buildtar targz-pkg > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authenc.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authencesn.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/crypto_engine.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/echainiv.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/crypto/virtio/virtio_crypto.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/iscsi_tcp.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi_tcp.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/scsi_transport_iscsi.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/lockd/lockd.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/blocklayout/blocklayoutdriver.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/filelayout/nfs_layout_nfsv41_files.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfs.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv2.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv3.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv4.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/grace.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/nfs_acl.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfsd/nfsd.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sched/cls_bpf.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/sunrpc.ko > > INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/xprtrdma/rpcrdma.ko > > DEPMOD ./tar-install/lib/modules/5.16.0-00002-g616758bf6583 > >'./System.map' -> './tar-install/boot/System.map-5.16.0-00002-g616758bf6583' > >'.config' -> './tar-install/boot/config-5.16.0-00002-g616758bf6583' > >'./vmlinux' -> './tar-install/boot/vmlinux-5.16.0-00002-g616758bf6583' > >'./arch/x86/boot/bzImage' -> './tar-install/boot/vmlinuz-5.16.0-00002-g616758bf6583' > >Tarball successfully created in ./linux-5.16.0-00002-g616758bf6583-x86_64.tar.gz > >user pynfs tests: > >WARNING - could not create /b'exports/xfs/pynfstest-user/tree/block' > >WARNING - could not create /b'exports/xfs/pynfstest-user/tree/char' > >DELEG22 st_delegation.testServerSelfConflict2 : RUNNING > >DELEG22 st_delegation.testServerSelfConflict2 : PASS > >DELEG21 st_delegation.testServerSelfConflict : RUNNING > >DELEG21 st_delegation.testServerSelfConflict : PASS > >DELEG18 st_delegation.testServerRenameTarget : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=3)******** > >DELEG18 st_delegation.testServerRenameTarget : PASS > >DELEG17 st_delegation.testServerRenameSource : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=4)******** > >DELEG17 st_delegation.testServerRenameSource : PASS > >DELEG16 st_delegation.testServerRemove : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=5)******** > >DELEG16 st_delegation.testServerRemove : PASS > >DELEG19 st_delegation.testServerLink : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=6)******** > >DELEG19 st_delegation.testServerLink : PASS > >DELEG20 st_delegation.testServerChmod : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=7)******** > >DELEG20 st_delegation.testServerChmod : PASS > >DELEG6 st_delegation.testRenew : RUNNING > >Sleeping for 7.5 seconds: Waiting to send RENEW > >Woke up > >DELEG6 st_delegation.testRenew : PASS > >DELEG15d st_delegation.testRenameOver : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=9)******** > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename > >Woke up > >DELEG15d st_delegation.testRenameOver : PASS > >DELEG15c st_delegation.testRename : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=10)******** > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename > >Woke up > >DELEG15c st_delegation.testRename : PASS > >DELEG15a st_delegation.testRemove : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on remove > >*****CB received COMPOUND****** > >******* CB_Recall (id=11)******** > >Woke up > >DELEG15a st_delegation.testRemove : PASS > >DELEG3e st_delegation.testReadDeleg3e : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=12)******** > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG3e st_delegation.testReadDeleg3e : PASS > >DELEG3d st_delegation.testReadDeleg3d : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=13)******** > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG3d st_delegation.testReadDeleg3d : PASS > >DELEG3c st_delegation.testReadDeleg3c : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=14)******** > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG3c st_delegation.testReadDeleg3c : PASS > >DELEG3b st_delegation.testReadDeleg3b : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=15)******** > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG3b st_delegation.testReadDeleg3b : PASS > >DELEG3a st_delegation.testReadDeleg3a : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=16)******** > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG3a st_delegation.testReadDeleg3a : PASS > >DELEG2 st_delegation.testReadDeleg2 : RUNNING > >*****CB received COMPOUND****** > >******* CB_Recall (id=17)******** > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG2 st_delegation.testReadDeleg2 : PASS > >DELEG1 st_delegation.testReadDeleg1 : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=18)******** > >Woke up > >DELEG1 st_delegation.testReadDeleg1 : PASS > >DELEG15b st_delegation.testLink : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on link > >*****CB received COMPOUND****** > >******* CB_Recall (id=19)******** > >Woke up > >DELEG15b st_delegation.testLink : PASS > >DELEG7 st_delegation.testIgnoreDeleg : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=20)******** > >Woke up > >DELEG7 st_delegation.testIgnoreDeleg : PASS > >DELEG8 st_delegation.testDelegShare : RUNNING > >DELEG8 st_delegation.testDelegShare : PASS > >DELEG4 st_delegation.testCloseDeleg : RUNNING > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=22)******** > >Woke up > >DELEG4 st_delegation.testCloseDeleg : PASS > >DELEG14 st_delegation.testClaimCur : RUNNING > >Sleeping for 2 seconds: Waiting for recall > >*****CB received COMPOUND****** > >******* CB_Recall (id=23)******** > >Woke up > >DELEG14 st_delegation.testClaimCur : PASS > >DELEG9 st_delegation.testChangeDeleg : RUNNING > >Sleeping for 3 seconds: > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >*****CB received COMPOUND****** > >******* CB_Recall (id=1)******** > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >Woke up > >DELEG9 st_delegation.testChangeDeleg : PASS > >INIT st_setclientid.testValid : RUNNING > >INIT st_setclientid.testValid : PASS > >MKFILE st_open.testOpen : RUNNING > >MKFILE st_open.testOpen : PASS > >REBT8 st_reboot.testValidDeleg : RUNNING > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >REBT8 st_reboot.testValidDeleg : PASS > >REBT3 st_reboot.testRebootWait : RUNNING > >Got error: Connection closed > >Sleeping for 10 seconds: Waiting till halfway through grace period > >Woke up > >Sleeping for 11 seconds: Waiting for grace period to end > >Woke up > >REBT3 st_reboot.testRebootWait : PASS > >REBT1 st_reboot.testRebootValid : RUNNING > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >REBT1 st_reboot.testRebootValid : PASS > >REBT10 st_reboot.testRebootMultiple : RUNNING > >Got error: Connection closed > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >REBT10 st_reboot.testRebootMultiple : PASS > >MKDIR st_create.testDir : RUNNING > >MKDIR st_create.testDir : PASS > >REBT2 st_reboot.testManyClaims : RUNNING > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >REBT2 st_reboot.testManyClaims : PASS > >REBT11 st_reboot.testGraceSeqid : RUNNING > >Got error: Connection closed > >Sleeping for 10 seconds: Waiting till halfway through grace period > >Woke up > >Sleeping for 11 seconds: Waiting for grace period to end > >Woke up > >REBT11 st_reboot.testGraceSeqid : PASS > >REBT6 st_reboot.testEdge2 : RUNNING > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >Got error: Connection closed > >Got error: Connection closed > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >REBT6 st_reboot.testEdge2 : PASS > >REBT5 st_reboot.testEdge1 : RUNNING > >Sleeping for 22 seconds: Waiting for lock lease to expire > >Woke up > >Got error: Connection closed > >Got error: Connection closed > >Sleeping for 20 seconds: Waiting for grace period to end > >Woke up > >REBT5 st_reboot.testEdge1 : PASS > >RPLY8 st_replay.testUnlockWait : RUNNING > >Sleeping for 30 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY8 st_replay.testUnlockWait : PASS > >RPLY7 st_replay.testUnlock : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY7 st_replay.testUnlock : PASS > >RPLY3 st_replay.testReplayState2 : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY3 st_replay.testReplayState2 : PASS > >RPLY2 st_replay.testReplayState1 : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY2 st_replay.testReplayState1 : PASS > >RPLY4 st_replay.testReplayNonState : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY4 st_replay.testReplayNonState : PASS > >RPLY13 st_replay.testOpenConfirmFail : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY13 st_replay.testOpenConfirmFail : PASS > >RPLY12 st_replay.testOpenConfirm : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY12 st_replay.testOpenConfirm : PASS > >RPLY1 st_replay.testOpen : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY1 st_replay.testOpen : PASS > >RPLY14 st_replay.testMkdirReplay : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY14 st_replay.testMkdirReplay : PASS > >RPLY6 st_replay.testLockDenied : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY6 st_replay.testLockDenied : PASS > >RPLY5 st_replay.testLock : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY5 st_replay.testLock : PASS > >RPLY10 st_replay.testCloseWait : RUNNING > >Sleeping for 30 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY10 st_replay.testCloseWait : PASS > >RPLY11 st_replay.testCloseFail : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY11 st_replay.testCloseFail : PASS > >RPLY9 st_replay.testClose : RUNNING > >Sleeping for 0.3 seconds: > >Woke up > >Sleeping for 0.3 seconds: > >Woke up > >RPLY9 st_replay.testClose : PASS > >WRT3 st_write.testWithOpen : RUNNING > >WRT3 st_write.testWithOpen : PASS > >WRT5b st_write.testTooLargeData : RUNNING > >WRT5b st_write.testTooLargeData : PASS > >WRT19 st_write.testStolenStateid : RUNNING > >WRT19 st_write.testStolenStateid : PASS > >WRT2 st_write.testStateidOne : RUNNING > >WRT2 st_write.testStateidOne : PASS > >WRT11 st_write.testStaleStateid : RUNNING > >WRT11 st_write.testStaleStateid : PASS > >MKSOCK st_create.testSocket : RUNNING > >MKSOCK st_create.testSocket : PASS > >WRT6s st_write.testSocket : RUNNING > >WRT6s st_write.testSocket : PASS > >WRT15 st_write.testSizes : RUNNING > >WRT15 st_write.testSizes : PASS > >WRT1b st_write.testSimpleWrite2 : RUNNING > >WRT1b st_write.testSimpleWrite2 : PASS > >WRT1 st_write.testSimpleWrite : RUNNING > >WRT1 st_write.testSimpleWrite : PASS > >WRT9 st_write.testShareDeny : RUNNING > >WRT9 st_write.testShareDeny : PASS > >WRT8 st_write.testOpenMode : RUNNING > >WRT8 st_write.testOpenMode : PASS > >WRT12 st_write.testOldStateid : RUNNING > >WRT12 st_write.testOldStateid : PASS > >WRT7 st_write.testNoFh : RUNNING > >WRT7 st_write.testNoFh : PASS > >WRT4 st_write.testNoData : RUNNING > >Sleeping for 1 seconds: > >Woke up > >WRT4 st_write.testNoData : PASS > >WRT5a st_write.testMaximumData : RUNNING > >WRT5a st_write.testMaximumData : PASS > >MKLINK st_create.testLink : RUNNING > >MKLINK st_create.testLink : PASS > >WRT6a st_write.testLink : RUNNING > >WRT6a st_write.testLink : PASS > >WRT14 st_write.testLargeWrite : RUNNING > >WRT14 st_write.testLargeWrite : PASS > >MKFIFO st_create.testFIFO : RUNNING > >MKFIFO st_create.testFIFO : PASS > >WRT6f st_write.testFifo : RUNNING > >WRT6f st_write.testFifo : PASS > >WRT13 st_write.testDoubleWrite : RUNNING > >WRT13 st_write.testDoubleWrite : PASS > >WRT6d st_write.testDir : RUNNING > >WRT6d st_write.testDir : PASS > >MODE st_setattr.testMode : RUNNING > >MODE st_setattr.testMode : PASS > >WRT18 st_write.testChangeGranularityWrite : RUNNING > >WRT18 st_write.testChangeGranularityWrite : PASS > >LOOKSOCK st_lookup.testSocket : RUNNING > >LOOKSOCK st_lookup.testSocket : PASS > >VF5s st_verify.testWriteOnlySocket : RUNNING > >VF5s st_verify.testWriteOnlySocket : PASS > >LOOKLINK st_lookup.testLink : RUNNING > >LOOKLINK st_lookup.testLink : PASS > >VF5a st_verify.testWriteOnlyLink : RUNNING > >VF5a st_verify.testWriteOnlyLink : PASS > >LOOKFILE st_lookup.testFile : RUNNING > >LOOKFILE st_lookup.testFile : PASS > >VF5r st_verify.testWriteOnlyFile : RUNNING > >VF5r st_verify.testWriteOnlyFile : PASS > >LOOKFIFO st_lookup.testFifo : RUNNING > >LOOKFIFO st_lookup.testFifo : PASS > >VF5f st_verify.testWriteOnlyFifo : RUNNING > >VF5f st_verify.testWriteOnlyFifo : PASS > >LOOKDIR st_lookup.testDir : RUNNING > >LOOKDIR st_lookup.testDir : PASS > >VF5d st_verify.testWriteOnlyDir : RUNNING > >VF5d st_verify.testWriteOnlyDir : PASS > >VF7s st_verify.testUnsupportedSocket : RUNNING > >VF7s st_verify.testUnsupportedSocket : PASS > >VF7a st_verify.testUnsupportedLink : RUNNING > >VF7a st_verify.testUnsupportedLink : PASS > >VF7r st_verify.testUnsupportedFile : RUNNING > >VF7r st_verify.testUnsupportedFile : PASS > >VF7f st_verify.testUnsupportedFifo : RUNNING > >VF7f st_verify.testUnsupportedFifo : PASS > >VF7d st_verify.testUnsupportedDir : RUNNING > >VF7d st_verify.testUnsupportedDir : PASS > >VF2s st_verify.testTypeSocket : RUNNING > >VF2s st_verify.testTypeSocket : PASS > >VF2a st_verify.testTypeLink : RUNNING > >VF2a st_verify.testTypeLink : PASS > >VF2r st_verify.testTypeFile : RUNNING > >VF2r st_verify.testTypeFile : PASS > >VF2f st_verify.testTypeFifo : RUNNING > >VF2f st_verify.testTypeFifo : PASS > >VF2d st_verify.testTypeDir : RUNNING > >VF2d st_verify.testTypeDir : PASS > >VF4 st_verify.testNoFh : RUNNING > >VF4 st_verify.testNoFh : PASS > >VF1s st_verify.testMandSocket : RUNNING > >VF1s st_verify.testMandSocket : PASS > >VF1a st_verify.testMandLink : RUNNING > >VF1a st_verify.testMandLink : PASS > >VF1r st_verify.testMandFile : RUNNING > >VF1r st_verify.testMandFile : PASS > >VF1f st_verify.testMandFifo : RUNNING > >VF1f st_verify.testMandFifo : PASS > >VF1d st_verify.testMandDir : RUNNING > >VF1d st_verify.testMandDir : PASS > >VF3s st_verify.testBadSizeSocket : RUNNING > >VF3s st_verify.testBadSizeSocket : PASS > >VF3a st_verify.testBadSizeLink : RUNNING > >VF3a st_verify.testBadSizeLink : PASS > >VF3r st_verify.testBadSizeFile : RUNNING > >VF3r st_verify.testBadSizeFile : PASS > >VF3f st_verify.testBadSizeFifo : RUNNING > >VF3f st_verify.testBadSizeFifo : PASS > >VF3d st_verify.testBadSizeDir : RUNNING > >VF3d st_verify.testBadSizeDir : PASS > >CIDCF1 st_setclientidconfirm.testStale : RUNNING > >CIDCF1 st_setclientidconfirm.testStale : PASS > >CIDCF3 st_setclientidconfirm.testAllCases : RUNNING > >CIDCF3 st_setclientidconfirm.testAllCases : PASS > >CID4e st_setclientid.testUnConfReplaced : RUNNING > >CID4e st_setclientid.testUnConfReplaced : PASS > >CID2 st_setclientid.testNotInUse : RUNNING > >CID2 st_setclientid.testNotInUse : PASS > >CID6 st_setclientid.testNoConfirm : RUNNING > >CID6 st_setclientid.testNoConfirm : PASS > >CID5 st_setclientid.testLotsOfClients : RUNNING > >CID5 st_setclientid.testLotsOfClients : PASS > >CID3 st_setclientid.testLoseAnswer : RUNNING > >CID3 st_setclientid.testLoseAnswer : PASS > >CID2a st_setclientid.testInUse : RUNNING > >CID2a st_setclientid.testInUse : PASS > >CID4b st_setclientid.testConfirmedDiffVerifier : RUNNING > >CID4b st_setclientid.testConfirmedDiffVerifier : PASS > >CID4d st_setclientid.testConfUnConfDiffVerifier2 : RUNNING > >CID4d st_setclientid.testConfUnConfDiffVerifier2 : PASS > >CID4c st_setclientid.testConfUnConfDiffVerifier1 : RUNNING > >CID4c st_setclientid.testConfUnConfDiffVerifier1 : PASS > >CID1b st_setclientid.testClientUpdateCallback : RUNNING > >CID1b st_setclientid.testClientUpdateCallback : PASS > >CID1 st_setclientid.testClientReboot : RUNNING > >CID1 st_setclientid.testClientReboot : PASS > >CID4a st_setclientid.testCallbackInfoUpdate : RUNNING > >CID4a st_setclientid.testCallbackInfoUpdate : PASS > >CID4 st_setclientid.testAllCases : RUNNING > >CID4 st_setclientid.testAllCases : PASS > >SATT2c st_setattr.testUselessStateid3 : RUNNING > >SATT2c st_setattr.testUselessStateid3 : PASS > >SATT2b st_setattr.testUselessStateid2 : RUNNING > >SATT2b st_setattr.testUselessStateid2 : PASS > >SATT2a st_setattr.testUselessStateid1 : RUNNING > >SATT2a st_setattr.testUselessStateid1 : PASS > >SATT11s st_setattr.testUnsupportedSocket : RUNNING > >SATT11s st_setattr.testUnsupportedSocket : PASS > >SATT11a st_setattr.testUnsupportedLink : RUNNING > >SATT11a st_setattr.testUnsupportedLink : PASS > >SATT11r st_setattr.testUnsupportedFile : RUNNING > >SATT11r st_setattr.testUnsupportedFile : PASS > >SATT11f st_setattr.testUnsupportedFifo : RUNNING > >SATT11f st_setattr.testUnsupportedFifo : PASS > >SATT11d st_setattr.testUnsupportedDir : RUNNING > >SATT11d st_setattr.testUnsupportedDir : PASS > >SATT12s st_setattr.testSizeSocket : RUNNING > >SATT12s st_setattr.testSizeSocket : PASS > >SATT12a st_setattr.testSizeLink : RUNNING > >SATT12a st_setattr.testSizeLink : PASS > >SATT12f st_setattr.testSizeFifo : RUNNING > >SATT12f st_setattr.testSizeFifo : PASS > >SATT12d st_setattr.testSizeDir : RUNNING > >SATT12d st_setattr.testSizeDir : PASS > >SATT3d st_setattr.testResizeFile3 : RUNNING > >SATT3d st_setattr.testResizeFile3 : PASS > >SATT3c st_setattr.testResizeFile2 : RUNNING > >SATT3c st_setattr.testResizeFile2 : PASS > >SATT3b st_setattr.testResizeFile1 : RUNNING > >SATT3b st_setattr.testResizeFile1 : PASS > >SATT3a st_setattr.testResizeFile0 : RUNNING > >SATT3a st_setattr.testResizeFile0 : PASS > >SATT6d st_setattr.testReadonlyDir : RUNNING > >SATT6d st_setattr.testReadonlyDir : PASS > >SATT6s st_setattr.testReadonlySocket : RUNNING > >SATT6s st_setattr.testReadonlySocket : PASS > >SATT6a st_setattr.testReadonlyLink : RUNNING > >SATT6a st_setattr.testReadonlyLink : PASS > >SATT6r st_setattr.testReadonlyFile : RUNNING > >SATT6r st_setattr.testReadonlyFile : PASS > >SATT6f st_setattr.testReadonlyFifo : RUNNING > >SATT6f st_setattr.testReadonlyFifo : PASS > >SATT4 st_setattr.testOpenModeResize : RUNNING > >SATT4 st_setattr.testOpenModeResize : PASS > >SATT5 st_setattr.testNoFh : RUNNING > >SATT5 st_setattr.testNoFh : PASS > >SATT10 st_setattr.testInvalidTime : RUNNING > >SATT10 st_setattr.testInvalidTime : PASS > >SATT8 st_setattr.testInvalidAttr2 : RUNNING > >SATT8 st_setattr.testInvalidAttr2 : PASS > >SATT7 st_setattr.testInvalidAttr1 : RUNNING > >Traceback (most recent call last): > > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > > self.runtest(self, environment) > > File "/root/pynfs/nfs4.0/servertests/st_renew.py", line 41, in testExpired > > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_READ, > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > > check_result(res, "Opening file %s" % _getname(owner, path)) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > > raise BadCompoundRes(resop, res.status, msg) > >nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >SATT7 st_setattr.testInvalidAttr1 : PASS > >SATT13 st_setattr.testInodeLocking : RUNNING > >SATT13 st_setattr.testInodeLocking : PASS > >SATT1r st_setattr.testFile : RUNNING > >SATT1r st_setattr.testFile : PASS > >SATT1f st_setattr.testFifo : RUNNING > >SATT1f st_setattr.testFifo : PASS > >SATT16 st_setattr.testEmptyPrincipal : RUNNING > >SATT16 st_setattr.testEmptyPrincipal : PASS > >SATT17 st_setattr.testEmptyGroupPrincipal : RUNNING > >SATT17 st_setattr.testEmptyGroupPrincipal : PASS > >SATT1d st_setattr.testDir : RUNNING > >SATT1d st_setattr.testDir : PASS > >SATT15 st_setattr.testChangeGranularity : RUNNING > >SATT15 st_setattr.testChangeGranularity : PASS > >SATT14 st_setattr.testChange : RUNNING > >SATT14 st_setattr.testChange : PASS > >SEC1 st_secinfo.testValid : RUNNING > >SEC1 st_secinfo.testValid : PASS > >SEC5 st_secinfo.testZeroLenName : RUNNING > >SEC5 st_secinfo.testZeroLenName : PASS > >SEC3 st_secinfo.testVaporFile : RUNNING > >SEC3 st_secinfo.testVaporFile : PASS > >SEC7 st_secinfo.testRPCSEC_GSS : RUNNING > >SEC7 st_secinfo.testRPCSEC_GSS : PASS > >SEC2 st_secinfo.testNotDir : RUNNING > >SEC2 st_secinfo.testNotDir : PASS > >SEC4 st_secinfo.testNoFh : RUNNING > >SEC4 st_secinfo.testNoFh : PASS > >SVFH1 st_savefh.testNoFh : RUNNING > >SVFH1 st_savefh.testNoFh : PASS > >SVFH2s st_restorefh.testValidSocket : RUNNING > >SVFH2s st_restorefh.testValidSocket : PASS > >SVFH2a st_restorefh.testValidLink : RUNNING > >SVFH2a st_restorefh.testValidLink : PASS > >SVFH2r st_restorefh.testValidFile : RUNNING > >SVFH2r st_restorefh.testValidFile : PASS > >SVFH2f st_restorefh.testValidFifo : RUNNING > >SVFH2f st_restorefh.testValidFifo : PASS > >SVFH2d st_restorefh.testValidDir : RUNNING > >SVFH2d st_restorefh.testValidDir : PASS > >RSFH2 st_restorefh.testNoFh2 : RUNNING > >RSFH2 st_restorefh.testNoFh2 : PASS > >RSFH1 st_restorefh.testNoFh1 : RUNNING > >RSFH1 st_restorefh.testNoFh1 : PASS > >RENEW1 st_renew.testRenew : RUNNING > >RENEW1 st_renew.testRenew : PASS > >RENEW3 st_renew.testExpired : RUNNING > >Sleeping for 30 seconds: > >Woke up > >RENEW3 st_renew.testExpired : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >RENEW2 st_renew.testBadRenew : RUNNING > >RENEW2 st_renew.testBadRenew : PASS > >RNM6 st_rename.testZeroLengthOldname : RUNNING > >RNM6 st_rename.testZeroLengthOldname : PASS > >RNM7 st_rename.testZeroLengthNewname : RUNNING > >RNM7 st_rename.testZeroLengthNewname : PASS > >RNM1s st_rename.testValidSocket : RUNNING > >RNM1s st_rename.testValidSocket : PASS > >RNM1a st_rename.testValidLink : RUNNING > >RNM1a st_rename.testValidLink : PASS > >RNM1r st_rename.testValidFile : RUNNING > >RNM1r st_rename.testValidFile : PASS > >RNM1f st_rename.testValidFifo : RUNNING > >RNM1f st_rename.testValidFifo : PASS > >RNM1d st_rename.testValidDir : RUNNING > >RNM1d st_rename.testValidDir : PASS > >RNM2s st_rename.testSfhSocket : RUNNING > >RNM2s st_rename.testSfhSocket : PASS > >RNM2a st_rename.testSfhLink : RUNNING > >RNM2a st_rename.testSfhLink : PASS > >RNM2r st_rename.testSfhFile : RUNNING > >RNM2r st_rename.testSfhFile : PASS > >RNM2f st_rename.testSfhFifo : RUNNING > >RNM2f st_rename.testSfhFifo : PASS > >RNM19 st_rename.testSelfRenameFile : RUNNING > >RNM19 st_rename.testSelfRenameFile : PASS > >RNM18 st_rename.testSelfRenameDir : RUNNING > >RNM18 st_rename.testSelfRenameDir : PASS > >RNM5 st_rename.testNonExistent : RUNNING > >RNM5 st_rename.testNonExistent : PASS > >RNM4 st_rename.testNoSfh : RUNNING > >RNM4 st_rename.testNoSfh : PASS > >LINKS st_link.testSupported : RUNNING > >LINKS st_link.testSupported : PASS > >RNM20 st_rename.testLinkRename : RUNNING > >RNM20 st_rename.testLinkRename : PASS > >RNM17 st_rename.testFileToFullDir : RUNNING > >RNM17 st_rename.testFileToFullDir : PASS > >RNM15 st_rename.testFileToFile : RUNNING > >RNM15 st_rename.testFileToFile : PASS > >RNM14 st_rename.testFileToDir : RUNNING > >RNM14 st_rename.testFileToDir : PASS > >RNM10 st_rename.testDotsOldname : RUNNING > >RNM10 st_rename.testDotsOldname : PASS > >RNM11 st_rename.testDotsNewname : RUNNING > >RNM11 st_rename.testDotsNewname : PASS > >RNM12 st_rename.testDirToObj : RUNNING > >RNM12 st_rename.testDirToObj : PASS > >RNM16 st_rename.testDirToFullDir : RUNNING > >RNM16 st_rename.testDirToFullDir : PASS > >RNM13 st_rename.testDirToDir : RUNNING > >RNM13 st_rename.testDirToDir : PASS > >RNM3s st_rename.testCfhSocket : RUNNING > >RNM3s st_rename.testCfhSocket : PASS > >RNM3a st_rename.testCfhLink : RUNNING > >RNM3a st_rename.testCfhLink : PASS > >RNM3r st_rename.testCfhFile : RUNNING > >RNM3r st_rename.testCfhFile : PASS > >RNM3f st_rename.testCfhFifo : RUNNING > >RNM3f st_rename.testCfhFifo : PASS > >RM4 st_remove.testZeroLengthTarget : RUNNING > >RM4 st_remove.testZeroLengthTarget : PASS > >RM1s st_remove.testSocket : RUNNING > >RM1s st_remove.testSocket : PASS > >RM8 st_remove.testNotEmpty : RUNNING > >RM8 st_remove.testNotEmpty : PASS > >RM6 st_remove.testNonExistent : RUNNING > >RM6 st_remove.testNonExistent : PASS > >RM3 st_remove.testNoFh : RUNNING > >RM3 st_remove.testNoFh : PASS > >RM1a st_remove.testLink : RUNNING > >RM1a st_remove.testLink : PASS > >RM1r st_remove.testFile : RUNNING > >RM1r st_remove.testFile : PASS > >RM1f st_remove.testFifo : RUNNING > >RM1f st_remove.testFifo : PASS > >RM7 st_remove.testDots : RUNNING > >RM7 st_remove.testDots : PASS > >RM1d st_remove.testDir : RUNNING > >RM1d st_remove.testDir : PASS > >RM2s st_remove.testCfhSocket : RUNNING > >RM2s st_remove.testCfhSocket : PASS > >RM2a st_remove.testCfhLink : RUNNING > >RM2a st_remove.testCfhLink : PASS > >RM2r st_remove.testCfhFile : RUNNING > >RM2r st_remove.testCfhFile : PASS > >RM2f st_remove.testCfhFifo : RUNNING > >RM2f st_remove.testCfhFifo : PASS > >RLOWN1 st_releaselockowner.testFile : RUNNING > >RLOWN1 st_releaselockowner.testFile : PASS > >RDLK2s st_readlink.testSocket : RUNNING > >RDLK2s st_readlink.testSocket : PASS > >RDLK1 st_readlink.testReadlink : RUNNING > >RDLK1 st_readlink.testReadlink : PASS > >RDLK3 st_readlink.testNoFh : RUNNING > >RDLK3 st_readlink.testNoFh : PASS > >RDLK2r st_readlink.testFile : RUNNING > >RDLK2r st_readlink.testFile : PASS > >RDLK2f st_readlink.testFifo : RUNNING > >RDLK2f st_readlink.testFifo : PASS > >RDLK2d st_readlink.testDir : RUNNING > >RDLK2d st_readlink.testDir : PASS > >RDDR9 st_readdir.testWriteOnlyAttributes : RUNNING > >RDDR9 st_readdir.testWriteOnlyAttributes : PASS > >RDDR12 st_readdir.testUnaccessibleDirAttrs : RUNNING > >RDDR12 st_readdir.testUnaccessibleDirAttrs : PASS > >RDDR11 st_readdir.testUnaccessibleDir : RUNNING > >RDDR11 st_readdir.testUnaccessibleDir : PASS > >RDDR4 st_readdir.testSubsequent : RUNNING > >RDDR4 st_readdir.testSubsequent : PASS > >RDDR10 st_readdir.testReservedCookies : RUNNING > >RDDR10 st_readdir.testReservedCookies : PASS > >RDDR6 st_readdir.testNoFh : RUNNING > >RDDR6 st_readdir.testNoFh : PASS > >RDDR7 st_readdir.testMaxcountZero : RUNNING > >RDDR7 st_readdir.testMaxcountZero : PASS > >RDDR8 st_readdir.testMaxcountSmall : RUNNING > >RDDR8 st_readdir.testMaxcountSmall : PASS > >RDDR2 st_readdir.testFirst : RUNNING > >RDDR2 st_readdir.testFirst : PASS > >RDDR5s st_readdir.testFhSocket : RUNNING > >RDDR5s st_readdir.testFhSocket : PASS > >RDDR5a st_readdir.testFhLink : RUNNING > >RDDR5a st_readdir.testFhLink : PASS > >RDDR5r st_readdir.testFhFile : RUNNING > >RDDR5r st_readdir.testFhFile : PASS > >RDDR5f st_readdir.testFhFifo : RUNNING > >RDDR5f st_readdir.testFhFifo : PASS > >RDDR1 st_readdir.testEmptyDir : RUNNING > >RDDR1 st_readdir.testEmptyDir : PASS > >RDDR8b st_readdir.testDircountVarious : RUNNING > >RDDR8b st_readdir.testDircountVarious : PASS > >RDDR3 st_readdir.testAttr : RUNNING > >RDDR3 st_readdir.testAttr : PASS > >RD6 st_read.testZeroCount : RUNNING > >RD6 st_read.testZeroCount : PASS > >RD3 st_read.testWithOpen : RUNNING > >RD3 st_read.testWithOpen : PASS > >RD2 st_read.testStateidOnes : RUNNING > >RD2 st_read.testStateidOnes : PASS > >RD10 st_read.testStaleStateid : RUNNING > >RD10 st_read.testStaleStateid : PASS > >RD7s st_read.testSocket : RUNNING > >RD7s st_read.testSocket : PASS > >RD1 st_read.testSimpleRead : RUNNING > >RD1 st_read.testSimpleRead : PASS > >RD11 st_read.testOldStateid : RUNNING > >RD11 st_read.testOldStateid : PASS > >RD8 st_read.testNoFh : RUNNING > >RD8 st_read.testNoFh : PASS > >RD7a st_read.testLink : RUNNING > >RD7a st_read.testLink : PASS > >RD5 st_read.testLargeOffset : RUNNING > >RD5 st_read.testLargeOffset : PASS > >RD7f st_read.testFifo : RUNNING > >RD7f st_read.testFifo : PASS > >RD7d st_read.testDir : RUNNING > >RD7d st_read.testDir : PASS > >ROOT1 st_putrootfh.testSupported : RUNNING > >ROOT1 st_putrootfh.testSupported : PASS > >PUB1 st_putpubfh.testSupported : RUNNING > >PUB1 st_putpubfh.testSupported : PASS > >PUB2 st_putpubfh.testSameAsRoot : RUNNING > >PUB2 st_putpubfh.testSameAsRoot : PASS > >PUTFH1s st_putfh.testSocket : RUNNING > >PUTFH1s st_putfh.testSocket : PASS > >PUTFH1a st_putfh.testLink : RUNNING > >PUTFH1a st_putfh.testLink : PASS > >PUTFH1r st_putfh.testFile : RUNNING > >PUTFH1r st_putfh.testFile : PASS > >PUTFH1f st_putfh.testFifo : RUNNING > >PUTFH1f st_putfh.testFifo : PASS > >PUTFH1d st_putfh.testDir : RUNNING > >PUTFH1d st_putfh.testDir : PASS > >PUTFH2 st_putfh.testBadHandle : RUNNING > >PUTFH2 st_putfh.testBadHandle : PASS > >OPDG6 st_opendowngrade.testStaleStateid : RUNNING > >OPDG6 st_opendowngrade.testStaleStateid : PASS > >OPDG1 st_opendowngrade.testRegularOpen : RUNNING > >OPDG1 st_opendowngrade.testRegularOpen : PASS > >OPDG10 st_opendowngrade.testOpenDowngradeSequence : RUNNING > >OPDG10 st_opendowngrade.testOpenDowngradeSequence : PASS > >OPDG11 st_opendowngrade.testOpenDowngradeLock : RUNNING > >OPDG11 st_opendowngrade.testOpenDowngradeLock : PASS > >OPDG7 st_opendowngrade.testOldStateid : RUNNING > >OPDG7 st_opendowngrade.testOldStateid : PASS > >OPDG8 st_opendowngrade.testNoFh : RUNNING > >OPDG8 st_opendowngrade.testNoFh : PASS > >OPDG3 st_opendowngrade.testNewState2 : RUNNING > >OPDG3 st_opendowngrade.testNewState2 : PASS > >OPDG2 st_opendowngrade.testNewState1 : RUNNING > >OPDG2 st_opendowngrade.testNewState1 : PASS > >OPDG5 st_opendowngrade.testBadStateid : RUNNING > >OPDG5 st_opendowngrade.testBadStateid : PASS > >OPDG4 st_opendowngrade.testBadSeqid : RUNNING > >OPDG4 st_opendowngrade.testBadSeqid : PASS > >OPCF6 st_openconfirm.testStaleStateid : RUNNING > >OPCF6 st_openconfirm.testStaleStateid : PASS > >OPCF2 st_openconfirm.testNoFh : RUNNING > >OPCF2 st_openconfirm.testNoFh : PASS > >OPCF1 st_openconfirm.testConfirmCreate : RUNNING > >OPCF1 st_openconfirm.testConfirmCreate : PASS > >OPCF5 st_openconfirm.testBadStateid : RUNNING > >OPCF5 st_openconfirm.testBadStateid : PASS > >OPCF4 st_openconfirm.testBadSeqid : RUNNING > >OPCF4 st_openconfirm.testBadSeqid : PASS > >OPEN10 st_open.testZeroLenName : RUNNING > >OPEN10 st_open.testZeroLenName : PASS > >OPEN29 st_open.testUpgrades : RUNNING > >OPEN29 st_open.testUpgrades : PASS > >OPEN15 st_open.testUnsupportedAttributes : RUNNING > >OPEN15 st_open.testUnsupportedAttributes : PASS > >OPEN7s st_open.testSocket : RUNNING > >OPEN7s st_open.testSocket : PASS > >OPEN18 st_open.testShareConflict1 : RUNNING > >OPEN18 st_open.testShareConflict1 : PASS > >OPEN30 st_open.testReplay : RUNNING > >OPEN30 st_open.testReplay : PASS > >OPEN6 st_open.testOpenVaporFile : RUNNING > >OPEN6 st_open.testOpenVaporFile : PASS > >OPEN5 st_open.testOpenFile : RUNNING > >OPEN5 st_open.testOpenFile : PASS > >OPEN12 st_open.testNotDir : RUNNING > >OPEN12 st_open.testNotDir : PASS > >OPEN8 st_open.testNoFh : RUNNING > >OPEN8 st_open.testNoFh : PASS > >OPEN17 st_open.testModeChange : RUNNING > >OPEN17 st_open.testModeChange : PASS > >OPEN11 st_open.testLongName : RUNNING > >OPEN11 st_open.testLongName : PASS > >OPEN7a st_open.testLink : RUNNING > >OPEN7a st_open.testLink : PASS > >OPEN14 st_open.testInvalidAttrmask : RUNNING > >OPEN14 st_open.testInvalidAttrmask : PASS > >OPEN7f st_open.testFifo : RUNNING > >OPEN7f st_open.testFifo : PASS > >OPEN20 st_open.testFailedOpen : RUNNING > >OPEN20 st_open.testFailedOpen : PASS > >OPEN7d st_open.testDir : RUNNING > >OPEN7d st_open.testDir : PASS > >OPEN28 st_open.testDenyWrite4 : RUNNING > >OPEN28 st_open.testDenyWrite4 : PASS > >OPEN27 st_open.testDenyWrite3 : RUNNING > >OPEN27 st_open.testDenyWrite3 : PASS > >OPEN26 st_open.testDenyWrite2 : RUNNING > >OPEN26 st_open.testDenyWrite2 : PASS > >OPEN25 st_open.testDenyWrite1 : RUNNING > >OPEN25 st_open.testDenyWrite1 : PASS > >OPEN24 st_open.testDenyRead4 : RUNNING > >OPEN24 st_open.testDenyRead4 : PASS > >OPEN23b st_open.testDenyRead3a : RUNNING > >OPEN23b st_open.testDenyRead3a : PASS > >OPEN23 st_open.testDenyRead3 : RUNNING > >OPEN23 st_open.testDenyRead3 : PASS > >OPEN22 st_open.testDenyRead2 : RUNNING > >OPEN22 st_open.testDenyRead2 : PASS > >OPEN21 st_open.testDenyRead1 : RUNNING > >OPEN21 st_open.testDenyRead1 : PASS > >OPEN2 st_open.testCreateUncheckedFile : RUNNING > >OPEN2 st_open.testCreateUncheckedFile : PASS > >OPEN3 st_open.testCreatGuardedFile : RUNNING > >OPEN3 st_open.testCreatGuardedFile : PASS > >OPEN4 st_open.testCreatExclusiveFile : RUNNING > >OPEN4 st_open.testCreatExclusiveFile : PASS > >OPEN16 st_open.testClaimPrev : RUNNING > >OPEN16 st_open.testClaimPrev : PASS > >OPEN31 st_open.testBadSeqid : RUNNING > >OPEN31 st_open.testBadSeqid : PASS > >NVF5s st_nverify.testWriteOnlySocket : RUNNING > >NVF5s st_nverify.testWriteOnlySocket : PASS > >NVF5a st_nverify.testWriteOnlyLink : RUNNING > >NVF5a st_nverify.testWriteOnlyLink : PASS > >NVF5r st_nverify.testWriteOnlyFile : RUNNING > >NVF5r st_nverify.testWriteOnlyFile : PASS > >NVF5f st_nverify.testWriteOnlyFifo : RUNNING > >NVF5f st_nverify.testWriteOnlyFifo : PASS > >Traceback (most recent call last): > > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > > self.runtest(self, environment) > > File "/root/pynfs/nfs4.0/servertests/st_locku.py", line 266, in testTimedoutUnlock > > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > > check_result(res, "Opening file %s" % _getname(owner, path)) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > > raise BadCompoundRes(resop, res.status, msg) > >nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >NVF5d st_nverify.testWriteOnlyDir : RUNNING > >NVF5d st_nverify.testWriteOnlyDir : PASS > >NVF7s st_nverify.testUnsupportedSocket : RUNNING > >NVF7s st_nverify.testUnsupportedSocket : PASS > >NVF7a st_nverify.testUnsupportedLink : RUNNING > >NVF7a st_nverify.testUnsupportedLink : PASS > >NVF7r st_nverify.testUnsupportedFile : RUNNING > >NVF7r st_nverify.testUnsupportedFile : PASS > >NVF7f st_nverify.testUnsupportedFifo : RUNNING > >NVF7f st_nverify.testUnsupportedFifo : PASS > >NVF7d st_nverify.testUnsupportedDir : RUNNING > >NVF7d st_nverify.testUnsupportedDir : PASS > >NVF2s st_nverify.testTypeSocket : RUNNING > >NVF2s st_nverify.testTypeSocket : PASS > >NVF2a st_nverify.testTypeLink : RUNNING > >NVF2a st_nverify.testTypeLink : PASS > >NVF2r st_nverify.testTypeFile : RUNNING > >NVF2r st_nverify.testTypeFile : PASS > >NVF2f st_nverify.testTypeFifo : RUNNING > >NVF2f st_nverify.testTypeFifo : PASS > >NVF2d st_nverify.testTypeDir : RUNNING > >NVF2d st_nverify.testTypeDir : PASS > >NVF4 st_nverify.testNoFh : RUNNING > >NVF4 st_nverify.testNoFh : PASS > >NVF1s st_nverify.testMandSocket : RUNNING > >NVF1s st_nverify.testMandSocket : PASS > >NVF1a st_nverify.testMandLink : RUNNING > >NVF1a st_nverify.testMandLink : PASS > >NVF1r st_nverify.testMandFile : RUNNING > >NVF1r st_nverify.testMandFile : PASS > >NVF1f st_nverify.testMandFifo : RUNNING > >NVF1f st_nverify.testMandFifo : PASS > >NVF1d st_nverify.testMandDir : RUNNING > >NVF1d st_nverify.testMandDir : PASS > >NVF3s st_nverify.testBadSizeSocket : RUNNING > >NVF3s st_nverify.testBadSizeSocket : PASS > >NVF3a st_nverify.testBadSizeLink : RUNNING > >NVF3a st_nverify.testBadSizeLink : PASS > >NVF3r st_nverify.testBadSizeFile : RUNNING > >NVF3r st_nverify.testBadSizeFile : PASS > >NVF3f st_nverify.testBadSizeFifo : RUNNING > >NVF3f st_nverify.testBadSizeFifo : PASS > >NVF3d st_nverify.testBadSizeDir : RUNNING > >NVF3d st_nverify.testBadSizeDir : PASS > >LOOKP2s st_lookupp.testSock : RUNNING > >LOOKP2s st_lookupp.testSock : PASS > >LOOKP4 st_lookupp.testNoFh : RUNNING > >LOOKP4 st_lookupp.testNoFh : PASS > >LOOKP2a st_lookupp.testLink : RUNNING > >LOOKP2a st_lookupp.testLink : PASS > >LOOKP2r st_lookupp.testFile : RUNNING > >LOOKP2r st_lookupp.testFile : PASS > >LOOKP2f st_lookupp.testFifo : RUNNING > >LOOKP2f st_lookupp.testFifo : PASS > >LOOKP1 st_lookupp.testDir : RUNNING > >LOOKP1 st_lookupp.testDir : PASS > >LOOKP3 st_lookupp.testAtRoot : RUNNING > >LOOKP3 st_lookupp.testAtRoot : PASS > >LOOK3 st_lookup.testZeroLength : RUNNING > >LOOK3 st_lookup.testZeroLength : PASS > >LOOK9 st_lookup.testUnaccessibleDir : RUNNING > >LOOK9 st_lookup.testUnaccessibleDir : PASS > >LOOK5a st_lookup.testSymlinkNotDir : RUNNING > >LOOK5a st_lookup.testSymlinkNotDir : PASS > >LOOK5s st_lookup.testSocketNotDir : RUNNING > >LOOK5s st_lookup.testSocketNotDir : PASS > >LOOK2 st_lookup.testNonExistent : RUNNING > >LOOK2 st_lookup.testNonExistent : PASS > >LOOK6 st_lookup.testNonAccessable : RUNNING > >LOOK6 st_lookup.testNonAccessable : PASS > >LOOK1 st_lookup.testNoFh : RUNNING > >LOOK1 st_lookup.testNoFh : PASS > >LOOK4 st_lookup.testLongName : RUNNING > >LOOK4 st_lookup.testLongName : PASS > >LOOK5r st_lookup.testFileNotDir : RUNNING > >LOOK5r st_lookup.testFileNotDir : PASS > >LOOK5f st_lookup.testFifoNotDir : RUNNING > >LOOK5f st_lookup.testFifoNotDir : PASS > >LOOK8 st_lookup.testDots : RUNNING > >LOOK8 st_lookup.testDots : PASS > >LOOK10 st_lookup.testBadOpaque : RUNNING > >LOOK10 st_lookup.testBadOpaque : PASS > >LKU3 st_locku.testZeroLen : RUNNING > >LKU3 st_locku.testZeroLen : PASS > >LKUNONE st_locku.testUnlocked : RUNNING > >LKUNONE st_locku.testUnlocked : PASS > >LKU10 st_locku.testTimedoutUnlock : RUNNING > >Sleeping for 22 seconds: > >Woke up > >LKU10 st_locku.testTimedoutUnlock : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'LKU10-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >LKU9 st_locku.testStaleLockStateid : RUNNING > >LKU9 st_locku.testStaleLockStateid : PASS > >LKUSPLIT st_locku.testSplit : RUNNING > >LKUSPLIT st_locku.testSplit : PASS > >LKUOVER st_locku.testOverlap : RUNNING > >LKUOVER st_locku.testOverlap : PASS > >LKU7 st_locku.testOldLockStateid : RUNNING > >LKU7 st_locku.testOldLockStateid : PASS > >LKU5 st_locku.testNoFh : RUNNING > >LKU5 st_locku.testNoFh : PASS > >LKU4 st_locku.testLenTooLong : RUNNING > >LKU4 st_locku.testLenTooLong : PASS > >LOCK1 st_lock.testFile : RUNNING > >LOCK1 st_lock.testFile : PASS > >LKU1 st_locku.testFile : RUNNING > >LKU1 st_locku.testFile : PASS > >LKU8 st_locku.testBadLockStateid : RUNNING > >LKU8 st_locku.testBadLockStateid : PASS > >LKU6b st_locku.testBadLockSeqid2 : RUNNING > >LKU6b st_locku.testBadLockSeqid2 : PASS > >LKU6 st_locku.testBadLockSeqid : RUNNING > >LKU6 st_locku.testBadLockSeqid : PASS > >LOCKRNG st_lock.test32bitRange : RUNNING > >LOCKRNG st_lock.test32bitRange : PASS > >LKU2 st_locku.test32bitRange : RUNNING > >LKU2 st_locku.test32bitRange : PASS > >LKT6 st_lockt.testZeroLen : RUNNING > >LKT6 st_lockt.testZeroLen : PASS > >LKT1 st_lockt.testUnlockedFile : RUNNING > >LKT1 st_lockt.testUnlockedFile : PASS > >LKT9 st_lockt.testStaleClientid : RUNNING > >LKT9 st_lockt.testStaleClientid : PASS > >LKT2s st_lockt.testSocket : RUNNING > >LKT2s st_lockt.testSocket : PASS > >LKT4 st_lockt.testPartialLockedFile2 : RUNNING > >LKT4 st_lockt.testPartialLockedFile2 : PASS > >LKT3 st_lockt.testPartialLockedFile1 : RUNNING > >LKT3 st_lockt.testPartialLockedFile1 : PASS > >LKTOVER st_lockt.testOverlap : RUNNING > >LKTOVER st_lockt.testOverlap : PASS > >LKT8 st_lockt.testNoFh : RUNNING > >LKT8 st_lockt.testNoFh : PASS > >LKT2a st_lockt.testLink : RUNNING > >LKT2a st_lockt.testLink : PASS > >LKT7 st_lockt.testLenTooLong : RUNNING > >LKT7 st_lockt.testLenTooLong : PASS > >LKT2f st_lockt.testFifo : RUNNING > >LKT2f st_lockt.testFifo : PASS > >LKT2d st_lockt.testDir : RUNNING > >LKT2d st_lockt.testDir : PASS > >LKT5 st_lockt.test32bitRange : RUNNING > >LKT5 st_lockt.test32bitRange : PASS > >LOCK5 st_lock.testZeroLen : RUNNING > >LOCK5 st_lock.testZeroLen : PASS > >LOCKCHGU st_lock.testUpgrade : RUNNING > >LOCKCHGU st_lock.testUpgrade : PASS > >LOCK13 st_lock.testTimedoutGrabLock : RUNNING > >Sleeping for 7 seconds: > >Woke up > >Sleeping for 7 seconds: > >Woke up > >Sleeping for 7 seconds: > >Woke up > >LOCK13 st_lock.testTimedoutGrabLock : PASS > >LOCK12b st_lock.testStaleOpenStateid : RUNNING > >LOCK12b st_lock.testStaleOpenStateid : PASS > >LOCK12a st_lock.testStaleLockStateid : RUNNING > >LOCK12a st_lock.testStaleLockStateid : PASS > >LOCK10 st_lock.testStaleClientid : RUNNING > >LOCK10 st_lock.testStaleClientid : PASS > >LOCK17 st_lock.testReadLocks2 : RUNNING > >LOCK17 st_lock.testReadLocks2 : PASS > >LOCK16 st_lock.testReadLocks1 : RUNNING > >LOCK16 st_lock.testReadLocks1 : PASS > >LOCKMRG st_lock.testOverlap : RUNNING > >LOCKMRG st_lock.testOverlap : PASS > >LOCK23 st_lock.testOpenDowngradeLock : RUNNING > >LOCK23 st_lock.testOpenDowngradeLock : PASS > >LOCK9c st_lock.testOldOpenStateid2 : RUNNING > >LOCK9c st_lock.testOldOpenStateid2 : PASS > >LOCK9b st_lock.testOldOpenStateid : RUNNING > >LOCK9b st_lock.testOldOpenStateid : PASS > >LOCK9a st_lock.testOldLockStateid : RUNNING > >LOCK9a st_lock.testOldLockStateid : PASS > >LOCK7 st_lock.testNoFh : RUNNING > >LOCK7 st_lock.testNoFh : PASS > >LOCK4 st_lock.testMode : RUNNING > >LOCK4 st_lock.testMode : PASS > >LOCK6 st_lock.testLenTooLong : RUNNING > >LOCK6 st_lock.testLenTooLong : PASS > >LOCK15 st_lock.testGrabLock2 : RUNNING > >LOCK15 st_lock.testGrabLock2 : PASS > >LOCK14 st_lock.testGrabLock1 : RUNNING > >LOCK14 st_lock.testGrabLock1 : PASS > >LOCK3 st_lock.testExistingFile : RUNNING > >LOCK3 st_lock.testExistingFile : PASS > >LOCKCHGD st_lock.testDowngrade : RUNNING > >LOCKCHGD st_lock.testDowngrade : PASS > >LOCKHELD st_lock.testClose : RUNNING > >LOCKHELD st_lock.testClose : PASS > >LOCK20 st_lock.testBlockTimeout : RUNNING > >Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > >Woke up > >Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > >Woke up > >Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > >Woke up > >LOCK20 st_lock.testBlockTimeout : PASS > >LOCK11 st_lock.testBadStateid : RUNNING > >LOCK11 st_lock.testBadStateid : PASS > >LOCK8b st_lock.testBadOpenSeqid : RUNNING > >LOCK8b st_lock.testBadOpenSeqid : PASS > >LOCK8a st_lock.testBadLockSeqid : RUNNING > >LOCK8a st_lock.testBadLockSeqid : PASS > >LINK6 st_link.testZeroLenName : RUNNING > >LINK6 st_link.testZeroLenName : PASS > >LINK1s st_link.testSocket : RUNNING > >LINK1s st_link.testSocket : PASS > >LINK2 st_link.testNoSfh : RUNNING > >LINK2 st_link.testNoSfh : PASS > >LINK3 st_link.testNoCfh : RUNNING > >LINK3 st_link.testNoCfh : PASS > >LINK7 st_link.testLongName : RUNNING > >LINK7 st_link.testLongName : PASS > >LINK1a st_link.testLink : RUNNING > >LINK1a st_link.testLink : PASS > >LINK1r st_link.testFile : RUNNING > >LINK1r st_link.testFile : PASS > >LINK1f st_link.testFifo : RUNNING > >LINK1f st_link.testFifo : PASS > >LINK5 st_link.testExists : RUNNING > >LINK5 st_link.testExists : PASS > >LINK9 st_link.testDots : RUNNING > >LINK9 st_link.testDots : PASS > >LINK1d st_link.testDir : RUNNING > >LINK1d st_link.testDir : PASS > >LINK4s st_link.testCfhSocket : RUNNING > >LINK4s st_link.testCfhSocket : PASS > >LINK4a st_link.testCfhLink : RUNNING > >LINK4a st_link.testCfhLink : PASS > >LINK4r st_link.testCfhFile : RUNNING > >LINK4r st_link.testCfhFile : PASS > >LINK4f st_link.testCfhFifo : RUNNING > >LINK4f st_link.testCfhFifo : PASS > >GF1s st_getfh.testSocket : RUNNING > >GF1s st_getfh.testSocket : PASS > >GF9 st_getfh.testNoFh : RUNNING > >GF9 st_getfh.testNoFh : PASS > >GF1a st_getfh.testLink : RUNNING > >GF1a st_getfh.testLink : PASS > >GF1r st_getfh.testFile : RUNNING > >GF1r st_getfh.testFile : PASS > >GF1f st_getfh.testFifo : RUNNING > >GF1f st_getfh.testFifo : PASS > >GF1d st_getfh.testDir : RUNNING > >GF1d st_getfh.testDir : PASS > >GATT3s st_getattr.testWriteOnlySocket : RUNNING > >GATT3s st_getattr.testWriteOnlySocket : PASS > >GATT3a st_getattr.testWriteOnlyLink : RUNNING > >GATT3a st_getattr.testWriteOnlyLink : PASS > >GATT3r st_getattr.testWriteOnlyFile : RUNNING > >GATT3r st_getattr.testWriteOnlyFile : PASS > >GATT3f st_getattr.testWriteOnlyFifo : RUNNING > >GATT3f st_getattr.testWriteOnlyFifo : PASS > >GATT3d st_getattr.testWriteOnlyDir : RUNNING > >GATT3d st_getattr.testWriteOnlyDir : PASS > >GATT4s st_getattr.testUnknownAttrSocket : RUNNING > >GATT4s st_getattr.testUnknownAttrSocket : PASS > >GATT4a st_getattr.testUnknownAttrLink : RUNNING > >GATT4a st_getattr.testUnknownAttrLink : PASS > >GATT4r st_getattr.testUnknownAttrFile : RUNNING > >GATT4r st_getattr.testUnknownAttrFile : PASS > >GATT4f st_getattr.testUnknownAttrFifo : RUNNING > >GATT4f st_getattr.testUnknownAttrFifo : PASS > >GATT4d st_getattr.testUnknownAttrDir : RUNNING > >GATT4d st_getattr.testUnknownAttrDir : PASS > >GATT6s st_getattr.testSupportedSocket : RUNNING > >GATT6s st_getattr.testSupportedSocket : PASS > >GATT6a st_getattr.testSupportedLink : RUNNING > >GATT6a st_getattr.testSupportedLink : PASS > >GATT6r st_getattr.testSupportedFile : RUNNING > >GATT6r st_getattr.testSupportedFile : PASS > >GATT6f st_getattr.testSupportedFifo : RUNNING > >GATT6f st_getattr.testSupportedFifo : PASS > >GATT6d st_getattr.testSupportedDir : RUNNING > >GATT6d st_getattr.testSupportedDir : PASS > >GATT10 st_getattr.testOwnerName : RUNNING > >GATT10 st_getattr.testOwnerName : PASS > >GATT2 st_getattr.testNoFh : RUNNING > >GATT2 st_getattr.testNoFh : PASS > >GATT1s st_getattr.testMandSocket : RUNNING > >GATT1s st_getattr.testMandSocket : PASS > >GATT1a st_getattr.testMandLink : RUNNING > >GATT1a st_getattr.testMandLink : PASS > >GATT1r st_getattr.testMandFile : RUNNING > >GATT1r st_getattr.testMandFile : PASS > >GATT1f st_getattr.testMandFifo : RUNNING > >GATT1f st_getattr.testMandFifo : PASS > >GATT1d st_getattr.testMandDir : RUNNING > >GATT1d st_getattr.testMandDir : PASS > >GATT9 st_getattr.testLotsofGetattrsFile : RUNNING > >GATT9 st_getattr.testLotsofGetattrsFile : PASS > >GATT7s st_getattr.testLongSocket : RUNNING > >GATT7s st_getattr.testLongSocket : PASS > >GATT7a st_getattr.testLongLink : RUNNING > >GATT7a st_getattr.testLongLink : PASS > >GATT7r st_getattr.testLongFile : RUNNING > >GATT7r st_getattr.testLongFile : PASS > >GATT7f st_getattr.testLongFifo : RUNNING > >GATT7f st_getattr.testLongFifo : PASS > >GATT7d st_getattr.testLongDir : RUNNING > >GATT7d st_getattr.testLongDir : PASS > >GATT8 st_getattr.testFSLocations : RUNNING > >GATT8 st_getattr.testFSLocations : PASS > >GATT5s st_getattr.testEmptySocket : RUNNING > >GATT5s st_getattr.testEmptySocket : PASS > >GATT5a st_getattr.testEmptyLink : RUNNING > >GATT5a st_getattr.testEmptyLink : PASS > >GATT5r st_getattr.testEmptyFile : RUNNING > >GATT5r st_getattr.testEmptyFile : PASS > >GATT5f st_getattr.testEmptyFifo : RUNNING > >GATT5f st_getattr.testEmptyFifo : PASS > >GATT5d st_getattr.testEmptyDir : RUNNING > >GATT5d st_getattr.testEmptyDir : PASS > >CR9a st_create.testZeroLengthForLNK : RUNNING > >CR9a st_create.testZeroLengthForLNK : PASS > >CR9 st_create.testZeroLength : RUNNING > >CR9 st_create.testZeroLength : PASS > >CR12 st_create.testUnsupportedAttributes : RUNNING > >CR12 st_create.testUnsupportedAttributes : PASS > >CR14 st_create.testSlash : RUNNING > >CR14 st_create.testSlash : PASS > >CR10 st_create.testRegularFile : RUNNING > >CR10 st_create.testRegularFile : PASS > >CR8 st_create.testNoFh : RUNNING > >CR8 st_create.testNoFh : PASS > >CR15 st_create.testLongName : RUNNING > >CR15 st_create.testLongName : PASS > >CR11 st_create.testInvalidAttrmask : RUNNING > >CR11 st_create.testInvalidAttrmask : PASS > >CR13 st_create.testDots : RUNNING > >CR13 st_create.testDots : PASS > >CR5 st_create.testDirOffSocket : RUNNING > >CR5 st_create.testDirOffSocket : PASS > >CR2 st_create.testDirOffLink : RUNNING > >Traceback (most recent call last): > > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > > self.runtest(self, environment) > > File "/root/pynfs/nfs4.0/servertests/st_close.py", line 142, in testTimedoutClose2 > > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > > check_result(res, "Opening file %s" % _getname(owner, path)) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > > raise BadCompoundRes(resop, res.status, msg) > >nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >Traceback (most recent call last): > > File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > > self.runtest(self, environment) > > File "/root/pynfs/nfs4.0/servertests/st_close.py", line 118, in testTimedoutClose1 > > c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > > check_result(res, "Opening file %s" % _getname(owner, path)) > > File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > > raise BadCompoundRes(resop, res.status, msg) > >nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >CR2 st_create.testDirOffLink : PASS > >CR7 st_create.testDirOffFile : RUNNING > >CR7 st_create.testDirOffFile : PASS > >CR6 st_create.testDirOffFIFO : RUNNING > >CR6 st_create.testDirOffFIFO : PASS > >COMP1 st_compound.testZeroOps : RUNNING > >COMP1 st_compound.testZeroOps : PASS > >COMP5 st_compound.testUndefined : RUNNING > >COMP5 st_compound.testUndefined : PASS > >COMP6 st_compound.testLongCompound : RUNNING > >COMP6 st_compound.testLongCompound : PASS > >COMP4 st_compound.testInvalidMinor : RUNNING > >COMP4 st_compound.testInvalidMinor : PASS > >COMP2 st_compound.testGoodTag : RUNNING > >COMP2 st_compound.testGoodTag : PASS > >CMT2s st_commit.testSocket : RUNNING > >CMT2s st_commit.testSocket : PASS > >CMT3 st_commit.testNoFh : RUNNING > >CMT3 st_commit.testNoFh : PASS > >CMT2a st_commit.testLink : RUNNING > >CMT2a st_commit.testLink : PASS > >CMT2f st_commit.testFifo : RUNNING > >CMT2f st_commit.testFifo : PASS > >CMT2d st_commit.testDir : RUNNING > >CMT2d st_commit.testDir : PASS > >CMT4 st_commit.testCommitOverflow : RUNNING > >CMT4 st_commit.testCommitOverflow : PASS > >CMT1d st_commit.testCommitOffsetMax2 : RUNNING > >CMT1d st_commit.testCommitOffsetMax2 : PASS > >CMT1c st_commit.testCommitOffsetMax1 : RUNNING > >CMT1c st_commit.testCommitOffsetMax1 : PASS > >CMT1b st_commit.testCommitOffset1 : RUNNING > >CMT1b st_commit.testCommitOffset1 : PASS > >CMT1aa st_commit.testCommitOffset0 : RUNNING > >CMT1aa st_commit.testCommitOffset0 : PASS > >CMT1f st_commit.testCommitCountMax : RUNNING > >CMT1f st_commit.testCommitCountMax : PASS > >CMT1e st_commit.testCommitCount1 : RUNNING > >CMT1e st_commit.testCommitCount1 : PASS > >CLOSE9 st_close.testTimedoutClose2 : RUNNING > >Sleeping for 30 seconds: > >Woke up > >CLOSE9 st_close.testTimedoutClose2 : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >CLOSE8 st_close.testTimedoutClose1 : RUNNING > >Sleeping for 30 seconds: > >Woke up > >CLOSE8 st_close.testTimedoutClose1 : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >CLOSE6 st_close.testStaleStateid : RUNNING > >CLOSE6 st_close.testStaleStateid : PASS > >CLOSE12 st_close.testReplaySeqid2 : RUNNING > >CLOSE12 st_close.testReplaySeqid2 : PASS > >CLOSE10 st_close.testReplaySeqid1 : RUNNING > >CLOSE10 st_close.testReplaySeqid1 : PASS > >CLOSE5 st_close.testOldStateid : RUNNING > >CLOSE5 st_close.testOldStateid : PASS > >CLOSE7 st_close.testNoCfh : RUNNING > >CLOSE7 st_close.testNoCfh : PASS > >CLOSE11 st_close.testNextSeqid : RUNNING > >CLOSE11 st_close.testNextSeqid : PASS > >CLOSE2 st_close.testCloseOpen : RUNNING > >CLOSE2 st_close.testCloseOpen : PASS > >CLOSE1 st_close.testCloseCreate : RUNNING > >CLOSE1 st_close.testCloseCreate : PASS > >CLOSE4 st_close.testBadStateid : RUNNING > >CLOSE4 st_close.testBadStateid : PASS > >CLOSE3 st_close.testBadSeqid : RUNNING > >CLOSE3 st_close.testBadSeqid : PASS > >ACL0 st_acl.testACLsupport : RUNNING > >ACL0 st_acl.testACLsupport : PASS > >ACL10 st_acl.testLargeACL : RUNNING > >ACL10 st_acl.testLargeACL : PASS > >ACL5 st_acl.testACL : RUNNING > >ACL5 st_acl.testACL : PASS > >ACC1s st_access.testReadSocket : RUNNING > >ACC1s st_access.testReadSocket : PASS > >ACC1a st_access.testReadLink : RUNNING > >ACC1a st_access.testReadLink : PASS > >ACC1r st_access.testReadFile : RUNNING > >ACC1r st_access.testReadFile : PASS > >ACC1f st_access.testReadFifo : RUNNING > >ACC1f st_access.testReadFifo : PASS > >ACC1d st_access.testReadDir : RUNNING > >ACC1d st_access.testReadDir : PASS > >ACC3 st_access.testNoFh : RUNNING > >ACC3 st_access.testNoFh : PASS > >ACC4s st_access.testInvalidsSocket : RUNNING > >ACC4s st_access.testInvalidsSocket : PASS > >ACC4a st_access.testInvalidsLink : RUNNING > >ACC4a st_access.testInvalidsLink : PASS > >ACC4r st_access.testInvalidsFile : RUNNING > >ACC4r st_access.testInvalidsFile : PASS > >ACC4f st_access.testInvalidsFifo : RUNNING > >ACC4f st_access.testInvalidsFifo : PASS > >ACC4d st_access.testInvalidsDir : RUNNING > >ACC4d st_access.testInvalidsDir : PASS > >ACC2s st_access.testAllSocket : RUNNING > >ACC2s st_access.testAllSocket : PASS > >ACC2a st_access.testAllLink : RUNNING > >ACC2a st_access.testAllLink : PASS > >ACC2r st_access.testAllFile : RUNNING > >ACC2r st_access.testAllFile : PASS > >ACC2f st_access.testAllFifo : RUNNING > >ACC2f st_access.testAllFifo : PASS > >ACC2d st_access.testAllDir : RUNNING > >ACC2d st_access.testAllDir : PASS > >************************************************** > >RENEW3 st_renew.testExpired : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >LKU10 st_locku.testTimedoutUnlock : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'LKU10-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >CLOSE9 st_close.testTimedoutClose2 : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >CLOSE8 st_close.testTimedoutClose1 : FAILURE > > nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': > > operation OP_OPEN should return NFS4_OK, instead got > > NFS4ERR_DELAY > >************************************************** > >Command line asked for 526 of 673 tests > >Of those: 7 Skipped, 4 Failed, 0 Warned, 515 Passed > >root pynfs tests: > >MKCHAR st_create.testChar : RUNNING > >MKCHAR st_create.testChar : PASS > >WRT6c st_write.testChar : RUNNING > >WRT6c st_write.testChar : PASS > >MKBLK st_create.testBlock : RUNNING > >MKBLK st_create.testBlock : PASS > >WRT6b st_write.testBlock : RUNNING > >WRT6b st_write.testBlock : PASS > >LOOKCHAR st_lookup.testChar : RUNNING > >LOOKCHAR st_lookup.testChar : PASS > >VF5c st_verify.testWriteOnlyChar : RUNNING > >VF5c st_verify.testWriteOnlyChar : PASS > >LOOKBLK st_lookup.testBlock : RUNNING > >LOOKBLK st_lookup.testBlock : PASS > >VF5b st_verify.testWriteOnlyBlock : RUNNING > >VF5b st_verify.testWriteOnlyBlock : PASS > >VF7c st_verify.testUnsupportedChar : RUNNING > >VF7c st_verify.testUnsupportedChar : PASS > >VF7b st_verify.testUnsupportedBlock : RUNNING > >VF7b st_verify.testUnsupportedBlock : PASS > >VF2c st_verify.testTypeChar : RUNNING > >VF2c st_verify.testTypeChar : PASS > >VF2b st_verify.testTypeBlock : RUNNING > >VF2b st_verify.testTypeBlock : PASS > >VF1c st_verify.testMandChar : RUNNING > >VF1c st_verify.testMandChar : PASS > >VF1b st_verify.testMandBlock : RUNNING > >VF1b st_verify.testMandBlock : PASS > >VF3c st_verify.testBadSizeChar : RUNNING > >VF3c st_verify.testBadSizeChar : PASS > >VF3b st_verify.testBadSizeBlock : RUNNING > >VF3b st_verify.testBadSizeBlock : PASS > >SATT11c st_setattr.testUnsupportedChar : RUNNING > >SATT11c st_setattr.testUnsupportedChar : PASS > >SATT11b st_setattr.testUnsupportedBlock : RUNNING > >SATT11b st_setattr.testUnsupportedBlock : PASS > >SATT12c st_setattr.testSizeChar : RUNNING > >SATT12c st_setattr.testSizeChar : PASS > >SATT12b st_setattr.testSizeBlock : RUNNING > >SATT12b st_setattr.testSizeBlock : PASS > >MKDIR st_create.testDir : RUNNING > >MKDIR st_create.testDir : PASS > >SATT6d st_setattr.testReadonlyDir : RUNNING > >SATT6d st_setattr.testReadonlyDir : PASS > >SATT6c st_setattr.testReadonlyChar : RUNNING > >SATT6c st_setattr.testReadonlyChar : PASS > >SATT6b st_setattr.testReadonlyBlock : RUNNING > >SATT6b st_setattr.testReadonlyBlock : PASS > >MODE st_setattr.testMode : RUNNING > >MODE st_setattr.testMode : PASS > >SATT1c st_setattr.testChar : RUNNING > >SATT1c st_setattr.testChar : PASS > >SATT1b st_setattr.testBlock : RUNNING > >SATT1b st_setattr.testBlock : PASS > >SVFH2c st_restorefh.testValidChar : RUNNING > >SVFH2c st_restorefh.testValidChar : PASS > >SVFH2b st_restorefh.testValidBlock : RUNNING > >SVFH2b st_restorefh.testValidBlock : PASS > >RNM1c st_rename.testValidChar : RUNNING > >RNM1c st_rename.testValidChar : PASS > >RNM1b st_rename.testValidBlock : RUNNING > >RNM1b st_rename.testValidBlock : PASS > >RNM2c st_rename.testSfhChar : RUNNING > >RNM2c st_rename.testSfhChar : PASS > >RNM2b st_rename.testSfhBlock : RUNNING > >RNM2b st_rename.testSfhBlock : PASS > >RNM3c st_rename.testCfhChar : RUNNING > >RNM3c st_rename.testCfhChar : PASS > >RNM3b st_rename.testCfhBlock : RUNNING > >RNM3b st_rename.testCfhBlock : PASS > >RM1c st_remove.testChar : RUNNING > >RM1c st_remove.testChar : PASS > >RM2c st_remove.testCfhChar : RUNNING > >RM2c st_remove.testCfhChar : PASS > >RM2b st_remove.testCfhBlock : RUNNING > >RM2b st_remove.testCfhBlock : PASS > >RM1b st_remove.testBlock : RUNNING > >RM1b st_remove.testBlock : PASS > >RDLK2c st_readlink.testChar : RUNNING > >RDLK2c st_readlink.testChar : PASS > >RDLK2b st_readlink.testBlock : RUNNING > >RDLK2b st_readlink.testBlock : PASS > >RDDR5c st_readdir.testFhChar : RUNNING > >RDDR5c st_readdir.testFhChar : PASS > >RDDR5b st_readdir.testFhBlock : RUNNING > >RDDR5b st_readdir.testFhBlock : PASS > >RD7c st_read.testChar : RUNNING > >RD7c st_read.testChar : PASS > >RD7b st_read.testBlock : RUNNING > >RD7b st_read.testBlock : PASS > >PUTFH1c st_putfh.testChar : RUNNING > >PUTFH1c st_putfh.testChar : PASS > >PUTFH1b st_putfh.testBlock : RUNNING > >PUTFH1b st_putfh.testBlock : PASS > >INIT st_setclientid.testValid : RUNNING > >INIT st_setclientid.testValid : PASS > >OPEN7c st_open.testChar : RUNNING > >OPEN7c st_open.testChar : PASS > >OPEN7b st_open.testBlock : RUNNING > >OPEN7b st_open.testBlock : PASS > >NVF5c st_nverify.testWriteOnlyChar : RUNNING > >NVF5c st_nverify.testWriteOnlyChar : PASS > >NVF5b st_nverify.testWriteOnlyBlock : RUNNING > >NVF5b st_nverify.testWriteOnlyBlock : PASS > >NVF7c st_nverify.testUnsupportedChar : RUNNING > >NVF7c st_nverify.testUnsupportedChar : PASS > >NVF7b st_nverify.testUnsupportedBlock : RUNNING > >NVF7b st_nverify.testUnsupportedBlock : PASS > >NVF2c st_nverify.testTypeChar : RUNNING > >NVF2c st_nverify.testTypeChar : PASS > >NVF2b st_nverify.testTypeBlock : RUNNING > >NVF2b st_nverify.testTypeBlock : PASS > >NVF1c st_nverify.testMandChar : RUNNING > >NVF1c st_nverify.testMandChar : PASS > >NVF1b st_nverify.testMandBlock : RUNNING > >NVF1b st_nverify.testMandBlock : PASS > >NVF3c st_nverify.testBadSizeChar : RUNNING > >NVF3c st_nverify.testBadSizeChar : PASS > >NVF3b st_nverify.testBadSizeBlock : RUNNING > >NVF3b st_nverify.testBadSizeBlock : PASS > >LOOKP2c st_lookupp.testChar : RUNNING > >LOOKP2c st_lookupp.testChar : PASS > >LOOKP2b st_lookupp.testBlock : RUNNING > >LOOKP2b st_lookupp.testBlock : PASS > >LOOK5c st_lookup.testCharNotDir : RUNNING > >LOOK5c st_lookup.testCharNotDir : PASS > >LOOK5b st_lookup.testBlockNotDir : RUNNING > >LOOK5b st_lookup.testBlockNotDir : PASS > >LKT2c st_lockt.testChar : RUNNING > >LKT2c st_lockt.testChar : PASS > >LKT2b st_lockt.testBlock : RUNNING > >LKT2b st_lockt.testBlock : PASS > >LINKS st_link.testSupported : RUNNING > >LINKS st_link.testSupported : PASS > >LINK1c st_link.testChar : RUNNING > >LINK1c st_link.testChar : PASS > >LOOKFILE st_lookup.testFile : RUNNING > >LOOKFILE st_lookup.testFile : PASS > >LINK4c st_link.testCfhChar : RUNNING > >LINK4c st_link.testCfhChar : PASS > >LINK4b st_link.testCfhBlock : RUNNING > >LINK4b st_link.testCfhBlock : PASS > >LINK1b st_link.testBlock : RUNNING > >LINK1b st_link.testBlock : PASS > >GF1c st_getfh.testChar : RUNNING > >GF1c st_getfh.testChar : PASS > >GF1b st_getfh.testBlock : RUNNING > >GF1b st_getfh.testBlock : PASS > >GATT3c st_getattr.testWriteOnlyChar : RUNNING > >GATT3c st_getattr.testWriteOnlyChar : PASS > >GATT3b st_getattr.testWriteOnlyBlock : RUNNING > >GATT3b st_getattr.testWriteOnlyBlock : PASS > >GATT4c st_getattr.testUnknownAttrChar : RUNNING > >GATT4c st_getattr.testUnknownAttrChar : PASS > >GATT4b st_getattr.testUnknownAttrBlock : RUNNING > >GATT4b st_getattr.testUnknownAttrBlock : PASS > >GATT6c st_getattr.testSupportedChar : RUNNING > >GATT6c st_getattr.testSupportedChar : PASS > >GATT6b st_getattr.testSupportedBlock : RUNNING > >GATT6b st_getattr.testSupportedBlock : PASS > >GATT1c st_getattr.testMandChar : RUNNING > >GATT1c st_getattr.testMandChar : PASS > >GATT1b st_getattr.testMandBlock : RUNNING > >GATT1b st_getattr.testMandBlock : PASS > >GATT7c st_getattr.testLongChar : RUNNING > >GATT7c st_getattr.testLongChar : PASS > >GATT7b st_getattr.testLongBlock : RUNNING > >GATT7b st_getattr.testLongBlock : PASS > >GATT5c st_getattr.testEmptyChar : RUNNING > >GATT5c st_getattr.testEmptyChar : PASS > >GATT5b st_getattr.testEmptyBlock : RUNNING > >GATT5b st_getattr.testEmptyBlock : PASS > >CR4 st_create.testDirOffChar : RUNNING > >CR4 st_create.testDirOffChar : PASS > >CR3 st_create.testDirOffBlock : RUNNING > >CR3 st_create.testDirOffBlock : PASS > >CMT2c st_commit.testChar : RUNNING > >CMT2c st_commit.testChar : PASS > >CMT2b st_commit.testBlock : RUNNING > >CMT2b st_commit.testBlock : PASS > >ACC1c st_access.testReadChar : RUNNING > >ACC1c st_access.testReadChar : PASS > >ACC1b st_access.testReadBlock : RUNNING > >ACC1b st_access.testReadBlock : PASS > >ACC4c st_access.testInvalidsChar : RUNNING > >ACC4c st_access.testInvalidsChar : PASS > >ACC4b st_access.testInvalidsBlock : RUNNING > >ACC4b st_access.testInvalidsBlock : PASS > >ACC2c st_access.testAllChar : RUNNING > >ACC2c st_access.testAllChar : PASS > >ACC2b st_access.testAllBlock : RUNNING > >ACC2b st_access.testAllBlock : PASS > >************************************************** > >************************************************** > >Command line asked for 96 of 673 tests > >Of those: 0 Skipped, 0 Failed, 0 Warned, 96 Passed > >INFO :rpc.poll:got connection from ('127.0.0.1', 51342), assigned to fd=5 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Created client to test1.fieldses.org, 2049 > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=17, name=b'socket', attrs={}), entry4(cookie=19, name=b'fifo', attrs={}), entry4(cookie=21, name=b'link', attrs={}), entry4(cookie=24, name=b'block', attrs={}), entry4(cookie=26, name=b'char', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [] > >INFO :test.env:client 1 creates file OK > > > >INFO :test.env:client 2 open file OK > > > >INFO :test.env:force lease to expire... > > > >INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >INFO :test.env:Woke up > >INFO :test.env:3rd client open OK - PASSED > > > >INFO :test.env:client 1 creates file OK > > > >INFO :test.env:force lease to expire... > > > >INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >INFO :test.env:Woke up > >INFO :test.env:2nd client open OK - PASSED > > > >INFO :test.env:2nd client open OK - PASSED > > > >INFO :test.env:local open conflict detected - PASSED > > > >INFO :test.env:2nd client open conflict detected - PASSED > > > >INFO :test.env:force lease to expire... > > > >INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >INFO :test.env:Woke up > >INFO :test.env:3nd client opened OK - no conflict detected - PASSED > > > >INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >WARNING:test.env:server took approximately 13 seconds to lift grace after all clients reclaimed > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Sleeping for 10 seconds: Delaying start of reclaim > >INFO :test.env:Woke up > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >WARNING:test.env:server took approximately 14 seconds to lift grace after all clients reclaimed > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :rpc.poll:Closing 6 > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 6 generated by another thread > >INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >INFO :test.env:Woke up > >COUR6 st_courtesy.testShareReservationDB03 : RUNNING > >COUR6 st_courtesy.testShareReservationDB03 : PASS > >COUR5 st_courtesy.testShareReservationDB02 : RUNNING > >COUR5 st_courtesy.testShareReservationDB02 : PASS > >COUR4 st_courtesy.testShareReservationDB01 : RUNNING > >COUR4 st_courtesy.testShareReservationDB01 : PASS > >COUR3 st_courtesy.testShareReservation00 : RUNNING > >COUR3 st_courtesy.testShareReservation00 : PASS > >COUR2 st_courtesy.testLockSleepLock : RUNNING > >COUR2 st_courtesy.testLockSleepLock : PASS > >CSID3 st_current_stateid.testOpenWriteClose : RUNNING > >CSID3 st_current_stateid.testOpenWriteClose : PASS > >CSID8 st_current_stateid.testOpenSetattr : RUNNING > >CSID8 st_current_stateid.testOpenSetattr : PASS > >CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : RUNNING > >CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : PASS > >CSID5 st_current_stateid.testOpenLookupClose : RUNNING > >CSID5 st_current_stateid.testOpenLookupClose : PASS > >CSID9 st_current_stateid.testOpenFreestateidClose : RUNNING > >CSID9 st_current_stateid.testOpenFreestateidClose : PASS > >CSID1 st_current_stateid.testOpenAndClose : RUNNING > >CSID1 st_current_stateid.testOpenAndClose : PASS > >CSID4 st_current_stateid.testLockWriteLocku : RUNNING > >CSID4 st_current_stateid.testLockWriteLocku : PASS > >CSID2 st_current_stateid.testLockLockU : RUNNING > >CSID2 st_current_stateid.testLockLockU : PASS > >CSID6 st_current_stateid.testCloseNoStateid : RUNNING > >CSID6 st_current_stateid.testCloseNoStateid : PASS > >REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : RUNNING > >REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : PASS > >REBT2b st_reboot.testRebootWithManyManyClients : RUNNING > >REBT2b st_reboot.testRebootWithManyManyClients : PASS > >REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : RUNNING > >REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : PASS > >REBT2a st_reboot.testRebootWithManyClients : RUNNING > >REBT2a st_reboot.testRebootWithManyClients : PASS > >REBT5 st_reboot.testRebootWithLateReclaim : RUNNING > >REBT5 st_reboot.testRebootWithLateReclaim : PASS > >REBT1 st_reboot.testRebootValid : RUNNING > >REBT1 st_reboot.testRebootValid : PASS > >REBT3b st_reboot.testDoubleRebootWithManyManyClients : RUNNING > >REBT3b st_reboot.testDoubleRebootWithManyManyClients : PASS > >REBT3a st_reboot.testDoubleRebootWithManyClients : RUNNING > >REBT3a st_reboot.testDoubleRebootWithManyClients : PASS > >PUTFH1s st_putfh.testSocket : RUNNING > >PUTFH1s st_putfh.testSocket : PASS > >PUTFH1a st_putfh.testLink : RUNNING > >PUTFH1a st_putfh.testLink : PASS > >PUTFH1r st_putfh.testFile : RUNNING > >PUTFH1r st_putfh.testFile : PASS > >PUTFH1f st_putfh.testFifo : RUNNING > >PUTFH1f st_putfh.testFifo : PASS > >PUTFH1d st_putfh.testDir : RUNNING > >PUTFH1d st_putfh.testDir : PASS > >PUTFH2 st_putfh.testBadHandle : RUNNING > >PUTFH2 st_putfh.testBadHandle : PASS > >RNM6 st_rename.testZeroLengthOldname : RUNNING > >RNM6 st_rename.testZeroLengthOldname : PASS > >RNM7 st_rename.testZeroLengthNewname : RUNNING > >RNM7 st_rename.testZeroLengthNewname : PASS > >RNM1s st_rename.testValidSocket : RUNNING > >RNM1s st_rename.testValidSocket : PASS > >RNM1a st_rename.testValidLink : RUNNING > >RNM1a st_rename.testValidLink : PASS > >RNM1r st_rename.testValidFile : RUNNING > >RNM1r st_rename.testValidFile : PASS > >RNM1f st_rename.testValidFifo : RUNNING > >RNM1f st_rename.testValidFifo : PASS > >RNM1d st_rename.testValidDir : RUNNING > >RNM1d st_rename.testValidDir : PASS > >RNM2s st_rename.testSfhSocket : RUNNING > >RNM2s st_rename.testSfhSocket : PASS > >RNM2a st_rename.testSfhLink : RUNNING > >RNM2a st_rename.testSfhLink : PASS > >RNM2r st_rename.testSfhFile : RUNNING > >RNM2r st_rename.testSfhFile : PASS > >RNM2f st_rename.testSfhFifo : RUNNING > >RNM2f st_rename.testSfhFifo : PASS > >RNM19 st_rename.testSelfRenameFile : RUNNING > >RNM19 st_rename.testSelfRenameFile : PASS > >RNM18 st_rename.testSelfRenameDir : RUNNING > >RNM18 st_rename.testSelfRenameDir : PASS > >RNM5 st_rename.testNonExistent : RUNNING > >RNM5 st_rename.testNonExistent : PASS > >RNM4 st_rename.testNoSfh : RUNNING > >RNM4 st_rename.testNoSfh : PASS > >RNM20 st_rename.testLinkRename : RUNNING > >RNM20 st_rename.testLinkRename : PASS > >RNM17 st_rename.testFileToFullDir : RUNNING > >RNM17 st_rename.testFileToFullDir : PASS > >RNM15 st_rename.testFileToFile : RUNNING > >RNM15 st_rename.testFileToFile : PASS > >RNM14 st_rename.testFileToDir : RUNNING > >RNM14 st_rename.testFileToDir : PASS > >RNM10 st_rename.testDotsOldname : RUNNING > >RNM10 st_rename.testDotsOldname : PASS > >RNM11 st_rename.testDotsNewname : RUNNING > >RNM11 st_rename.testDotsNewname : PASS > >RNM12 st_rename.testDirToObj : RUNNING > >RNM12 st_rename.testDirToObj : PASS > >RNM16 st_rename.testDirToFullDir : RUNNING > >RNM16 st_rename.testDirToFullDir : PASS > >RNM13 st_rename.testDirToDir : RUNNING > >RNM13 st_rename.testDirToDir : PASS > >RNM3s st_rename.testCfhSocket : RUNNING > >RNM3s st_rename.testCfhSocket : PASS > >RNM3a st_rename.testCfhLink : RUNNING > >RNM3a st_rename.testCfhLink : PASS > >RNM3r st_rename.testCfhFile : RUNNING > >INFO :nfs.client.cb:******************** > >INFO :nfs.client.cb:Handling COMPOUND > >INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >INFO :nfs.client.cb:In CB_SEQUENCE > >INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >INFO :nfs.client.cb:In CB_RECALL > >INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9cWSo[\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >INFO :test.env:Sleeping for 0 seconds: > >INFO :test.env:Woke up > >INFO :nfs.client.cb:******************** > >INFO :nfs.client.cb:Handling COMPOUND > >INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >INFO :nfs.client.cb:In CB_SEQUENCE > >INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >INFO :nfs.client.cb:In CB_RECALL > >INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9eWSo]\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >INFO :test.env:Sleeping for 0 seconds: > >INFO :test.env:Woke up > >INFO :nfs.client.cb:******************** > >INFO :nfs.client.cb:Handling COMPOUND > >INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >INFO :nfs.client.cb:In CB_SEQUENCE > >INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >INFO :nfs.client.cb:In CB_RECALL > >INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa1WSo`\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >INFO :nfs.client.cb:******************** > >INFO :nfs.client.cb:Handling COMPOUND > >INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >INFO :nfs.client.cb:In CB_SEQUENCE > >INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >INFO :nfs.client.cb:In CB_RECALL > >INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa3WSob\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >INFO :test.env:Sleeping for 0 seconds: > >INFO :test.env:Woke up > >INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >INFO :rpc.poll:Adding 8 generated by another thread > >RNM3r st_rename.testCfhFile : PASS > >RNM3f st_rename.testCfhFifo : RUNNING > >RNM3f st_rename.testCfhFifo : PASS > >LKPP1s st_lookupp.testSock : RUNNING > >LKPP1s st_lookupp.testSock : PASS > >LKPP3 st_lookupp.testNoFH : RUNNING > >LKPP3 st_lookupp.testNoFH : PASS > >LKPP2 st_lookupp.testLookuppRoot : RUNNING > >LKPP2 st_lookupp.testLookuppRoot : PASS > >LKPP1a st_lookupp.testLink : RUNNING > >LKPP1a st_lookupp.testLink : PASS > >LKPP1r st_lookupp.testFile : RUNNING > >LKPP1r st_lookupp.testFile : PASS > >LKPP1f st_lookupp.testFifo : RUNNING > >LKPP1f st_lookupp.testFifo : PASS > >VF1r st_verify.testMandFile : RUNNING > >VF1r st_verify.testMandFile : PASS > >DELEG9 st_delegation.testWriteOpenvsReadDeleg : RUNNING > >DELEG9 st_delegation.testWriteOpenvsReadDeleg : PASS > >DELEG23 st_delegation.testServerSelfConflict3 : RUNNING > >__create_file_with_deleg: b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1eX\xc5%' open_delegation4(delegation_type=OPEN_DELEGATE_READ, read=open_read_delegation4(stateid=stateid4(seqid=1, other=b'<\x0b\xdfa\x9cWSo\x02\x00\x00\x00'), recall=False, permissions=nfsace4(type=0, flag=0, access_mask=0, who=b''))) > >open_file res: COMPOUND4res(status=NFS4_OK, tag=b'environment.py:open_create_file', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_OPEN, opopen=OPEN4res(status=NFS4_OK, resok4=OPEN4resok(stateid=stateid4(seqid=2, other=b'<\x0b\xdfa\x9cWSo\x01\x00\x00\x00'), cinfo=change_info4(atomic=False, before=1763091998602434224, after=1737777748740145092), rflags=36, attrset=0, delegation=open_delegation4(delegation_type=OPEN_DELEGATE_NONE_EXT, od_whynone=open_none_delegation4(ond_why=WND4_NOT_WANTED))))), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4_OK, resok4=GETFH4resok(object=b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1e > > X\xc5%')))]) > >DELEG23 st_delegation.testServerSelfConflict3 : PASS > >DELEG1 st_delegation.testReadDeleg : RUNNING > >DELEG1 st_delegation.testReadDeleg : PASS > >DELEG4 st_delegation.testNoDeleg : RUNNING > >DELEG4 st_delegation.testNoDeleg : PASS > >DELEG8 st_delegation.testDelegRevocation : RUNNING > >DELEG8 st_delegation.testDelegRevocation : PASS > >DELEG6 st_delegation.testCBSecParmsNull : RUNNING > >DELEG6 st_delegation.testCBSecParmsNull : PASS > >OPEN1 st_open.testSupported : RUNNING > >OPEN1 st_open.testSupported : PASS > >OPEN2 st_open.testServerStateSeqid : RUNNING > >OPEN2 st_open.testServerStateSeqid : PASS > >OPEN30 st_open.testReadWrite : RUNNING > >OPEN30 st_open.testReadWrite : PASS > >OPEN7 st_open.testOPENClaimFH : RUNNING > >OPEN7 st_open.testOPENClaimFH : PASS > >OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : RUNNING > >OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : PASS > >OPEN8 st_open.testCloseWithZeroSeqid : RUNNING > >OPEN8 st_open.testCloseWithZeroSeqid : PASS > >OPEN31 st_open.testAnonReadWrite : RUNNING > >OPEN31 st_open.testAnonReadWrite : PASS > >TRUNK2 st_trunking.testUseTwoSessions : RUNNING > >TRUNK2 st_trunking.testUseTwoSessions : PASS > >TRUNK1 st_trunking.testTwoSessions : RUNNING > >TRUNK1 st_trunking.testTwoSessions : PASS > >SEQ7 st_sequence.testTooManyOps : RUNNING > >SEQ7 st_sequence.testTooManyOps : PASS > >SEQ1 st_sequence.testSupported : RUNNING > >SEQ1 st_sequence.testSupported : PASS > >SEQ12 st_sequence.testSessionidSequenceidSlotid : RUNNING > >SEQ12 st_sequence.testSessionidSequenceidSlotid : PASS > >SEQ6 st_sequence.testRequestTooBig : RUNNING > >SEQ6 st_sequence.testRequestTooBig : PASS > >SEQ10b st_sequence.testReplayCache007 : RUNNING > >SEQ10b st_sequence.testReplayCache007 : PASS > >SEQ9f st_sequence.testReplayCache006 : RUNNING > >SEQ9f st_sequence.testReplayCache006 : PASS > >SEQ9e st_sequence.testReplayCache005 : RUNNING > >SEQ9e st_sequence.testReplayCache005 : PASS > >SEQ9d st_sequence.testReplayCache004 : RUNNING > >SEQ9d st_sequence.testReplayCache004 : PASS > >SEQ9c st_sequence.testReplayCache003 : RUNNING > >SEQ9c st_sequence.testReplayCache003 : PASS > >SEQ9b st_sequence.testReplayCache002 : RUNNING > >SEQ9b st_sequence.testReplayCache002 : PASS > >SEQ9a st_sequence.testReplayCache001 : RUNNING > >SEQ9a st_sequence.testReplayCache001 : PASS > >SEQ11 st_sequence.testOpNotInSession : RUNNING > >SEQ11 st_sequence.testOpNotInSession : PASS > >SEQ2 st_sequence.testNotFirst : RUNNING > >SEQ2 st_sequence.testNotFirst : PASS > >SEQ4 st_sequence.testImplicitBind : RUNNING > >SEQ4 st_sequence.testImplicitBind : PASS > >SEQ8 st_sequence.testBadSlot : RUNNING > >SEQ8 st_sequence.testBadSlot : PASS > >SEQ5 st_sequence.testBadSession : RUNNING > >SEQ5 st_sequence.testBadSession : PASS > >SEQ13 st_sequence.testBadSequenceidAtSlot : RUNNING > >SEQ13 st_sequence.testBadSequenceidAtSlot : PASS > >SEC2 st_secinfo.testSupported2 : RUNNING > >SEC2 st_secinfo.testSupported2 : PASS > >SEC1 st_secinfo.testSupported : RUNNING > >SEC1 st_secinfo.testSupported : PASS > >SECNN4 st_secinfo_no_name.testSupported4 : RUNNING > >SECNN4 st_secinfo_no_name.testSupported4 : PASS > >SECNN3 st_secinfo_no_name.testSupported3 : RUNNING > >SECNN3 st_secinfo_no_name.testSupported3 : PASS > >SECNN2 st_secinfo_no_name.testSupported2 : RUNNING > >COMPOUND4res(status=NFS4ERR_NOFILEHANDLE, tag=b'st_secinfo_no_name.py:testSupported2', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_SECINFO_NO_NAME, opsecinfo_no_name=SECINFO4res(status=NFS4_OK, resok4=[secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_NONE)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_INTEGRITY)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_PRIVACY)), secinfo4(flavor=1)])), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4ERR_NOFILEHANDLE))]) > >SECNN2 st_secinfo_no_name.testSupported2 : PASS > >SECNN1 st_secinfo_no_name.testSupported : RUNNING > >SECNN1 st_secinfo_no_name.testSupported : PASS > >RECC1 st_reclaim_complete.testSupported : RUNNING > >RECC1 st_reclaim_complete.testSupported : PASS > >RECC2 st_reclaim_complete.testReclaimAfterRECC : RUNNING > >RECC2 st_reclaim_complete.testReclaimAfterRECC : PASS > >RECC3 st_reclaim_complete.testOpenBeforeRECC : RUNNING > >RECC3 st_reclaim_complete.testOpenBeforeRECC : PASS > >RECC4 st_reclaim_complete.testDoubleRECC : RUNNING > >RECC4 st_reclaim_complete.testDoubleRECC : PASS > >DESCID1 st_destroy_clientid.testSupported : RUNNING > >DESCID1 st_destroy_clientid.testSupported : PASS > >DESCID2 st_destroy_clientid.testDestroyCIDWS : RUNNING > >DESCID2 st_destroy_clientid.testDestroyCIDWS : PASS > >DESCID8 st_destroy_clientid.testDestroyCIDTwice : RUNNING > >DESCID8 st_destroy_clientid.testDestroyCIDTwice : PASS > >DESCID5 st_destroy_clientid.testDestroyCIDSessionB : RUNNING > >DESCID5 st_destroy_clientid.testDestroyCIDSessionB : PASS > >DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : RUNNING > >DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : PASS > >DESCID6 st_destroy_clientid.testDestroyCIDCSession : RUNNING > >DESCID6 st_destroy_clientid.testDestroyCIDCSession : PASS > >DESCID3 st_destroy_clientid.testDestroyBadCIDWS : RUNNING > >DESCID3 st_destroy_clientid.testDestroyBadCIDWS : PASS > >DESCID4 st_destroy_clientid.testDestroyBadCIDIS : RUNNING > >DESCID4 st_destroy_clientid.testDestroyBadCIDIS : PASS > >CSESS28 st_create_session.testTooSmallMaxReq : RUNNING > >CSESS28 st_create_session.testTooSmallMaxReq : PASS > >CSESS25 st_create_session.testTooSmallMaxRS : RUNNING > >CSESS25 st_create_session.testTooSmallMaxRS : PASS > >CSESS2b st_create_session.testSupported2b : RUNNING > >CSESS2b st_create_session.testSupported2b : PASS > >CSESS2 st_create_session.testSupported2 : RUNNING > >CSESS2 st_create_session.testSupported2 : PASS > >CSESS1 st_create_session.testSupported1 : RUNNING > >CSESS1 st_create_session.testSupported1 : PASS > >CSESS9 st_create_session.testPrincipalCollision1 : RUNNING > >CSESS9 st_create_session.testPrincipalCollision1 : PASS > >CSESS6 st_create_session.testReplay2 : RUNNING > >CSESS6 st_create_session.testReplay2 : PASS > >CSESS5b st_create_session.testReplay1b : RUNNING > >CSESS5b st_create_session.testReplay1b : PASS > >CSESS5a st_create_session.testReplay1a : RUNNING > >CSESS5a st_create_session.testReplay1a : PASS > >CSESS5 st_create_session.testReplay1 : RUNNING > >CSESS5 st_create_session.testReplay1 : PASS > >CSESS27 st_create_session.testRepTooBigToCache : RUNNING > >CSESS27 st_create_session.testRepTooBigToCache : PASS > >CSESS26 st_create_session.testRepTooBig : RUNNING > >[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19] > >CSESS26 st_create_session.testRepTooBig : PASS > >CSESS19 st_create_session.testRdmaArray2 : RUNNING > >COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_create_session.py:testRdmaArray2', resarray=[nfs_resop4(resop=OP_CREATE_SESSION, opcreate_session=CREATE_SESSION4res(csr_status=NFS4ERR_BADXDR))]) > >CSESS19 st_create_session.testRdmaArray2 : PASS > >CSESS18 st_create_session.testRdmaArray1 : RUNNING > >CSESS18 st_create_session.testRdmaArray1 : PASS > >CSESS17 st_create_session.testRdmaArray0 : RUNNING > >CSESS17 st_create_session.testRdmaArray0 : PASS > >CSESS10 st_create_session.testPrincipalCollision2 : RUNNING > >CSESS10 st_create_session.testPrincipalCollision2 : PASS > >CSESS23 st_create_session.testNotOnlyOp : RUNNING > >CSESS23 st_create_session.testNotOnlyOp : PASS > >CSESS3 st_create_session.testNoExchange : RUNNING > >CSESS3 st_create_session.testNoExchange : PASS > >CSESS22 st_create_session.testMaxreqs : RUNNING > >CSESS22 st_create_session.testMaxreqs : PASS > >CSESS200 st_create_session.testManyClients : RUNNING > >CSESS200 st_create_session.testManyClients : PASS > >CSESS29 st_create_session.testDRCMemLeak : RUNNING > >CSESS29 st_create_session.testDRCMemLeak : PASS > >CSESS24 st_create_session.testCsr_sequence : RUNNING > >CSESS24 st_create_session.testCsr_sequence : PASS > >CSESS4 st_create_session.testContrivedReplay : RUNNING > >CSESS4 st_create_session.testContrivedReplay : PASS > >CSESS16a st_create_session.testCbSecParmsDec : RUNNING > >CSESS16a st_create_session.testCbSecParmsDec : PASS > >CSESS16 st_create_session.testCbSecParms : RUNNING > >CSESS16 st_create_session.testCbSecParms : PASS > >CSESS8 st_create_session.testBadSeqnum2 : RUNNING > >CSESS8 st_create_session.testBadSeqnum2 : PASS > >CSESS7 st_create_session.testBadSeqnum1 : RUNNING > >CSESS7 st_create_session.testBadSeqnum1 : PASS > >CSESS15 st_create_session.testBadFlag : RUNNING > >CSESS15 st_create_session.testBadFlag : PASS > >COMP1 st_compound.testZeroOps : RUNNING > >COMP1 st_compound.testZeroOps : PASS > >COMP5 st_compound.testUndefined : RUNNING > >COMP5 st_compound.testUndefined : PASS > >COMP4b st_compound.testInvalidMinor2 : RUNNING > >COMP4b st_compound.testInvalidMinor2 : PASS > >COMP4a st_compound.testInvalidMinor : RUNNING > >COMP4a st_compound.testInvalidMinor : PASS > >COMP2 st_compound.testGoodTag : RUNNING > >COMP2 st_compound.testGoodTag : PASS > >EID6 st_exchange_id.testUpdateNonexistant : RUNNING > >EID6 st_exchange_id.testUpdateNonexistant : PASS > >EID6h st_exchange_id.testUpdate111 : RUNNING > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=16, name=b'COUR6_1642007029', attrs={}), entry4(cookie=20, name=b'COUR5_1642007029', attrs={}), entry4(cookie=24, name=b'COUR4_1642007029', attrs={}), entry4(cookie=28, name=b'COUR3_1642007029', attrs={}), entry4(cookie=32, name=b'COUR2_1642007029', attrs={}), entry4(cookie=36, name=b'CSID3_1642007029', attrs={}), entry4(cookie=40, name=b'CSID8_1642007029', attrs={}), entry4(cookie=44, name=b'CSID10_1642007029', attrs={}), entry4(cookie=48, name=b'CSID5_1642007029', attrs={}), entry4(cookie=52, name=b'CSID9_1642007029', attrs={}), entry4(cookie=56, name=b'CSID1_1642007029', attrs={}), entry4(cookie=60, name=b'CSID4_1642007029', attrs={}), entry4(cookie=64, name=b'CSID2_1642007029', attrs={}), entry4(cookie=68, name=b'CSID6_1642007029', attrs={}), entry4(cookie=74, name=b'owner_REBT4b_1642007029_client_0', attrs={}), entry4(cookie=80, name=b'owner_REBT4b_1642007029_client_1', attrs={}), entry4(cookie=86, name=b'owner_REBT4b_1642007029_cli > > ent_2', attrs={}), entry4(cookie=92, name=b'owner_REBT4b_1642007029_client_3', attrs={}), entry4(cookie=98, name=b'owner_REBT4b_1642007029_client_4', attrs={}), entry4(cookie=104, name=b'owner_REBT4b_1642007029_client_5', attrs={}), entry4(cookie=110, name=b'owner_REBT4b_1642007029_client_6', attrs={}), entry4(cookie=116, name=b'owner_REBT4b_1642007029_client_7', attrs={}), entry4(cookie=122, name=b'owner_REBT4b_1642007029_client_8', attrs={}), entry4(cookie=128, name=b'owner_REBT4b_1642007029_client_9', attrs={}), entry4(cookie=134, name=b'owner_REBT4b_1642007029_client_10', attrs={}), entry4(cookie=140, name=b'owner_REBT4b_1642007029_client_11', attrs={}), entry4(cookie=146, name=b'owner_REBT4b_1642007029_client_12', attrs={}), entry4(cookie=152, name=b'owner_REBT4b_1642007029_client_13', attrs={}), entry4(cookie=158, name=b'owner_REBT4b_1642007029_client_14', attrs={}), entry4(cookie=164, name=b'owner_REBT4b_1642007029_client_15', attrs={}), entry4(cookie=170, name=b'owner_REBT4b > > _1642007029_client_16', attrs={}), entry4(cookie=176, name=b'owner_REBT4b_1642007029_client_17', attrs={}), entry4(cookie=182, name=b'owner_REBT4b_1642007029_client_18', attrs={}), entry4(cookie=188, name=b'owner_REBT4b_1642007029_client_19', attrs={}), entry4(cookie=194, name=b'owner_REBT4b_1642007029_client_20', attrs={}), entry4(cookie=200, name=b'owner_REBT4b_1642007029_client_21', attrs={}), entry4(cookie=206, name=b'owner_REBT4b_1642007029_client_22', attrs={}), entry4(cookie=212, name=b'owner_REBT4b_1642007029_client_23', attrs={}), entry4(cookie=218, name=b'owner_REBT4b_1642007029_client_24', attrs={}), entry4(cookie=224, name=b'owner_REBT4b_1642007029_client_25', attrs={}), entry4(cookie=230, name=b'owner_REBT4b_1642007029_client_26', attrs={}), entry4(cookie=236, name=b'owner_REBT4b_1642007029_client_27', attrs={}), entry4(cookie=242, name=b'owner_REBT4b_1642007029_client_28', attrs={}), entry4(cookie=248, name=b'owner_REBT4b_1642007029_client_29', attrs={}), entry4(cookie > > =254, name=b'owner_REBT4b_1642007029_client_30', attrs={}), entry4(cookie=260, name=b'owner_REBT4b_1642007029_client_31', attrs={}), entry4(cookie=266, name=b'owner_REBT4b_1642007029_client_32', attrs={}), entry4(cookie=272, name=b'owner_REBT4b_1642007029_client_33', attrs={}), entry4(cookie=278, name=b'owner_REBT4b_1642007029_client_34', attrs={}), entry4(cookie=284, name=b'owner_REBT4b_1642007029_client_35', attrs={}), entry4(cookie=290, name=b'owner_REBT4b_1642007029_client_36', attrs={}), entry4(cookie=296, name=b'owner_REBT4b_1642007029_client_37', attrs={}), entry4(cookie=302, name=b'owner_REBT4b_1642007029_client_38', attrs={}), entry4(cookie=308, name=b'owner_REBT4b_1642007029_client_39', attrs={}), entry4(cookie=314, name=b'owner_REBT4b_1642007029_client_40', attrs={}), entry4(cookie=320, name=b'owner_REBT4b_1642007029_client_41', attrs={}), entry4(cookie=326, name=b'owner_REBT4b_1642007029_client_42', attrs={}), entry4(cookie=332, name=b'owner_REBT4b_1642007029_client_43', > > attrs={}), entry4(cookie=338, name=b'owner_REBT4b_1642007029_client_44', attrs={}), entry4(cookie=344, name=b'owner_REBT4b_1642007029_client_45', attrs={}), entry4(cookie=350, name=b'owner_REBT4b_1642007029_client_46', attrs={}), entry4(cookie=356, name=b'owner_REBT4b_1642007029_client_47', attrs={}), entry4(cookie=362, name=b'owner_REBT4b_1642007029_client_48', attrs={}), entry4(cookie=368, name=b'owner_REBT4b_1642007029_client_49', attrs={}), entry4(cookie=374, name=b'owner_REBT4b_1642007029_client_50', attrs={}), entry4(cookie=380, name=b'owner_REBT4b_1642007029_client_51', attrs={}), entry4(cookie=386, name=b'owner_REBT4b_1642007029_client_52', attrs={}), entry4(cookie=392, name=b'owner_REBT4b_1642007029_client_53', attrs={}), entry4(cookie=398, name=b'owner_REBT4b_1642007029_client_54', attrs={}), entry4(cookie=404, name=b'owner_REBT4b_1642007029_client_55', attrs={}), entry4(cookie=410, name=b'owner_REBT4b_1642007029_client_56', attrs={}), entry4(cookie=416, name=b'owner_REBT > > 4b_1642007029_client_57', attrs={}), entry4(cookie=422, name=b'owner_REBT4b_1642007029_client_58', attrs={}), entry4(cookie=428, name=b'owner_REBT4b_1642007029_client_59', attrs={}), entry4(cookie=434, name=b'owner_REBT4b_1642007029_client_60', attrs={}), entry4(cookie=440, name=b'owner_REBT4b_1642007029_client_61', attrs={}), entry4(cookie=446, name=b'owner_REBT4b_1642007029_client_62', attrs={}), entry4(cookie=452, name=b'owner_REBT4b_1642007029_client_63', attrs={}), entry4(cookie=458, name=b'owner_REBT4b_1642007029_client_64', attrs={}), entry4(cookie=464, name=b'owner_REBT4b_1642007029_client_65', attrs={}), entry4(cookie=470, name=b'owner_REBT4b_1642007029_client_66', attrs={}), entry4(cookie=476, name=b'owner_REBT4b_1642007029_client_67', attrs={}), entry4(cookie=482, name=b'owner_REBT4b_1642007029_client_68', attrs={}), entry4(cookie=488, name=b'owner_REBT4b_1642007029_client_69', attrs={}), entry4(cookie=494, name=b'owner_REBT4b_1642007029_client_70', attrs={}), entry4(cook > > ie=500, name=b'owner_REBT4b_1642007029_client_71', attrs={}), entry4(cookie=506, name=b'owner_REBT4b_1642007029_client_72', attrs={}), entry4(cookie=520, name=b'owner_REBT4b_1642007029_client_73', attrs={}), entry4(cookie=526, name=b'owner_REBT4b_1642007029_client_74', attrs={}), entry4(cookie=532, name=b'owner_REBT4b_1642007029_client_75', attrs={}), entry4(cookie=538, name=b'owner_REBT4b_1642007029_client_76', attrs={}), entry4(cookie=544, name=b'owner_REBT4b_1642007029_client_77', attrs={}), entry4(cookie=550, name=b'owner_REBT4b_1642007029_client_78', attrs={}), entry4(cookie=556, name=b'owner_REBT4b_1642007029_client_79', attrs={}), entry4(cookie=562, name=b'owner_REBT4b_1642007029_client_80', attrs={}), entry4(cookie=568, name=b'owner_REBT4b_1642007029_client_81', attrs={}), entry4(cookie=574, name=b'owner_REBT4b_1642007029_client_82', attrs={}), entry4(cookie=580, name=b'owner_REBT4b_1642007029_client_83', attrs={}), entry4(cookie=586, name=b'owner_REBT4b_1642007029_client_84 > > ', attrs={}), entry4(cookie=592, name=b'owner_REBT4b_1642007029_client_85', attrs={}), entry4(cookie=598, name=b'owner_REBT4b_1642007029_client_86', attrs={}), entry4(cookie=604, name=b'owner_REBT4b_1642007029_client_87', attrs={}), entry4(cookie=610, name=b'owner_REBT4b_1642007029_client_88', attrs={}), entry4(cookie=616, name=b'owner_REBT4b_1642007029_client_89', attrs={}), entry4(cookie=622, name=b'owner_REBT4b_1642007029_client_90', attrs={}), entry4(cookie=628, name=b'owner_REBT4b_1642007029_client_91', attrs={}), entry4(cookie=634, name=b'owner_REBT4b_1642007029_client_92', attrs={}), entry4(cookie=640, name=b'owner_REBT4b_1642007029_client_93', attrs={}), entry4(cookie=646, name=b'owner_REBT4b_1642007029_client_94', attrs={}), entry4(cookie=652, name=b'owner_REBT4b_1642007029_client_95', attrs={}), entry4(cookie=658, name=b'owner_REBT4b_1642007029_client_96', attrs={}), entry4(cookie=664, name=b'owner_REBT4b_1642007029_client_97', attrs={}), entry4(cookie=670, name=b'owner_RE > > BT4b_1642007029_client_98', attrs={}), entry4(cookie=676, name=b'owner_REBT4b_1642007029_client_99', attrs={}), entry4(cookie=682, name=b'owner_REBT2b_1642007029_client_0', attrs={}), entry4(cookie=688, name=b'owner_REBT2b_1642007029_client_1', attrs={}), entry4(cookie=694, name=b'owner_REBT2b_1642007029_client_2', attrs={}), entry4(cookie=700, name=b'owner_REBT2b_1642007029_client_3', attrs={}), entry4(cookie=706, name=b'owner_REBT2b_1642007029_client_4', attrs={}), entry4(cookie=712, name=b'owner_REBT2b_1642007029_client_5', attrs={}), entry4(cookie=718, name=b'owner_REBT2b_1642007029_client_6', attrs={}), entry4(cookie=724, name=b'owner_REBT2b_1642007029_client_7', attrs={}), entry4(cookie=730, name=b'owner_REBT2b_1642007029_client_8', attrs={}), entry4(cookie=736, name=b'owner_REBT2b_1642007029_client_9', attrs={}), entry4(cookie=742, name=b'owner_REBT2b_1642007029_client_10', attrs={}), entry4(cookie=748, name=b'owner_REBT2b_1642007029_client_11', attrs={}), entry4(cookie=754, > > name=b'owner_REBT2b_1642007029_client_12', attrs={}), entry4(cookie=760, name=b'owner_REBT2b_1642007029_client_13', attrs={}), entry4(cookie=766, name=b'owner_REBT2b_1642007029_client_14', attrs={}), entry4(cookie=772, name=b'owner_REBT2b_1642007029_client_15', attrs={}), entry4(cookie=778, name=b'owner_REBT2b_1642007029_client_16', attrs={}), entry4(cookie=784, name=b'owner_REBT2b_1642007029_client_17', attrs={}), entry4(cookie=790, name=b'owner_REBT2b_1642007029_client_18', attrs={}), entry4(cookie=796, name=b'owner_REBT2b_1642007029_client_19', attrs={}), entry4(cookie=802, name=b'owner_REBT2b_1642007029_client_20', attrs={}), entry4(cookie=808, name=b'owner_REBT2b_1642007029_client_21', attrs={}), entry4(cookie=814, name=b'owner_REBT2b_1642007029_client_22', attrs={}), entry4(cookie=820, name=b'owner_REBT2b_1642007029_client_23', attrs={}), entry4(cookie=826, name=b'owner_REBT2b_1642007029_client_24', attrs={}), entry4(cookie=832, name=b'owner_REBT2b_1642007029_client_25', attrs > > ={}), entry4(cookie=838, name=b'owner_REBT2b_1642007029_client_26', attrs={}), entry4(cookie=844, name=b'owner_REBT2b_1642007029_client_27', attrs={}), entry4(cookie=850, name=b'owner_REBT2b_1642007029_client_28', attrs={}), entry4(cookie=856, name=b'owner_REBT2b_1642007029_client_29', attrs={}), entry4(cookie=862, name=b'owner_REBT2b_1642007029_client_30', attrs={}), entry4(cookie=868, name=b'owner_REBT2b_1642007029_client_31', attrs={}), entry4(cookie=874, name=b'owner_REBT2b_1642007029_client_32', attrs={}), entry4(cookie=880, name=b'owner_REBT2b_1642007029_client_33', attrs={}), entry4(cookie=886, name=b'owner_REBT2b_1642007029_client_34', attrs={}), entry4(cookie=892, name=b'owner_REBT2b_1642007029_client_35', attrs={}), entry4(cookie=898, name=b'owner_REBT2b_1642007029_client_36', attrs={}), entry4(cookie=904, name=b'owner_REBT2b_1642007029_client_37', attrs={}), entry4(cookie=910, name=b'owner_REBT2b_1642007029_client_38', attrs={}), entry4(cookie=916, name=b'owner_REBT2b_164 > > 2007029_client_39', attrs={}), entry4(cookie=922, name=b'owner_REBT2b_1642007029_client_40', attrs={}), entry4(cookie=928, name=b'owner_REBT2b_1642007029_client_41', attrs={}), entry4(cookie=934, name=b'owner_REBT2b_1642007029_client_42', attrs={}), entry4(cookie=940, name=b'owner_REBT2b_1642007029_client_43', attrs={}), entry4(cookie=946, name=b'owner_REBT2b_1642007029_client_44', attrs={}), entry4(cookie=952, name=b'owner_REBT2b_1642007029_client_45', attrs={}), entry4(cookie=958, name=b'owner_REBT2b_1642007029_client_46', attrs={}), entry4(cookie=964, name=b'owner_REBT2b_1642007029_client_47', attrs={}), entry4(cookie=970, name=b'owner_REBT2b_1642007029_client_48', attrs={}), entry4(cookie=976, name=b'owner_REBT2b_1642007029_client_49', attrs={}), entry4(cookie=982, name=b'owner_REBT2b_1642007029_client_50', attrs={}), entry4(cookie=988, name=b'owner_REBT2b_1642007029_client_51', attrs={}), entry4(cookie=994, name=b'owner_REBT2b_1642007029_client_52', attrs={}), entry4(cookie=100 > > 0, name=b'owner_REBT2b_1642007029_client_53', attrs={}), entry4(cookie=1006, name=b'owner_REBT2b_1642007029_client_54', attrs={}), entry4(cookie=1012, name=b'owner_REBT2b_1642007029_client_55', attrs={}), entry4(cookie=1018, name=b'owner_REBT2b_1642007029_client_56', attrs={}), entry4(cookie=1032, name=b'owner_REBT2b_1642007029_client_57', attrs={}), entry4(cookie=1038, name=b'owner_REBT2b_1642007029_client_58', attrs={}), entry4(cookie=1044, name=b'owner_REBT2b_1642007029_client_59', attrs={}), entry4(cookie=1050, name=b'owner_REBT2b_1642007029_client_60', attrs={}), entry4(cookie=1056, name=b'owner_REBT2b_1642007029_client_61', attrs={}), entry4(cookie=1062, name=b'owner_REBT2b_1642007029_client_62', attrs={}), entry4(cookie=1068, name=b'owner_REBT2b_1642007029_client_63', attrs={}), entry4(cookie=1074, name=b'owner_REBT2b_1642007029_client_64', attrs={}), entry4(cookie=1080, name=b'owner_REBT2b_1642007029_client_65', attrs={}), entry4(cookie=1086, name=b'owner_REBT2b_1642007029_c > > lient_66', attrs={}), entry4(cookie=1092, name=b'owner_REBT2b_1642007029_client_67', attrs={}), entry4(cookie=1098, name=b'owner_REBT2b_1642007029_client_68', attrs={}), entry4(cookie=1104, name=b'owner_REBT2b_1642007029_client_69', attrs={}), entry4(cookie=1110, name=b'owner_REBT2b_1642007029_client_70', attrs={}), entry4(cookie=1116, name=b'owner_REBT2b_1642007029_client_71', attrs={}), entry4(cookie=1122, name=b'owner_REBT2b_1642007029_client_72', attrs={}), entry4(cookie=1128, name=b'owner_REBT2b_1642007029_client_73', attrs={}), entry4(cookie=1134, name=b'owner_REBT2b_1642007029_client_74', attrs={}), entry4(cookie=1140, name=b'owner_REBT2b_1642007029_client_75', attrs={}), entry4(cookie=1146, name=b'owner_REBT2b_1642007029_client_76', attrs={}), entry4(cookie=1152, name=b'owner_REBT2b_1642007029_client_77', attrs={}), entry4(cookie=1158, name=b'owner_REBT2b_1642007029_client_78', attrs={}), entry4(cookie=1164, name=b'owner_REBT2b_1642007029_client_79', attrs={}), entry4(cookie > > =1170, name=b'owner_REBT2b_1642007029_client_80', attrs={}), entry4(cookie=1176, name=b'owner_REBT2b_1642007029_client_81', attrs={}), entry4(cookie=1182, name=b'owner_REBT2b_1642007029_client_82', attrs={}), entry4(cookie=1188, name=b'owner_REBT2b_1642007029_client_83', attrs={}), entry4(cookie=1194, name=b'owner_REBT2b_1642007029_client_84', attrs={}), entry4(cookie=1200, name=b'owner_REBT2b_1642007029_client_85', attrs={}), entry4(cookie=1206, name=b'owner_REBT2b_1642007029_client_86', attrs={}), entry4(cookie=1212, name=b'owner_REBT2b_1642007029_client_87', attrs={}), entry4(cookie=1218, name=b'owner_REBT2b_1642007029_client_88', attrs={}), entry4(cookie=1224, name=b'owner_REBT2b_1642007029_client_89', attrs={}), entry4(cookie=1230, name=b'owner_REBT2b_1642007029_client_90', attrs={}), entry4(cookie=1236, name=b'owner_REBT2b_1642007029_client_91', attrs={}), entry4(cookie=1242, name=b'owner_REBT2b_1642007029_client_92', attrs={}), entry4(cookie=1248, name=b'owner_REBT2b_16420070 > > 29_client_93', attrs={}), entry4(cookie=1254, name=b'owner_REBT2b_1642007029_client_94', attrs={}), entry4(cookie=1260, name=b'owner_REBT2b_1642007029_client_95', attrs={}), entry4(cookie=1266, name=b'owner_REBT2b_1642007029_client_96', attrs={}), entry4(cookie=1272, name=b'owner_REBT2b_1642007029_client_97', attrs={}), entry4(cookie=1278, name=b'owner_REBT2b_1642007029_client_98', attrs={}), entry4(cookie=1284, name=b'owner_REBT2b_1642007029_client_99', attrs={}), entry4(cookie=1290, name=b'owner_REBT4a_1642007029_client_0', attrs={}), entry4(cookie=1296, name=b'owner_REBT4a_1642007029_client_1', attrs={}), entry4(cookie=1302, name=b'owner_REBT4a_1642007029_client_2', attrs={}), entry4(cookie=1308, name=b'owner_REBT4a_1642007029_client_3', attrs={}), entry4(cookie=1314, name=b'owner_REBT4a_1642007029_client_4', attrs={}), entry4(cookie=1320, name=b'owner_REBT4a_1642007029_client_5', attrs={}), entry4(cookie=1326, name=b'owner_REBT4a_1642007029_client_6', attrs={}), entry4(cookie=13 > > 32, name=b'owner_REBT4a_1642007029_client_7', attrs={}), entry4(cookie=1338, name=b'owner_REBT4a_1642007029_client_8', attrs={}), entry4(cookie=1344, name=b'owner_REBT4a_1642007029_client_9', attrs={}), entry4(cookie=1350, name=b'owner_REBT2a_1642007029_client_0', attrs={}), entry4(cookie=1356, name=b'owner_REBT2a_1642007029_client_1', attrs={}), entry4(cookie=1362, name=b'owner_REBT2a_1642007029_client_2', attrs={}), entry4(cookie=1368, name=b'owner_REBT2a_1642007029_client_3', attrs={}), entry4(cookie=1374, name=b'owner_REBT2a_1642007029_client_4', attrs={}), entry4(cookie=1380, name=b'owner_REBT2a_1642007029_client_5', attrs={}), entry4(cookie=1386, name=b'owner_REBT2a_1642007029_client_6', attrs={}), entry4(cookie=1392, name=b'owner_REBT2a_1642007029_client_7', attrs={}), entry4(cookie=1398, name=b'owner_REBT2a_1642007029_client_8', attrs={}), entry4(cookie=1404, name=b'owner_REBT2a_1642007029_client_9', attrs={}), entry4(cookie=1410, name=b'owner_REBT5_1642007029_client_file_0' > > , attrs={}), entry4(cookie=1416, name=b'owner_REBT5_1642007029_client_file_1', attrs={}), entry4(cookie=1422, name=b'owner_REBT5_1642007029_client_file_2', attrs={}), entry4(cookie=1428, name=b'owner_REBT5_1642007029_client_file_3', attrs={}), entry4(cookie=1434, name=b'owner_REBT5_1642007029_client_file_4', attrs={}), entry4(cookie=1440, name=b'owner_REBT5_1642007029_client_file_5', attrs={}), entry4(cookie=1446, name=b'owner_REBT5_1642007029_client_file_6', attrs={}), entry4(cookie=1452, name=b'owner_REBT5_1642007029_client_file_7', attrs={}), entry4(cookie=1458, name=b'owner_REBT5_1642007029_client_file_8', attrs={}), entry4(cookie=1464, name=b'owner_REBT5_1642007029_client_file_9', attrs={}), entry4(cookie=1471, name=b'owner_REBT5_1642007029_client_file_10', attrs={}), entry4(cookie=1478, name=b'owner_REBT5_1642007029_client_file_11', attrs={}), entry4(cookie=1485, name=b'owner_REBT5_1642007029_client_file_12', attrs={}), entry4(cookie=1492, name=b'owner_REBT5_1642007029_client_ > > file_13', attrs={}), entry4(cookie=1499, name=b'owner_REBT5_1642007029_client_file_14', attrs={}), entry4(cookie=1506, name=b'owner_REBT5_1642007029_client_file_15', attrs={}), entry4(cookie=1513, name=b'owner_REBT5_1642007029_client_file_16', attrs={}), entry4(cookie=1520, name=b'owner_REBT5_1642007029_client_file_17', attrs={}), entry4(cookie=1527, name=b'owner_REBT5_1642007029_client_file_18', attrs={}), entry4(cookie=1544, name=b'owner_REBT5_1642007029_client_file_19', attrs={}), entry4(cookie=1551, name=b'owner_REBT5_1642007029_client_file_20', attrs={}), entry4(cookie=1558, name=b'owner_REBT5_1642007029_client_file_21', attrs={}), entry4(cookie=1565, name=b'owner_REBT5_1642007029_client_file_22', attrs={}), entry4(cookie=1572, name=b'owner_REBT5_1642007029_client_file_23', attrs={}), entry4(cookie=1579, name=b'owner_REBT5_1642007029_client_file_24', attrs={}), entry4(cookie=1586, name=b'owner_REBT5_1642007029_client_file_25', attrs={}), entry4(cookie=1593, name=b'owner_REBT5_1 > > 642007029_client_file_26', attrs={}), entry4(cookie=1600, name=b'owner_REBT5_1642007029_client_file_27', attrs={}), entry4(cookie=1607, name=b'owner_REBT5_1642007029_client_file_28', attrs={}), entry4(cookie=1614, name=b'owner_REBT5_1642007029_client_file_29', attrs={}), entry4(cookie=1621, name=b'owner_REBT5_1642007029_client_file_30', attrs={}), entry4(cookie=1628, name=b'owner_REBT5_1642007029_client_file_31', attrs={}), entry4(cookie=1635, name=b'owner_REBT5_1642007029_client_file_32', attrs={}), entry4(cookie=1642, name=b'owner_REBT5_1642007029_client_file_33', attrs={}), entry4(cookie=1649, name=b'owner_REBT5_1642007029_client_file_34', attrs={}), entry4(cookie=1656, name=b'owner_REBT5_1642007029_client_file_35', attrs={}), entry4(cookie=1663, name=b'owner_REBT5_1642007029_client_file_36', attrs={}), entry4(cookie=1670, name=b'owner_REBT5_1642007029_client_file_37', attrs={}), entry4(cookie=1677, name=b'owner_REBT5_1642007029_client_file_38', attrs={}), entry4(cookie=1684, nam > > e=b'owner_REBT5_1642007029_client_file_39', attrs={}), entry4(cookie=1691, name=b'owner_REBT5_1642007029_client_file_40', attrs={}), entry4(cookie=1698, name=b'owner_REBT5_1642007029_client_file_41', attrs={}), entry4(cookie=1703, name=b'owner_REBT1_1642007029', attrs={}), entry4(cookie=1709, name=b'owner_REBT3b_1642007029_client_0', attrs={}), entry4(cookie=1715, name=b'owner_REBT3b_1642007029_client_1', attrs={}), entry4(cookie=1721, name=b'owner_REBT3b_1642007029_client_2', attrs={}), entry4(cookie=1727, name=b'owner_REBT3b_1642007029_client_3', attrs={}), entry4(cookie=1733, name=b'owner_REBT3b_1642007029_client_4', attrs={}), entry4(cookie=1739, name=b'owner_REBT3b_1642007029_client_5', attrs={}), entry4(cookie=1745, name=b'owner_REBT3b_1642007029_client_6', attrs={}), entry4(cookie=1751, name=b'owner_REBT3b_1642007029_client_7', attrs={}), entry4(cookie=1757, name=b'owner_REBT3b_1642007029_client_8', attrs={}), entry4(cookie=1763, name=b'owner_REBT3b_1642007029_client_9', attr > > s={}), entry4(cookie=1769, name=b'owner_REBT3b_1642007029_client_10', attrs={}), entry4(cookie=1775, name=b'owner_REBT3b_1642007029_client_11', attrs={}), entry4(cookie=1781, name=b'owner_REBT3b_1642007029_client_12', attrs={}), entry4(cookie=1787, name=b'owner_REBT3b_1642007029_client_13', attrs={}), entry4(cookie=1793, name=b'owner_REBT3b_1642007029_client_14', attrs={}), entry4(cookie=1799, name=b'owner_REBT3b_1642007029_client_15', attrs={}), entry4(cookie=1805, name=b'owner_REBT3b_1642007029_client_16', attrs={}), entry4(cookie=1811, name=b'owner_REBT3b_1642007029_client_17', attrs={}), entry4(cookie=1817, name=b'owner_REBT3b_1642007029_client_18', attrs={}), entry4(cookie=1823, name=b'owner_REBT3b_1642007029_client_19', attrs={}), entry4(cookie=1829, name=b'owner_REBT3b_1642007029_client_20', attrs={}), entry4(cookie=1835, name=b'owner_REBT3b_1642007029_client_21', attrs={}), entry4(cookie=1841, name=b'owner_REBT3b_1642007029_client_22', attrs={}), entry4(cookie=1847, name=b'o > > wner_REBT3b_1642007029_client_23', attrs={}), entry4(cookie=1853, name=b'owner_REBT3b_1642007029_client_24', attrs={}), entry4(cookie=1859, name=b'owner_REBT3b_1642007029_client_25', attrs={}), entry4(cookie=1865, name=b'owner_REBT3b_1642007029_client_26', attrs={}), entry4(cookie=1871, name=b'owner_REBT3b_1642007029_client_27', attrs={}), entry4(cookie=1877, name=b'owner_REBT3b_1642007029_client_28', attrs={}), entry4(cookie=1883, name=b'owner_REBT3b_1642007029_client_29', attrs={}), entry4(cookie=1889, name=b'owner_REBT3b_1642007029_client_30', attrs={}), entry4(cookie=1895, name=b'owner_REBT3b_1642007029_client_31', attrs={}), entry4(cookie=1901, name=b'owner_REBT3b_1642007029_client_32', attrs={}), entry4(cookie=1907, name=b'owner_REBT3b_1642007029_client_33', attrs={}), entry4(cookie=1913, name=b'owner_REBT3b_1642007029_client_34', attrs={}), entry4(cookie=1919, name=b'owner_REBT3b_1642007029_client_35', attrs={}), entry4(cookie=1925, name=b'owner_REBT3b_1642007029_client_36', > > attrs={}), entry4(cookie=1931, name=b'owner_REBT3b_1642007029_client_37', attrs={}), entry4(cookie=1937, name=b'owner_REBT3b_1642007029_client_38', attrs={}), entry4(cookie=1943, name=b'owner_REBT3b_1642007029_client_39', attrs={}), entry4(cookie=1949, name=b'owner_REBT3b_1642007029_client_40', attrs={}), entry4(cookie=1955, name=b'owner_REBT3b_1642007029_client_41', attrs={}), entry4(cookie=1961, name=b'owner_REBT3b_1642007029_client_42', attrs={}), entry4(cookie=1967, name=b'owner_REBT3b_1642007029_client_43', attrs={}), entry4(cookie=1973, name=b'owner_REBT3b_1642007029_client_44', attrs={}), entry4(cookie=1979, name=b'owner_REBT3b_1642007029_client_45', attrs={}), entry4(cookie=1985, name=b'owner_REBT3b_1642007029_client_46', attrs={}), entry4(cookie=1991, name=b'owner_REBT3b_1642007029_client_47', attrs={}), entry4(cookie=1997, name=b'owner_REBT3b_1642007029_client_48', attrs={}), entry4(cookie=2003, name=b'owner_REBT3b_1642007029_client_49', attrs={}), entry4(cookie=2009, name > > =b'owner_REBT3b_1642007029_client_50', attrs={}), entry4(cookie=2015, name=b'owner_REBT3b_1642007029_client_51', attrs={}), entry4(cookie=2021, name=b'owner_REBT3b_1642007029_client_52', attrs={}), entry4(cookie=2027, name=b'owner_REBT3b_1642007029_client_53', attrs={}), entry4(cookie=2033, name=b'owner_REBT3b_1642007029_client_54', attrs={}), entry4(cookie=2039, name=b'owner_REBT3b_1642007029_client_55', attrs={}), entry4(cookie=2056, name=b'owner_REBT3b_1642007029_client_56', attrs={}), entry4(cookie=2062, name=b'owner_REBT3b_1642007029_client_57', attrs={}), entry4(cookie=2068, name=b'owner_REBT3b_1642007029_client_58', attrs={}), entry4(cookie=2074, name=b'owner_REBT3b_1642007029_client_59', attrs={}), entry4(cookie=2080, name=b'owner_REBT3b_1642007029_client_60', attrs={}), entry4(cookie=2086, name=b'owner_REBT3b_1642007029_client_61', attrs={}), entry4(cookie=2092, name=b'owner_REBT3b_1642007029_client_62', attrs={}), entry4(cookie=2098, name=b'owner_REBT3b_1642007029_client_6 > > 3', attrs={}), entry4(cookie=2104, name=b'owner_REBT3b_1642007029_client_64', attrs={}), entry4(cookie=2110, name=b'owner_REBT3b_1642007029_client_65', attrs={}), entry4(cookie=2116, name=b'owner_REBT3b_1642007029_client_66', attrs={}), entry4(cookie=2122, name=b'owner_REBT3b_1642007029_client_67', attrs={}), entry4(cookie=2128, name=b'owner_REBT3b_1642007029_client_68', attrs={}), entry4(cookie=2134, name=b'owner_REBT3b_1642007029_client_69', attrs={}), entry4(cookie=2140, name=b'owner_REBT3b_1642007029_client_70', attrs={}), entry4(cookie=2146, name=b'owner_REBT3b_1642007029_client_71', attrs={}), entry4(cookie=2152, name=b'owner_REBT3b_1642007029_client_72', attrs={}), entry4(cookie=2158, name=b'owner_REBT3b_1642007029_client_73', attrs={}), entry4(cookie=2164, name=b'owner_REBT3b_1642007029_client_74', attrs={}), entry4(cookie=2170, name=b'owner_REBT3b_1642007029_client_75', attrs={}), entry4(cookie=2176, name=b'owner_REBT3b_1642007029_client_76', attrs={}), entry4(cookie=2182, > > name=b'owner_REBT3b_1642007029_client_77', attrs={}), entry4(cookie=2188, name=b'owner_REBT3b_1642007029_client_78', attrs={}), entry4(cookie=2194, name=b'owner_REBT3b_1642007029_client_79', attrs={}), entry4(cookie=2200, name=b'owner_REBT3b_1642007029_client_80', attrs={}), entry4(cookie=2206, name=b'owner_REBT3b_1642007029_client_81', attrs={}), entry4(cookie=2212, name=b'owner_REBT3b_1642007029_client_82', attrs={}), entry4(cookie=2218, name=b'owner_REBT3b_1642007029_client_83', attrs={}), entry4(cookie=2224, name=b'owner_REBT3b_1642007029_client_84', attrs={}), entry4(cookie=2230, name=b'owner_REBT3b_1642007029_client_85', attrs={}), entry4(cookie=2236, name=b'owner_REBT3b_1642007029_client_86', attrs={}), entry4(cookie=2242, name=b'owner_REBT3b_1642007029_client_87', attrs={}), entry4(cookie=2248, name=b'owner_REBT3b_1642007029_client_88', attrs={}), entry4(cookie=2254, name=b'owner_REBT3b_1642007029_client_89', attrs={}), entry4(cookie=2260, name=b'owner_REBT3b_1642007029_clie > > nt_90', attrs={}), entry4(cookie=2266, name=b'owner_REBT3b_1642007029_client_91', attrs={}), entry4(cookie=2272, name=b'owner_REBT3b_1642007029_client_92', attrs={}), entry4(cookie=2278, name=b'owner_REBT3b_1642007029_client_93', attrs={}), entry4(cookie=2284, name=b'owner_REBT3b_1642007029_client_94', attrs={}), entry4(cookie=2290, name=b'owner_REBT3b_1642007029_client_95', attrs={}), entry4(cookie=2296, name=b'owner_REBT3b_1642007029_client_96', attrs={}), entry4(cookie=2302, name=b'owner_REBT3b_1642007029_client_97', attrs={}), entry4(cookie=2308, name=b'owner_REBT3b_1642007029_client_98', attrs={}), entry4(cookie=2314, name=b'owner_REBT3b_1642007029_client_99', attrs={}), entry4(cookie=2320, name=b'owner_REBT3a_1642007029_client_0', attrs={}), entry4(cookie=2326, name=b'owner_REBT3a_1642007029_client_1', attrs={}), entry4(cookie=2332, name=b'owner_REBT3a_1642007029_client_2', attrs={}), entry4(cookie=2338, name=b'owner_REBT3a_1642007029_client_3', attrs={}), entry4(cookie=2344, > > name=b'owner_REBT3a_1642007029_client_4', attrs={}), entry4(cookie=2350, name=b'owner_REBT3a_1642007029_client_5', attrs={}), entry4(cookie=2356, name=b'owner_REBT3a_1642007029_client_6', attrs={}), entry4(cookie=2362, name=b'owner_REBT3a_1642007029_client_7', attrs={}), entry4(cookie=2368, name=b'owner_REBT3a_1642007029_client_8', attrs={}), entry4(cookie=2374, name=b'owner_REBT3a_1642007029_client_9', attrs={}), entry4(cookie=2378, name=b'RNM6_1642007029', attrs={}), entry4(cookie=2382, name=b'RNM7_1642007029', attrs={}), entry4(cookie=2386, name=b'RNM1s_1642007029', attrs={}), entry4(cookie=2390, name=b'RNM1a_1642007029', attrs={}), entry4(cookie=2394, name=b'RNM1r_1642007029', attrs={}), entry4(cookie=2398, name=b'RNM1f_1642007029', attrs={}), entry4(cookie=2402, name=b'RNM1d_1642007029', attrs={}), entry4(cookie=2406, name=b'RNM19_1642007029', attrs={}), entry4(cookie=2410, name=b'RNM18_1642007029', attrs={}), entry4(cookie=2414, name=b'RNM5_1642007029', attrs={}), entry4(cooki > > e=2418, name=b'RNM20_1642007029', attrs={}), entry4(cookie=2422, name=b'RNM17_1642007029', attrs={}), entry4(cookie=2426, name=b'RNM15_1642007029', attrs={}), entry4(cookie=2430, name=b'RNM14_1642007029', attrs={}), entry4(cookie=2434, name=b'RNM10_1642007029', attrs={}), entry4(cookie=2438, name=b'RNM11_1642007029', attrs={}), entry4(cookie=2442, name=b'RNM12_1642007029', attrs={}), entry4(cookie=2446, name=b'RNM16_1642007029', attrs={}), entry4(cookie=2450, name=b'RNM13_1642007029', attrs={}), entry4(cookie=2454, name=b'RNM3s_1642007029', attrs={}), entry4(cookie=2458, name=b'RNM3a_1642007029', attrs={}), entry4(cookie=2462, name=b'RNM3r_1642007029', attrs={}), entry4(cookie=2466, name=b'RNM3f_1642007029', attrs={}), entry4(cookie=2471, name=b'owner_DELEG9_1642007029', attrs={}), entry4(cookie=2475, name=b'DELEG23_1642007029', attrs={}), entry4(cookie=2479, name=b'DELEG1_1642007029', attrs={}), entry4(cookie=2483, name=b'DELEG4_1642007029', attrs={}), entry4(cookie=2487, name=b'DE > > LEG8_1642007029', attrs={}), entry4(cookie=2491, name=b'DELEG6_1642007029', attrs={}), entry4(cookie=2495, name=b'OPEN1_1642007029', attrs={}), entry4(cookie=2499, name=b'OPEN2_1642007029', attrs={}), entry4(cookie=2503, name=b'OPEN30_1642007029', attrs={}), entry4(cookie=2507, name=b'OPEN7_1642007029', attrs={}), entry4(cookie=2511, name=b'OPEN6_1642007029', attrs={}), entry4(cookie=2515, name=b'OPEN8_1642007029', attrs={}), entry4(cookie=2523, name=b'OPEN31_1642007029', attrs={}), entry4(cookie=2531, name=b'SEQ10b_1642007029_2', attrs={}), entry4(cookie=2535, name=b'SEQ9b_1642007029_2', attrs={}), entry4(cookie=2539, name=b'SEC2_1642007029', attrs={}), entry4(cookie=2543, name=b'SEC1_1642007029', attrs={}), entry4(cookie=2560, name=b'owner_RECC2_1642007029', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'link', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'dir', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'file2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM10_1642007029', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM11_1642007029', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'dir2', attrs={})] > >INFO :test.env:Called do_readdir() > >INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > >EID6h st_exchange_id.testUpdate111 : PASS > >EID6g st_exchange_id.testUpdate110 : RUNNING > >EID6g st_exchange_id.testUpdate110 : PASS > >EID6f st_exchange_id.testUpdate101 : RUNNING > >EID6f st_exchange_id.testUpdate101 : PASS > >EID6e st_exchange_id.testUpdate100 : RUNNING > >EID6e st_exchange_id.testUpdate100 : PASS > >EID6d st_exchange_id.testUpdate011 : RUNNING > >EID6d st_exchange_id.testUpdate011 : PASS > >EID6c st_exchange_id.testUpdate010 : RUNNING > >EID6c st_exchange_id.testUpdate010 : PASS > >EID6b st_exchange_id.testUpdate001 : RUNNING > >EID6b st_exchange_id.testUpdate001 : PASS > >EID6a st_exchange_id.testUpdate000 : RUNNING > >EID6a st_exchange_id.testUpdate000 : PASS > >EID1b st_exchange_id.testSupported2 : RUNNING > >EID1b st_exchange_id.testSupported2 : PASS > >EID7 st_exchange_id.testSupported1a : RUNNING > >EID7 st_exchange_id.testSupported1a : PASS > >EID1 st_exchange_id.testSupported : RUNNING > >EID1 st_exchange_id.testSupported : PASS > >EID8 st_exchange_id.testNotOnlyOp : RUNNING > >EID8 st_exchange_id.testNotOnlyOp : PASS > >EID5h st_exchange_id.testNoUpdate111 : RUNNING > >EID5h st_exchange_id.testNoUpdate111 : PASS > >EID5g st_exchange_id.testNoUpdate110 : RUNNING > >EID5g st_exchange_id.testNoUpdate110 : PASS > >EID5fb st_exchange_id.testNoUpdate101b : RUNNING > >EID5fb st_exchange_id.testNoUpdate101b : PASS > >EID5f st_exchange_id.testNoUpdate101 : RUNNING > >EID5f st_exchange_id.testNoUpdate101 : PASS > >EID5e st_exchange_id.testNoUpdate100 : RUNNING > >EID5e st_exchange_id.testNoUpdate100 : PASS > >EID5d st_exchange_id.testNoUpdate011 : RUNNING > >EID5d st_exchange_id.testNoUpdate011 : PASS > >EID5c st_exchange_id.testNoUpdate010 : RUNNING > >EID5c st_exchange_id.testNoUpdate010 : PASS > >EID5b st_exchange_id.testNoUpdate001 : RUNNING > >EID5b st_exchange_id.testNoUpdate001 : PASS > >EID5a st_exchange_id.testNoUpdate000 : RUNNING > >EID5a st_exchange_id.testNoUpdate000 : PASS > >EID2 st_exchange_id.testNoImplId : RUNNING > >EID2 st_exchange_id.testNoImplId : PASS > >EID3 st_exchange_id.testLongArray : RUNNING > >COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_exchange_id.py:testNoImplId', resarray=[nfs_resop4(resop=OP_EXCHANGE_ID, opexchange_id=EXCHANGE_ID4res(eir_status=NFS4ERR_BADXDR))]) > >EID3 st_exchange_id.testLongArray : PASS > >EID9 st_exchange_id.testLeasePeriod : RUNNING > >EID9 st_exchange_id.testLeasePeriod : PASS > >EID4 st_exchange_id.testBadFlags : RUNNING > >EID4 st_exchange_id.testBadFlags : PASS > >************************************************** > >************************************************** > >Command line asked for 172 of 260 tests > >Of those: 0 Skipped, 0 Failed, 0 Warned, 172 Passed > >FSTYP -- nfs > >PLATFORM -- Linux/x86_64 test3 5.16.0-00002-g616758bf6583 #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > >MKFS_OPTIONS -- test1.fieldses.org:/exports/xfs2 > >MOUNT_OPTIONS -- -overs=4.2,sec=sys -o context=system_u:object_r:root_t:s0 test1.fieldses.org:/exports/xfs2 /mnt2 > > > >generic/001 41s ... 41s > >generic/002 1s ... 1s > >generic/003 [not run] atime related mount options have no effect on nfs > >generic/004 [not run] O_TMPFILE is not supported > >generic/005 2s ... 2s > >generic/006 [expunged] > >generic/007 [expunged] > >generic/008 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/009 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/010 [not run] /root/xfstests-dev/src/dbtest not built > >generic/011 68s ... 65s > >generic/012 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/013 68s ... 66s > >generic/014 [expunged] > >generic/015 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/016 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/017 [expunged] > >generic/018 [not run] defragmentation not supported for fstype "nfs" > >generic/020 13s ... 13s > >generic/021 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/022 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/023 4s ... 3s > >generic/024 [not run] kernel doesn't support renameat2 syscall > >generic/025 [not run] kernel doesn't support renameat2 syscall > >generic/026 [not run] ACLs not supported by this filesystem type: nfs > >generic/027 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/028 5s ... 5s > >generic/029 1s ... 2s > >generic/030 3s ... 3s > >generic/031 [expunged] > >generic/032 [expunged] > >generic/033 [expunged] > >generic/034 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/035 [expunged] > >generic/036 11s ... 11s > >generic/037 21s ... 21s > >generic/038 [not run] FITRIM not supported on /mnt2 > >generic/039 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/040 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/041 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/043 [not run] nfs does not support shutdown > >generic/044 [not run] nfs does not support shutdown > >generic/045 [not run] nfs does not support shutdown > >generic/046 [not run] nfs does not support shutdown > >generic/047 [not run] nfs does not support shutdown > >generic/048 [not run] nfs does not support shutdown > >generic/049 [not run] nfs does not support shutdown > >generic/050 [not run] nfs does not support shutdown > >generic/051 [not run] nfs does not support shutdown > >generic/052 [not run] nfs does not support shutdown > >generic/053 [expunged] > >generic/054 [not run] nfs does not support shutdown > >generic/055 [not run] nfs does not support shutdown > >generic/056 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/057 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/058 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/059 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/060 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/061 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/062 [expunged] > >generic/063 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/064 [expunged] > >generic/065 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/066 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/067 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/068 [expunged] > >generic/069 29s ... 30s > >generic/070 60s ... 47s > >generic/071 [expunged] > >generic/072 24s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >generic/073 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/074 [expunged] > >generic/075 61s ... 56s > >generic/076 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >generic/077 [not run] ACLs not supported by this filesystem type: nfs > >generic/078 [not run] kernel doesn't support renameat2 syscall > >generic/079 [not run] file system doesn't support chattr +ia > >generic/080 3s ... 3s > >generic/081 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/082 [not run] disk quotas not supported by this filesystem type: nfs > >generic/083 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/084 5s ... 6s > >generic/085 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/086 2s ... 2s > >generic/087 [expunged] > >generic/088 [expunged] > >generic/089 [expunged] > >generic/090 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/091 [expunged] > >generic/092 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/093 [not run] attr namespace security not supported by this filesystem type: nfs > >generic/094 [expunged] > >generic/095 [not run] fio utility required, skipped this test > >generic/096 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/097 [not run] attr namespace trusted not supported by this filesystem type: nfs > >generic/098 2s ... 2s > >generic/099 [not run] ACLs not supported by this filesystem type: nfs > >generic/100 [expunged] > >generic/101 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/102 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/103 3s ... 3s > >generic/104 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/105 [expunged] > >generic/106 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/107 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/108 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/109 57s ... 56s > >generic/110 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/111 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/112 61s ... 59s > >generic/113 [expunged] > >generic/114 [not run] device block size: 4096 greater than 512 > >generic/115 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/116 1s ... 2s > >generic/117 [expunged] > >generic/118 2s ... 1s > >generic/119 3s ... 3s > >generic/120 [not run] atime related mount options have no effect on nfs > >generic/121 [not run] Dedupe not supported by test filesystem type: nfs > >generic/122 [not run] Dedupe not supported by test filesystem type: nfs > >generic/123 [not run] fsgqa user not defined. > >generic/124 60s ... 54s > >generic/126 [expunged] > >generic/127 [expunged] > >generic/128 [not run] fsgqa user not defined. > >generic/129 [expunged] > >generic/130 19s ... 18s > >generic/131 2s ... 2s > >generic/132 20s ... 19s > >generic/133 [expunged] > >generic/134 2s ... 2s > >generic/135 2s ... 1s > >generic/136 [not run] Dedupe not supported by test filesystem type: nfs > >generic/137 [not run] Dedupe not supported by test filesystem type: nfs > >generic/138 3s ... 2s > >generic/139 3s ... 3s > >generic/140 2s ... 3s > >generic/141 1s ... 1s > >generic/142 10s ... 8s > >generic/143 246s ... 242s > >generic/144 2s ... 2s > >generic/145 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >generic/146 3s ... 2s > >generic/147 [not run] xfs_io finsert failed (old kernel/wrong fs?) > >generic/148 2s ... 2s > >generic/149 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/150 19s ... 17s > >generic/151 21s ... 20s > >generic/152 22s ... 20s > >generic/153 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >generic/154 [expunged] > >generic/155 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/156 [not run] xfs_io funshare failed (old kernel/wrong fs?) > >generic/157 88s ... 86s > >generic/158 [not run] Dedupe not supported by test filesystem type: nfs > >generic/159 [not run] file system doesn't support chattr +i > >generic/160 [not run] file system doesn't support chattr +i > >generic/161 18s ... 20s > >generic/162 [not run] Dedupe not supported by scratch filesystem type: nfs > >generic/163 [not run] Dedupe not supported by scratch filesystem type: nfs > >generic/164 71s ... 70s > >generic/165 65s ... 60s > >generic/166 207s ... 182s > >generic/167 46s ... 42s > >generic/168 319s ... 280s > >generic/169 2s ... 2s > >generic/170 382s ... 361s > >generic/171 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/172 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/173 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/174 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/175 370s ... 235s > >generic/176 [not run] Insufficient space for stress test; would only create 32768 extents. > >generic/177 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/178 5s ... 5s > >generic/179 1s ... 1s > >generic/180 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/181 4s ... 4s > >generic/182 [not run] Dedupe not supported by test filesystem type: nfs > >generic/183 6s ... 6s > >generic/184 [expunged] > >generic/185 6s ... 6s > >generic/186 832s ... 813s > >generic/187 829s ... 815s > >generic/188 8s ... 6s > >generic/189 4s ... 4s > >generic/190 5s ... 5s > >generic/191 5s ... 4s > >generic/192 [not run] atime related mount options have no effect on nfs > >generic/193 [not run] fsgqa user not defined. > >generic/194 6s ... 6s > >generic/195 6s ... 6s > >generic/196 4s ... 4s > >generic/197 4s ... 5s > >generic/198 6s ... 6s > >generic/199 6s ... 6s > >generic/200 6s ... 5s > >generic/201 5s ... 3s > >generic/202 2s ... 2s > >generic/203 2s ... 3s > >generic/204 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/205 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/206 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/207 22s ... 20s > >generic/208 [expunged] > >generic/209 33s ... 45s > >generic/210 0s ... 0s > >generic/211 2s ... 1s > >generic/212 0s ... 0s > >generic/213 1s ... 0s > >generic/214 1s ... 1s > >generic/215 3s ... 3s > >generic/216 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/217 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/218 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/219 [not run] disk quotas not supported by this filesystem type: nfs > >generic/220 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/221 1s ... 2s > >generic/222 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/223 [not run] can't mkfs nfs with geometry > >generic/224 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/225 [expunged] > >generic/226 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/227 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/228 1s ... 1s > >generic/229 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/230 [not run] disk quotas not supported by this filesystem type: nfs > >generic/231 [not run] disk quotas not supported by this filesystem type: nfs > >generic/232 [not run] disk quotas not supported by this filesystem type: nfs > >generic/233 [not run] disk quotas not supported by this filesystem type: nfs > >generic/234 [not run] disk quotas not supported by this filesystem type: nfs > >generic/235 [not run] disk quotas not supported by this filesystem type: nfs > >generic/236 2s ... 2s > >generic/237 [not run] ACLs not supported by this filesystem type: nfs > >generic/238 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >generic/239 32s ... 31s > >generic/240 1s ... 1s > >generic/241 [not run] dbench not found > >generic/242 89s ... 85s > >generic/243 89s ... 81s > >generic/244 [not run] disk quotas not supported by this filesystem type: nfs > >generic/245 1s ... 1s > >generic/246 0s ... 0s > >generic/247 85s ... 81s > >generic/248 1s ... 0s > >generic/249 3s ... 3s > >generic/250 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/252 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/253 3s ... 2s > >generic/254 2s ... 3s > >generic/255 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/256 [not run] fsgqa user not defined. > >generic/257 4s ... 5s > >generic/258 1s ... 0s > >generic/259 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/260 [not run] FITRIM not supported on /mnt2 > >generic/261 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >generic/262 [not run] xfs_io finsert failed (old kernel/wrong fs?) > >generic/263 [expunged] > >generic/264 [not run] xfs_io funshare failed (old kernel/wrong fs?) > >generic/265 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/266 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/267 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/268 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/269 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/270 [not run] disk quotas not supported by this filesystem type: nfs > >generic/271 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/272 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/273 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/274 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > >generic/275 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/276 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/277 [expunged] > >generic/278 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/279 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/280 [not run] disk quotas not supported by this filesystem type: nfs > >generic/281 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/282 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/283 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/284 4s ... 3s > >generic/285 2s ... 2s > >generic/286 19s ... 19s > >generic/287 4s ... 4s > >generic/288 [not run] FITRIM not supported on /mnt2 > >generic/289 5s ... 5s > >generic/290 5s ... 5s > >generic/291 6s ... 6s > >generic/292 6s ... 5s > >generic/293 7s ... 7s > >generic/294 [expunged] > >generic/295 8s ... 7s > >generic/296 4s ... 3s > >generic/297 [not run] NFS can't interrupt clone operations > >generic/298 [not run] NFS can't interrupt clone operations > >generic/299 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/300 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/301 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/302 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/303 1s ... 1s > >generic/304 [not run] Dedupe not supported by test filesystem type: nfs > >generic/305 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/306 1s ... 1s > >generic/307 3s ... [not run] ACLs not supported by this filesystem type: nfs > >generic/308 1s ... 0s > >generic/309 1s ... 2s > >generic/310 [expunged] > >generic/311 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/312 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/313 4s ... 5s > >generic/314 [not run] fsgqa user not defined. > >generic/315 15s ... [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > >generic/316 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/317 [not run] fsgqa user not defined. > >generic/318 [expunged] > >generic/319 [not run] ACLs not supported by this filesystem type: nfs > >generic/320 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/321 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/322 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/323 [expunged] > >generic/324 [not run] defragmentation not supported for fstype "nfs" > >generic/325 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/326 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/327 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/328 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/329 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/330 10s ... 9s > >generic/331 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/332 9s ... 8s > >generic/333 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/334 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/335 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/336 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/337 1s ... 1s > >generic/338 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/339 [expunged] > >generic/340 41s ... 42s > >generic/341 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/342 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/343 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/344 86s ... 84s > >generic/345 89s ... 84s > >generic/346 41s ... 38s > >generic/347 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/348 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/352 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/353 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/354 30s ... 29s > >generic/355 [not run] fsgqa user not defined. > >generic/356 3s ... 2s > >generic/357 [expunged] > >generic/358 58s ... 55s > >generic/359 15s ... 15s > >generic/360 0s ... 1s > >generic/361 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/362 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/363 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/364 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/365 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/366 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/367 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/368 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/369 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/370 [not run] this test requires richacl support on $SCRATCH_DEV > >generic/371 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/372 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/373 1s ... 1s > >generic/374 [not run] Dedupe not supported by scratch filesystem type: nfs > >generic/375 [not run] ACLs not supported by this filesystem type: nfs > >generic/376 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/377 1s ... 1s > >generic/378 [not run] fsgqa user not defined. > >generic/379 [not run] disk quotas not supported by this filesystem type: nfs > >generic/380 [not run] disk quotas not supported by this filesystem type: nfs > >generic/381 [not run] disk quotas not supported by this filesystem type: nfs > >generic/382 [not run] disk quotas not supported by this filesystem type: nfs > >generic/383 [not run] disk quotas not supported by this filesystem type: nfs > >generic/384 [not run] disk quotas not supported by this filesystem type: nfs > >generic/385 [not run] disk quotas not supported by this filesystem type: nfs > >generic/386 [not run] disk quotas not supported by this filesystem type: nfs > >generic/387 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/388 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >generic/389 [not run] O_TMPFILE is not supported > >generic/390 9s ... [not run] nfs does not support freezing > >generic/391 24s ... 22s > >generic/392 [not run] nfs does not support shutdown > >generic/393 2s ... 2s > >generic/394 2s ... 1s > >generic/395 [not run] No encryption support for nfs > >generic/396 [not run] No encryption support for nfs > >generic/397 [not run] No encryption support for nfs > >generic/398 [not run] No encryption support for nfs > >generic/399 [not run] No encryption support for nfs > >generic/400 [not run] disk quotas not supported by this filesystem type: nfs > >generic/401 1s ... 2s > >generic/402 [not run] filesystem nfs timestamp bounds are unknown > >generic/403 [expunged] > >generic/404 [not run] xfs_io finsert failed (old kernel/wrong fs?) > >generic/405 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/406 9s ... 8s > >generic/407 2s ... 1s > >generic/408 [not run] Dedupe not supported by test filesystem type: nfs > >generic/409 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >generic/410 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >generic/411 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >generic/412 2s ... 1s > >generic/413 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed > >generic/414 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >generic/415 15s ... 16s > >generic/416 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/417 [not run] nfs does not support shutdown > >generic/418 [not run] require test1.fieldses.org:/exports/xfs to be valid block disk > >generic/419 [not run] No encryption support for nfs > >generic/420 1s ... 0s > >generic/421 [not run] No encryption support for nfs > >generic/422 [expunged] > >generic/423 [expunged] > >generic/424 [not run] file system doesn't support any of /usr/bin/chattr +a/+c/+d/+i > >generic/425 [expunged] > >generic/426 [expunged] > >generic/427 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/428 1s ... 0s > >generic/429 [not run] No encryption support for nfs > >generic/430 1s ... 1s > >generic/431 1s ... 1s > >generic/432 1s ... 1s > >generic/433 1s ... 1s > >generic/434 [expunged] > >generic/435 [not run] No encryption support for nfs > >generic/436 1s ... 2s > >generic/437 21s ... 20s > >generic/438 [expunged] > >generic/439 2s ... 2s > >generic/440 [not run] No encryption support for nfs > >generic/441 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/443 0s ... 1s > >generic/444 [not run] ACLs not supported by this filesystem type: nfs > >generic/445 1s ... 2s > >generic/446 [expunged] > >generic/447 [not run] Insufficient space for stress test; would only create 32768 extents (10737418240/21281112064 blocks). > >generic/448 1s ... 2s > >generic/449 [not run] ACLs not supported by this filesystem type: nfs > >generic/450 1s ... 1s > >generic/451 31s ... 31s > >generic/452 1s ... 1s > >generic/453 2s ... 2s > >generic/454 3s ... 2s > >generic/455 [not run] This test requires a valid $LOGWRITES_DEV > >generic/456 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/457 [not run] This test requires a valid $LOGWRITES_DEV > >generic/458 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >generic/459 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/460 36s ... 37s > >generic/461 [not run] nfs does not support shutdown > >generic/462 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed > >generic/463 1s ... 1s > >generic/464 73s ... 73s > >generic/465 [expunged] > >generic/466 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/467 4s ... 4s > >generic/468 [not run] nfs does not support shutdown > >generic/469 [expunged] > >generic/470 [not run] This test requires a valid $LOGWRITES_DEV > >generic/471 [not run] xfs_io pwrite -V 1 -b 4k -N failed (old kernel/wrong fs?) > >generic/472 2s ... 2s > >generic/474 [not run] nfs does not support shutdown > >generic/475 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/476 [expunged] > >generic/477 4s ... 4s > >generic/478 [expunged] > >generic/479 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/480 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/481 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/482 [not run] This test requires a valid $LOGWRITES_DEV > >generic/483 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/484 [expunged] > >generic/485 [expunged] > >generic/486 [expunged] > >generic/487 [not run] This test requires a valid $SCRATCH_LOGDEV > >generic/488 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/489 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/490 1s ... 2s > >generic/491 [expunged] > >generic/492 [not run] xfs_io label failed (old kernel/wrong fs?) > >generic/493 [not run] Dedupe not supported by scratch filesystem type: nfs > >generic/494 3s ... 2s > >generic/495 2s ... 2s > >generic/496 7s ... 7s > >generic/497 2s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >generic/498 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/499 [expunged] > >generic/500 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/501 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/502 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/503 [expunged] > >generic/504 0s ... 0s > >generic/505 [not run] nfs does not support shutdown > >generic/506 [not run] nfs does not support shutdown > >generic/507 [not run] file system doesn't support chattr +AsSu > >generic/508 [not run] lsattr not supported by test filesystem type: nfs > >generic/509 [not run] O_TMPFILE is not supported > >generic/510 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/511 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > >generic/512 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/513 [expunged] > >generic/514 [not run] fsgqa user not defined. > >generic/515 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/516 [not run] Dedupe not supported by test filesystem type: nfs > >generic/517 [not run] Dedupe not supported by scratch filesystem type: nfs > >generic/518 2s ... 2s > >generic/519 [expunged] > >generic/520 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/523 1s ... 1s > >generic/524 25s ... 27s > >generic/525 1s ... 2s > >generic/526 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/527 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/528 [not run] inode creation time not supported by this filesystem > >generic/529 [not run] ACLs not supported by this filesystem type: nfs > >generic/530 [not run] nfs does not support shutdown > >generic/531 [expunged] > >generic/532 1s ... 1s > >generic/533 1s ... 1s > >generic/534 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/535 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/536 [not run] nfs does not support shutdown > >generic/537 [not run] FSTRIM not supported > >generic/538 26s ... 26s > >generic/539 1s ... 1s > >generic/540 6s ... 6s > >generic/541 7s ... 6s > >generic/542 6s ... 6s > >generic/543 7s ... 6s > >generic/544 6s ... 7s > >generic/545 [not run] file system doesn't support chattr +i > >generic/546 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/547 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/548 [not run] No encryption support for nfs > >generic/549 [not run] No encryption support for nfs > >generic/550 [not run] No encryption support for nfs > >generic/551 [expunged] > >generic/552 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/553 [not run] xfs_io chattr +i failed (old kernel/wrong fs?) > >generic/554 3s ... 2s > >generic/555 [not run] xfs_io chattr +ia failed (old kernel/wrong fs?) > >generic/556 [not run] nfs does not support casefold feature > >generic/557 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/558 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/559 [not run] duperemove utility required, skipped this test > >generic/560 [not run] duperemove utility required, skipped this test > >generic/561 [not run] duperemove utility required, skipped this test > >generic/562 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >generic/563 [not run] Cgroup2 doesn't support io controller io > >generic/564 2s ... 2s > >generic/565 [expunged] > >generic/566 [not run] disk quotas not supported by this filesystem type: nfs > >generic/567 1s ... 2s > >generic/568 1s ... 1s > >generic/569 2s ... 3s > >generic/570 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/571 [expunged] > >generic/572 [not run] fsverity utility required, skipped this test > >generic/573 [not run] fsverity utility required, skipped this test > >generic/574 [not run] fsverity utility required, skipped this test > >generic/575 [not run] fsverity utility required, skipped this test > >generic/576 [not run] fsverity utility required, skipped this test > >generic/577 [not run] fsverity utility required, skipped this test > >generic/578 [expunged] > >generic/579 [not run] fsverity utility required, skipped this test > >generic/580 [not run] No encryption support for nfs > >generic/581 [not run] fsgqa user not defined. > >generic/582 [not run] No encryption support for nfs > >generic/583 [not run] No encryption support for nfs > >generic/584 [not run] No encryption support for nfs > >generic/585 8s ... [not run] kernel doesn't support renameat2 syscall > >generic/586 9s ... 9s > >generic/587 [not run] fsgqa user not defined. > >generic/588 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >generic/589 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >generic/590 281s ... 276s > >generic/591 1s ... 1s > >generic/592 [not run] No encryption support for nfs > >generic/593 [not run] No encryption support for nfs > >generic/594 [not run] disk quotas not supported by this filesystem type: nfs > >generic/595 [not run] No encryption support for nfs > >generic/596 [not run] file system doesn't support chattr +S > >generic/597 [not run] fsgqa2 user not defined. > >generic/598 [not run] fsgqa2 user not defined. > >generic/599 [not run] nfs does not support shutdown > >generic/600 [not run] disk quotas not supported by this filesystem type: nfs > >generic/601 [not run] disk quotas not supported by this filesystem type: nfs > >generic/602 [not run] No encryption support for nfs > >generic/603 [not run] disk quotas not supported by this filesystem type: nfs > >generic/604 6s ... 5s > >generic/605 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > >generic/606 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > >generic/607 [expunged] > >generic/608 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > >generic/609 1s ... 0s > >generic/610 [expunged] > >generic/611 1s ... 2s > >nfs/001 3s ... 2s > >shared/002 [not run] not suitable for this filesystem type: nfs > >shared/032 [not run] not suitable for this filesystem type: nfs > >shared/298 [not run] not suitable for this filesystem type: nfs > >Ran: generic/001 generic/002 generic/003 generic/004 generic/005 generic/008 generic/009 generic/010 generic/011 generic/012 generic/013 generic/015 generic/016 generic/018 generic/020 generic/021 generic/022 generic/023 generic/024 generic/025 generic/026 generic/027 generic/028 generic/029 generic/030 generic/034 generic/036 generic/037 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/069 generic/070 generic/072 generic/073 generic/075 generic/076 generic/077 generic/078 generic/079 generic/080 generic/081 generic/082 generic/083 generic/084 generic/085 generic/086 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/098 generic/099 generic/101 generic/102 generic/103 generic/104 generic/1 > > 06 generic/107 generic/108 generic/109 generic/110 generic/111 generic/112 generic/114 generic/115 generic/116 generic/118 generic/119 generic/120 generic/121 generic/122 generic/123 generic/124 generic/128 generic/130 generic/131 generic/132 generic/134 generic/135 generic/136 generic/137 generic/138 generic/139 generic/140 generic/141 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/169 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/193 generic/194 generic/195 generic/196 generic/197 generic/19 > > 8 generic/199 generic/200 generic/201 generic/202 generic/203 generic/204 generic/205 generic/206 generic/207 generic/209 generic/210 generic/211 generic/212 generic/213 generic/214 generic/215 generic/216 generic/217 generic/218 generic/219 generic/220 generic/221 generic/222 generic/223 generic/224 generic/226 generic/227 generic/228 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/236 generic/237 generic/238 generic/239 generic/240 generic/241 generic/242 generic/243 generic/244 generic/245 generic/246 generic/247 generic/248 generic/249 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/257 generic/258 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/285 generic/286 > > generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/306 generic/307 generic/308 generic/309 generic/311 generic/312 generic/313 generic/314 generic/315 generic/316 generic/317 generic/319 generic/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/337 generic/338 generic/340 generic/341 generic/342 generic/343 generic/344 generic/345 generic/346 generic/347 generic/348 generic/352 generic/353 generic/354 generic/355 generic/356 generic/358 generic/359 generic/360 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/373 generic/374 generic/375 generic/376 generic/377 generic/378 > > generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/391 generic/392 generic/393 generic/394 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/401 generic/402 generic/404 generic/405 generic/406 generic/407 generic/408 generic/409 generic/410 generic/411 generic/412 generic/413 generic/414 generic/415 generic/416 generic/417 generic/418 generic/419 generic/420 generic/421 generic/424 generic/427 generic/428 generic/429 generic/430 generic/431 generic/432 generic/433 generic/435 generic/436 generic/437 generic/439 generic/440 generic/441 generic/443 generic/444 generic/445 generic/447 generic/448 generic/449 generic/450 generic/451 generic/452 generic/453 generic/454 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/464 generic/466 generic/467 generic/468 generic/470 generic/471 generic/472 g > > eneric/474 generic/475 generic/477 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/490 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/500 generic/501 generic/502 generic/504 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/518 generic/520 generic/523 generic/524 generic/525 generic/526 generic/527 generic/528 generic/529 generic/530 generic/532 generic/533 generic/534 generic/535 generic/536 generic/537 generic/538 generic/539 generic/540 generic/541 generic/542 generic/543 generic/544 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/554 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/564 generic/566 generic/567 generic/568 generic/569 generic/570 generic/572 ge > > neric/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/586 generic/587 generic/588 generic/589 generic/590 generic/591 generic/592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/604 generic/605 generic/606 generic/608 generic/609 generic/611 nfs/001 shared/002 shared/032 shared/298 > >Not run: generic/003 generic/004 generic/008 generic/009 generic/010 generic/012 generic/015 generic/016 generic/018 generic/021 generic/022 generic/024 generic/025 generic/026 generic/027 generic/034 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/072 generic/073 generic/076 generic/077 generic/078 generic/079 generic/081 generic/082 generic/083 generic/085 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/099 generic/101 generic/102 generic/104 generic/106 generic/107 generic/108 generic/110 generic/111 generic/114 generic/115 generic/120 generic/121 generic/122 generic/123 generic/128 generic/136 generic/137 generic/145 generic/147 generic/149 generic/153 generic/155 generic/156 gener > > ic/158 generic/159 generic/160 generic/162 generic/163 generic/171 generic/172 generic/173 generic/174 generic/176 generic/177 generic/180 generic/182 generic/192 generic/193 generic/204 generic/205 generic/206 generic/216 generic/217 generic/218 generic/219 generic/220 generic/222 generic/223 generic/224 generic/226 generic/227 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/237 generic/238 generic/241 generic/244 generic/250 generic/252 generic/255 generic/256 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/288 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/304 generic/305 generic/307 generic/311 generic/312 generic/314 generic/315 generic/316 generic/317 generic/319 generi > > c/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/331 generic/333 generic/334 generic/335 generic/336 generic/338 generic/341 generic/342 generic/343 generic/347 generic/348 generic/352 generic/353 generic/355 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/374 generic/375 generic/376 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/392 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/402 generic/404 generic/405 generic/408 generic/409 generic/410 generic/411 generic/413 generic/414 generic/416 generic/417 generic/418 generic/419 generic/421 generic/424 generic/427 generic/429 generic/435 generic/440 generic/441 generic/444 generic/447 generic/449 generic/455 generic/456 generic > > /457 generic/458 generic/459 generic/461 generic/462 generic/466 generic/468 generic/470 generic/471 generic/474 generic/475 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/492 generic/493 generic/497 generic/498 generic/500 generic/501 generic/502 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/520 generic/526 generic/527 generic/528 generic/529 generic/530 generic/534 generic/535 generic/536 generic/537 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/566 generic/570 generic/572 generic/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/587 generic/588 generic/589 generic/ > > 592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/605 generic/606 generic/608 shared/002 shared/032 shared/298 > >Passed all 538 tests > > > >[ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > >[ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 > >[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' > >[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' > >[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' > >[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > >[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. > >[ 0.000000] signal: max sigframe size: 1776 > >[ 0.000000] BIOS-provided physical RAM map: > >[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable > >[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdbfff] usable > >[ 0.000000] BIOS-e820: [mem 0x000000007ffdc000-0x000000007fffffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved > >[ 0.000000] NX (Execute Disable) protection: active > >[ 0.000000] SMBIOS 2.8 present. > >[ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.14.0-6.fc35 04/01/2014 > >[ 0.000000] tsc: Fast TSC calibration using PIT > >[ 0.000000] tsc: Detected 3591.787 MHz processor > >[ 0.000930] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved > >[ 0.000938] e820: remove [mem 0x000a0000-0x000fffff] usable > >[ 0.000946] last_pfn = 0x7ffdc max_arch_pfn = 0x400000000 > >[ 0.000979] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT > >[ 0.004415] found SMP MP-table at [mem 0x000f5c10-0x000f5c1f] > >[ 0.004436] Using GB pages for direct mapping > >[ 0.004911] RAMDISK: [mem 0x34784000-0x363b9fff] > >[ 0.004919] ACPI: Early table checksum verification disabled > >[ 0.004924] ACPI: RSDP 0x00000000000F5A20 000014 (v00 BOCHS ) > >[ 0.004934] ACPI: RSDT 0x000000007FFE2066 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004943] ACPI: FACP 0x000000007FFE1E8E 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004953] ACPI: DSDT 0x000000007FFE0040 001E4E (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004960] ACPI: FACS 0x000000007FFE0000 000040 > >[ 0.004966] ACPI: APIC 0x000000007FFE1F82 000080 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004972] ACPI: MCFG 0x000000007FFE2002 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004978] ACPI: WAET 0x000000007FFE203E 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004984] ACPI: Reserving FACP table memory at [mem 0x7ffe1e8e-0x7ffe1f81] > >[ 0.004988] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1e8d] > >[ 0.004991] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] > >[ 0.004993] ACPI: Reserving APIC table memory at [mem 0x7ffe1f82-0x7ffe2001] > >[ 0.004996] ACPI: Reserving MCFG table memory at [mem 0x7ffe2002-0x7ffe203d] > >[ 0.004999] ACPI: Reserving WAET table memory at [mem 0x7ffe203e-0x7ffe2065] > >[ 0.008477] Zone ranges: > >[ 0.008484] DMA [mem 0x0000000000001000-0x0000000000ffffff] > >[ 0.008491] DMA32 [mem 0x0000000001000000-0x000000007ffdbfff] > >[ 0.008495] Normal empty > >[ 0.008499] Movable zone start for each node > >[ 0.008518] Early memory node ranges > >[ 0.008521] node 0: [mem 0x0000000000001000-0x000000000009efff] > >[ 0.008535] node 0: [mem 0x0000000000100000-0x000000007ffdbfff] > >[ 0.008538] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdbfff] > >[ 0.008548] On node 0, zone DMA: 1 pages in unavailable ranges > >[ 0.008622] On node 0, zone DMA: 97 pages in unavailable ranges > >[ 0.016858] On node 0, zone DMA32: 36 pages in unavailable ranges > >[ 0.048098] kasan: KernelAddressSanitizer initialized > >[ 0.048939] ACPI: PM-Timer IO Port: 0x608 > >[ 0.048950] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) > >[ 0.048993] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 > >[ 0.049002] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > >[ 0.049006] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) > >[ 0.049009] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > >[ 0.049012] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) > >[ 0.049015] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) > >[ 0.049021] ACPI: Using ACPI (MADT) for SMP configuration information > >[ 0.049024] TSC deadline timer available > >[ 0.049030] smpboot: Allowing 2 CPUs, 0 hotplug CPUs > >[ 0.049050] [mem 0xc0000000-0xfed1bfff] available for PCI devices > >[ 0.049055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns > >[ 0.064532] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 > >[ 0.064789] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u1048576 > >[ 0.064798] pcpu-alloc: s231440 r8192 d30704 u1048576 alloc=1*2097152 > >[ 0.064802] pcpu-alloc: [0] 0 1 > >[ 0.064836] Built 1 zonelists, mobility grouping on. Total pages: 516828 > >[ 0.064886] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 > >[ 0.064998] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. > >[ 0.065286] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) > >[ 0.065405] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) > >[ 0.065443] mem auto-init: stack:off, heap alloc:off, heap free:off > >[ 0.217018] Memory: 1653208K/2096616K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 443152K reserved, 0K cma-reserved) > >[ 0.218927] Kernel/User page tables isolation: enabled > >[ 0.219010] ftrace: allocating 48466 entries in 190 pages > >[ 0.236213] ftrace: allocated 190 pages with 6 groups > >[ 0.236405] Dynamic Preempt: full > >[ 0.236588] Running RCU self tests > >[ 0.236599] rcu: Preemptible hierarchical RCU implementation. > >[ 0.236602] rcu: RCU lockdep checking is enabled. > >[ 0.236604] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. > >[ 0.236608] Trampoline variant of Tasks RCU enabled. > >[ 0.236610] Rude variant of Tasks RCU enabled. > >[ 0.236612] Tracing variant of Tasks RCU enabled. > >[ 0.236614] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. > >[ 0.236617] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 > >[ 0.246098] NR_IRQS: 4352, nr_irqs: 56, preallocated irqs: 16 > >[ 0.246516] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 > >[ 0.252863] Console: colour VGA+ 80x25 > >[ 0.285411] printk: console [tty0] enabled > >[ 0.341424] printk: console [ttyS0] enabled > >[ 0.342010] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar > >[ 0.343034] ... MAX_LOCKDEP_SUBCLASSES: 8 > >[ 0.343564] ... MAX_LOCK_DEPTH: 48 > >[ 0.344099] ... MAX_LOCKDEP_KEYS: 8192 > >[ 0.344657] ... CLASSHASH_SIZE: 4096 > >[ 0.345239] ... MAX_LOCKDEP_ENTRIES: 32768 > >[ 0.345872] ... MAX_LOCKDEP_CHAINS: 65536 > >[ 0.346470] ... CHAINHASH_SIZE: 32768 > >[ 0.347042] memory used by lock dependency info: 6365 kB > >[ 0.347732] memory used for stack traces: 4224 kB > >[ 0.349158] per task-struct memory footprint: 1920 bytes > >[ 0.350184] ACPI: Core revision 20210930 > >[ 0.351362] APIC: Switch to symmetric I/O mode setup > >[ 0.353278] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c604d3dd7, max_idle_ns: 440795267083 ns > >[ 0.354743] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.57 BogoMIPS (lpj=14367148) > >[ 0.356135] pid_max: default: 32768 minimum: 301 > >[ 0.356866] LSM: Security Framework initializing > >[ 0.357606] SELinux: Initializing. > >[ 0.358214] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >[ 0.358743] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >[ 0.358743] x86/cpu: User Mode Instruction Prevention (UMIP) activated > >[ 0.358743] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 > >[ 0.358743] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 > >[ 0.358743] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization > >[ 0.358743] Spectre V2 : Mitigation: Full generic retpoline > >[ 0.358743] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch > >[ 0.358743] Spectre V2 : Enabling Restricted Speculation for firmware calls > >[ 0.358743] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier > >[ 0.358743] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl > >[ 0.358743] SRBDS: Unknown: Dependent on hypervisor status > >[ 0.358743] MDS: Mitigation: Clear CPU buffers > >[ 0.358743] Freeing SMP alternatives memory: 44K > >[ 0.358743] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) > >[ 0.358743] Running RCU-tasks wait API self tests > >[ 0.458995] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. > >[ 0.460503] rcu: Hierarchical SRCU implementation. > >[ 0.462157] NMI watchdog: Perf NMI watchdog permanently disabled > >[ 0.463002] smp: Bringing up secondary CPUs ... > >[ 0.464950] x86: Booting SMP configuration: > >[ 0.465537] .... node #0, CPUs: #1 > >[ 0.112317] smpboot: CPU 1 Converting physical 0 to logical die 1 > >[ 0.547215] smp: Brought up 1 node, 2 CPUs > >[ 0.547814] smpboot: Max logical packages: 2 > >[ 0.548434] smpboot: Total of 2 processors activated (14386.42 BogoMIPS) > >[ 0.550634] devtmpfs: initialized > >[ 0.554801] Callback from call_rcu_tasks_trace() invoked. > >[ 0.556772] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns > >[ 0.558148] futex hash table entries: 512 (order: 4, 65536 bytes, linear) > >[ 0.560130] NET: Registered PF_NETLINK/PF_ROUTE protocol family > >[ 0.561904] audit: initializing netlink subsys (disabled) > >[ 0.562980] Callback from call_rcu_tasks_rude() invoked. > >[ 0.562980] audit: type=2000 audit(1642005631.208:1): state=initialized audit_enabled=0 res=1 > >[ 0.564434] thermal_sys: Registered thermal governor 'step_wise' > >[ 0.564897] thermal_sys: Registered thermal governor 'user_space' > >[ 0.565807] cpuidle: using governor ladder > >[ 0.567202] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) > >[ 0.568443] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 > >[ 0.569384] PCI: Using configuration type 1 for base access > >[ 0.595171] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. > >[ 0.597094] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages > >[ 0.598409] cryptd: max_cpu_qlen set to 1000 > >[ 0.666772] raid6: avx2x4 gen() 33460 MB/s > >[ 0.670759] Callback from call_rcu_tasks() invoked. > >[ 0.738747] raid6: avx2x4 xor() 12834 MB/s > >[ 0.806748] raid6: avx2x2 gen() 31395 MB/s > >[ 0.874753] raid6: avx2x2 xor() 16250 MB/s > >[ 0.942748] raid6: avx2x1 gen() 21106 MB/s > >[ 1.010748] raid6: avx2x1 xor() 13944 MB/s > >[ 1.078749] raid6: sse2x4 gen() 15737 MB/s > >[ 1.146749] raid6: sse2x4 xor() 8765 MB/s > >[ 1.214864] raid6: sse2x2 gen() 15874 MB/s > >[ 1.282747] raid6: sse2x2 xor() 9860 MB/s > >[ 1.350748] raid6: sse2x1 gen() 12302 MB/s > >[ 1.418748] raid6: sse2x1 xor() 8642 MB/s > >[ 1.419372] raid6: using algorithm avx2x4 gen() 33460 MB/s > >[ 1.420108] raid6: .... xor() 12834 MB/s, rmw enabled > >[ 1.420790] raid6: using avx2x2 recovery algorithm > >[ 1.421810] ACPI: Added _OSI(Module Device) > >[ 1.422358] ACPI: Added _OSI(Processor Device) > >[ 1.422750] ACPI: Added _OSI(3.0 _SCP Extensions) > >[ 1.423428] ACPI: Added _OSI(Processor Aggregator Device) > >[ 1.424154] ACPI: Added _OSI(Linux-Dell-Video) > >[ 1.424733] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) > >[ 1.425493] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) > >[ 1.457880] ACPI: 1 ACPI AML tables successfully acquired and loaded > >[ 1.482752] ACPI: Interpreter enabled > >[ 1.482752] ACPI: PM: (supports S0 S5) > >[ 1.482761] ACPI: Using IOAPIC for interrupt routing > >[ 1.483660] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug > >[ 1.486749] ACPI: Enabled 1 GPEs in block 00 to 3F > >[ 1.519179] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) > >[ 1.520193] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments HPX-Type3] > >[ 1.521406] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control > >[ 1.524178] PCI host bridge to bus 0000:00 > >[ 1.525561] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] > >[ 1.526771] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] > >[ 1.527754] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] > >[ 1.528814] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window] > >[ 1.529801] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] > >[ 1.530753] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] > >[ 1.531784] pci_bus 0000:00: root bus resource [bus 00-ff] > >[ 1.532720] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 > >[ 1.535064] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000 > >[ 1.538691] pci 0000:00:01.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] > >[ 1.541347] pci 0000:00:01.0: reg 0x14: [mem 0xf8000000-0xfbffffff] > >[ 1.548136] pci 0000:00:01.0: reg 0x18: [mem 0xfce14000-0xfce15fff] > >[ 1.551749] pci 0000:00:01.0: reg 0x1c: [io 0xc040-0xc05f] > >[ 1.562234] pci 0000:00:01.0: reg 0x30: [mem 0xfce00000-0xfce0ffff pref] > >[ 1.564193] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400 > >[ 1.566392] pci 0000:00:02.0: reg 0x10: [mem 0xfce16000-0xfce16fff] > >[ 1.570855] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 > >[ 1.572957] pci 0000:00:02.1: reg 0x10: [mem 0xfce17000-0xfce17fff] > >[ 1.576544] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 > >[ 1.578655] pci 0000:00:02.2: reg 0x10: [mem 0xfce18000-0xfce18fff] > >[ 1.584327] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 > >[ 1.587400] pci 0000:00:02.3: reg 0x10: [mem 0xfce19000-0xfce19fff] > >[ 1.591318] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 > >[ 1.594121] pci 0000:00:02.4: reg 0x10: [mem 0xfce1a000-0xfce1afff] > >[ 1.601524] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 > >[ 1.603552] pci 0000:00:02.5: reg 0x10: [mem 0xfce1b000-0xfce1bfff] > >[ 1.609104] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 > >[ 1.611147] pci 0000:00:02.6: reg 0x10: [mem 0xfce1c000-0xfce1cfff] > >[ 1.615049] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 > >[ 1.616318] pci 0000:00:1b.0: reg 0x10: [mem 0xfce10000-0xfce13fff] > >[ 1.622859] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 > >[ 1.624201] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO > >[ 1.626532] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 > >[ 1.631433] pci 0000:00:1f.2: reg 0x20: [io 0xc060-0xc07f] > >[ 1.633066] pci 0000:00:1f.2: reg 0x24: [mem 0xfce1d000-0xfce1dfff] > >[ 1.635263] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 > >[ 1.638672] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] > >[ 1.646276] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000 > >[ 1.648447] pci 0000:01:00.0: reg 0x14: [mem 0xfcc40000-0xfcc40fff] > >[ 1.651541] pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref] > >[ 1.654708] pci 0000:01:00.0: reg 0x30: [mem 0xfcc00000-0xfcc3ffff pref] > >[ 1.656245] pci 0000:00:02.0: PCI bridge to [bus 01] > >[ 1.657166] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] > >[ 1.658560] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] > >[ 1.665128] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330 > >[ 1.666639] pci 0000:02:00.0: reg 0x10: [mem 0xfca00000-0xfca03fff 64bit] > >[ 1.669547] pci 0000:00:02.1: PCI bridge to [bus 02] > >[ 1.670253] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] > >[ 1.670778] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] > >[ 1.672750] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000 > >[ 1.676211] pci 0000:03:00.0: reg 0x14: [mem 0xfc800000-0xfc800fff] > >[ 1.679169] pci 0000:03:00.0: reg 0x20: [mem 0xfe600000-0xfe603fff 64bit pref] > >[ 1.682558] pci 0000:00:02.2: PCI bridge to [bus 03] > >[ 1.682793] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] > >[ 1.685144] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] > >[ 1.687495] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000 > >[ 1.689946] pci 0000:04:00.0: reg 0x14: [mem 0xfc600000-0xfc600fff] > >[ 1.693151] pci 0000:04:00.0: reg 0x20: [mem 0xfe400000-0xfe403fff 64bit pref] > >[ 1.700473] pci 0000:00:02.3: PCI bridge to [bus 04] > >[ 1.701209] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] > >[ 1.702128] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] > >[ 1.703714] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00 > >[ 1.707200] pci 0000:05:00.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] > >[ 1.711310] pci 0000:00:02.4: PCI bridge to [bus 05] > >[ 1.712069] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] > >[ 1.713336] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] > >[ 1.716482] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00 > >[ 1.722542] pci 0000:06:00.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref] > >[ 1.725211] pci 0000:00:02.5: PCI bridge to [bus 06] > >[ 1.726212] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] > >[ 1.726791] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] > >[ 1.729879] pci 0000:00:02.6: PCI bridge to [bus 07] > >[ 1.730651] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] > >[ 1.730778] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] > >[ 1.736005] pci_bus 0000:00: on NUMA node 0 > >[ 1.741503] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 > >[ 1.744737] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 > >[ 1.746758] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 > >[ 1.748846] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 > >[ 1.750851] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 > >[ 1.752940] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 > >[ 1.754949] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 > >[ 1.757050] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 > >[ 1.758160] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 > >[ 1.758938] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 > >[ 1.759889] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 > >[ 1.760914] ACPI: PCI: Interrupt link GSID configured for IRQ 19 > >[ 1.761939] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 > >[ 1.766937] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 > >[ 1.767962] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 > >[ 1.768958] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 > >[ 1.773089] pci 0000:00:01.0: vgaarb: setting as boot VGA device > >[ 1.773978] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none > >[ 1.774767] pci 0000:00:01.0: vgaarb: bridge control possible > >[ 1.775580] vgaarb: loaded > >[ 1.776770] SCSI subsystem initialized > >[ 1.778193] libata version 3.00 loaded. > >[ 1.778193] ACPI: bus type USB registered > >[ 1.778750] usbcore: registered new interface driver usbfs > >[ 1.778857] usbcore: registered new interface driver hub > >[ 1.779636] usbcore: registered new device driver usb > >[ 1.780451] pps_core: LinuxPPS API ver. 1 registered > >[ 1.781112] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> > >[ 1.782493] PTP clock support registered > >[ 1.784500] EDAC MC: Ver: 3.0.0 > >[ 1.785785] Advanced Linux Sound Architecture Driver Initialized. > >[ 1.786798] PCI: Using ACPI for IRQ routing > >[ 1.842255] PCI: pci_cache_line_size set to 64 bytes > >[ 1.842540] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] > >[ 1.842577] e820: reserve RAM buffer [mem 0x7ffdc000-0x7fffffff] > >[ 1.842970] clocksource: Switched to clocksource tsc-early > >[ 2.035298] VFS: Disk quotas dquot_6.6.0 > >[ 2.035981] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) > >[ 2.037121] FS-Cache: Loaded > >[ 2.037960] CacheFiles: Loaded > >[ 2.038518] pnp: PnP ACPI init > >[ 2.040511] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved > >[ 2.044352] pnp: PnP ACPI: found 5 devices > >[ 2.064254] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns > >[ 2.065958] NET: Registered PF_INET protocol family > >[ 2.066945] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) > >[ 2.069039] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) > >[ 2.070326] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) > >[ 2.071828] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) > >[ 2.073288] TCP: Hash tables configured (established 16384 bind 16384) > >[ 2.074354] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) > >[ 2.075383] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) > >[ 2.076613] NET: Registered PF_UNIX/PF_LOCAL protocol family > >[ 2.077413] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 > >[ 2.078529] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 > >[ 2.079641] pci 0000:00:02.2: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 > >[ 2.080719] pci 0000:00:02.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000 > >[ 2.081811] pci 0000:00:02.4: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000 > >[ 2.082948] pci 0000:00:02.5: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 > >[ 2.084025] pci 0000:00:02.6: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 > >[ 2.085111] pci 0000:00:02.0: BAR 7: assigned [io 0x1000-0x1fff] > >[ 2.085981] pci 0000:00:02.1: BAR 7: assigned [io 0x2000-0x2fff] > >[ 2.086810] pci 0000:00:02.2: BAR 7: assigned [io 0x3000-0x3fff] > >[ 2.087614] pci 0000:00:02.3: BAR 7: assigned [io 0x4000-0x4fff] > >[ 2.088415] pci 0000:00:02.4: BAR 7: assigned [io 0x5000-0x5fff] > >[ 2.089201] pci 0000:00:02.5: BAR 7: assigned [io 0x6000-0x6fff] > >[ 2.090032] pci 0000:00:02.6: BAR 7: assigned [io 0x7000-0x7fff] > >[ 2.091014] pci 0000:00:02.0: PCI bridge to [bus 01] > >[ 2.091666] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff] > >[ 2.093625] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] > >[ 2.096206] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] > >[ 2.098607] pci 0000:00:02.1: PCI bridge to [bus 02] > >[ 2.107557] pci 0000:00:02.1: bridge window [io 0x2000-0x2fff] > >[ 2.109321] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] > >[ 2.111058] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] > >[ 2.113315] pci 0000:00:02.2: PCI bridge to [bus 03] > >[ 2.114828] pci 0000:00:02.2: bridge window [io 0x3000-0x3fff] > >[ 2.116339] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] > >[ 2.117673] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] > >[ 2.119702] pci 0000:00:02.3: PCI bridge to [bus 04] > >[ 2.120377] pci 0000:00:02.3: bridge window [io 0x4000-0x4fff] > >[ 2.122070] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] > >[ 2.123621] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] > >[ 2.127750] pci 0000:00:02.4: PCI bridge to [bus 05] > >[ 2.128452] pci 0000:00:02.4: bridge window [io 0x5000-0x5fff] > >[ 2.129948] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] > >[ 2.131293] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] > >[ 2.133183] pci 0000:00:02.5: PCI bridge to [bus 06] > >[ 2.133884] pci 0000:00:02.5: bridge window [io 0x6000-0x6fff] > >[ 2.135463] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] > >[ 2.137987] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] > >[ 2.139814] pci 0000:00:02.6: PCI bridge to [bus 07] > >[ 2.140490] pci 0000:00:02.6: bridge window [io 0x7000-0x7fff] > >[ 2.141949] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] > >[ 2.143311] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] > >[ 2.145174] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > >[ 2.146052] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > >[ 2.148019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] > >[ 2.148914] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window] > >[ 2.149845] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] > >[ 2.150799] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] > >[ 2.151720] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] > >[ 2.152452] pci_bus 0000:01: resource 1 [mem 0xfcc00000-0xfcdfffff] > >[ 2.153255] pci_bus 0000:01: resource 2 [mem 0xfea00000-0xfebfffff 64bit pref] > >[ 2.154240] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] > >[ 2.155046] pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff] > >[ 2.156636] pci_bus 0000:02: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref] > >[ 2.157602] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] > >[ 2.158387] pci_bus 0000:03: resource 1 [mem 0xfc800000-0xfc9fffff] > >[ 2.159282] pci_bus 0000:03: resource 2 [mem 0xfe600000-0xfe7fffff 64bit pref] > >[ 2.160251] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff] > >[ 2.161035] pci_bus 0000:04: resource 1 [mem 0xfc600000-0xfc7fffff] > >[ 2.161909] pci_bus 0000:04: resource 2 [mem 0xfe400000-0xfe5fffff 64bit pref] > >[ 2.162902] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] > >[ 2.163619] pci_bus 0000:05: resource 1 [mem 0xfc400000-0xfc5fffff] > >[ 2.164420] pci_bus 0000:05: resource 2 [mem 0xfe200000-0xfe3fffff 64bit pref] > >[ 2.165342] pci_bus 0000:06: resource 0 [io 0x6000-0x6fff] > >[ 2.166091] pci_bus 0000:06: resource 1 [mem 0xfc200000-0xfc3fffff] > >[ 2.166960] pci_bus 0000:06: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref] > >[ 2.167884] pci_bus 0000:07: resource 0 [io 0x7000-0x7fff] > >[ 2.168599] pci_bus 0000:07: resource 1 [mem 0xfc000000-0xfc1fffff] > >[ 2.169400] pci_bus 0000:07: resource 2 [mem 0xfde00000-0xfdffffff 64bit pref] > >[ 2.170541] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] > >[ 2.180949] ACPI: \_SB_.GSIG: Enabled at IRQ 22 > >[ 2.199686] pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0xa70 took 27224 usecs > >[ 2.200800] PCI: CLS 0 bytes, default 64 > >[ 2.202085] Trying to unpack rootfs image as initramfs... > >[ 2.203583] Initialise system trusted keyrings > >[ 2.204372] workingset: timestamp_bits=62 max_order=19 bucket_order=0 > >[ 2.206592] DLM installed > >[ 2.210086] Key type cifs.idmap registered > >[ 2.210915] fuse: init (API version 7.35) > >[ 2.211730] SGI XFS with ACLs, security attributes, no debug enabled > >[ 2.213541] ocfs2: Registered cluster interface o2cb > >[ 2.214457] ocfs2: Registered cluster interface user > >[ 2.215320] OCFS2 User DLM kernel interface loaded > >[ 2.223471] gfs2: GFS2 installed > >[ 2.232573] xor: automatically using best checksumming function avx > >[ 2.233488] Key type asymmetric registered > >[ 2.234109] Asymmetric key parser 'x509' registered > >[ 2.235034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) > >[ 2.236044] io scheduler mq-deadline registered > >[ 2.236631] io scheduler kyber registered > >[ 2.237151] test_string_helpers: Running tests... > >[ 2.251590] cryptomgr_test (80) used greatest stack depth: 30192 bytes left > >[ 2.253812] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 > >[ 2.255322] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 > >[ 2.263630] ACPI: button: Power Button [PWRF] > >[ 2.503777] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled > >[ 2.505227] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A > >[ 2.512214] Non-volatile memory driver v1.3 > >[ 2.513012] Linux agpgart interface v0.103 > >[ 2.515374] ACPI: bus type drm_connector registered > >[ 2.536836] brd: module loaded > >[ 2.553358] loop: module loaded > >[ 2.554597] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) > >[ 2.560013] vda: vda1 vda2 > >[ 2.563947] zram: Added device: zram0 > >[ 2.565170] ahci 0000:00:1f.2: version 3.0 > >[ 2.577984] ACPI: \_SB_.GSIA: Enabled at IRQ 16 > >[ 2.581236] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode > >[ 2.582629] ahci 0000:00:1f.2: flags: 64bit ncq only > >[ 2.591294] scsi host0: ahci > >[ 2.593071] scsi host1: ahci > >[ 2.594746] scsi host2: ahci > >[ 2.596433] scsi host3: ahci > >[ 2.598107] scsi host4: ahci > >[ 2.599711] scsi host5: ahci > >[ 2.600666] ata1: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d100 irq 16 > >[ 2.601704] ata2: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d180 irq 16 > >[ 2.602728] ata3: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d200 irq 16 > >[ 2.603965] ata4: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d280 irq 16 > >[ 2.604966] ata5: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d300 irq 16 > >[ 2.606025] ata6: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d380 irq 16 > >[ 2.608967] tun: Universal TUN/TAP device driver, 1.6 > >[ 2.615031] e1000: Intel(R) PRO/1000 Network Driver > >[ 2.615697] e1000: Copyright (c) 1999-2006 Intel Corporation. > >[ 2.616600] e1000e: Intel(R) PRO/1000 Network Driver > >[ 2.617285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. > >[ 2.618418] PPP generic driver version 2.4.2 > >[ 2.621200] aoe: AoE v85 initialised. > >[ 2.622145] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver > >[ 2.623064] ehci-pci: EHCI PCI platform driver > >[ 2.623725] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > >[ 2.624583] ohci-pci: OHCI PCI platform driver > >[ 2.625273] uhci_hcd: USB Universal Host Controller Interface driver > >[ 2.626383] usbcore: registered new interface driver usblp > >[ 2.627485] usbcore: registered new interface driver usb-storage > >[ 2.628515] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 > >[ 2.630612] serio: i8042 KBD port at 0x60,0x64 irq 1 > >[ 2.632241] serio: i8042 AUX port at 0x60,0x64 irq 12 > >[ 2.633725] mousedev: PS/2 mouse device common for all mice > >[ 2.635967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 > >[ 2.641790] input: PC Speaker as /devices/platform/pcspkr/input/input4 > >[ 2.665764] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt > >[ 2.667260] i2c i2c-0: 1/1 memory slots populated (from DMI) > >[ 2.668024] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD > >[ 2.675052] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. > >[ 2.676742] device-mapper: uevent: version 1.0.3 > >[ 2.678918] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com > >[ 2.683257] device-mapper: multipath round-robin: version 1.2.0 loaded > >[ 2.684241] intel_pstate: CPU model not supported > >[ 2.688823] usbcore: registered new interface driver usbhid > >[ 2.689598] usbhid: USB HID core driver > >[ 2.705474] netem: version 1.3 > >[ 2.706277] NET: Registered PF_INET6 protocol family > >[ 2.712188] Segment Routing with IPv6 > >[ 2.712717] In-situ OAM (IOAM) with IPv6 > >[ 2.713285] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver > >[ 2.715480] NET: Registered PF_PACKET protocol family > >[ 2.716182] NET: Registered PF_KEY protocol family > >[ 2.716862] sctp: Hash tables configured (bind 32/56) > >[ 2.717728] Key type dns_resolver registered > >[ 2.726933] IPI shorthand broadcast: enabled > >[ 2.727537] AVX2 version of gcm_enc/dec engaged. > >[ 2.728259] AES CTR mode by8 optimization enabled > >[ 2.730257] sched_clock: Marking stable (2618472228, 108317297)->(2782282047, -55492522) > >[ 2.735020] Loading compiled-in X.509 certificates > >[ 2.736126] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers > >[ 2.738851] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no > >[ 2.739983] ima: No TPM chip found, activating TPM-bypass! > >[ 2.746925] ima: Allocated hash algorithm: sha1 > >[ 2.747568] ima: No architecture policies found > >[ 2.760119] cryptomgr_test (960) used greatest stack depth: 29896 bytes left > >[ 2.774263] ALSA device list: > >[ 2.774801] #0: Virtual MIDI Card 1 > >[ 2.927000] ata2: SATA link down (SStatus 0 SControl 300) > >[ 2.928006] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) > >[ 2.929043] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 > >[ 2.929850] ata1.00: applying bridge limits > >[ 2.930655] ata1.00: configured for UDMA/100 > >[ 2.943534] ata3: SATA link down (SStatus 0 SControl 300) > >[ 2.944410] ata5: SATA link down (SStatus 0 SControl 300) > >[ 2.945288] ata4: SATA link down (SStatus 0 SControl 300) > >[ 2.947488] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 > >[ 2.950893] ata6: SATA link down (SStatus 0 SControl 300) > >[ 2.983329] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray > >[ 2.984315] cdrom: Uniform CD-ROM driver Revision: 3.20 > >[ 3.002413] Freeing initrd memory: 28888K > >[ 3.003747] kworker/u4:10 (919) used greatest stack depth: 28568 bytes left > >[ 3.007194] kworker/u4:2 (706) used greatest stack depth: 28384 bytes left > >[ 3.083826] sr 0:0:0:0: Attached scsi CD-ROM sr0 > >[ 3.085147] sr 0:0:0:0: Attached scsi generic sg0 type 5 > >[ 3.103164] Freeing unused kernel image (initmem) memory: 2076K > >[ 3.117192] Write protecting the kernel read-only data: 61440k > >[ 3.120374] Freeing unused kernel image (text/rodata gap) memory: 2028K > >[ 3.122810] Freeing unused kernel image (rodata/data gap) memory: 948K > >[ 3.126083] Run /init as init process > >[ 3.127909] with arguments: > >[ 3.127914] /init > >[ 3.127917] with environment: > >[ 3.127920] HOME=/ > >[ 3.127923] TERM=linux > >[ 3.127926] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 > >[ 3.127929] resume=/dev/mapper/fedora-swap > >[ 3.177129] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >[ 3.191635] systemd[1]: Detected virtualization kvm. > >[ 3.192554] systemd[1]: Detected architecture x86-64. > >[ 3.193497] systemd[1]: Running in initial RAM disk. > >[ 3.200495] systemd[1]: Set hostname to <test3.fieldses.org>. > >[ 3.206888] tsc: Refined TSC clocksource calibration: 3591.601 MHz > >[ 3.207931] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55573deb, max_idle_ns: 440795385523 ns > >[ 3.209808] clocksource: Switched to clocksource tsc > >[ 3.276323] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 > >[ 3.410362] dracut-rootfs-g (994) used greatest stack depth: 28168 bytes left > >[ 3.459425] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >[ 3.483169] systemd[1]: Queued start job for default target Initrd Default Target. > >[ 3.486365] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. > >[ 3.490492] systemd[1]: Reached target Slices. > >[ 3.492032] systemd[1]: Reached target Swap. > >[ 3.493442] systemd[1]: Reached target Timers. > >[ 3.496270] systemd[1]: Listening on Journal Audit Socket. > >[ 3.499878] systemd[1]: Listening on Journal Socket (/dev/log). > >[ 3.503436] systemd[1]: Listening on Journal Socket. > >[ 3.506420] systemd[1]: Listening on udev Control Socket. > >[ 3.509264] systemd[1]: Listening on udev Kernel Socket. > >[ 3.511877] systemd[1]: Reached target Sockets. > >[ 3.513442] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >[ 3.520259] systemd[1]: Started Memstrack Anylazing Service. > >[ 3.527783] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. > >[ 3.530307] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. > >[ 3.532742] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) > >[ 3.540109] systemd[1]: Starting Journal Service... > >[ 3.550015] systemd[1]: Starting Load Kernel Modules... > >[ 3.559017] systemd[1]: Starting Create Static Device Nodes in /dev... > >[ 3.565890] random: rngd: uninitialized urandom read (16 bytes read) > >[ 3.579371] systemd[1]: Starting Setup Virtual Console... > >[ 3.611362] systemd[1]: memstrack.service: Succeeded. > >[ 3.627660] systemd[1]: Finished Create Static Device Nodes in /dev. > >[ 3.668283] systemd[1]: Finished Load Kernel Modules. > >[ 3.683342] systemd[1]: Starting Apply Kernel Variables... > >[ 3.793704] systemd[1]: Finished Apply Kernel Variables. > >[ 3.852545] audit: type=1130 audit(1642005634.495:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 4.017096] systemd[1]: Started Journal Service. > >[ 4.019152] audit: type=1130 audit(1642005634.663:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 4.367941] audit: type=1130 audit(1642005635.011:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 5.158530] audit: type=1130 audit(1642005635.799:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 5.240723] random: crng init done > >[ 5.428343] audit: type=1130 audit(1642005636.071:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 5.562117] audit: type=1130 audit(1642005636.203:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 5.826193] kworker/u4:0 (1195) used greatest stack depth: 27960 bytes left > >[ 7.667205] virtio_net virtio0 enp1s0: renamed from eth0 > >[ 8.061253] ata_id (1566) used greatest stack depth: 27648 bytes left > >[ 8.873062] audit: type=1130 audit(1642005639.515:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 9.126782] audit: type=1130 audit(1642005639.767:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 9.898584] lvm (2335) used greatest stack depth: 27600 bytes left > >[ 10.171243] lvm (2337) used greatest stack depth: 27504 bytes left > >[ 10.389632] audit: type=1130 audit(1642005641.031:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' > >[ 10.456068] audit: type=1130 audit(1642005641.099:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 10.477828] dracut-initqueu (2286) used greatest stack depth: 27416 bytes left > >[ 10.481902] audit: type=1130 audit(1642005641.123:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 10.545851] fsck (2364) used greatest stack depth: 26560 bytes left > >[ 10.555806] audit: type=1130 audit(1642005641.195:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 10.584297] XFS (dm-0): Mounting V5 Filesystem > >[ 10.767936] XFS (dm-0): Ending clean mount > >[ 10.840832] mount (2366) used greatest stack depth: 25344 bytes left > >[ 10.996402] systemd-fstab-g (2379) used greatest stack depth: 24872 bytes left > >[ 11.699148] audit: type=1130 audit(1642005642.339:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 11.702004] audit: type=1131 audit(1642005642.339:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 11.858512] audit: type=1130 audit(1642005642.499:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 11.895749] audit: type=1131 audit(1642005642.535:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 14.895253] SELinux: Permission watch in class filesystem not defined in policy. > >[ 14.896380] SELinux: Permission watch in class file not defined in policy. > >[ 14.898184] SELinux: Permission watch_mount in class file not defined in policy. > >[ 14.899597] SELinux: Permission watch_sb in class file not defined in policy. > >[ 14.900888] SELinux: Permission watch_with_perm in class file not defined in policy. > >[ 14.902011] SELinux: Permission watch_reads in class file not defined in policy. > >[ 14.903080] SELinux: Permission watch in class dir not defined in policy. > >[ 14.915479] SELinux: Permission watch_mount in class dir not defined in policy. > >[ 14.916793] SELinux: Permission watch_sb in class dir not defined in policy. > >[ 14.918117] SELinux: Permission watch_with_perm in class dir not defined in policy. > >[ 14.919521] SELinux: Permission watch_reads in class dir not defined in policy. > >[ 14.920832] SELinux: Permission watch in class lnk_file not defined in policy. > >[ 14.922158] SELinux: Permission watch_mount in class lnk_file not defined in policy. > >[ 14.923410] SELinux: Permission watch_sb in class lnk_file not defined in policy. > >[ 14.924406] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. > >[ 14.925567] SELinux: Permission watch_reads in class lnk_file not defined in policy. > >[ 14.927302] SELinux: Permission watch in class chr_file not defined in policy. > >[ 14.928363] SELinux: Permission watch_mount in class chr_file not defined in policy. > >[ 14.929448] SELinux: Permission watch_sb in class chr_file not defined in policy. > >[ 14.930486] SELinux: Permission watch_with_perm in class chr_file not defined in policy. > >[ 14.931631] SELinux: Permission watch_reads in class chr_file not defined in policy. > >[ 14.932702] SELinux: Permission watch in class blk_file not defined in policy. > >[ 14.933695] SELinux: Permission watch_mount in class blk_file not defined in policy. > >[ 14.934779] SELinux: Permission watch_sb in class blk_file not defined in policy. > >[ 14.935782] SELinux: Permission watch_with_perm in class blk_file not defined in policy. > >[ 14.936834] SELinux: Permission watch_reads in class blk_file not defined in policy. > >[ 14.937933] SELinux: Permission watch in class sock_file not defined in policy. > >[ 14.938979] SELinux: Permission watch_mount in class sock_file not defined in policy. > >[ 14.940022] SELinux: Permission watch_sb in class sock_file not defined in policy. > >[ 14.941043] SELinux: Permission watch_with_perm in class sock_file not defined in policy. > >[ 14.942178] SELinux: Permission watch_reads in class sock_file not defined in policy. > >[ 14.943287] SELinux: Permission watch in class fifo_file not defined in policy. > >[ 14.944263] SELinux: Permission watch_mount in class fifo_file not defined in policy. > >[ 14.945325] SELinux: Permission watch_sb in class fifo_file not defined in policy. > >[ 14.946386] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. > >[ 14.947525] SELinux: Permission watch_reads in class fifo_file not defined in policy. > >[ 14.948611] SELinux: Permission perfmon in class capability2 not defined in policy. > >[ 14.949662] SELinux: Permission bpf in class capability2 not defined in policy. > >[ 14.950682] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. > >[ 14.951921] SELinux: Permission perfmon in class cap2_userns not defined in policy. > >[ 14.952939] SELinux: Permission bpf in class cap2_userns not defined in policy. > >[ 14.953970] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. > >[ 14.955277] SELinux: Class mctp_socket not defined in policy. > >[ 14.956110] SELinux: Class perf_event not defined in policy. > >[ 14.957746] SELinux: Class anon_inode not defined in policy. > >[ 14.958536] SELinux: Class io_uring not defined in policy. > >[ 14.959313] SELinux: the above unknown classes and permissions will be allowed > >[ 15.013559] SELinux: policy capability network_peer_controls=1 > >[ 15.014417] SELinux: policy capability open_perms=1 > >[ 15.015183] SELinux: policy capability extended_socket_class=1 > >[ 15.015968] SELinux: policy capability always_check_network=0 > >[ 15.017534] SELinux: policy capability cgroup_seclabel=1 > >[ 15.018305] SELinux: policy capability nnp_nosuid_transition=1 > >[ 15.019126] SELinux: policy capability genfs_seclabel_symlinks=0 > >[ 15.244501] kauditd_printk_skb: 16 callbacks suppressed > >[ 15.244506] audit: type=1403 audit(1642005645.887:34): auid=4294967295 ses=4294967295 lsm=selinux res=1 > >[ 15.255513] systemd[1]: Successfully loaded SELinux policy in 2.766323s. > >[ 15.619234] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 261.945ms. > >[ 15.628383] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >[ 15.632666] systemd[1]: Detected virtualization kvm. > >[ 15.633353] systemd[1]: Detected architecture x86-64. > >[ 15.639738] systemd[1]: Set hostname to <test3.fieldses.org>. > >[ 15.905148] lvmconfig (2442) used greatest stack depth: 24544 bytes left > >[ 15.941811] kdump-dep-gener (2432) used greatest stack depth: 24464 bytes left > >[ 15.942995] grep (2450) used greatest stack depth: 24448 bytes left > >[ 16.222623] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >[ 16.548178] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. > >[ 17.024523] audit: type=1131 audit(1642005647.667:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.032331] systemd[1]: initrd-switch-root.service: Succeeded. > >[ 17.034511] systemd[1]: Stopped Switch Root. > >[ 17.037797] audit: type=1130 audit(1642005647.679:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.039820] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. > >[ 17.040822] audit: type=1131 audit(1642005647.679:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.044319] systemd[1]: Created slice system-getty.slice. > >[ 17.048401] systemd[1]: Created slice system-modprobe.slice. > >[ 17.052765] systemd[1]: Created slice system-serial\x2dgetty.slice. > >[ 17.055258] systemd[1]: Created slice system-sshd\x2dkeygen.slice. > >[ 17.058406] systemd[1]: Created slice User and Session Slice. > >[ 17.060191] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. > >[ 17.063067] systemd[1]: Started Forward Password Requests to Wall Directory Watch. > >[ 17.066845] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. > >[ 17.068244] systemd[1]: Reached target Local Encrypted Volumes. > >[ 17.070271] systemd[1]: Stopped target Switch Root. > >[ 17.071236] systemd[1]: Stopped target Initrd File Systems. > >[ 17.072219] systemd[1]: Stopped target Initrd Root File System. > >[ 17.075495] systemd[1]: Reached target Paths. > >[ 17.076283] systemd[1]: Reached target Slices. > >[ 17.080904] systemd[1]: Listening on Device-mapper event daemon FIFOs. > >[ 17.084889] systemd[1]: Listening on LVM2 poll daemon socket. > >[ 17.087729] systemd[1]: Listening on multipathd control socket. > >[ 17.093018] systemd[1]: Listening on Process Core Dump Socket. > >[ 17.095415] systemd[1]: Listening on initctl Compatibility Named Pipe. > >[ 17.099466] systemd[1]: Listening on udev Control Socket. > >[ 17.102467] systemd[1]: Listening on udev Kernel Socket. > >[ 17.109715] systemd[1]: Activating swap /dev/mapper/fedora-swap... > >[ 17.117743] systemd[1]: Mounting Huge Pages File System... > >[ 17.125890] systemd[1]: Mounting POSIX Message Queue File System... > >[ 17.130492] Adding 2097148k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:2097148k > >[ 17.140236] systemd[1]: Mounting Kernel Debug File System... > >[ 17.149754] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... > >[ 17.151753] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >[ 17.159082] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... > >[ 17.166647] systemd[1]: Starting Load Kernel Module configfs... > >[ 17.173097] systemd[1]: Starting Load Kernel Module drm... > >[ 17.181757] systemd[1]: Starting Load Kernel Module fuse... > >[ 17.199195] systemd[1]: Starting Preprocess NFS configuration convertion... > >[ 17.203114] systemd[1]: plymouth-switch-root.service: Succeeded. > >[ 17.217307] systemd[1]: Stopped Plymouth switch root service. > >[ 17.220790] audit: type=1131 audit(1642005647.863:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.222477] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. > >[ 17.235950] systemd[1]: systemd-fsck-root.service: Succeeded. > >[ 17.239114] systemd[1]: Stopped File System Check on Root Device. > >[ 17.241914] systemd[1]: Stopped Journal Service. > >[ 17.246822] audit: type=1131 audit(1642005647.883:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.248647] systemd[1]: Starting Journal Service... > >[ 17.250212] audit: type=1130 audit(1642005647.883:40): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.263202] audit: type=1131 audit(1642005647.887:41): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.276489] systemd[1]: Starting Load Kernel Modules... > >[ 17.295377] systemd[1]: Starting Remount Root and Kernel File Systems... > >[ 17.297774] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. > >[ 17.324773] systemd[1]: Starting Coldplug All udev Devices... > >[ 17.328304] systemd[1]: sysroot.mount: Succeeded. > >[ 17.374101] systemd[1]: Activated swap /dev/mapper/fedora-swap. > >[ 17.401071] systemd[1]: Mounted Huge Pages File System. > >[ 17.410741] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) > >[ 17.425620] systemd[1]: Mounted POSIX Message Queue File System. > >[ 17.440432] systemd[1]: Mounted Kernel Debug File System. > >[ 17.447566] RPC: Registered named UNIX socket transport module. > >[ 17.448425] RPC: Registered udp transport module. > >[ 17.449052] RPC: Registered tcp transport module. > >[ 17.449719] RPC: Registered tcp NFSv4.1 backchannel transport module. > >[ 17.457211] systemd[1]: modprobe@configfs.service: Succeeded. > >[ 17.459723] systemd[1]: Finished Load Kernel Module configfs. > >[ 17.461450] audit: type=1130 audit(1642005648.103:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.464558] audit: type=1131 audit(1642005648.103:43): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 17.476290] systemd[1]: modprobe@drm.service: Succeeded. > >[ 17.491863] systemd[1]: Finished Load Kernel Module drm. > >[ 17.496010] systemd[1]: Finished Kernel Module supporting RPCSEC_GSS. > >[ 17.501497] systemd[1]: modprobe@fuse.service: Succeeded. > >[ 17.504499] systemd[1]: Finished Load Kernel Module fuse. > >[ 17.517872] systemd[1]: Started Journal Service. > >[ 20.438290] kauditd_printk_skb: 22 callbacks suppressed > >[ 20.438294] audit: type=1130 audit(1642005651.079:64): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 20.725931] audit: type=1130 audit(1642005651.367:65): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-pvscan@253:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 20.998904] audit: type=1130 audit(1642005651.639:66): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 22.158644] audit: type=1130 audit(1642005652.799:67): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 22.183237] XFS (vda1): Mounting V5 Filesystem > >[ 22.329168] XFS (vda1): Ending clean mount > >[ 22.344447] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) > >[ 22.381960] audit: type=1130 audit(1642005653.023:68): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 22.430820] audit: type=1130 audit(1642005653.071:69): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 22.485659] audit: type=1130 audit(1642005653.127:70): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=import-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 22.749894] audit: type=1130 audit(1642005653.391:71): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 22.857336] audit: type=1400 audit(1642005653.499:72): avc: denied { fowner } for pid=3657 comm="auditd" capability=3 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:system_r:auditd_t:s0 tclass=capability permissive=0 > >[ 22.861281] audit: type=1300 audit(1642005653.499:72): arch=c000003e syscall=90 success=yes exit=0 a0=56090a1699e0 a1=1c0 a2=19 a3=56090a169c40 items=0 ppid=3655 pid=3657 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > >[ 121.479732] rpm (3866) used greatest stack depth: 23336 bytes left > >[ 160.313750] FS-Cache: Netfs 'nfs' registered for caching > >[ 267.826493] NFS: Registering the id_resolver key type > >[ 267.827159] Key type id_resolver registered > >[ 267.827643] Key type id_legacy registered > >[ 268.393694] mount.nfs (5859) used greatest stack depth: 22896 bytes left > >[ 523.352374] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >[ 938.809224] kworker/dying (2523) used greatest stack depth: 21832 bytes left > >[ 1827.841420] run fstests generic/001 at 2022-01-12 12:10:59 > >[ 1867.998292] run fstests generic/002 at 2022-01-12 12:11:39 > >[ 1869.297577] run fstests generic/003 at 2022-01-12 12:11:40 > >[ 1869.823503] run fstests generic/004 at 2022-01-12 12:11:40 > >[ 1870.357158] run fstests generic/005 at 2022-01-12 12:11:41 > >[ 1872.033166] run fstests generic/008 at 2022-01-12 12:11:43 > >[ 1872.682257] run fstests generic/009 at 2022-01-12 12:11:43 > >[ 1873.300870] run fstests generic/010 at 2022-01-12 12:11:44 > >[ 1873.867023] run fstests generic/011 at 2022-01-12 12:11:45 > >[ 1939.414212] run fstests generic/012 at 2022-01-12 12:12:50 > >[ 1940.257756] run fstests generic/013 at 2022-01-12 12:12:51 > >[ 2006.667055] run fstests generic/015 at 2022-01-12 12:13:57 > >[ 2007.186484] run fstests generic/016 at 2022-01-12 12:13:58 > >[ 2008.063569] run fstests generic/018 at 2022-01-12 12:13:59 > >[ 2008.831790] run fstests generic/020 at 2022-01-12 12:14:00 > >[ 2020.997738] run fstests generic/021 at 2022-01-12 12:14:12 > >[ 2021.774590] run fstests generic/022 at 2022-01-12 12:14:12 > >[ 2022.542934] run fstests generic/023 at 2022-01-12 12:14:13 > >[ 2025.824308] run fstests generic/024 at 2022-01-12 12:14:16 > >[ 2026.390736] run fstests generic/025 at 2022-01-12 12:14:17 > >[ 2026.963217] run fstests generic/026 at 2022-01-12 12:14:18 > >[ 2027.592530] run fstests generic/027 at 2022-01-12 12:14:18 > >[ 2028.101801] run fstests generic/028 at 2022-01-12 12:14:19 > >[ 2033.709852] run fstests generic/029 at 2022-01-12 12:14:24 > >[ 2035.495458] run fstests generic/030 at 2022-01-12 12:14:26 > >[ 2038.537954] run fstests generic/034 at 2022-01-12 12:14:29 > >[ 2039.329741] run fstests generic/036 at 2022-01-12 12:14:30 > >[ 2050.072609] run fstests generic/037 at 2022-01-12 12:14:41 > >[ 2071.336677] run fstests generic/038 at 2022-01-12 12:15:02 > >[ 2072.411721] run fstests generic/039 at 2022-01-12 12:15:03 > >[ 2073.123576] run fstests generic/040 at 2022-01-12 12:15:04 > >[ 2073.748265] run fstests generic/041 at 2022-01-12 12:15:04 > >[ 2074.344951] run fstests generic/043 at 2022-01-12 12:15:05 > >[ 2075.114885] run fstests generic/044 at 2022-01-12 12:15:06 > >[ 2075.977059] run fstests generic/045 at 2022-01-12 12:15:07 > >[ 2076.855028] run fstests generic/046 at 2022-01-12 12:15:08 > >[ 2077.696747] run fstests generic/047 at 2022-01-12 12:15:08 > >[ 2078.533668] run fstests generic/048 at 2022-01-12 12:15:09 > >[ 2079.397374] run fstests generic/049 at 2022-01-12 12:15:10 > >[ 2080.261339] run fstests generic/050 at 2022-01-12 12:15:11 > >[ 2081.107141] run fstests generic/051 at 2022-01-12 12:15:12 > >[ 2082.008096] run fstests generic/052 at 2022-01-12 12:15:13 > >[ 2082.858320] run fstests generic/054 at 2022-01-12 12:15:14 > >[ 2083.731997] run fstests generic/055 at 2022-01-12 12:15:14 > >[ 2084.590242] run fstests generic/056 at 2022-01-12 12:15:15 > >[ 2085.303754] run fstests generic/057 at 2022-01-12 12:15:16 > >[ 2085.908458] run fstests generic/058 at 2022-01-12 12:15:17 > >[ 2086.640354] run fstests generic/059 at 2022-01-12 12:15:17 > >[ 2087.217469] run fstests generic/060 at 2022-01-12 12:15:18 > >[ 2087.944489] run fstests generic/061 at 2022-01-12 12:15:19 > >[ 2088.749344] run fstests generic/063 at 2022-01-12 12:15:19 > >[ 2089.524340] run fstests generic/065 at 2022-01-12 12:15:20 > >[ 2090.121276] run fstests generic/066 at 2022-01-12 12:15:21 > >[ 2090.702873] run fstests generic/067 at 2022-01-12 12:15:21 > >[ 2091.333532] run fstests generic/069 at 2022-01-12 12:15:22 > >[ 2121.140927] run fstests generic/070 at 2022-01-12 12:15:52 > >[ 2168.861297] run fstests generic/072 at 2022-01-12 12:16:40 > >[ 2169.690898] run fstests generic/073 at 2022-01-12 12:16:40 > >[ 2170.302749] run fstests generic/075 at 2022-01-12 12:16:41 > >[ 2226.187399] run fstests generic/076 at 2022-01-12 12:17:37 > >[ 2226.692121] run fstests generic/077 at 2022-01-12 12:17:37 > >[ 2230.646484] run fstests generic/078 at 2022-01-12 12:17:41 > >[ 2231.233467] run fstests generic/079 at 2022-01-12 12:17:42 > >[ 2231.792759] run fstests generic/080 at 2022-01-12 12:17:42 > >[ 2234.478551] run fstests generic/081 at 2022-01-12 12:17:45 > >[ 2235.016264] run fstests generic/082 at 2022-01-12 12:17:46 > >[ 2235.544754] run fstests generic/083 at 2022-01-12 12:17:46 > >[ 2236.070354] run fstests generic/084 at 2022-01-12 12:17:47 > >[ 2242.089643] run fstests generic/085 at 2022-01-12 12:17:53 > >[ 2242.829424] run fstests generic/086 at 2022-01-12 12:17:54 > >[ 2244.627985] 086 (63919): drop_caches: 3 > >[ 2245.004053] run fstests generic/090 at 2022-01-12 12:17:56 > >[ 2245.726297] run fstests generic/092 at 2022-01-12 12:17:56 > >[ 2246.386331] run fstests generic/093 at 2022-01-12 12:17:57 > >[ 2246.989287] run fstests generic/095 at 2022-01-12 12:17:58 > >[ 2247.568818] run fstests generic/096 at 2022-01-12 12:17:58 > >[ 2248.194588] run fstests generic/097 at 2022-01-12 12:17:59 > >[ 2248.808142] run fstests generic/098 at 2022-01-12 12:17:59 > >[ 2250.531860] run fstests generic/099 at 2022-01-12 12:18:01 > >[ 2251.371697] run fstests generic/101 at 2022-01-12 12:18:02 > >[ 2251.916640] run fstests generic/102 at 2022-01-12 12:18:03 > >[ 2252.419409] run fstests generic/103 at 2022-01-12 12:18:03 > >[ 2255.825340] run fstests generic/104 at 2022-01-12 12:18:06 > >[ 2256.640587] run fstests generic/106 at 2022-01-12 12:18:07 > >[ 2257.275429] run fstests generic/107 at 2022-01-12 12:18:08 > >[ 2257.871596] run fstests generic/108 at 2022-01-12 12:18:09 > >[ 2258.649789] run fstests generic/109 at 2022-01-12 12:18:09 > >[ 2314.619077] run fstests generic/110 at 2022-01-12 12:19:05 > >[ 2315.511518] run fstests generic/111 at 2022-01-12 12:19:06 > >[ 2316.200429] run fstests generic/112 at 2022-01-12 12:19:07 > >[ 2375.093348] run fstests generic/114 at 2022-01-12 12:20:06 > >[ 2375.726022] run fstests generic/115 at 2022-01-12 12:20:06 > >[ 2376.417534] run fstests generic/116 at 2022-01-12 12:20:07 > >[ 2378.207570] run fstests generic/118 at 2022-01-12 12:20:09 > >[ 2379.767855] run fstests generic/119 at 2022-01-12 12:20:10 > >[ 2382.596453] run fstests generic/120 at 2022-01-12 12:20:13 > >[ 2383.118291] run fstests generic/121 at 2022-01-12 12:20:14 > >[ 2383.763385] run fstests generic/122 at 2022-01-12 12:20:14 > >[ 2384.417857] run fstests generic/123 at 2022-01-12 12:20:15 > >[ 2384.952387] run fstests generic/124 at 2022-01-12 12:20:16 > >[ 2439.979901] run fstests generic/128 at 2022-01-12 12:21:11 > >[ 2440.534640] run fstests generic/130 at 2022-01-12 12:21:11 > >[ 2458.532247] run fstests generic/131 at 2022-01-12 12:21:29 > >[ 2460.624455] run fstests generic/132 at 2022-01-12 12:21:31 > >[ 2479.380043] run fstests generic/134 at 2022-01-12 12:21:50 > >[ 2481.259289] run fstests generic/135 at 2022-01-12 12:21:52 > >[ 2482.602837] run fstests generic/136 at 2022-01-12 12:21:53 > >[ 2483.422863] run fstests generic/137 at 2022-01-12 12:21:54 > >[ 2484.225794] run fstests generic/138 at 2022-01-12 12:21:55 > >[ 2486.911951] run fstests generic/139 at 2022-01-12 12:21:58 > >[ 2490.247175] run fstests generic/140 at 2022-01-12 12:22:01 > >[ 2492.960214] run fstests generic/141 at 2022-01-12 12:22:04 > >[ 2493.949160] run fstests generic/142 at 2022-01-12 12:22:05 > >[ 2502.811792] run fstests generic/143 at 2022-01-12 12:22:13 > >[ 2744.562632] run fstests generic/144 at 2022-01-12 12:26:15 > >[ 2746.679337] run fstests generic/145 at 2022-01-12 12:26:17 > >[ 2747.559239] run fstests generic/146 at 2022-01-12 12:26:18 > >[ 2749.654314] run fstests generic/147 at 2022-01-12 12:26:20 > >[ 2750.441774] run fstests generic/148 at 2022-01-12 12:26:21 > >[ 2752.169829] run fstests generic/149 at 2022-01-12 12:26:23 > >[ 2752.935800] run fstests generic/150 at 2022-01-12 12:26:24 > >[ 2770.733819] run fstests generic/151 at 2022-01-12 12:26:41 > >[ 2790.154829] run fstests generic/152 at 2022-01-12 12:27:01 > >[ 2810.016846] run fstests generic/153 at 2022-01-12 12:27:21 > >[ 2810.829252] run fstests generic/155 at 2022-01-12 12:27:22 > >[ 2811.642982] run fstests generic/156 at 2022-01-12 12:27:22 > >[ 2812.435476] run fstests generic/157 at 2022-01-12 12:27:23 > >[ 2898.516142] run fstests generic/158 at 2022-01-12 12:28:49 > >[ 2899.169820] run fstests generic/159 at 2022-01-12 12:28:50 > >[ 2899.707414] run fstests generic/160 at 2022-01-12 12:28:50 > >[ 2900.240792] run fstests generic/161 at 2022-01-12 12:28:51 > >[ 2920.346459] run fstests generic/162 at 2022-01-12 12:29:11 > >[ 2921.465497] run fstests generic/163 at 2022-01-12 12:29:12 > >[ 2922.457235] run fstests generic/164 at 2022-01-12 12:29:13 > >[ 2992.429168] run fstests generic/165 at 2022-01-12 12:30:23 > >[ 3052.173968] run fstests generic/166 at 2022-01-12 12:31:23 > >[ 3234.652685] run fstests generic/167 at 2022-01-12 12:34:25 > >[ 3276.304549] run fstests generic/168 at 2022-01-12 12:35:07 > >[ 3556.737914] run fstests generic/169 at 2022-01-12 12:39:47 > >[ 3558.300604] run fstests generic/170 at 2022-01-12 12:39:49 > >[ 3919.058972] run fstests generic/171 at 2022-01-12 12:45:50 > >[ 3920.624329] run fstests generic/172 at 2022-01-12 12:45:51 > >[ 3921.953882] run fstests generic/173 at 2022-01-12 12:45:53 > >[ 3923.239526] run fstests generic/174 at 2022-01-12 12:45:54 > >[ 3924.575586] run fstests generic/175 at 2022-01-12 12:45:55 > >[ 4159.652128] run fstests generic/176 at 2022-01-12 12:49:50 > >[ 4231.459928] run fstests generic/177 at 2022-01-12 12:51:02 > >[ 4232.370516] run fstests generic/178 at 2022-01-12 12:51:03 > >[ 4237.868525] run fstests generic/179 at 2022-01-12 12:51:09 > >[ 4239.533836] run fstests generic/180 at 2022-01-12 12:51:10 > >[ 4240.307772] run fstests generic/181 at 2022-01-12 12:51:11 > >[ 4244.757968] run fstests generic/182 at 2022-01-12 12:51:15 > >[ 4245.418557] run fstests generic/183 at 2022-01-12 12:51:16 > >[ 4251.302820] run fstests generic/185 at 2022-01-12 12:51:22 > >[ 4257.418284] run fstests generic/186 at 2022-01-12 12:51:28 > >[ 5070.488206] run fstests generic/187 at 2022-01-12 13:05:01 > >[ 5885.066194] run fstests generic/188 at 2022-01-12 13:18:36 > >[ 5891.287909] run fstests generic/189 at 2022-01-12 13:18:42 > >[ 5895.605867] run fstests generic/190 at 2022-01-12 13:18:46 > >[ 5900.073040] run fstests generic/191 at 2022-01-12 13:18:51 > >[ 5904.614273] run fstests generic/192 at 2022-01-12 13:18:55 > >[ 5905.308580] run fstests generic/193 at 2022-01-12 13:18:56 > >[ 5905.844031] run fstests generic/194 at 2022-01-12 13:18:57 > >[ 5912.087984] run fstests generic/195 at 2022-01-12 13:19:03 > >[ 5918.021826] run fstests generic/196 at 2022-01-12 13:19:09 > >[ 5922.532326] run fstests generic/197 at 2022-01-12 13:19:13 > >[ 5927.467154] run fstests generic/198 at 2022-01-12 13:19:18 > >[ 5933.061489] run fstests generic/199 at 2022-01-12 13:19:24 > >[ 5938.925983] run fstests generic/200 at 2022-01-12 13:19:30 > >[ 5944.827402] run fstests generic/201 at 2022-01-12 13:19:36 > >[ 5948.708601] run fstests generic/202 at 2022-01-12 13:19:39 > >[ 5950.790927] run fstests generic/203 at 2022-01-12 13:19:41 > >[ 5953.029748] run fstests generic/204 at 2022-01-12 13:19:44 > >[ 5954.153740] run fstests generic/205 at 2022-01-12 13:19:45 > >[ 5955.124318] run fstests generic/206 at 2022-01-12 13:19:46 > >[ 5956.139535] run fstests generic/207 at 2022-01-12 13:19:47 > >[ 5976.917435] run fstests generic/209 at 2022-01-12 13:20:08 > >[ 6022.149019] run fstests generic/210 at 2022-01-12 13:20:53 > >[ 6022.898911] run fstests generic/211 at 2022-01-12 13:20:54 > >[ 6024.148505] run fstests generic/212 at 2022-01-12 13:20:55 > >[ 6024.829471] run fstests generic/213 at 2022-01-12 13:20:56 > >[ 6025.661954] run fstests generic/214 at 2022-01-12 13:20:56 > >[ 6026.799438] run fstests generic/215 at 2022-01-12 13:20:57 > >[ 6029.680826] run fstests generic/216 at 2022-01-12 13:21:00 > >[ 6030.690346] run fstests generic/217 at 2022-01-12 13:21:01 > >[ 6031.755530] run fstests generic/218 at 2022-01-12 13:21:02 > >[ 6032.778991] run fstests generic/219 at 2022-01-12 13:21:03 > >[ 6033.283631] run fstests generic/220 at 2022-01-12 13:21:04 > >[ 6034.360789] run fstests generic/221 at 2022-01-12 13:21:05 > >[ 6035.998554] run fstests generic/222 at 2022-01-12 13:21:07 > >[ 6036.984890] run fstests generic/223 at 2022-01-12 13:21:08 > >[ 6037.549093] run fstests generic/224 at 2022-01-12 13:21:08 > >[ 6038.116815] run fstests generic/226 at 2022-01-12 13:21:09 > >[ 6038.692541] run fstests generic/227 at 2022-01-12 13:21:09 > >[ 6039.755092] run fstests generic/228 at 2022-01-12 13:21:10 > >[ 6040.281881] Unsafe core_pattern used with fs.suid_dumpable=2. > > Pipe handler or fully qualified core dump path required. > > Set kernel.core_pattern before fs.suid_dumpable. > >[ 6040.553574] run fstests generic/229 at 2022-01-12 13:21:11 > >[ 6041.551145] run fstests generic/230 at 2022-01-12 13:21:12 > >[ 6042.058550] run fstests generic/231 at 2022-01-12 13:21:13 > >[ 6042.559297] run fstests generic/232 at 2022-01-12 13:21:13 > >[ 6043.063531] run fstests generic/233 at 2022-01-12 13:21:14 > >[ 6043.572898] run fstests generic/234 at 2022-01-12 13:21:14 > >[ 6044.083619] run fstests generic/235 at 2022-01-12 13:21:15 > >[ 6044.595386] run fstests generic/236 at 2022-01-12 13:21:15 > >[ 6046.330897] run fstests generic/237 at 2022-01-12 13:21:17 > >[ 6046.995456] run fstests generic/238 at 2022-01-12 13:21:18 > >[ 6048.062920] run fstests generic/239 at 2022-01-12 13:21:19 > >[ 6079.167087] run fstests generic/240 at 2022-01-12 13:21:50 > >[ 6080.262050] run fstests generic/241 at 2022-01-12 13:21:51 > >[ 6080.777265] run fstests generic/242 at 2022-01-12 13:21:51 > >[ 6165.131825] run fstests generic/243 at 2022-01-12 13:23:16 > >[ 6246.858636] run fstests generic/244 at 2022-01-12 13:24:38 > >[ 6247.538623] run fstests generic/245 at 2022-01-12 13:24:38 > >[ 6248.262918] run fstests generic/246 at 2022-01-12 13:24:39 > >[ 6248.891286] run fstests generic/247 at 2022-01-12 13:24:40 > >[ 6330.034484] run fstests generic/248 at 2022-01-12 13:26:01 > >[ 6330.856382] run fstests generic/249 at 2022-01-12 13:26:02 > >[ 6334.074505] run fstests generic/250 at 2022-01-12 13:26:05 > >[ 6334.909446] run fstests generic/252 at 2022-01-12 13:26:06 > >[ 6335.473954] run fstests generic/253 at 2022-01-12 13:26:06 > >[ 6337.650997] run fstests generic/254 at 2022-01-12 13:26:08 > >[ 6340.130137] run fstests generic/255 at 2022-01-12 13:26:11 > >[ 6341.103237] run fstests generic/256 at 2022-01-12 13:26:12 > >[ 6341.796869] run fstests generic/257 at 2022-01-12 13:26:12 > >[ 6345.943041] run fstests generic/258 at 2022-01-12 13:26:17 > >[ 6346.813066] run fstests generic/259 at 2022-01-12 13:26:18 > >[ 6347.896367] run fstests generic/260 at 2022-01-12 13:26:19 > >[ 6348.746022] run fstests generic/261 at 2022-01-12 13:26:19 > >[ 6349.851327] run fstests generic/262 at 2022-01-12 13:26:21 > >[ 6350.974652] run fstests generic/264 at 2022-01-12 13:26:22 > >[ 6352.017430] run fstests generic/265 at 2022-01-12 13:26:23 > >[ 6353.016731] run fstests generic/266 at 2022-01-12 13:26:24 > >[ 6353.983465] run fstests generic/267 at 2022-01-12 13:26:25 > >[ 6354.953896] run fstests generic/268 at 2022-01-12 13:26:26 > >[ 6355.951768] run fstests generic/269 at 2022-01-12 13:26:27 > >[ 6356.458572] run fstests generic/270 at 2022-01-12 13:26:27 > >[ 6356.938338] run fstests generic/271 at 2022-01-12 13:26:28 > >[ 6357.892032] run fstests generic/272 at 2022-01-12 13:26:29 > >[ 6358.849363] run fstests generic/273 at 2022-01-12 13:26:30 > >[ 6359.360457] run fstests generic/274 at 2022-01-12 13:26:30 > >[ 6359.918582] run fstests generic/275 at 2022-01-12 13:26:31 > >[ 6360.433874] run fstests generic/276 at 2022-01-12 13:26:31 > >[ 6361.462929] run fstests generic/278 at 2022-01-12 13:26:32 > >[ 6362.446136] run fstests generic/279 at 2022-01-12 13:26:33 > >[ 6363.428985] run fstests generic/280 at 2022-01-12 13:26:34 > >[ 6363.934111] run fstests generic/281 at 2022-01-12 13:26:35 > >[ 6364.932675] run fstests generic/282 at 2022-01-12 13:26:36 > >[ 6365.931183] run fstests generic/283 at 2022-01-12 13:26:37 > >[ 6366.950101] run fstests generic/284 at 2022-01-12 13:26:38 > >[ 6370.483205] run fstests generic/285 at 2022-01-12 13:26:41 > >[ 6372.532605] run fstests generic/286 at 2022-01-12 13:26:43 > >[ 6391.552588] run fstests generic/287 at 2022-01-12 13:27:02 > >[ 6395.221066] run fstests generic/288 at 2022-01-12 13:27:06 > >[ 6396.199239] run fstests generic/289 at 2022-01-12 13:27:07 > >[ 6401.494200] run fstests generic/290 at 2022-01-12 13:27:12 > >[ 6406.705872] run fstests generic/291 at 2022-01-12 13:27:17 > >[ 6411.919310] run fstests generic/292 at 2022-01-12 13:27:23 > >[ 6417.313613] run fstests generic/293 at 2022-01-12 13:27:28 > >[ 6424.177254] run fstests generic/295 at 2022-01-12 13:27:35 > >[ 6430.984886] run fstests generic/296 at 2022-01-12 13:27:42 > >[ 6434.891933] run fstests generic/297 at 2022-01-12 13:27:46 > >[ 6435.979562] run fstests generic/298 at 2022-01-12 13:27:47 > >[ 6436.941076] run fstests generic/299 at 2022-01-12 13:27:48 > >[ 6437.539615] run fstests generic/300 at 2022-01-12 13:27:48 > >[ 6438.104575] run fstests generic/301 at 2022-01-12 13:27:49 > >[ 6439.145713] run fstests generic/302 at 2022-01-12 13:27:50 > >[ 6440.109454] run fstests generic/303 at 2022-01-12 13:27:51 > >[ 6441.507025] run fstests generic/304 at 2022-01-12 13:27:52 > >[ 6442.163632] run fstests generic/305 at 2022-01-12 13:27:53 > >[ 6443.161513] run fstests generic/306 at 2022-01-12 13:27:54 > >[ 6444.462375] run fstests generic/307 at 2022-01-12 13:27:55 > >[ 6445.026925] run fstests generic/308 at 2022-01-12 13:27:56 > >[ 6445.694065] run fstests generic/309 at 2022-01-12 13:27:56 > >[ 6447.429347] run fstests generic/311 at 2022-01-12 13:27:58 > >[ 6448.065661] run fstests generic/312 at 2022-01-12 13:27:59 > >[ 6448.641786] run fstests generic/313 at 2022-01-12 13:27:59 > >[ 6453.330380] run fstests generic/314 at 2022-01-12 13:28:04 > >[ 6453.869735] run fstests generic/315 at 2022-01-12 13:28:05 > >[ 6454.432871] run fstests generic/316 at 2022-01-12 13:28:05 > >[ 6455.179812] run fstests generic/317 at 2022-01-12 13:28:06 > >[ 6455.744870] run fstests generic/319 at 2022-01-12 13:28:06 > >[ 6456.295368] run fstests generic/320 at 2022-01-12 13:28:07 > >[ 6456.823414] run fstests generic/321 at 2022-01-12 13:28:08 > >[ 6457.398078] run fstests generic/322 at 2022-01-12 13:28:08 > >[ 6457.986300] run fstests generic/324 at 2022-01-12 13:28:09 > >[ 6458.486502] run fstests generic/325 at 2022-01-12 13:28:09 > >[ 6459.043391] run fstests generic/326 at 2022-01-12 13:28:10 > >[ 6460.040241] run fstests generic/327 at 2022-01-12 13:28:11 > >[ 6461.054872] run fstests generic/328 at 2022-01-12 13:28:12 > >[ 6462.066528] run fstests generic/329 at 2022-01-12 13:28:13 > >[ 6463.065254] run fstests generic/330 at 2022-01-12 13:28:14 > >[ 6471.961534] run fstests generic/331 at 2022-01-12 13:28:23 > >[ 6473.162639] run fstests generic/332 at 2022-01-12 13:28:24 > >[ 6481.558320] run fstests generic/333 at 2022-01-12 13:28:32 > >[ 6482.970708] run fstests generic/334 at 2022-01-12 13:28:34 > >[ 6483.883159] run fstests generic/335 at 2022-01-12 13:28:35 > >[ 6484.424615] run fstests generic/336 at 2022-01-12 13:28:35 > >[ 6485.026317] run fstests generic/337 at 2022-01-12 13:28:36 > >[ 6486.087022] run fstests generic/338 at 2022-01-12 13:28:37 > >[ 6486.853279] run fstests generic/340 at 2022-01-12 13:28:38 > >[ 6529.018625] run fstests generic/341 at 2022-01-12 13:29:20 > >[ 6529.743485] run fstests generic/342 at 2022-01-12 13:29:20 > >[ 6530.324586] run fstests generic/343 at 2022-01-12 13:29:21 > >[ 6530.920079] run fstests generic/344 at 2022-01-12 13:29:22 > >[ 6615.377472] run fstests generic/345 at 2022-01-12 13:30:46 > >[ 6699.843608] run fstests generic/346 at 2022-01-12 13:32:11 > >[ 6738.437542] run fstests generic/347 at 2022-01-12 13:32:49 > >[ 6739.294108] run fstests generic/348 at 2022-01-12 13:32:50 > >[ 6739.898344] run fstests generic/352 at 2022-01-12 13:32:51 > >[ 6741.077399] run fstests generic/353 at 2022-01-12 13:32:52 > >[ 6742.043936] run fstests generic/354 at 2022-01-12 13:32:53 > >[ 6762.336256] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >[ 6771.148344] run fstests generic/355 at 2022-01-12 13:33:22 > >[ 6771.867718] run fstests generic/356 at 2022-01-12 13:33:23 > >[ 6772.723288] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 6774.212765] Adding 10236k swap on /mnt2/test-356/file1. Priority:-3 extents:1 across:10236k > >[ 6774.563473] run fstests generic/358 at 2022-01-12 13:33:25 > >[ 6829.824103] run fstests generic/359 at 2022-01-12 13:34:21 > >[ 6844.529776] run fstests generic/360 at 2022-01-12 13:34:35 > >[ 6845.353612] run fstests generic/361 at 2022-01-12 13:34:36 > >[ 6845.922540] run fstests generic/362 at 2022-01-12 13:34:37 > >[ 6846.514415] run fstests generic/363 at 2022-01-12 13:34:37 > >[ 6847.212681] run fstests generic/364 at 2022-01-12 13:34:38 > >[ 6847.905685] run fstests generic/365 at 2022-01-12 13:34:39 > >[ 6848.597706] run fstests generic/366 at 2022-01-12 13:34:39 > >[ 6849.301636] run fstests generic/367 at 2022-01-12 13:34:40 > >[ 6849.993675] run fstests generic/368 at 2022-01-12 13:34:41 > >[ 6850.694262] run fstests generic/369 at 2022-01-12 13:34:41 > >[ 6851.389744] run fstests generic/370 at 2022-01-12 13:34:42 > >[ 6852.089253] run fstests generic/371 at 2022-01-12 13:34:43 > >[ 6852.772792] run fstests generic/372 at 2022-01-12 13:34:43 > >[ 6853.867908] run fstests generic/373 at 2022-01-12 13:34:45 > >[ 6855.370332] run fstests generic/374 at 2022-01-12 13:34:46 > >[ 6856.417262] run fstests generic/375 at 2022-01-12 13:34:47 > >[ 6857.021504] run fstests generic/376 at 2022-01-12 13:34:48 > >[ 6857.662821] run fstests generic/377 at 2022-01-12 13:34:48 > >[ 6858.728302] run fstests generic/378 at 2022-01-12 13:34:49 > >[ 6859.437621] run fstests generic/379 at 2022-01-12 13:34:50 > >[ 6859.958758] run fstests generic/380 at 2022-01-12 13:34:51 > >[ 6860.467861] run fstests generic/381 at 2022-01-12 13:34:51 > >[ 6860.979217] run fstests generic/382 at 2022-01-12 13:34:52 > >[ 6861.490673] run fstests generic/383 at 2022-01-12 13:34:52 > >[ 6862.007029] run fstests generic/384 at 2022-01-12 13:34:53 > >[ 6862.539285] run fstests generic/385 at 2022-01-12 13:34:53 > >[ 6863.056895] run fstests generic/386 at 2022-01-12 13:34:54 > >[ 6863.540959] run fstests generic/387 at 2022-01-12 13:34:54 > >[ 6864.451640] run fstests generic/388 at 2022-01-12 13:34:55 > >[ 6865.020938] run fstests generic/389 at 2022-01-12 13:34:56 > >[ 6865.578808] run fstests generic/390 at 2022-01-12 13:34:56 > >[ 6866.159617] run fstests generic/391 at 2022-01-12 13:34:57 > >[ 6886.115735] 391 (267517): drop_caches: 3 > >[ 6889.286981] run fstests generic/392 at 2022-01-12 13:35:20 > >[ 6891.203337] run fstests generic/393 at 2022-01-12 13:35:22 > >[ 6893.177969] run fstests generic/394 at 2022-01-12 13:35:24 > >[ 6894.586568] run fstests generic/395 at 2022-01-12 13:35:25 > >[ 6895.341072] run fstests generic/396 at 2022-01-12 13:35:26 > >[ 6896.026789] run fstests generic/397 at 2022-01-12 13:35:27 > >[ 6896.798172] run fstests generic/398 at 2022-01-12 13:35:27 > >[ 6897.556444] run fstests generic/399 at 2022-01-12 13:35:28 > >[ 6898.303641] run fstests generic/400 at 2022-01-12 13:35:29 > >[ 6898.815244] run fstests generic/401 at 2022-01-12 13:35:30 > >[ 6899.937180] run fstests generic/402 at 2022-01-12 13:35:31 > >[ 6901.017461] run fstests generic/404 at 2022-01-12 13:35:32 > >[ 6901.789100] run fstests generic/405 at 2022-01-12 13:35:32 > >[ 6902.645105] run fstests generic/406 at 2022-01-12 13:35:33 > >[ 6910.841871] run fstests generic/407 at 2022-01-12 13:35:42 > >[ 6912.903774] run fstests generic/408 at 2022-01-12 13:35:44 > >[ 6913.608890] run fstests generic/409 at 2022-01-12 13:35:44 > >[ 6914.156131] run fstests generic/410 at 2022-01-12 13:35:45 > >[ 6914.704550] run fstests generic/411 at 2022-01-12 13:35:45 > >[ 6915.251230] run fstests generic/412 at 2022-01-12 13:35:46 > >[ 6916.526789] run fstests generic/413 at 2022-01-12 13:35:47 > >[ 6917.304149] nfs: Unknown parameter 'dax' > >[ 6917.410347] run fstests generic/414 at 2022-01-12 13:35:48 > >[ 6918.634861] run fstests generic/415 at 2022-01-12 13:35:49 > >[ 6933.976957] run fstests generic/416 at 2022-01-12 13:36:05 > >[ 6934.691603] run fstests generic/417 at 2022-01-12 13:36:05 > >[ 6935.629054] run fstests generic/418 at 2022-01-12 13:36:06 > >[ 6936.242138] run fstests generic/419 at 2022-01-12 13:36:07 > >[ 6937.045544] run fstests generic/420 at 2022-01-12 13:36:08 > >[ 6937.839373] run fstests generic/421 at 2022-01-12 13:36:09 > >[ 6938.636575] run fstests generic/424 at 2022-01-12 13:36:09 > >[ 6939.351034] run fstests generic/427 at 2022-01-12 13:36:10 > >[ 6939.996982] run fstests generic/428 at 2022-01-12 13:36:11 > >[ 6940.637416] run fstests generic/429 at 2022-01-12 13:36:11 > >[ 6941.362410] run fstests generic/430 at 2022-01-12 13:36:12 > >[ 6942.506724] run fstests generic/431 at 2022-01-12 13:36:13 > >[ 6943.556512] run fstests generic/432 at 2022-01-12 13:36:14 > >[ 6944.645630] run fstests generic/433 at 2022-01-12 13:36:15 > >[ 6945.677486] run fstests generic/435 at 2022-01-12 13:36:16 > >[ 6946.409026] run fstests generic/436 at 2022-01-12 13:36:17 > >[ 6947.992848] run fstests generic/437 at 2022-01-12 13:36:19 > >[ 6968.653759] run fstests generic/439 at 2022-01-12 13:36:39 > >[ 6970.194179] run fstests generic/440 at 2022-01-12 13:36:41 > >[ 6970.921973] run fstests generic/441 at 2022-01-12 13:36:42 > >[ 6971.489914] run fstests generic/443 at 2022-01-12 13:36:42 > >[ 6972.110321] run fstests generic/444 at 2022-01-12 13:36:43 > >[ 6972.734069] run fstests generic/445 at 2022-01-12 13:36:43 > >[ 6974.220817] run fstests generic/447 at 2022-01-12 13:36:45 > >[ 6975.531450] run fstests generic/448 at 2022-01-12 13:36:46 > >[ 6976.914815] run fstests generic/449 at 2022-01-12 13:36:48 > >[ 6977.512944] run fstests generic/450 at 2022-01-12 13:36:48 > >[ 6978.444175] run fstests generic/451 at 2022-01-12 13:36:49 > >[ 7009.200274] run fstests generic/452 at 2022-01-12 13:37:20 > >[ 7010.248330] run fstests generic/453 at 2022-01-12 13:37:21 > >[ 7012.836935] run fstests generic/454 at 2022-01-12 13:37:24 > >[ 7015.394697] run fstests generic/455 at 2022-01-12 13:37:26 > >[ 7016.318699] run fstests generic/456 at 2022-01-12 13:37:27 > >[ 7016.892196] run fstests generic/457 at 2022-01-12 13:37:28 > >[ 7018.100645] run fstests generic/458 at 2022-01-12 13:37:29 > >[ 7019.153106] run fstests generic/459 at 2022-01-12 13:37:30 > >[ 7020.261614] run fstests generic/460 at 2022-01-12 13:37:31 > >[ 7057.684200] run fstests generic/461 at 2022-01-12 13:38:08 > >[ 7058.928713] run fstests generic/462 at 2022-01-12 13:38:10 > >[ 7059.578267] nfs: Unknown parameter 'dax' > >[ 7059.685070] run fstests generic/463 at 2022-01-12 13:38:10 > >[ 7060.682186] run fstests generic/464 at 2022-01-12 13:38:11 > >[ 7133.376125] run fstests generic/466 at 2022-01-12 13:39:24 > >[ 7134.033001] run fstests generic/467 at 2022-01-12 13:39:25 > >[ 7134.958056] sh (300657): drop_caches: 3 > >[ 7135.273575] sh (300664): drop_caches: 3 > >[ 7135.779078] sh (300671): drop_caches: 3 > >[ 7136.171387] sh (300678): drop_caches: 3 > >[ 7136.372701] sh (300683): drop_caches: 3 > >[ 7136.858710] sh (300690): drop_caches: 3 > >[ 7137.390146] sh (300699): drop_caches: 3 > >[ 7137.986292] sh (300709): drop_caches: 3 > >[ 7138.252495] run fstests generic/468 at 2022-01-12 13:39:29 > >[ 7140.487581] run fstests generic/470 at 2022-01-12 13:39:31 > >[ 7141.285153] run fstests generic/471 at 2022-01-12 13:39:32 > >[ 7141.971971] run fstests generic/472 at 2022-01-12 13:39:33 > >[ 7142.757677] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7143.294807] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >[ 7143.500315] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >[ 7143.621722] Adding 8k swap on /mnt2/swap. Priority:-3 extents:1 across:8k > >[ 7144.046333] run fstests generic/474 at 2022-01-12 13:39:35 > >[ 7144.988579] run fstests generic/475 at 2022-01-12 13:39:36 > >[ 7145.710624] run fstests generic/477 at 2022-01-12 13:39:36 > >[ 7146.845233] sh (302346): drop_caches: 3 > >[ 7147.640367] sh (302387): drop_caches: 3 > >[ 7148.536961] sh (302428): drop_caches: 3 > >[ 7149.466709] sh (302470): drop_caches: 3 > >[ 7149.738194] run fstests generic/479 at 2022-01-12 13:39:40 > >[ 7150.443204] run fstests generic/480 at 2022-01-12 13:39:41 > >[ 7151.048938] run fstests generic/481 at 2022-01-12 13:39:42 > >[ 7151.619524] run fstests generic/482 at 2022-01-12 13:39:42 > >[ 7152.348315] run fstests generic/483 at 2022-01-12 13:39:43 > >[ 7153.020108] run fstests generic/487 at 2022-01-12 13:39:44 > >[ 7153.578129] run fstests generic/488 at 2022-01-12 13:39:44 > >[ 7154.092708] run fstests generic/489 at 2022-01-12 13:39:45 > >[ 7154.645766] run fstests generic/490 at 2022-01-12 13:39:45 > >[ 7156.152532] run fstests generic/492 at 2022-01-12 13:39:47 > >[ 7156.687978] run fstests generic/493 at 2022-01-12 13:39:47 > >[ 7157.440775] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7158.071570] run fstests generic/494 at 2022-01-12 13:39:49 > >[ 7158.945655] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7159.987483] Adding 10236k swap on /mnt2/test-494/file1. Priority:-3 extents:1 across:10236k > >[ 7160.426306] run fstests generic/495 at 2022-01-12 13:39:51 > >[ 7161.398950] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7161.828770] swap activate: swapfile has holes > >[ 7161.924587] Empty swap-file > >[ 7162.186835] run fstests generic/496 at 2022-01-12 13:39:53 > >[ 7163.145304] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7163.664228] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >[ 7169.433211] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >[ 7169.727608] run fstests generic/497 at 2022-01-12 13:40:00 > >[ 7170.735141] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7171.069079] run fstests generic/498 at 2022-01-12 13:40:02 > >[ 7171.732186] run fstests generic/500 at 2022-01-12 13:40:02 > >[ 7172.402636] run fstests generic/501 at 2022-01-12 13:40:03 > >[ 7173.367894] run fstests generic/502 at 2022-01-12 13:40:04 > >[ 7174.036468] run fstests generic/504 at 2022-01-12 13:40:05 > >[ 7174.679080] run fstests generic/505 at 2022-01-12 13:40:05 > >[ 7175.476364] run fstests generic/506 at 2022-01-12 13:40:06 > >[ 7176.336327] run fstests generic/507 at 2022-01-12 13:40:07 > >[ 7176.906752] run fstests generic/508 at 2022-01-12 13:40:08 > >[ 7177.443466] run fstests generic/509 at 2022-01-12 13:40:08 > >[ 7178.113899] run fstests generic/510 at 2022-01-12 13:40:09 > >[ 7178.665874] run fstests generic/511 at 2022-01-12 13:40:09 > >[ 7179.212399] run fstests generic/512 at 2022-01-12 13:40:10 > >[ 7179.863716] run fstests generic/514 at 2022-01-12 13:40:11 > >[ 7180.815618] run fstests generic/515 at 2022-01-12 13:40:12 > >[ 7181.850294] run fstests generic/516 at 2022-01-12 13:40:13 > >[ 7182.497964] run fstests generic/517 at 2022-01-12 13:40:13 > >[ 7183.397705] run fstests generic/518 at 2022-01-12 13:40:14 > >[ 7185.260858] run fstests generic/520 at 2022-01-12 13:40:16 > >[ 7185.995518] run fstests generic/523 at 2022-01-12 13:40:17 > >[ 7187.015108] run fstests generic/524 at 2022-01-12 13:40:18 > >[ 7214.588812] run fstests generic/525 at 2022-01-12 13:40:45 > >[ 7215.945729] run fstests generic/526 at 2022-01-12 13:40:47 > >[ 7216.731432] run fstests generic/527 at 2022-01-12 13:40:47 > >[ 7217.332036] run fstests generic/528 at 2022-01-12 13:40:48 > >[ 7217.928387] run fstests generic/529 at 2022-01-12 13:40:49 > >[ 7218.474947] run fstests generic/530 at 2022-01-12 13:40:49 > >[ 7219.289577] run fstests generic/532 at 2022-01-12 13:40:50 > >[ 7219.984287] run fstests generic/533 at 2022-01-12 13:40:51 > >[ 7221.588573] run fstests generic/534 at 2022-01-12 13:40:52 > >[ 7222.205596] run fstests generic/535 at 2022-01-12 13:40:53 > >[ 7222.829546] run fstests generic/536 at 2022-01-12 13:40:54 > >[ 7223.590202] run fstests generic/537 at 2022-01-12 13:40:54 > >[ 7224.466640] run fstests generic/538 at 2022-01-12 13:40:55 > >[ 7250.048839] run fstests generic/539 at 2022-01-12 13:41:21 > >[ 7251.550550] run fstests generic/540 at 2022-01-12 13:41:22 > >[ 7257.243669] run fstests generic/541 at 2022-01-12 13:41:28 > >[ 7263.478824] run fstests generic/542 at 2022-01-12 13:41:34 > >[ 7269.624181] run fstests generic/543 at 2022-01-12 13:41:40 > >[ 7275.817103] run fstests generic/544 at 2022-01-12 13:41:47 > >[ 7282.092977] run fstests generic/545 at 2022-01-12 13:41:53 > >[ 7282.904252] run fstests generic/546 at 2022-01-12 13:41:54 > >[ 7283.957773] run fstests generic/547 at 2022-01-12 13:41:55 > >[ 7284.580048] run fstests generic/548 at 2022-01-12 13:41:55 > >[ 7285.326032] run fstests generic/549 at 2022-01-12 13:41:56 > >[ 7286.075114] run fstests generic/550 at 2022-01-12 13:41:57 > >[ 7286.842980] run fstests generic/552 at 2022-01-12 13:41:58 > >[ 7287.485856] run fstests generic/553 at 2022-01-12 13:41:58 > >[ 7288.214457] run fstests generic/554 at 2022-01-12 13:41:59 > >[ 7289.123966] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7290.370393] Adding 16380k swap on /mnt2/swapfile. Priority:-3 extents:1 across:16380k > >[ 7290.687659] run fstests generic/555 at 2022-01-12 13:42:01 > >[ 7291.521126] run fstests generic/556 at 2022-01-12 13:42:02 > >[ 7292.049123] run fstests generic/557 at 2022-01-12 13:42:03 > >[ 7292.594633] run fstests generic/558 at 2022-01-12 13:42:03 > >[ 7293.116986] run fstests generic/559 at 2022-01-12 13:42:04 > >[ 7293.625068] run fstests generic/560 at 2022-01-12 13:42:04 > >[ 7294.150767] run fstests generic/561 at 2022-01-12 13:42:05 > >[ 7294.672595] run fstests generic/562 at 2022-01-12 13:42:05 > >[ 7295.755050] run fstests generic/563 at 2022-01-12 13:42:06 > >[ 7296.284954] run fstests generic/564 at 2022-01-12 13:42:07 > >[ 7297.286052] loop0: detected capacity change from 0 to 256 > >[ 7298.231618] run fstests generic/566 at 2022-01-12 13:42:09 > >[ 7298.730755] run fstests generic/567 at 2022-01-12 13:42:09 > >[ 7300.222707] run fstests generic/568 at 2022-01-12 13:42:11 > >[ 7301.134560] run fstests generic/569 at 2022-01-12 13:42:12 > >[ 7302.142643] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >[ 7303.448133] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >[ 7303.452275] NFS: attempt to write to active swap file! > >[ 7303.487542] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >[ 7303.530750] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >[ 7303.587615] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >[ 7303.629119] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >[ 7303.646860] NFS: attempt to write to active swap file! > >[ 7303.979451] run fstests generic/570 at 2022-01-12 13:42:15 > >[ 7304.692420] run fstests generic/572 at 2022-01-12 13:42:15 > >[ 7305.210036] run fstests generic/573 at 2022-01-12 13:42:16 > >[ 7305.731408] run fstests generic/574 at 2022-01-12 13:42:16 > >[ 7306.245226] run fstests generic/575 at 2022-01-12 13:42:17 > >[ 7306.755327] run fstests generic/576 at 2022-01-12 13:42:17 > >[ 7307.415264] run fstests generic/577 at 2022-01-12 13:42:18 > >[ 7307.966901] run fstests generic/579 at 2022-01-12 13:42:19 > >[ 7308.532284] run fstests generic/580 at 2022-01-12 13:42:19 > >[ 7309.267749] run fstests generic/581 at 2022-01-12 13:42:20 > >[ 7309.916075] run fstests generic/582 at 2022-01-12 13:42:21 > >[ 7310.643888] run fstests generic/583 at 2022-01-12 13:42:21 > >[ 7311.371543] run fstests generic/584 at 2022-01-12 13:42:22 > >[ 7312.108260] run fstests generic/585 at 2022-01-12 13:42:23 > >[ 7312.708730] run fstests generic/586 at 2022-01-12 13:42:23 > >[ 7321.372427] run fstests generic/587 at 2022-01-12 13:42:32 > >[ 7321.882959] run fstests generic/588 at 2022-01-12 13:42:33 > >[ 7322.869048] run fstests generic/589 at 2022-01-12 13:42:34 > >[ 7323.420928] run fstests generic/590 at 2022-01-12 13:42:34 > >[ 7599.522683] run fstests generic/591 at 2022-01-12 13:47:10 > >[ 7600.469219] run fstests generic/592 at 2022-01-12 13:47:11 > >[ 7601.209667] run fstests generic/593 at 2022-01-12 13:47:12 > >[ 7601.925298] run fstests generic/594 at 2022-01-12 13:47:13 > >[ 7602.455466] run fstests generic/595 at 2022-01-12 13:47:13 > >[ 7603.181000] run fstests generic/596 at 2022-01-12 13:47:14 > >[ 7603.583124] Process accounting resumed > >[ 7603.780139] run fstests generic/597 at 2022-01-12 13:47:14 > >[ 7604.359127] run fstests generic/598 at 2022-01-12 13:47:15 > >[ 7604.907400] run fstests generic/599 at 2022-01-12 13:47:16 > >[ 7605.710364] run fstests generic/600 at 2022-01-12 13:47:16 > >[ 7606.295426] run fstests generic/601 at 2022-01-12 13:47:17 > >[ 7606.813031] run fstests generic/602 at 2022-01-12 13:47:18 > >[ 7607.566587] run fstests generic/603 at 2022-01-12 13:47:18 > >[ 7608.093235] run fstests generic/604 at 2022-01-12 13:47:19 > >[ 7613.505790] run fstests generic/605 at 2022-01-12 13:47:24 > >[ 7614.268456] nfs: Unknown parameter 'dax' > >[ 7614.378027] run fstests generic/606 at 2022-01-12 13:47:25 > >[ 7614.970728] nfs: Unknown parameter 'dax' > >[ 7615.132524] run fstests generic/608 at 2022-01-12 13:47:26 > >[ 7615.730417] nfs: Unknown parameter 'dax' > >[ 7615.838044] run fstests generic/609 at 2022-01-12 13:47:27 > >[ 7616.725570] run fstests generic/611 at 2022-01-12 13:47:27 > >[ 7617.915374] run fstests nfs/001 at 2022-01-12 13:47:29 > >[ 7620.841996] run fstests shared/002 at 2022-01-12 13:47:32 > >[ 7621.379231] run fstests shared/032 at 2022-01-12 13:47:32 > >[ 7621.870631] run fstests shared/298 at 2022-01-12 13:47:33 > >[ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > >[ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 > >[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' > >[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' > >[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' > >[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > >[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. > >[ 0.000000] signal: max sigframe size: 1776 > >[ 0.000000] BIOS-provided physical RAM map: > >[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable > >[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffd7fff] usable > >[ 0.000000] BIOS-e820: [mem 0x000000007ffd8000-0x000000007fffffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved > >[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved > >[ 0.000000] NX (Execute Disable) protection: active > >[ 0.000000] SMBIOS 2.8 present. > >[ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > >[ 0.000000] tsc: Fast TSC calibration using PIT > >[ 0.000000] tsc: Detected 3591.667 MHz processor > >[ 0.000880] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved > >[ 0.000887] e820: remove [mem 0x000a0000-0x000fffff] usable > >[ 0.000894] last_pfn = 0x7ffd8 max_arch_pfn = 0x400000000 > >[ 0.000926] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT > >[ 0.004010] found SMP MP-table at [mem 0x000f5b80-0x000f5b8f] > >[ 0.004443] RAMDISK: [mem 0x346ce000-0x3635efff] > >[ 0.004450] ACPI: Early table checksum verification disabled > >[ 0.004455] ACPI: RSDP 0x00000000000F58F0 000014 (v00 BOCHS ) > >[ 0.004464] ACPI: RSDT 0x000000007FFE1902 000030 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004473] ACPI: FACP 0x000000007FFE17D6 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004482] ACPI: DSDT 0x000000007FFE0040 001796 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004489] ACPI: FACS 0x000000007FFE0000 000040 > >[ 0.004494] ACPI: APIC 0x000000007FFE184A 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004501] ACPI: WAET 0x000000007FFE18DA 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >[ 0.004506] ACPI: Reserving FACP table memory at [mem 0x7ffe17d6-0x7ffe1849] > >[ 0.004510] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe17d5] > >[ 0.004513] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] > >[ 0.004515] ACPI: Reserving APIC table memory at [mem 0x7ffe184a-0x7ffe18d9] > >[ 0.004518] ACPI: Reserving WAET table memory at [mem 0x7ffe18da-0x7ffe1901] > >[ 0.007926] Zone ranges: > >[ 0.007934] DMA [mem 0x0000000000001000-0x0000000000ffffff] > >[ 0.007940] DMA32 [mem 0x0000000001000000-0x000000007ffd7fff] > >[ 0.007944] Normal empty > >[ 0.007947] Movable zone start for each node > >[ 0.007949] Early memory node ranges > >[ 0.007952] node 0: [mem 0x0000000000001000-0x000000000009efff] > >[ 0.007955] node 0: [mem 0x0000000000100000-0x000000007ffd7fff] > >[ 0.007959] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffd7fff] > >[ 0.007968] On node 0, zone DMA: 1 pages in unavailable ranges > >[ 0.008031] On node 0, zone DMA: 97 pages in unavailable ranges > >[ 0.015752] On node 0, zone DMA32: 40 pages in unavailable ranges > >[ 0.043852] kasan: KernelAddressSanitizer initialized > >[ 0.044423] ACPI: PM-Timer IO Port: 0x608 > >[ 0.044432] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) > >[ 0.044477] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 > >[ 0.044486] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > >[ 0.044490] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) > >[ 0.044494] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > >[ 0.044497] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) > >[ 0.044500] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) > >[ 0.044505] ACPI: Using ACPI (MADT) for SMP configuration information > >[ 0.044508] TSC deadline timer available > >[ 0.044514] smpboot: Allowing 4 CPUs, 0 hotplug CPUs > >[ 0.044531] [mem 0x80000000-0xfeffbfff] available for PCI devices > >[ 0.044536] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns > >[ 0.059178] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 > >[ 0.059473] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u524288 > >[ 0.059481] pcpu-alloc: s231440 r8192 d30704 u524288 alloc=1*2097152 > >[ 0.059486] pcpu-alloc: [0] 0 1 2 3 > >[ 0.059518] Built 1 zonelists, mobility grouping on. Total pages: 516824 > >[ 0.059528] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 > >[ 0.059605] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. > >[ 0.059829] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) > >[ 0.059938] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) > >[ 0.059987] mem auto-init: stack:off, heap alloc:off, heap free:off > >[ 0.189829] Memory: 1652304K/2096600K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 444040K reserved, 0K cma-reserved) > >[ 0.191638] Kernel/User page tables isolation: enabled > >[ 0.191721] ftrace: allocating 48466 entries in 190 pages > >[ 0.208382] ftrace: allocated 190 pages with 6 groups > >[ 0.208563] Dynamic Preempt: full > >[ 0.208737] Running RCU self tests > >[ 0.208749] rcu: Preemptible hierarchical RCU implementation. > >[ 0.208751] rcu: RCU lockdep checking is enabled. > >[ 0.208754] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. > >[ 0.208758] Trampoline variant of Tasks RCU enabled. > >[ 0.208760] Rude variant of Tasks RCU enabled. > >[ 0.208762] Tracing variant of Tasks RCU enabled. > >[ 0.208765] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. > >[ 0.208767] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 > >[ 0.218069] NR_IRQS: 4352, nr_irqs: 72, preallocated irqs: 16 > >[ 0.218411] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 > >[ 0.224704] Console: colour VGA+ 80x25 > >[ 0.273917] printk: console [ttyS0] enabled > >[ 0.274215] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar > >[ 0.274876] ... MAX_LOCKDEP_SUBCLASSES: 8 > >[ 0.275165] ... MAX_LOCK_DEPTH: 48 > >[ 0.275459] ... MAX_LOCKDEP_KEYS: 8192 > >[ 0.275790] ... CLASSHASH_SIZE: 4096 > >[ 0.276100] ... MAX_LOCKDEP_ENTRIES: 32768 > >[ 0.276423] ... MAX_LOCKDEP_CHAINS: 65536 > >[ 0.276742] ... CHAINHASH_SIZE: 32768 > >[ 0.277061] memory used by lock dependency info: 6365 kB > >[ 0.277476] memory used for stack traces: 4224 kB > >[ 0.277830] per task-struct memory footprint: 1920 bytes > >[ 0.278254] ACPI: Core revision 20210930 > >[ 0.278762] APIC: Switch to symmetric I/O mode setup > >[ 0.280353] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c5939df6d, max_idle_ns: 440795297647 ns > >[ 0.281280] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.33 BogoMIPS (lpj=14366668) > >[ 0.282204] pid_max: default: 32768 minimum: 301 > >[ 0.282676] LSM: Security Framework initializing > >[ 0.283076] SELinux: Initializing. > >[ 0.283465] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >[ 0.284092] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >[ 0.285279] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 > >[ 0.285279] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 > >[ 0.285279] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization > >[ 0.285279] Spectre V2 : Mitigation: Full generic retpoline > >[ 0.285279] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch > >[ 0.285279] Spectre V2 : Enabling Restricted Speculation for firmware calls > >[ 0.285279] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier > >[ 0.285279] Speculative Store Bypass: Vulnerable > >[ 0.285279] SRBDS: Unknown: Dependent on hypervisor status > >[ 0.285279] MDS: Vulnerable: Clear CPU buffers attempted, no microcode > >[ 0.285279] Freeing SMP alternatives memory: 44K > >[ 0.285279] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) > >[ 0.285279] Running RCU-tasks wait API self tests > >[ 0.386107] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. > >[ 0.389599] rcu: Hierarchical SRCU implementation. > >[ 0.392441] NMI watchdog: Perf NMI watchdog permanently disabled > >[ 0.393385] Callback from call_rcu_tasks_trace() invoked. > >[ 0.394170] smp: Bringing up secondary CPUs ... > >[ 0.396370] x86: Booting SMP configuration: > >[ 0.396786] .... node #0, CPUs: #1 > >[ 0.066931] smpboot: CPU 1 Converting physical 0 to logical die 1 > >[ 0.482790] #2 > >[ 0.066931] smpboot: CPU 2 Converting physical 0 to logical die 2 > >[ 0.565821] Callback from call_rcu_tasks_rude() invoked. > >[ 0.567462] #3 > >[ 0.066931] smpboot: CPU 3 Converting physical 0 to logical die 3 > >[ 0.649444] smp: Brought up 1 node, 4 CPUs > >[ 0.649755] smpboot: Max logical packages: 4 > >[ 0.650109] smpboot: Total of 4 processors activated (28813.78 BogoMIPS) > >[ 0.652111] devtmpfs: initialized > >[ 0.656548] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns > >[ 0.657296] futex hash table entries: 1024 (order: 5, 131072 bytes, linear) > >[ 0.659317] NET: Registered PF_NETLINK/PF_ROUTE protocol family > >[ 0.660716] audit: initializing netlink subsys (disabled) > >[ 0.661311] audit: type=2000 audit(1642005696.380:1): state=initialized audit_enabled=0 res=1 > >[ 0.662148] thermal_sys: Registered thermal governor 'step_wise' > >[ 0.662161] thermal_sys: Registered thermal governor 'user_space' > >[ 0.662741] cpuidle: using governor ladder > >[ 0.663957] PCI: Using configuration type 1 for base access > >[ 0.673336] Callback from call_rcu_tasks() invoked. > >[ 0.688468] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. > >[ 0.689933] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages > >[ 0.690902] cryptd: max_cpu_qlen set to 1000 > >[ 0.757333] raid6: avx2x4 gen() 34683 MB/s > >[ 0.825285] raid6: avx2x4 xor() 13341 MB/s > >[ 0.893285] raid6: avx2x2 gen() 32969 MB/s > >[ 0.961293] raid6: avx2x2 xor() 18290 MB/s > >[ 1.029283] raid6: avx2x1 gen() 25495 MB/s > >[ 1.097283] raid6: avx2x1 xor() 16599 MB/s > >[ 1.165417] raid6: sse2x4 gen() 18858 MB/s > >[ 1.233284] raid6: sse2x4 xor() 9882 MB/s > >[ 1.301284] raid6: sse2x2 gen() 17529 MB/s > >[ 1.369284] raid6: sse2x2 xor() 10528 MB/s > >[ 1.437284] raid6: sse2x1 gen() 12868 MB/s > >[ 1.505284] raid6: sse2x1 xor() 9047 MB/s > >[ 1.505592] raid6: using algorithm avx2x4 gen() 34683 MB/s > >[ 1.506016] raid6: .... xor() 13341 MB/s, rmw enabled > >[ 1.506395] raid6: using avx2x2 recovery algorithm > >[ 1.507187] ACPI: Added _OSI(Module Device) > >[ 1.507507] ACPI: Added _OSI(Processor Device) > >[ 1.507827] ACPI: Added _OSI(3.0 _SCP Extensions) > >[ 1.508176] ACPI: Added _OSI(Processor Aggregator Device) > >[ 1.508594] ACPI: Added _OSI(Linux-Dell-Video) > >[ 1.508918] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) > >[ 1.509291] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) > >[ 1.529597] ACPI: 1 ACPI AML tables successfully acquired and loaded > >[ 1.536937] ACPI: Interpreter enabled > >[ 1.537121] ACPI: PM: (supports S0 S5) > >[ 1.537300] ACPI: Using IOAPIC for interrupt routing > >[ 1.537790] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug > >[ 1.539878] ACPI: Enabled 2 GPEs in block 00 to 0F > >[ 1.582821] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) > >[ 1.583389] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments HPX-Type3] > >[ 1.584011] acpi PNP0A03:00: PCIe port services disabled; not requesting _OSC control > >[ 1.584761] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. > >[ 1.585813] PCI host bridge to bus 0000:00 > >[ 1.586147] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] > >[ 1.586722] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] > >[ 1.587293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] > >[ 1.587921] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] > >[ 1.588545] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] > >[ 1.589183] pci_bus 0000:00: root bus resource [bus 00-ff] > >[ 1.593451] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 > >[ 1.604897] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 > >[ 1.606756] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 > >[ 1.609820] pci 0000:00:01.1: reg 0x20: [io 0xc2e0-0xc2ef] > >[ 1.611254] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] > >[ 1.611843] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] > >[ 1.612367] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] > >[ 1.612952] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] > >[ 1.613748] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 > >[ 1.614670] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI > >[ 1.615271] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB > >[ 1.616279] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 > >[ 1.618571] pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] > >[ 1.621026] pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] > >[ 1.623401] pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] > >[ 1.625293] pci 0000:00:02.0: reg 0x1c: [io 0xc200-0xc21f] > >[ 1.632521] pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] > >[ 1.643746] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 > >[ 1.645084] pci 0000:00:03.0: reg 0x10: [io 0xc220-0xc23f] > >[ 1.646115] pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc056fff] > >[ 1.650262] pci 0000:00:03.0: reg 0x20: [mem 0xfebd4000-0xfebd7fff 64bit pref] > >[ 1.651726] pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] > >[ 1.663001] pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 > >[ 1.663848] pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] > >[ 1.676622] pci 0000:00:05.0: [8086:2934] type 00 class 0x0c0300 > >[ 1.678734] pci 0000:00:05.0: reg 0x20: [io 0xc240-0xc25f] > >[ 1.690560] pci 0000:00:05.1: [8086:2935] type 00 class 0x0c0300 > >[ 1.692610] pci 0000:00:05.1: reg 0x20: [io 0xc260-0xc27f] > >[ 1.694089] pci 0000:00:05.2: [8086:2936] type 00 class 0x0c0300 > >[ 1.696372] pci 0000:00:05.2: reg 0x20: [io 0xc280-0xc29f] > >[ 1.697989] pci 0000:00:05.7: [8086:293a] type 00 class 0x0c0320 > >[ 1.698889] pci 0000:00:05.7: reg 0x10: [mem 0xfc057000-0xfc057fff] > >[ 1.707037] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000 > >[ 1.708590] pci 0000:00:06.0: reg 0x10: [io 0xc000-0xc03f] > >[ 1.709714] pci 0000:00:06.0: reg 0x14: [mem 0xfc058000-0xfc058fff] > >[ 1.712836] pci 0000:00:06.0: reg 0x20: [mem 0xfebd8000-0xfebdbfff 64bit pref] > >[ 1.726059] pci 0000:00:07.0: [1af4:1001] type 00 class 0x010000 > >[ 1.727542] pci 0000:00:07.0: reg 0x10: [io 0xc040-0xc07f] > >[ 1.728892] pci 0000:00:07.0: reg 0x14: [mem 0xfc059000-0xfc059fff] > >[ 1.731824] pci 0000:00:07.0: reg 0x20: [mem 0xfebdc000-0xfebdffff 64bit pref] > >[ 1.744361] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 > >[ 1.745286] pci 0000:00:08.0: reg 0x10: [io 0xc2a0-0xc2bf] > >[ 1.748005] pci 0000:00:08.0: reg 0x20: [mem 0xfebe0000-0xfebe3fff 64bit pref] > >[ 1.760699] pci 0000:00:09.0: [1af4:1005] type 00 class 0x00ff00 > >[ 1.761568] pci 0000:00:09.0: reg 0x10: [io 0xc2c0-0xc2df] > >[ 1.764291] pci 0000:00:09.0: reg 0x20: [mem 0xfebe4000-0xfebe7fff 64bit pref] > >[ 1.775904] pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000 > >[ 1.777237] pci 0000:00:0a.0: reg 0x10: [io 0xc080-0xc0bf] > >[ 1.778068] pci 0000:00:0a.0: reg 0x14: [mem 0xfc05a000-0xfc05afff] > >[ 1.781719] pci 0000:00:0a.0: reg 0x20: [mem 0xfebe8000-0xfebebfff 64bit pref] > >[ 1.794394] pci 0000:00:0b.0: [1af4:1001] type 00 class 0x010000 > >[ 1.795745] pci 0000:00:0b.0: reg 0x10: [io 0xc0c0-0xc0ff] > >[ 1.796982] pci 0000:00:0b.0: reg 0x14: [mem 0xfc05b000-0xfc05bfff] > >[ 1.799779] pci 0000:00:0b.0: reg 0x20: [mem 0xfebec000-0xfebeffff 64bit pref] > >[ 1.812867] pci 0000:00:0c.0: [1af4:1001] type 00 class 0x010000 > >[ 1.814289] pci 0000:00:0c.0: reg 0x10: [io 0xc100-0xc13f] > >[ 1.815517] pci 0000:00:0c.0: reg 0x14: [mem 0xfc05c000-0xfc05cfff] > >[ 1.818535] pci 0000:00:0c.0: reg 0x20: [mem 0xfebf0000-0xfebf3fff 64bit pref] > >[ 1.830979] pci 0000:00:0d.0: [1af4:1001] type 00 class 0x010000 > >[ 1.832321] pci 0000:00:0d.0: reg 0x10: [io 0xc140-0xc17f] > >[ 1.833286] pci 0000:00:0d.0: reg 0x14: [mem 0xfc05d000-0xfc05dfff] > >[ 1.836445] pci 0000:00:0d.0: reg 0x20: [mem 0xfebf4000-0xfebf7fff 64bit pref] > >[ 1.848403] pci 0000:00:0e.0: [1af4:1001] type 00 class 0x010000 > >[ 1.849691] pci 0000:00:0e.0: reg 0x10: [io 0xc180-0xc1bf] > >[ 1.850908] pci 0000:00:0e.0: reg 0x14: [mem 0xfc05e000-0xfc05efff] > >[ 1.853728] pci 0000:00:0e.0: reg 0x20: [mem 0xfebf8000-0xfebfbfff 64bit pref] > >[ 1.867912] pci 0000:00:0f.0: [1af4:1001] type 00 class 0x010000 > >[ 1.869286] pci 0000:00:0f.0: reg 0x10: [io 0xc1c0-0xc1ff] > >[ 1.870507] pci 0000:00:0f.0: reg 0x14: [mem 0xfc05f000-0xfc05ffff] > >[ 1.873286] pci 0000:00:0f.0: reg 0x20: [mem 0xfebfc000-0xfebfffff 64bit pref] > >[ 1.886571] pci_bus 0000:00: on NUMA node 0 > >[ 1.890389] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 > >[ 1.892145] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 > >[ 1.893842] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 > >[ 1.895486] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 > >[ 1.896509] ACPI: PCI: Interrupt link LNKS configured for IRQ 9 > >[ 1.904775] pci 0000:00:02.0: vgaarb: setting as boot VGA device > >[ 1.904775] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none > >[ 1.904775] pci 0000:00:02.0: vgaarb: bridge control possible > >[ 1.904775] vgaarb: loaded > >[ 1.904775] SCSI subsystem initialized > >[ 1.904775] libata version 3.00 loaded. > >[ 1.904775] ACPI: bus type USB registered > >[ 1.905259] usbcore: registered new interface driver usbfs > >[ 1.909389] usbcore: registered new interface driver hub > >[ 1.909860] usbcore: registered new device driver usb > >[ 1.910380] pps_core: LinuxPPS API ver. 1 registered > >[ 1.910754] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> > >[ 1.911613] PTP clock support registered > >[ 1.912179] EDAC MC: Ver: 3.0.0 > >[ 1.913040] Advanced Linux Sound Architecture Driver Initialized. > >[ 1.913040] PCI: Using ACPI for IRQ routing > >[ 1.913040] PCI: pci_cache_line_size set to 64 bytes > >[ 1.913040] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] > >[ 1.913040] e820: reserve RAM buffer [mem 0x7ffd8000-0x7fffffff] > >[ 1.913283] clocksource: Switched to clocksource tsc-early > >[ 2.100358] VFS: Disk quotas dquot_6.6.0 > >[ 2.100783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) > >[ 2.101643] FS-Cache: Loaded > >[ 2.102237] CacheFiles: Loaded > >[ 2.102534] pnp: PnP ACPI init > >[ 2.103635] pnp 00:03: [dma 2] > >[ 2.106017] pnp: PnP ACPI: found 5 devices > >[ 2.127076] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns > >[ 2.127982] NET: Registered PF_INET protocol family > >[ 2.128550] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) > >[ 2.130129] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) > >[ 2.130900] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) > >[ 2.131794] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) > >[ 2.132819] TCP: Hash tables configured (established 16384 bind 16384) > >[ 2.133780] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) > >[ 2.134414] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) > >[ 2.135294] NET: Registered PF_UNIX/PF_LOCAL protocol family > >[ 2.135777] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > >[ 2.136308] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > >[ 2.136806] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] > >[ 2.137427] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] > >[ 2.137992] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] > >[ 2.138908] pci 0000:00:01.0: PIIX3: Enabling Passive Release > >[ 2.139376] pci 0000:00:00.0: Limiting direct PCI/PCI transfers > >[ 2.139854] pci 0000:00:01.0: Activating ISA DMA hang workarounds > >[ 2.140425] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] > >[ 3.202115] ACPI: \_SB_.LNKA: Enabled at IRQ 10 > >[ 4.239171] pci 0000:00:05.0: quirk_usb_early_handoff+0x0/0xa70 took 2048819 usecs > >[ 5.300725] ACPI: \_SB_.LNKB: Enabled at IRQ 11 > >[ 6.347387] pci 0000:00:05.1: quirk_usb_early_handoff+0x0/0xa70 took 2058145 usecs > >[ 7.421229] ACPI: \_SB_.LNKC: Enabled at IRQ 11 > >[ 8.471039] pci 0000:00:05.2: quirk_usb_early_handoff+0x0/0xa70 took 2073223 usecs > >[ 9.544718] ACPI: \_SB_.LNKD: Enabled at IRQ 10 > >[ 10.599331] pci 0000:00:05.7: quirk_usb_early_handoff+0x0/0xa70 took 2077756 usecs > >[ 10.600123] PCI: CLS 0 bytes, default 64 > >[ 10.601188] Trying to unpack rootfs image as initramfs... > >[ 10.604786] Initialise system trusted keyrings > >[ 10.605377] workingset: timestamp_bits=62 max_order=19 bucket_order=0 > >[ 10.607827] DLM installed > >[ 10.610089] Key type cifs.idmap registered > >[ 10.610742] fuse: init (API version 7.35) > >[ 10.611401] SGI XFS with ACLs, security attributes, no debug enabled > >[ 10.612942] ocfs2: Registered cluster interface o2cb > >[ 10.613684] ocfs2: Registered cluster interface user > >[ 10.614265] OCFS2 User DLM kernel interface loaded > >[ 10.617912] gfs2: GFS2 installed > >[ 10.626466] xor: automatically using best checksumming function avx > >[ 10.627049] Key type asymmetric registered > >[ 10.627348] Asymmetric key parser 'x509' registered > >[ 10.627936] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) > >[ 10.628640] io scheduler mq-deadline registered > >[ 10.628991] io scheduler kyber registered > >[ 10.629268] test_string_helpers: Running tests... > >[ 10.646349] cryptomgr_test (94) used greatest stack depth: 30192 bytes left > >[ 10.647783] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 > >[ 10.649320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 > >[ 10.661911] ACPI: button: Power Button [PWRF] > >[ 11.308291] Freeing initrd memory: 29252K > >[ 11.309219] kworker/u8:1 (116) used greatest stack depth: 28384 bytes left > >[ 11.613446] tsc: Refined TSC clocksource calibration: 3591.600 MHz > >[ 11.614007] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55424d7b, max_idle_ns: 440795215499 ns > >[ 11.615017] clocksource: Switched to clocksource tsc > >[ 24.416686] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled > >[ 24.417569] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A > >[ 24.421615] Non-volatile memory driver v1.3 > >[ 24.421936] Linux agpgart interface v0.103 > >[ 24.423208] ACPI: bus type drm_connector registered > >[ 24.444467] brd: module loaded > >[ 24.457220] loop: module loaded > >[ 24.458122] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 GB/8.00 GiB) > >[ 24.462053] vda: vda1 vda2 > >[ 24.465619] virtio_blk virtio5: [vdb] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >[ 24.469543] virtio_blk virtio6: [vdc] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >[ 24.473451] virtio_blk virtio7: [vdd] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >[ 24.477416] virtio_blk virtio8: [vde] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >[ 24.481188] virtio_blk virtio9: [vdf] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) > >[ 24.484978] virtio_blk virtio10: [vdg] 20971520 512-byte logical blocks (10.7 GB/10.0 GiB) > >[ 24.488125] vdg: > >[ 24.489758] zram: Added device: zram0 > >[ 24.492368] ata_piix 0000:00:01.1: version 2.13 > >[ 24.496603] scsi host0: ata_piix > >[ 24.498008] scsi host1: ata_piix > >[ 24.498675] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc2e0 irq 14 > >[ 24.499256] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc2e8 irq 15 > >[ 24.501218] tun: Universal TUN/TAP device driver, 1.6 > >[ 24.504829] e1000: Intel(R) PRO/1000 Network Driver > >[ 24.505219] e1000: Copyright (c) 1999-2006 Intel Corporation. > >[ 24.505862] e1000e: Intel(R) PRO/1000 Network Driver > >[ 24.506254] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. > >[ 24.507072] PPP generic driver version 2.4.2 > >[ 24.509436] aoe: AoE v85 initialised. > >[ 24.510102] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver > >[ 24.510679] ehci-pci: EHCI PCI platform driver > >[ 24.657958] ata1.01: NODEV after polling detection > >[ 24.658233] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 > >[ 24.660230] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 > >[ 24.714138] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray > >[ 24.714722] cdrom: Uniform CD-ROM driver Revision: 3.20 > >[ 24.749225] sr 0:0:0:0: Attached scsi CD-ROM sr0 > >[ 24.750199] sr 0:0:0:0: Attached scsi generic sg0 type 5 > >[ 25.753762] ehci-pci 0000:00:05.7: EHCI Host Controller > >[ 25.755008] ehci-pci 0000:00:05.7: new USB bus registered, assigned bus number 1 > >[ 25.755944] ehci-pci 0000:00:05.7: irq 10, io mem 0xfc057000 > >[ 25.769490] ehci-pci 0000:00:05.7: USB 2.0 started, EHCI 1.00 > >[ 25.773616] hub 1-0:1.0: USB hub found > >[ 25.774306] hub 1-0:1.0: 6 ports detected > >[ 25.779054] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > >[ 25.779761] ohci-pci: OHCI PCI platform driver > >[ 25.780223] uhci_hcd: USB Universal Host Controller Interface driver > >[ 26.041366] usb 1-1: new high-speed USB device number 2 using ehci-pci > >[ 27.054250] uhci_hcd 0000:00:05.0: UHCI Host Controller > >[ 27.055419] uhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 2 > >[ 27.056446] uhci_hcd 0000:00:05.0: irq 10, io port 0x0000c240 > >[ 27.058858] hub 2-0:1.0: USB hub found > >[ 27.059323] hub 2-0:1.0: 2 ports detected > >[ 28.319755] uhci_hcd 0000:00:05.1: UHCI Host Controller > >[ 28.320738] uhci_hcd 0000:00:05.1: new USB bus registered, assigned bus number 3 > >[ 28.321673] uhci_hcd 0000:00:05.1: irq 11, io port 0x0000c260 > >[ 28.323716] hub 3-0:1.0: USB hub found > >[ 28.324067] hub 3-0:1.0: 2 ports detected > >[ 29.592163] uhci_hcd 0000:00:05.2: UHCI Host Controller > >[ 29.593127] uhci_hcd 0000:00:05.2: new USB bus registered, assigned bus number 4 > >[ 29.594072] uhci_hcd 0000:00:05.2: irq 11, io port 0x0000c280 > >[ 29.596130] hub 4-0:1.0: USB hub found > >[ 29.596496] hub 4-0:1.0: 2 ports detected > >[ 29.598855] usbcore: registered new interface driver usblp > >[ 29.599462] usbcore: registered new interface driver usb-storage > >[ 29.600541] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 > >[ 29.602527] serio: i8042 KBD port at 0x60,0x64 irq 1 > >[ 29.603702] serio: i8042 AUX port at 0x60,0x64 irq 12 > >[ 29.605764] mousedev: PS/2 mouse device common for all mice > >[ 29.607846] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 > >[ 29.609776] input: PC Speaker as /devices/platform/pcspkr/input/input3 > >[ 29.611498] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. > >[ 29.613021] device-mapper: uevent: version 1.0.3 > >[ 29.614146] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com > >[ 29.615545] device-mapper: multipath round-robin: version 1.2.0 loaded > >[ 29.616195] intel_pstate: CPU model not supported > >[ 29.627242] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.7/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 > >[ 29.629270] hid-generic 0003:0627:0001.0001: input: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.7-1/input0 > >[ 29.631016] usbcore: registered new interface driver usbhid > >[ 29.631500] usbhid: USB HID core driver > >[ 29.640019] netem: version 1.3 > >[ 29.640848] NET: Registered PF_INET6 protocol family > >[ 29.643109] Segment Routing with IPv6 > >[ 29.643405] In-situ OAM (IOAM) with IPv6 > >[ 29.643760] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver > >[ 29.645948] NET: Registered PF_PACKET protocol family > >[ 29.646371] NET: Registered PF_KEY protocol family > >[ 29.646805] sctp: Hash tables configured (bind 32/56) > >[ 29.647357] Key type dns_resolver registered > >[ 29.649453] IPI shorthand broadcast: enabled > >[ 29.649838] AVX2 version of gcm_enc/dec engaged. > >[ 29.650351] AES CTR mode by8 optimization enabled > >[ 29.651971] sched_clock: Marking stable (29586356484, 62931318)->(29723854493, -74566691) > >[ 29.654238] Loading compiled-in X.509 certificates > >[ 29.655218] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers > >[ 29.657030] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no > >[ 29.659515] ima: No TPM chip found, activating TPM-bypass! > >[ 29.660173] ima: Allocated hash algorithm: sha1 > >[ 29.660593] ima: No architecture policies found > >[ 29.673045] ALSA device list: > >[ 29.673234] #0: Virtual MIDI Card 1 > >[ 29.682863] Freeing unused kernel image (initmem) memory: 2076K > >[ 29.717568] Write protecting the kernel read-only data: 61440k > >[ 29.721990] Freeing unused kernel image (text/rodata gap) memory: 2028K > >[ 29.724251] Freeing unused kernel image (rodata/data gap) memory: 948K > >[ 29.727486] Run /init as init process > >[ 29.727944] with arguments: > >[ 29.727947] /init > >[ 29.727951] with environment: > >[ 29.727954] HOME=/ > >[ 29.727957] TERM=linux > >[ 29.727960] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 > >[ 29.727964] resume=/dev/mapper/fedora-swap > >[ 29.803093] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >[ 29.806218] systemd[1]: Detected virtualization kvm. > >[ 29.806681] systemd[1]: Detected architecture x86-64. > >[ 29.807140] systemd[1]: Running in initial RAM disk. > >[ 29.809901] systemd[1]: Set hostname to <test1.fieldses.org>. > >[ 29.885369] systemd-hiberna (1054) used greatest stack depth: 28256 bytes left > >[ 29.979654] dracut-rootfs-g (1047) used greatest stack depth: 28216 bytes left > >[ 30.021117] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >[ 30.044537] systemd[1]: Queued start job for default target Initrd Default Target. > >[ 30.047340] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. > >[ 30.050175] systemd[1]: Reached target Slices. > >[ 30.051386] systemd[1]: Reached target Swap. > >[ 30.052613] systemd[1]: Reached target Timers. > >[ 30.054515] systemd[1]: Listening on Journal Audit Socket. > >[ 30.056550] systemd[1]: Listening on Journal Socket (/dev/log). > >[ 30.058686] systemd[1]: Listening on Journal Socket. > >[ 30.060760] systemd[1]: Listening on udev Control Socket. > >[ 30.063831] systemd[1]: Listening on udev Kernel Socket. > >[ 30.065248] systemd[1]: Reached target Sockets. > >[ 30.066604] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >[ 30.071265] systemd[1]: Started Memstrack Anylazing Service. > >[ 30.077532] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. > >[ 30.079586] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. > >[ 30.080901] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) > >[ 30.085726] systemd[1]: Starting Journal Service... > >[ 30.087684] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. > >[ 30.089551] random: rngd: uninitialized urandom read (16 bytes read) > >[ 30.092470] systemd[1]: Starting Apply Kernel Variables... > >[ 30.098065] systemd[1]: Starting Create Static Device Nodes in /dev... > >[ 30.117909] systemd[1]: Starting Setup Virtual Console... > >[ 30.149991] systemd[1]: Finished Create Static Device Nodes in /dev. > >[ 30.159172] systemd[1]: memstrack.service: Succeeded. > >[ 30.198818] systemd[1]: Finished Apply Kernel Variables. > >[ 30.200519] audit: type=1130 audit(1642005725.913:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 30.227486] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 > >[ 30.460095] systemd[1]: Started Journal Service. > >[ 30.461750] audit: type=1130 audit(1642005726.177:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 30.803462] audit: type=1130 audit(1642005726.517:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 31.357792] random: crng init done > >[ 31.748912] dracut-cmdline (1106) used greatest stack depth: 27968 bytes left > >[ 31.752614] audit: type=1130 audit(1642005727.465:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 32.032836] audit: type=1130 audit(1642005727.745:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 32.157892] audit: type=1130 audit(1642005727.873:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 34.122946] virtio_net virtio0 enp0s3: renamed from eth0 > >[ 34.168250] kworker/u8:4 (1729) used greatest stack depth: 27536 bytes left > >[ 34.330444] ata_id (1886) used greatest stack depth: 26656 bytes left > >[ 34.467966] audit: type=1130 audit(1642005730.181:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 34.581444] audit: type=1130 audit(1642005730.293:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 35.924826] audit: type=1130 audit(1642005731.637:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' > >[ 35.979064] audit: type=1130 audit(1642005731.693:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 36.080161] audit: type=1130 audit(1642005731.793:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 36.137141] fsck (2468) used greatest stack depth: 26560 bytes left > >[ 36.142664] audit: type=1130 audit(1642005731.857:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 36.170836] XFS (dm-0): Mounting V5 Filesystem > >[ 36.314126] XFS (dm-0): Ending clean mount > >[ 36.383563] mount (2470) used greatest stack depth: 25344 bytes left > >[ 36.491652] systemd-fstab-g (2483) used greatest stack depth: 25008 bytes left > >[ 37.102323] audit: type=1130 audit(1642005732.817:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 37.104426] audit: type=1131 audit(1642005732.817:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 37.254915] audit: type=1130 audit(1642005732.969:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 37.290146] audit: type=1131 audit(1642005733.005:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 37.296542] audit: type=1131 audit(1642005733.009:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 37.304265] audit: type=1131 audit(1642005733.017:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 40.558013] SELinux: Permission watch in class filesystem not defined in policy. > >[ 40.558745] SELinux: Permission watch in class file not defined in policy. > >[ 40.559313] SELinux: Permission watch_mount in class file not defined in policy. > >[ 40.559934] SELinux: Permission watch_sb in class file not defined in policy. > >[ 40.560593] SELinux: Permission watch_with_perm in class file not defined in policy. > >[ 40.561264] SELinux: Permission watch_reads in class file not defined in policy. > >[ 40.561928] SELinux: Permission watch in class dir not defined in policy. > >[ 40.562491] SELinux: Permission watch_mount in class dir not defined in policy. > >[ 40.563098] SELinux: Permission watch_sb in class dir not defined in policy. > >[ 40.563684] SELinux: Permission watch_with_perm in class dir not defined in policy. > >[ 40.564391] SELinux: Permission watch_reads in class dir not defined in policy. > >[ 40.565023] SELinux: Permission watch in class lnk_file not defined in policy. > >[ 40.565673] SELinux: Permission watch_mount in class lnk_file not defined in policy. > >[ 40.566349] SELinux: Permission watch_sb in class lnk_file not defined in policy. > >[ 40.566973] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. > >[ 40.567658] SELinux: Permission watch_reads in class lnk_file not defined in policy. > >[ 40.568356] SELinux: Permission watch in class chr_file not defined in policy. > >[ 40.568977] SELinux: Permission watch_mount in class chr_file not defined in policy. > >[ 40.569671] SELinux: Permission watch_sb in class chr_file not defined in policy. > >[ 40.570298] SELinux: Permission watch_with_perm in class chr_file not defined in policy. > >[ 40.570986] SELinux: Permission watch_reads in class chr_file not defined in policy. > >[ 40.571646] SELinux: Permission watch in class blk_file not defined in policy. > >[ 40.572293] SELinux: Permission watch_mount in class blk_file not defined in policy. > >[ 40.573045] SELinux: Permission watch_sb in class blk_file not defined in policy. > >[ 40.573722] SELinux: Permission watch_with_perm in class blk_file not defined in policy. > >[ 40.574413] SELinux: Permission watch_reads in class blk_file not defined in policy. > >[ 40.575086] SELinux: Permission watch in class sock_file not defined in policy. > >[ 40.575697] SELinux: Permission watch_mount in class sock_file not defined in policy. > >[ 40.576405] SELinux: Permission watch_sb in class sock_file not defined in policy. > >[ 40.577058] SELinux: Permission watch_with_perm in class sock_file not defined in policy. > >[ 40.577794] SELinux: Permission watch_reads in class sock_file not defined in policy. > >[ 40.578458] SELinux: Permission watch in class fifo_file not defined in policy. > >[ 40.579066] SELinux: Permission watch_mount in class fifo_file not defined in policy. > >[ 40.579727] SELinux: Permission watch_sb in class fifo_file not defined in policy. > >[ 40.580405] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. > >[ 40.581116] SELinux: Permission watch_reads in class fifo_file not defined in policy. > >[ 40.581870] SELinux: Permission perfmon in class capability2 not defined in policy. > >[ 40.582516] SELinux: Permission bpf in class capability2 not defined in policy. > >[ 40.583123] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. > >[ 40.583865] SELinux: Permission perfmon in class cap2_userns not defined in policy. > >[ 40.584574] SELinux: Permission bpf in class cap2_userns not defined in policy. > >[ 40.585208] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. > >[ 40.586020] SELinux: Class mctp_socket not defined in policy. > >[ 40.586482] SELinux: Class perf_event not defined in policy. > >[ 40.586930] SELinux: Class anon_inode not defined in policy. > >[ 40.587380] SELinux: Class io_uring not defined in policy. > >[ 40.587811] SELinux: the above unknown classes and permissions will be allowed > >[ 40.638612] SELinux: policy capability network_peer_controls=1 > >[ 40.639094] SELinux: policy capability open_perms=1 > >[ 40.639471] SELinux: policy capability extended_socket_class=1 > >[ 40.639937] SELinux: policy capability always_check_network=0 > >[ 40.640472] SELinux: policy capability cgroup_seclabel=1 > >[ 40.640907] SELinux: policy capability nnp_nosuid_transition=1 > >[ 40.641442] SELinux: policy capability genfs_seclabel_symlinks=0 > >[ 40.858863] systemd[1]: Successfully loaded SELinux policy in 2.430314s. > >[ 41.410189] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 249.521ms. > >[ 41.418749] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >[ 41.421461] systemd[1]: Detected virtualization kvm. > >[ 41.421851] systemd[1]: Detected architecture x86-64. > >[ 41.439136] systemd[1]: Set hostname to <test1.fieldses.org>. > >[ 41.753375] lvmconfig (2543) used greatest stack depth: 24544 bytes left > >[ 41.774174] grep (2557) used greatest stack depth: 24448 bytes left > >[ 41.800082] zram_generator::generator[2554]: Creating dev-zram0.swap for /dev/zram0 (823MB) > >[ 41.850246] systemd-sysv-generator[2552]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust. > >[ 42.699764] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >[ 42.961005] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. > >[ 43.550746] kauditd_printk_skb: 13 callbacks suppressed > >[ 43.550750] audit: type=1131 audit(1642005739.265:33): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.557309] systemd[1]: initrd-switch-root.service: Succeeded. > >[ 43.559018] systemd[1]: Stopped Switch Root. > >[ 43.559933] audit: type=1130 audit(1642005739.273:34): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.562887] audit: type=1131 audit(1642005739.277:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.563870] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. > >[ 43.566772] systemd[1]: Created slice system-getty.slice. > >[ 43.568626] systemd[1]: Created slice system-modprobe.slice. > >[ 43.570533] systemd[1]: Created slice system-serial\x2dgetty.slice. > >[ 43.572518] systemd[1]: Created slice system-sshd\x2dkeygen.slice. > >[ 43.575249] systemd[1]: Created slice system-swap\x2dcreate.slice. > >[ 43.577790] systemd[1]: Created slice system-systemd\x2dfsck.slice. > >[ 43.580470] systemd[1]: Created slice User and Session Slice. > >[ 43.581081] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. > >[ 43.583848] systemd[1]: Started Forward Password Requests to Wall Directory Watch. > >[ 43.587144] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. > >[ 43.588834] systemd[1]: Reached target Local Encrypted Volumes. > >[ 43.589488] systemd[1]: Stopped target Switch Root. > >[ 43.590478] systemd[1]: Stopped target Initrd File Systems. > >[ 43.591448] systemd[1]: Stopped target Initrd Root File System. > >[ 43.592607] systemd[1]: Reached target Paths. > >[ 43.593681] systemd[1]: Reached target Slices. > >[ 43.595921] systemd[1]: Listening on Device-mapper event daemon FIFOs. > >[ 43.599288] systemd[1]: Listening on LVM2 poll daemon socket. > >[ 43.603589] systemd[1]: Listening on RPCbind Server Activation Socket. > >[ 43.604301] systemd[1]: Reached target RPC Port Mapper. > >[ 43.621281] systemd[1]: Listening on Process Core Dump Socket. > >[ 43.623666] systemd[1]: Listening on initctl Compatibility Named Pipe. > >[ 43.639128] systemd[1]: Listening on udev Control Socket. > >[ 43.641921] systemd[1]: Listening on udev Kernel Socket. > >[ 43.648355] systemd[1]: Activating swap /dev/mapper/fedora-swap... > >[ 43.654892] systemd[1]: Mounting Huge Pages File System... > >[ 43.661099] systemd[1]: Mounting POSIX Message Queue File System... > >[ 43.667262] systemd[1]: Mounting NFSD configuration filesystem... > >[ 43.676216] systemd[1]: Mounting Kernel Debug File System... > >[ 43.682222] Adding 839676k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:839676k > >[ 43.684653] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... > >[ 43.686822] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >[ 43.696795] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... > >[ 43.703564] systemd[1]: Starting Load Kernel Module configfs... > >[ 43.711831] systemd[1]: Starting Load Kernel Module drm... > >[ 43.721843] systemd[1]: Starting Load Kernel Module fuse... > >[ 43.735057] systemd[1]: Starting Preprocess NFS configuration convertion... > >[ 43.739099] systemd[1]: plymouth-switch-root.service: Succeeded. > >[ 43.742433] systemd[1]: Stopped Plymouth switch root service. > >[ 43.744497] audit: type=1131 audit(1642005739.457:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.751143] systemd[1]: Starting Create swap on /dev/zram0... > >[ 43.752961] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. > >[ 43.755225] systemd[1]: systemd-fsck-root.service: Succeeded. > >[ 43.758291] systemd[1]: Stopped File System Check on Root Device. > >[ 43.759755] audit: type=1131 audit(1642005739.473:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.759862] systemd[1]: Stopped Journal Service. > >[ 43.766144] audit: type=1130 audit(1642005739.481:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.770089] audit: type=1131 audit(1642005739.481:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 43.785015] systemd[1]: Starting Journal Service... > >[ 43.786753] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. > >[ 43.788967] zram0: detected capacity change from 0 to 1685504 > >[ 43.792217] systemd[1]: Starting Remount Root and Kernel File Systems... > >[ 43.793231] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. > >[ 43.799775] systemd[1]: Starting Apply Kernel Variables... > >[ 43.830240] systemd[1]: Starting Coldplug All udev Devices... > >[ 43.833802] systemd[1]: sysroot.mount: Succeeded. > >[ 43.838089] RPC: Registered named UNIX socket transport module. > >[ 43.838642] RPC: Registered udp transport module. > >[ 43.838999] RPC: Registered tcp transport module. > >[ 43.839369] RPC: Registered tcp NFSv4.1 backchannel transport module. > >[ 43.854269] systemd[1]: Activated swap /dev/mapper/fedora-swap. > >[ 43.871240] audit: type=1305 audit(1642005739.585:40): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:syslogd_t:s0 res=1 > >[ 43.872637] audit: type=1300 audit(1642005739.585:40): arch=c000003e syscall=46 success=yes exit=60 a0=5 a1=7ffd304bc550 a2=4000 a3=7ffd304bc5fc items=0 ppid=1 pid=2572 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-journal" exe="/usr/lib/systemd/systemd-journald" subj=system_u:system_r:syslogd_t:s0 key=(null) > >[ 43.876478] audit: type=1327 audit(1642005739.585:40): proctitle="/usr/lib/systemd/systemd-journald" > >[ 43.882944] systemd[1]: Mounted Huge Pages File System. > >[ 43.886495] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) > >[ 43.895767] systemd[1]: Started Journal Service. > >[ 43.974904] Adding 842748k swap on /dev/zram0. Priority:100 extents:1 across:842748k SS > >[ 43.996937] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). > >[ 46.194003] BTRFS: device fsid 27379e6a-3b97-45ef-bf83-dc7e8178b695 devid 1 transid 865 /dev/vde scanned by systemd-udevd (3767) > >[ 47.371666] FAT-fs (vdg): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. > >[ 47.378054] XFS (vdb): Mounting V5 Filesystem > >[ 47.384999] XFS (vdf): Mounting V5 Filesystem > >[ 47.404867] EXT4-fs (vdd): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. > >[ 47.576714] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. > >[ 48.050435] XFS (vdf): Ending clean mount > >[ 48.091447] XFS (vdb): Ending clean mount > >[ 48.100548] xfs filesystem being mounted at /exports/xfs2 supports timestamps until 2038 (0x7fffffff) > >[ 48.102015] xfs filesystem being mounted at /exports/xfs supports timestamps until 2038 (0x7fffffff) > >[ 48.600280] kauditd_printk_skb: 40 callbacks suppressed > >[ 48.600285] audit: type=1130 audit(1642005744.313:73): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=nfs-idmapd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >[ 48.650555] audit: type=1400 audit(1642005744.365:74): avc: denied { map } for pid=3849 comm="nfsdcld" path="/var/lib/nfs/nfsdcld/main.sqlite-shm" dev="dm-0" ino=873070 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:var_lib_nfs_t:s0 tclass=file permissive=1 > >[ 48.655197] audit: type=1300 audit(1642005744.365:74): arch=c000003e syscall=9 success=yes exit=140401715851264 a0=0 a1=8000 a2=3 a3=1 items=0 ppid=1 pid=3849 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nfsdcld" exe="/root/nfsdcld" subj=system_u:system_r:init_t:s0 key=(null) > >[ 48.659212] audit: type=1327 audit(1642005744.365:74): proctitle="/root/nfsdcld" > >[ 48.662263] audit: type=1305 audit(1642005744.377:75): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 > >[ 48.663809] audit: type=1300 audit(1642005744.377:75): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd61589d20 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > >[ 48.668534] audit: type=1327 audit(1642005744.377:75): proctitle="/sbin/auditd" > >[ 48.669369] audit: type=1305 audit(1642005744.377:76): op=set audit_pid=3850 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 > >[ 48.670842] audit: type=1300 audit(1642005744.377:76): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd615879d0 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > >[ 48.673934] audit: type=1327 audit(1642005744.377:76): proctitle="/sbin/auditd" > >[ 51.467504] plymouthd (2385) used greatest stack depth: 24080 bytes left > >[ 52.964929] NFSD: Using nfsdcld client tracking operations. > >[ 52.965487] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000098) > >[ 57.672761] rpm (4068) used greatest stack depth: 22976 bytes left > >[ 201.516445] clocksource: timekeeping watchdog on CPU2: acpi_pm retried 2 times before success > > > >[ 335.595143] ====================================================== > >[ 335.596176] WARNING: possible circular locking dependency detected > >[ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted > >[ 335.597903] ------------------------------------------------------ > >[ 335.598845] kworker/u8:0/7 is trying to acquire lock: > >[ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.601111] > > but task is already holding lock: > >[ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >[ 335.602896] > > which lock already depends on the new lock. > > > >[ 335.603378] > > the existing dependency chain (in reverse order) is: > >[ 335.603897] > > -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: > >[ 335.604305] _raw_spin_lock+0x2f/0x40 > >[ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] > >[ 335.605078] posix_lock_inode+0x9b8/0x1a50 > >[ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] > >[ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >[ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >[ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] > >[ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] > >[ 335.607604] nfsd+0x306/0x530 [nfsd] > >[ 335.607923] kthread+0x3b1/0x490 > >[ 335.608199] ret_from_fork+0x22/0x30 > >[ 335.608512] > > -> #1 (&ctx->flc_lock){+.+.}-{2:2}: > >[ 335.608878] _raw_spin_lock+0x2f/0x40 > >[ 335.609187] check_for_locks+0xcf/0x200 [nfsd] > >[ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] > >[ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >[ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >[ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] > >[ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] > >[ 335.611863] nfsd+0x306/0x530 [nfsd] > >[ 335.612193] kthread+0x3b1/0x490 > >[ 335.612463] ret_from_fork+0x22/0x30 > >[ 335.612764] > > -> #0 (&clp->cl_lock){+.+.}-{2:2}: > >[ 335.613120] __lock_acquire+0x29f8/0x5b80 > >[ 335.613469] lock_acquire+0x1a6/0x4b0 > >[ 335.613763] _raw_spin_lock+0x2f/0x40 > >[ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.614477] process_one_work+0x7ec/0x1320 > >[ 335.614813] worker_thread+0x59e/0xf90 > >[ 335.615135] kthread+0x3b1/0x490 > >[ 335.615409] ret_from_fork+0x22/0x30 > >[ 335.615695] > > other info that might help us debug this: > > > >[ 335.616135] Chain exists of: > > &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock > > > >[ 335.616806] Possible unsafe locking scenario: > > > >[ 335.617140] CPU0 CPU1 > >[ 335.617467] ---- ---- > >[ 335.617793] lock(&clp->cl_cs_lock); > >[ 335.618036] lock(&ctx->flc_lock); > >[ 335.618531] lock(&clp->cl_cs_lock); > >[ 335.619037] lock(&clp->cl_lock); > >[ 335.619256] > > *** DEADLOCK *** > > > >[ 335.619487] 4 locks held by kworker/u8:0/7: > >[ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 > >[ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 > >[ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] > >[ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >[ 335.623462] > > stack backtrace: > >[ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 > >[ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > >[ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] > >[ 335.625514] Call Trace: > >[ 335.625641] <TASK> > >[ 335.625734] dump_stack_lvl+0x45/0x59 > >[ 335.625981] check_noncircular+0x23e/0x2e0 > >[ 335.626268] ? print_circular_bug+0x450/0x450 > >[ 335.626583] ? mark_lock+0xf1/0x30c0 > >[ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 > >[ 335.627156] __lock_acquire+0x29f8/0x5b80 > >[ 335.627463] ? lock_chain_count+0x20/0x20 > >[ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >[ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >[ 335.628555] lock_acquire+0x1a6/0x4b0 > >[ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.629184] ? lock_release+0x6d0/0x6d0 > >[ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] > >[ 335.629825] ? do_raw_spin_lock+0x11e/0x240 > >[ 335.630120] ? rwlock_bug.part.0+0x90/0x90 > >[ 335.630409] _raw_spin_lock+0x2f/0x40 > >[ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] > >[ 335.631450] ? lock_release+0x6d0/0x6d0 > >[ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] > >[ 335.632110] process_one_work+0x7ec/0x1320 > >[ 335.632411] ? lock_release+0x6d0/0x6d0 > >[ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 > >[ 335.633002] ? rwlock_bug.part.0+0x90/0x90 > >[ 335.633290] worker_thread+0x59e/0xf90 > >[ 335.633548] ? process_one_work+0x1320/0x1320 > >[ 335.633860] kthread+0x3b1/0x490 > >[ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 > >[ 335.634396] ? set_kthread_struct+0x100/0x100 > >[ 335.634709] ret_from_fork+0x22/0x30 > >[ 335.634961] </TASK> > >[ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left > >[ 751.769042] nfsd: last server has exited, flushing export cache > >[ 751.957555] NFSD: Using nfsdcld client tracking operations. > >[ 751.958050] NFSD: starting 15-second grace period (net f0000098) > >[ 773.101065] nfsd: last server has exited, flushing export cache > >[ 773.341554] NFSD: Using nfsdcld client tracking operations. > >[ 773.342404] NFSD: starting 15-second grace period (net f0000098) > >[ 795.757041] nfsd: last server has exited, flushing export cache > >[ 795.881057] NFSD: Using nfsdcld client tracking operations. > >[ 795.881637] NFSD: starting 15-second grace period (net f0000098) > >[ 816.968871] nfsd: last server has exited, flushing export cache > >[ 817.199987] NFSD: Using nfsdcld client tracking operations. > >[ 817.201123] NFSD: starting 15-second grace period (net f0000098) > >[ 817.696746] nfsd: last server has exited, flushing export cache > >[ 817.925616] NFSD: Using nfsdcld client tracking operations. > >[ 817.926073] NFSD: starting 15-second grace period (net f0000098) > >[ 839.080820] nfsd: last server has exited, flushing export cache > >[ 839.321569] NFSD: Using nfsdcld client tracking operations. > >[ 839.322562] NFSD: starting 15-second grace period (net f0000098) > >[ 860.492782] nfsd: last server has exited, flushing export cache > >[ 860.749705] NFSD: Using nfsdcld client tracking operations. > >[ 860.751710] NFSD: starting 15-second grace period (net f0000098) > >[ 882.889711] nfsd: last server has exited, flushing export cache > >[ 883.125502] NFSD: Using nfsdcld client tracking operations. > >[ 883.126399] NFSD: starting 15-second grace period (net f0000098) > >[ 904.224662] nfsd: last server has exited, flushing export cache > >[ 904.342387] NFSD: Using nfsdcld client tracking operations. > >[ 904.342962] NFSD: starting 15-second grace period (net f0000098) > >[ 947.528620] nfsd: last server has exited, flushing export cache > >[ 947.763520] NFSD: Using nfsdcld client tracking operations. > >[ 947.764569] NFSD: starting 15-second grace period (net f0000098) > >[ 1442.187410] nfsd: last server has exited, flushing export cache > >[ 1442.430496] NFSD: Using nfsdcld client tracking operations. > >[ 1442.430974] NFSD: starting 15-second grace period (net f0000098) > >[ 1483.739309] nfsd: last server has exited, flushing export cache > >[ 1483.864102] NFSD: Using nfsdcld client tracking operations. > >[ 1483.864606] NFSD: starting 15-second grace period (net f0000098) > >[ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >[ 1508.807419] nfsd: last server has exited, flushing export cache > >[ 1508.925396] NFSD: Using nfsdcld client tracking operations. > >[ 1508.925905] NFSD: starting 15-second grace period (net f0000098) > >[ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1530.667340] nfsd: last server has exited, flushing export cache > >[ 1530.803387] NFSD: Using nfsdcld client tracking operations. > >[ 1530.804150] NFSD: starting 15-second grace period (net f0000098) > >[ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1552.563368] nfsd: last server has exited, flushing export cache > >[ 1552.794957] NFSD: Using nfsdcld client tracking operations. > >[ 1552.797092] NFSD: starting 15-second grace period (net f0000098) > >[ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1594.943247] nfsd: last server has exited, flushing export cache > >[ 1595.175609] NFSD: Using nfsdcld client tracking operations. > >[ 1595.177610] NFSD: starting 15-second grace period (net f0000098) > >[ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 1618.323178] nfsd: last server has exited, flushing export cache > >[ 1618.553210] NFSD: Using nfsdcld client tracking operations. > >[ 1618.555049] NFSD: starting 15-second grace period (net f0000098) > >[ 1620.455011] nfsd: last server has exited, flushing export cache > >[ 1620.687824] NFSD: Using nfsdcld client tracking operations. > >[ 1620.688329] NFSD: starting 15-second grace period (net f0000098) > >[ 1660.003178] nfsd: last server has exited, flushing export cache > >[ 1660.236374] NFSD: Using nfsdcld client tracking operations. > >[ 1660.237760] NFSD: starting 15-second grace period (net f0000098) > >[ 1660.842977] nfsd: last server has exited, flushing export cache > >[ 1661.061619] NFSD: Using nfsdcld client tracking operations. > >[ 1661.062070] NFSD: starting 15-second grace period (net f0000098) > >[ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >[ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >[ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >[ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success > > > > > >I will update the > >>Documentation/filesystems/locking.rst in v10. > >> > >>>I agree with Chuck that we don't need to reschedule the laundromat, it's > >>>OK if it takes longer to get around to cleaning up a dead client. > >>Yes, it is now implemented for lock conflict and share reservation > >>resolution. I'm doing the same for delegation conflict. > >> > >>-Dai > >> > >>>--b. > >>> > >>>On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: > >>>>Hi Bruce, Chuck > >>>> > >>>>This series of patches implement the NFSv4 Courteous Server. > >>>> > >>>>A server which does not immediately expunge the state on lease expiration > >>>>is known as a Courteous Server. A Courteous Server continues to recognize > >>>>previously generated state tokens as valid until conflict arises between > >>>>the expired state and the requests from another client, or the server > >>>>reboots. > >>>> > >>>>The v2 patch includes the following: > >>>> > >>>>. add new callback, lm_expire_lock, to lock_manager_operations to > >>>> allow the lock manager to take appropriate action with conflict lock. > >>>> > >>>>. handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. > >>>> > >>>>. expire courtesy client after 24hr if client has not reconnected. > >>>> > >>>>. do not allow expired client to become courtesy client if there are > >>>> waiters for client's locks. > >>>> > >>>>. modify client_info_show to show courtesy client and seconds from > >>>> last renew. > >>>> > >>>>. fix a problem with NFSv4.1 server where the it keeps returning > >>>> SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after > >>>> the courtesy client re-connects, causing the client to keep sending > >>>> BCTS requests to server. > >>>> > >>>>The v3 patch includes the following: > >>>> > >>>>. modified posix_test_lock to check and resolve conflict locks > >>>> to handle NLM TEST and NFSv4 LOCKT requests. > >>>> > >>>>. separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > >>>> > >>>>The v4 patch includes: > >>>> > >>>>. rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock > >>>> by asking the laudromat thread to destroy the courtesy client. > >>>> > >>>>. handle NFSv4 share reservation conflicts with courtesy client. This > >>>> includes conflicts between access mode and deny mode and vice versa. > >>>> > >>>>. drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > >>>> > >>>>The v5 patch includes: > >>>> > >>>>. fix recursive locking of file_rwsem from posix_lock_file. > >>>> > >>>>. retest with LOCKDEP enabled. > >>>> > >>>>The v6 patch includes: > >>>> > >>>>. merge witn 5.15-rc7 > >>>> > >>>>. fix a bug in nfs4_check_deny_bmap that did not check for matched > >>>> nfs4_file before checking for access/deny conflict. This bug causes > >>>> pynfs OPEN18 to fail since the server taking too long to release > >>>> lots of un-conflict clients' state. > >>>> > >>>>. enhance share reservation conflict handler to handle case where > >>>> a large number of conflict courtesy clients need to be expired. > >>>> The 1st 100 clients are expired synchronously and the rest are > >>>> expired in the background by the laundromat and NFS4ERR_DELAY > >>>> is returned to the NFS client. This is needed to prevent the > >>>> NFS client from timing out waiting got the reply. > >>>> > >>>>The v7 patch includes: > >>>> > >>>>. Fix race condition in posix_test_lock and posix_lock_inode after > >>>> dropping spinlock. > >>>> > >>>>. Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock > >>>> callback > >>>> > >>>>. Always resolve share reservation conflicts asynchrously. > >>>> > >>>>. Fix bug in nfs4_laundromat where spinlock is not used when > >>>> scanning cl_ownerstr_hashtbl. > >>>> > >>>>. Fix bug in nfs4_laundromat where idr_get_next was called > >>>> with incorrect 'id'. > >>>> > >>>>. Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. > >>>> > >>>>The v8 patch includes: > >>>> > >>>>. Fix warning in nfsd4_fl_expire_lock reported by test robot. > >>>> > >>>>The V9 patch include: > >>>> > >>>>. Simplify lm_expire_lock API by (1) remove the 'testonly' flag > >>>> and (2) specifying return value as true/false to indicate > >>>> whether conflict was succesfully resolved. > >>>> > >>>>. Rework nfsd4_fl_expire_lock to mark client with > >>>> NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire > >>>> the client in the background. > >>>> > >>>>. Add a spinlock in nfs4_client to synchronize access to the > >>>> NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to > >>>> handle race conditions when resolving lock and share reservation > >>>> conflict. > >>>> > >>>>. Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT > >>>> are now consisdered 'dead', waiting for the laundromat to expire > >>>> it. This client is no longer allowed to use its states if it > >>>> re-connects before the laundromat finishes expiring the client. > >>>> > >>>> For v4.1 client, the detection is done in the processing of the > >>>> SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client > >>>> to re-establish new clientid and session. > >>>> For v4.0 client, the detection is done in the processing of the > >>>> RENEW and state-related ops and return NFS4ERR_EXPIRE to force > >>>> the client to re-establish new clientid.
On 1/12/22 11:42 AM, J. Bruce Fields wrote: > On Wed, Jan 12, 2022 at 11:31:55AM -0800, dai.ngo@oracle.com wrote: >> On 1/12/22 11:21 AM, J. Bruce Fields wrote: >>> On Wed, Jan 12, 2022 at 11:05:03AM -0800, dai.ngo@oracle.com wrote: >>>> On 1/12/22 10:59 AM, J. Bruce Fields wrote: >>>>> Could you look back over previous comments? I notice there's a couple >>>>> unaddressed (circular locking dependency, Documentation/filesystems/). >>>> I think v9 addresses the circular locking dependency. >>> The below is on 5.16 + these two v9 patches. >>> >>> --b. >>> >>> [ 335.595143] ====================================================== >>> [ 335.596176] WARNING: possible circular locking dependency detected >>> [ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted >>> [ 335.597903] ------------------------------------------------------ >>> [ 335.598845] kworker/u8:0/7 is trying to acquire lock: >>> [ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.601111] >>> but task is already holding lock: >>> [ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] >> This is the new spinlock that I added. It's weird that I don't see it >> my messages log, I will check. > Not especially weird, we probably have different config options and run > different tests. > > You'll need to just inspect the code and figure ou why these locks are > being taken in different orders. I will inspect the code paths but it helps to reproduce this warning messages to ensure the problem is really fixed. I have these in my .config: CONFIG_LOCKDEP_SUPPORT=y CONFIG_LOCKDEP=y CONFIG_LOCKDEP_BITS=15 CONFIG_LOCKDEP_CHAINS_BITS=16 CONFIG_LOCKDEP_STACK_TRACE_BITS=19 CONFIG_LOCKDEP_STACK_TRACE_HASH_BITS=14 CONFIG_LOCKDEP_CIRCULAR_QUEUE_BITS=12 # CONFIG_DEBUG_LOCKDEP is not set I ran pynfs and did not see the messages. What tests did you run to get these messages? Thanks, -Dai > > --b. > >> Thanks, >> -Dai >> >>> [ 335.602896] >>> which lock already depends on the new lock. >>> >>> [ 335.603378] >>> the existing dependency chain (in reverse order) is: >>> [ 335.603897] >>> -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: >>> [ 335.604305] _raw_spin_lock+0x2f/0x40 >>> [ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] >>> [ 335.605078] posix_lock_inode+0x9b8/0x1a50 >>> [ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] >>> [ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] >>> [ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] >>> [ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] >>> [ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] >>> [ 335.607604] nfsd+0x306/0x530 [nfsd] >>> [ 335.607923] kthread+0x3b1/0x490 >>> [ 335.608199] ret_from_fork+0x22/0x30 >>> [ 335.608512] >>> -> #1 (&ctx->flc_lock){+.+.}-{2:2}: >>> [ 335.608878] _raw_spin_lock+0x2f/0x40 >>> [ 335.609187] check_for_locks+0xcf/0x200 [nfsd] >>> [ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] >>> [ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] >>> [ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] >>> [ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] >>> [ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] >>> [ 335.611863] nfsd+0x306/0x530 [nfsd] >>> [ 335.612193] kthread+0x3b1/0x490 >>> [ 335.612463] ret_from_fork+0x22/0x30 >>> [ 335.612764] >>> -> #0 (&clp->cl_lock){+.+.}-{2:2}: >>> [ 335.613120] __lock_acquire+0x29f8/0x5b80 >>> [ 335.613469] lock_acquire+0x1a6/0x4b0 >>> [ 335.613763] _raw_spin_lock+0x2f/0x40 >>> [ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.614477] process_one_work+0x7ec/0x1320 >>> [ 335.614813] worker_thread+0x59e/0xf90 >>> [ 335.615135] kthread+0x3b1/0x490 >>> [ 335.615409] ret_from_fork+0x22/0x30 >>> [ 335.615695] >>> other info that might help us debug this: >>> >>> [ 335.616135] Chain exists of: >>> &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock >>> >>> [ 335.616806] Possible unsafe locking scenario: >>> >>> [ 335.617140] CPU0 CPU1 >>> [ 335.617467] ---- ---- >>> [ 335.617793] lock(&clp->cl_cs_lock); >>> [ 335.618036] lock(&ctx->flc_lock); >>> [ 335.618531] lock(&clp->cl_cs_lock); >>> [ 335.619037] lock(&clp->cl_lock); >>> [ 335.619256] >>> *** DEADLOCK *** >>> >>> [ 335.619487] 4 locks held by kworker/u8:0/7: >>> [ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 >>> [ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 >>> [ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] >>> [ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] >>> [ 335.623462] >>> stack backtrace: >>> [ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 >>> [ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 >>> [ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] >>> [ 335.625514] Call Trace: >>> [ 335.625641] <TASK> >>> [ 335.625734] dump_stack_lvl+0x45/0x59 >>> [ 335.625981] check_noncircular+0x23e/0x2e0 >>> [ 335.626268] ? print_circular_bug+0x450/0x450 >>> [ 335.626583] ? mark_lock+0xf1/0x30c0 >>> [ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 >>> [ 335.627156] __lock_acquire+0x29f8/0x5b80 >>> [ 335.627463] ? lock_chain_count+0x20/0x20 >>> [ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 >>> [ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 >>> [ 335.628555] lock_acquire+0x1a6/0x4b0 >>> [ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.629184] ? lock_release+0x6d0/0x6d0 >>> [ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] >>> [ 335.629825] ? do_raw_spin_lock+0x11e/0x240 >>> [ 335.630120] ? rwlock_bug.part.0+0x90/0x90 >>> [ 335.630409] _raw_spin_lock+0x2f/0x40 >>> [ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.631450] ? lock_release+0x6d0/0x6d0 >>> [ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] >>> [ 335.632110] process_one_work+0x7ec/0x1320 >>> [ 335.632411] ? lock_release+0x6d0/0x6d0 >>> [ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 >>> [ 335.633002] ? rwlock_bug.part.0+0x90/0x90 >>> [ 335.633290] worker_thread+0x59e/0xf90 >>> [ 335.633548] ? process_one_work+0x1320/0x1320 >>> [ 335.633860] kthread+0x3b1/0x490 >>> [ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 >>> [ 335.634396] ? set_kthread_struct+0x100/0x100 >>> [ 335.634709] ret_from_fork+0x22/0x30 >>> [ 335.634961] </TASK> >>> [ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left >>> [ 751.769042] nfsd: last server has exited, flushing export cache >>> [ 751.957555] NFSD: Using nfsdcld client tracking operations. >>> [ 751.958050] NFSD: starting 15-second grace period (net f0000098) >>> [ 773.101065] nfsd: last server has exited, flushing export cache >>> [ 773.341554] NFSD: Using nfsdcld client tracking operations. >>> [ 773.342404] NFSD: starting 15-second grace period (net f0000098) >>> [ 795.757041] nfsd: last server has exited, flushing export cache >>> [ 795.881057] NFSD: Using nfsdcld client tracking operations. >>> [ 795.881637] NFSD: starting 15-second grace period (net f0000098) >>> [ 816.968871] nfsd: last server has exited, flushing export cache >>> [ 817.199987] NFSD: Using nfsdcld client tracking operations. >>> [ 817.201123] NFSD: starting 15-second grace period (net f0000098) >>> [ 817.696746] nfsd: last server has exited, flushing export cache >>> [ 817.925616] NFSD: Using nfsdcld client tracking operations. >>> [ 817.926073] NFSD: starting 15-second grace period (net f0000098) >>> [ 839.080820] nfsd: last server has exited, flushing export cache >>> [ 839.321569] NFSD: Using nfsdcld client tracking operations. >>> [ 839.322562] NFSD: starting 15-second grace period (net f0000098) >>> [ 860.492782] nfsd: last server has exited, flushing export cache >>> [ 860.749705] NFSD: Using nfsdcld client tracking operations. >>> [ 860.751710] NFSD: starting 15-second grace period (net f0000098) >>> [ 882.889711] nfsd: last server has exited, flushing export cache >>> [ 883.125502] NFSD: Using nfsdcld client tracking operations. >>> [ 883.126399] NFSD: starting 15-second grace period (net f0000098) >>> [ 904.224662] nfsd: last server has exited, flushing export cache >>> [ 904.342387] NFSD: Using nfsdcld client tracking operations. >>> [ 904.342962] NFSD: starting 15-second grace period (net f0000098) >>> [ 947.528620] nfsd: last server has exited, flushing export cache >>> [ 947.763520] NFSD: Using nfsdcld client tracking operations. >>> [ 947.764569] NFSD: starting 15-second grace period (net f0000098) >>> [ 1442.187410] nfsd: last server has exited, flushing export cache >>> [ 1442.430496] NFSD: Using nfsdcld client tracking operations. >>> [ 1442.430974] NFSD: starting 15-second grace period (net f0000098) >>> [ 1483.739309] nfsd: last server has exited, flushing export cache >>> [ 1483.864102] NFSD: Using nfsdcld client tracking operations. >>> [ 1483.864606] NFSD: starting 15-second grace period (net f0000098) >>> [ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success >>> [ 1508.807419] nfsd: last server has exited, flushing export cache >>> [ 1508.925396] NFSD: Using nfsdcld client tracking operations. >>> [ 1508.925905] NFSD: starting 15-second grace period (net f0000098) >>> [ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1530.667340] nfsd: last server has exited, flushing export cache >>> [ 1530.803387] NFSD: Using nfsdcld client tracking operations. >>> [ 1530.804150] NFSD: starting 15-second grace period (net f0000098) >>> [ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1552.563368] nfsd: last server has exited, flushing export cache >>> [ 1552.794957] NFSD: Using nfsdcld client tracking operations. >>> [ 1552.797092] NFSD: starting 15-second grace period (net f0000098) >>> [ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1594.943247] nfsd: last server has exited, flushing export cache >>> [ 1595.175609] NFSD: Using nfsdcld client tracking operations. >>> [ 1595.177610] NFSD: starting 15-second grace period (net f0000098) >>> [ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1618.323178] nfsd: last server has exited, flushing export cache >>> [ 1618.553210] NFSD: Using nfsdcld client tracking operations. >>> [ 1618.555049] NFSD: starting 15-second grace period (net f0000098) >>> [ 1620.455011] nfsd: last server has exited, flushing export cache >>> [ 1620.687824] NFSD: Using nfsdcld client tracking operations. >>> [ 1620.688329] NFSD: starting 15-second grace period (net f0000098) >>> [ 1660.003178] nfsd: last server has exited, flushing export cache >>> [ 1660.236374] NFSD: Using nfsdcld client tracking operations. >>> [ 1660.237760] NFSD: starting 15-second grace period (net f0000098) >>> [ 1660.842977] nfsd: last server has exited, flushing export cache >>> [ 1661.061619] NFSD: Using nfsdcld client tracking operations. >>> [ 1661.062070] NFSD: starting 15-second grace period (net f0000098) >>> [ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success >>> [ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success >>> [ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success >>> >>> started Wed Jan 12 11:28:28 AM EST 2022, finished Wed Jan 12 01:47:36 PM EST 2022 >>> >>> >>> +-----------------------------------------+ >>> | verbose output | >>> +-----------------------------------------+ >>> fs/select.c: In function ‘do_select’: >>> fs/select.c:611:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 611 | } >>> | ^ >>> fs/select.c: In function ‘do_sys_poll’: >>> fs/select.c:1041:1: warning: the frame size of 1296 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 1041 | } >>> | ^ >>> net/core/rtnetlink.c: In function ‘__rtnl_newlink’: >>> net/core/rtnetlink.c:3494:1: warning: the frame size of 1368 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 3494 | } >>> | ^ >>> drivers/tty/serial/8250/8250_core.c: In function ‘serial8250_probe’: >>> drivers/tty/serial/8250/8250_core.c:840:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 840 | } >>> | ^ >>> drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’: >>> drivers/tty/serial/8250/8250_pnp.c:488:1: warning: the frame size of 1136 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 488 | } >>> | ^ >>> drivers/tty/serial/8250/8250_pci.c: In function ‘pciserial_init_ports’: >>> drivers/tty/serial/8250/8250_pci.c:4030:1: warning: the frame size of 1160 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 4030 | } >>> | ^ >>> drivers/tty/serial/8250/8250_exar.c: In function ‘exar_pci_probe’: >>> drivers/tty/serial/8250/8250_exar.c:678:1: warning: the frame size of 1176 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 678 | } >>> | ^ >>> drivers/tty/serial/8250/8250_lpss.c: In function ‘lpss8250_probe.part.0’: >>> drivers/tty/serial/8250/8250_lpss.c:351:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 351 | } >>> | ^ >>> drivers/tty/serial/8250/8250_mid.c: In function ‘mid8250_probe.part.0’: >>> drivers/tty/serial/8250/8250_mid.c:337:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 337 | } >>> | ^ >>> lib/zstd/common/entropy_common.c: In function ‘HUF_readStats’: >>> lib/zstd/common/entropy_common.c:257:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 257 | } >>> | ^ >>> drivers/acpi/processor_thermal.c: In function ‘cpu_has_cpufreq’: >>> drivers/acpi/processor_thermal.c:60:1: warning: the frame size of 1384 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 60 | } >>> | ^ >>> drivers/dma-buf/dma-resv.c: In function ‘dma_resv_lockdep’: >>> drivers/dma-buf/dma-resv.c:708:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 708 | } >>> | ^ >>> fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: >>> fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 418 | } >>> | ^ >>> drivers/md/raid5-ppl.c: In function ‘ppl_recover_entry’: >>> drivers/md/raid5-ppl.c:968:1: warning: the frame size of 1200 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 968 | } >>> | ^ >>> fs/ocfs2/namei.c: In function ‘ocfs2_rename’: >>> fs/ocfs2/namei.c:1686:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 1686 | } >>> | ^ >>> net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: >>> net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 717 | } >>> | ^ >>> net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: >>> net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 810 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘nldev_set_doit’: >>> drivers/infiniband/core/nldev.c:1112:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 1112 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘nldev_newlink’: >>> drivers/infiniband/core/nldev.c:1722:1: warning: the frame size of 1128 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 1722 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘nldev_get_chardev’: >>> drivers/infiniband/core/nldev.c:1833:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 1833 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘nldev_stat_set_doit’: >>> drivers/infiniband/core/nldev.c:2061:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 2061 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘res_get_common_dumpit’: >>> drivers/infiniband/core/nldev.c:1613:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 1613 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_doit’: >>> drivers/infiniband/core/nldev.c:2318:1: warning: the frame size of 1088 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 2318 | } >>> | ^ >>> drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_counter_status_doit’: >>> drivers/infiniband/core/nldev.c:2438:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 2438 | } >>> | ^ >>> net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: >>> net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 717 | } >>> | ^ >>> net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: >>> net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 810 | } >>> | ^ >>> fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: >>> fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] >>> 418 | } >>> | ^ >>> make -f ./Makefile >>> CALL scripts/checksyscalls.sh >>> CALL scripts/atomic/check-atomics.sh >>> DESCEND objtool >>> CHK include/generated/compile.h >>> BUILD arch/x86/boot/bzImage >>> Kernel: arch/x86/boot/bzImage is ready (#1278) >>> sh ./scripts/package/buildtar targz-pkg >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authenc.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authencesn.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/crypto_engine.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/echainiv.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/crypto/virtio/virtio_crypto.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/iscsi_tcp.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi_tcp.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/scsi_transport_iscsi.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/lockd/lockd.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/blocklayout/blocklayoutdriver.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/filelayout/nfs_layout_nfsv41_files.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfs.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv2.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv3.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv4.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/grace.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/nfs_acl.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfsd/nfsd.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sched/cls_bpf.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/sunrpc.ko >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/xprtrdma/rpcrdma.ko >>> DEPMOD ./tar-install/lib/modules/5.16.0-00002-g616758bf6583 >>> './System.map' -> './tar-install/boot/System.map-5.16.0-00002-g616758bf6583' >>> '.config' -> './tar-install/boot/config-5.16.0-00002-g616758bf6583' >>> './vmlinux' -> './tar-install/boot/vmlinux-5.16.0-00002-g616758bf6583' >>> './arch/x86/boot/bzImage' -> './tar-install/boot/vmlinuz-5.16.0-00002-g616758bf6583' >>> Tarball successfully created in ./linux-5.16.0-00002-g616758bf6583-x86_64.tar.gz >>> user pynfs tests: >>> WARNING - could not create /b'exports/xfs/pynfstest-user/tree/block' >>> WARNING - could not create /b'exports/xfs/pynfstest-user/tree/char' >>> DELEG22 st_delegation.testServerSelfConflict2 : RUNNING >>> DELEG22 st_delegation.testServerSelfConflict2 : PASS >>> DELEG21 st_delegation.testServerSelfConflict : RUNNING >>> DELEG21 st_delegation.testServerSelfConflict : PASS >>> DELEG18 st_delegation.testServerRenameTarget : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=3)******** >>> DELEG18 st_delegation.testServerRenameTarget : PASS >>> DELEG17 st_delegation.testServerRenameSource : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=4)******** >>> DELEG17 st_delegation.testServerRenameSource : PASS >>> DELEG16 st_delegation.testServerRemove : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=5)******** >>> DELEG16 st_delegation.testServerRemove : PASS >>> DELEG19 st_delegation.testServerLink : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=6)******** >>> DELEG19 st_delegation.testServerLink : PASS >>> DELEG20 st_delegation.testServerChmod : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=7)******** >>> DELEG20 st_delegation.testServerChmod : PASS >>> DELEG6 st_delegation.testRenew : RUNNING >>> Sleeping for 7.5 seconds: Waiting to send RENEW >>> Woke up >>> DELEG6 st_delegation.testRenew : PASS >>> DELEG15d st_delegation.testRenameOver : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=9)******** >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename >>> Woke up >>> DELEG15d st_delegation.testRenameOver : PASS >>> DELEG15c st_delegation.testRename : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=10)******** >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename >>> Woke up >>> DELEG15c st_delegation.testRename : PASS >>> DELEG15a st_delegation.testRemove : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on remove >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=11)******** >>> Woke up >>> DELEG15a st_delegation.testRemove : PASS >>> DELEG3e st_delegation.testReadDeleg3e : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=12)******** >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG3e st_delegation.testReadDeleg3e : PASS >>> DELEG3d st_delegation.testReadDeleg3d : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=13)******** >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG3d st_delegation.testReadDeleg3d : PASS >>> DELEG3c st_delegation.testReadDeleg3c : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=14)******** >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG3c st_delegation.testReadDeleg3c : PASS >>> DELEG3b st_delegation.testReadDeleg3b : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=15)******** >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG3b st_delegation.testReadDeleg3b : PASS >>> DELEG3a st_delegation.testReadDeleg3a : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=16)******** >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG3a st_delegation.testReadDeleg3a : PASS >>> DELEG2 st_delegation.testReadDeleg2 : RUNNING >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=17)******** >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG2 st_delegation.testReadDeleg2 : PASS >>> DELEG1 st_delegation.testReadDeleg1 : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=18)******** >>> Woke up >>> DELEG1 st_delegation.testReadDeleg1 : PASS >>> DELEG15b st_delegation.testLink : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on link >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=19)******** >>> Woke up >>> DELEG15b st_delegation.testLink : PASS >>> DELEG7 st_delegation.testIgnoreDeleg : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=20)******** >>> Woke up >>> DELEG7 st_delegation.testIgnoreDeleg : PASS >>> DELEG8 st_delegation.testDelegShare : RUNNING >>> DELEG8 st_delegation.testDelegShare : PASS >>> DELEG4 st_delegation.testCloseDeleg : RUNNING >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=22)******** >>> Woke up >>> DELEG4 st_delegation.testCloseDeleg : PASS >>> DELEG14 st_delegation.testClaimCur : RUNNING >>> Sleeping for 2 seconds: Waiting for recall >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=23)******** >>> Woke up >>> DELEG14 st_delegation.testClaimCur : PASS >>> DELEG9 st_delegation.testChangeDeleg : RUNNING >>> Sleeping for 3 seconds: >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> *****CB received COMPOUND****** >>> ******* CB_Recall (id=1)******** >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> Sleeping for 1 seconds: Got NFS4ERR_DELAY on open >>> Woke up >>> DELEG9 st_delegation.testChangeDeleg : PASS >>> INIT st_setclientid.testValid : RUNNING >>> INIT st_setclientid.testValid : PASS >>> MKFILE st_open.testOpen : RUNNING >>> MKFILE st_open.testOpen : PASS >>> REBT8 st_reboot.testValidDeleg : RUNNING >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> REBT8 st_reboot.testValidDeleg : PASS >>> REBT3 st_reboot.testRebootWait : RUNNING >>> Got error: Connection closed >>> Sleeping for 10 seconds: Waiting till halfway through grace period >>> Woke up >>> Sleeping for 11 seconds: Waiting for grace period to end >>> Woke up >>> REBT3 st_reboot.testRebootWait : PASS >>> REBT1 st_reboot.testRebootValid : RUNNING >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> REBT1 st_reboot.testRebootValid : PASS >>> REBT10 st_reboot.testRebootMultiple : RUNNING >>> Got error: Connection closed >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> REBT10 st_reboot.testRebootMultiple : PASS >>> MKDIR st_create.testDir : RUNNING >>> MKDIR st_create.testDir : PASS >>> REBT2 st_reboot.testManyClaims : RUNNING >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> REBT2 st_reboot.testManyClaims : PASS >>> REBT11 st_reboot.testGraceSeqid : RUNNING >>> Got error: Connection closed >>> Sleeping for 10 seconds: Waiting till halfway through grace period >>> Woke up >>> Sleeping for 11 seconds: Waiting for grace period to end >>> Woke up >>> REBT11 st_reboot.testGraceSeqid : PASS >>> REBT6 st_reboot.testEdge2 : RUNNING >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> Got error: Connection closed >>> Got error: Connection closed >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> REBT6 st_reboot.testEdge2 : PASS >>> REBT5 st_reboot.testEdge1 : RUNNING >>> Sleeping for 22 seconds: Waiting for lock lease to expire >>> Woke up >>> Got error: Connection closed >>> Got error: Connection closed >>> Sleeping for 20 seconds: Waiting for grace period to end >>> Woke up >>> REBT5 st_reboot.testEdge1 : PASS >>> RPLY8 st_replay.testUnlockWait : RUNNING >>> Sleeping for 30 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY8 st_replay.testUnlockWait : PASS >>> RPLY7 st_replay.testUnlock : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY7 st_replay.testUnlock : PASS >>> RPLY3 st_replay.testReplayState2 : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY3 st_replay.testReplayState2 : PASS >>> RPLY2 st_replay.testReplayState1 : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY2 st_replay.testReplayState1 : PASS >>> RPLY4 st_replay.testReplayNonState : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY4 st_replay.testReplayNonState : PASS >>> RPLY13 st_replay.testOpenConfirmFail : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY13 st_replay.testOpenConfirmFail : PASS >>> RPLY12 st_replay.testOpenConfirm : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY12 st_replay.testOpenConfirm : PASS >>> RPLY1 st_replay.testOpen : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY1 st_replay.testOpen : PASS >>> RPLY14 st_replay.testMkdirReplay : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY14 st_replay.testMkdirReplay : PASS >>> RPLY6 st_replay.testLockDenied : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY6 st_replay.testLockDenied : PASS >>> RPLY5 st_replay.testLock : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY5 st_replay.testLock : PASS >>> RPLY10 st_replay.testCloseWait : RUNNING >>> Sleeping for 30 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY10 st_replay.testCloseWait : PASS >>> RPLY11 st_replay.testCloseFail : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY11 st_replay.testCloseFail : PASS >>> RPLY9 st_replay.testClose : RUNNING >>> Sleeping for 0.3 seconds: >>> Woke up >>> Sleeping for 0.3 seconds: >>> Woke up >>> RPLY9 st_replay.testClose : PASS >>> WRT3 st_write.testWithOpen : RUNNING >>> WRT3 st_write.testWithOpen : PASS >>> WRT5b st_write.testTooLargeData : RUNNING >>> WRT5b st_write.testTooLargeData : PASS >>> WRT19 st_write.testStolenStateid : RUNNING >>> WRT19 st_write.testStolenStateid : PASS >>> WRT2 st_write.testStateidOne : RUNNING >>> WRT2 st_write.testStateidOne : PASS >>> WRT11 st_write.testStaleStateid : RUNNING >>> WRT11 st_write.testStaleStateid : PASS >>> MKSOCK st_create.testSocket : RUNNING >>> MKSOCK st_create.testSocket : PASS >>> WRT6s st_write.testSocket : RUNNING >>> WRT6s st_write.testSocket : PASS >>> WRT15 st_write.testSizes : RUNNING >>> WRT15 st_write.testSizes : PASS >>> WRT1b st_write.testSimpleWrite2 : RUNNING >>> WRT1b st_write.testSimpleWrite2 : PASS >>> WRT1 st_write.testSimpleWrite : RUNNING >>> WRT1 st_write.testSimpleWrite : PASS >>> WRT9 st_write.testShareDeny : RUNNING >>> WRT9 st_write.testShareDeny : PASS >>> WRT8 st_write.testOpenMode : RUNNING >>> WRT8 st_write.testOpenMode : PASS >>> WRT12 st_write.testOldStateid : RUNNING >>> WRT12 st_write.testOldStateid : PASS >>> WRT7 st_write.testNoFh : RUNNING >>> WRT7 st_write.testNoFh : PASS >>> WRT4 st_write.testNoData : RUNNING >>> Sleeping for 1 seconds: >>> Woke up >>> WRT4 st_write.testNoData : PASS >>> WRT5a st_write.testMaximumData : RUNNING >>> WRT5a st_write.testMaximumData : PASS >>> MKLINK st_create.testLink : RUNNING >>> MKLINK st_create.testLink : PASS >>> WRT6a st_write.testLink : RUNNING >>> WRT6a st_write.testLink : PASS >>> WRT14 st_write.testLargeWrite : RUNNING >>> WRT14 st_write.testLargeWrite : PASS >>> MKFIFO st_create.testFIFO : RUNNING >>> MKFIFO st_create.testFIFO : PASS >>> WRT6f st_write.testFifo : RUNNING >>> WRT6f st_write.testFifo : PASS >>> WRT13 st_write.testDoubleWrite : RUNNING >>> WRT13 st_write.testDoubleWrite : PASS >>> WRT6d st_write.testDir : RUNNING >>> WRT6d st_write.testDir : PASS >>> MODE st_setattr.testMode : RUNNING >>> MODE st_setattr.testMode : PASS >>> WRT18 st_write.testChangeGranularityWrite : RUNNING >>> WRT18 st_write.testChangeGranularityWrite : PASS >>> LOOKSOCK st_lookup.testSocket : RUNNING >>> LOOKSOCK st_lookup.testSocket : PASS >>> VF5s st_verify.testWriteOnlySocket : RUNNING >>> VF5s st_verify.testWriteOnlySocket : PASS >>> LOOKLINK st_lookup.testLink : RUNNING >>> LOOKLINK st_lookup.testLink : PASS >>> VF5a st_verify.testWriteOnlyLink : RUNNING >>> VF5a st_verify.testWriteOnlyLink : PASS >>> LOOKFILE st_lookup.testFile : RUNNING >>> LOOKFILE st_lookup.testFile : PASS >>> VF5r st_verify.testWriteOnlyFile : RUNNING >>> VF5r st_verify.testWriteOnlyFile : PASS >>> LOOKFIFO st_lookup.testFifo : RUNNING >>> LOOKFIFO st_lookup.testFifo : PASS >>> VF5f st_verify.testWriteOnlyFifo : RUNNING >>> VF5f st_verify.testWriteOnlyFifo : PASS >>> LOOKDIR st_lookup.testDir : RUNNING >>> LOOKDIR st_lookup.testDir : PASS >>> VF5d st_verify.testWriteOnlyDir : RUNNING >>> VF5d st_verify.testWriteOnlyDir : PASS >>> VF7s st_verify.testUnsupportedSocket : RUNNING >>> VF7s st_verify.testUnsupportedSocket : PASS >>> VF7a st_verify.testUnsupportedLink : RUNNING >>> VF7a st_verify.testUnsupportedLink : PASS >>> VF7r st_verify.testUnsupportedFile : RUNNING >>> VF7r st_verify.testUnsupportedFile : PASS >>> VF7f st_verify.testUnsupportedFifo : RUNNING >>> VF7f st_verify.testUnsupportedFifo : PASS >>> VF7d st_verify.testUnsupportedDir : RUNNING >>> VF7d st_verify.testUnsupportedDir : PASS >>> VF2s st_verify.testTypeSocket : RUNNING >>> VF2s st_verify.testTypeSocket : PASS >>> VF2a st_verify.testTypeLink : RUNNING >>> VF2a st_verify.testTypeLink : PASS >>> VF2r st_verify.testTypeFile : RUNNING >>> VF2r st_verify.testTypeFile : PASS >>> VF2f st_verify.testTypeFifo : RUNNING >>> VF2f st_verify.testTypeFifo : PASS >>> VF2d st_verify.testTypeDir : RUNNING >>> VF2d st_verify.testTypeDir : PASS >>> VF4 st_verify.testNoFh : RUNNING >>> VF4 st_verify.testNoFh : PASS >>> VF1s st_verify.testMandSocket : RUNNING >>> VF1s st_verify.testMandSocket : PASS >>> VF1a st_verify.testMandLink : RUNNING >>> VF1a st_verify.testMandLink : PASS >>> VF1r st_verify.testMandFile : RUNNING >>> VF1r st_verify.testMandFile : PASS >>> VF1f st_verify.testMandFifo : RUNNING >>> VF1f st_verify.testMandFifo : PASS >>> VF1d st_verify.testMandDir : RUNNING >>> VF1d st_verify.testMandDir : PASS >>> VF3s st_verify.testBadSizeSocket : RUNNING >>> VF3s st_verify.testBadSizeSocket : PASS >>> VF3a st_verify.testBadSizeLink : RUNNING >>> VF3a st_verify.testBadSizeLink : PASS >>> VF3r st_verify.testBadSizeFile : RUNNING >>> VF3r st_verify.testBadSizeFile : PASS >>> VF3f st_verify.testBadSizeFifo : RUNNING >>> VF3f st_verify.testBadSizeFifo : PASS >>> VF3d st_verify.testBadSizeDir : RUNNING >>> VF3d st_verify.testBadSizeDir : PASS >>> CIDCF1 st_setclientidconfirm.testStale : RUNNING >>> CIDCF1 st_setclientidconfirm.testStale : PASS >>> CIDCF3 st_setclientidconfirm.testAllCases : RUNNING >>> CIDCF3 st_setclientidconfirm.testAllCases : PASS >>> CID4e st_setclientid.testUnConfReplaced : RUNNING >>> CID4e st_setclientid.testUnConfReplaced : PASS >>> CID2 st_setclientid.testNotInUse : RUNNING >>> CID2 st_setclientid.testNotInUse : PASS >>> CID6 st_setclientid.testNoConfirm : RUNNING >>> CID6 st_setclientid.testNoConfirm : PASS >>> CID5 st_setclientid.testLotsOfClients : RUNNING >>> CID5 st_setclientid.testLotsOfClients : PASS >>> CID3 st_setclientid.testLoseAnswer : RUNNING >>> CID3 st_setclientid.testLoseAnswer : PASS >>> CID2a st_setclientid.testInUse : RUNNING >>> CID2a st_setclientid.testInUse : PASS >>> CID4b st_setclientid.testConfirmedDiffVerifier : RUNNING >>> CID4b st_setclientid.testConfirmedDiffVerifier : PASS >>> CID4d st_setclientid.testConfUnConfDiffVerifier2 : RUNNING >>> CID4d st_setclientid.testConfUnConfDiffVerifier2 : PASS >>> CID4c st_setclientid.testConfUnConfDiffVerifier1 : RUNNING >>> CID4c st_setclientid.testConfUnConfDiffVerifier1 : PASS >>> CID1b st_setclientid.testClientUpdateCallback : RUNNING >>> CID1b st_setclientid.testClientUpdateCallback : PASS >>> CID1 st_setclientid.testClientReboot : RUNNING >>> CID1 st_setclientid.testClientReboot : PASS >>> CID4a st_setclientid.testCallbackInfoUpdate : RUNNING >>> CID4a st_setclientid.testCallbackInfoUpdate : PASS >>> CID4 st_setclientid.testAllCases : RUNNING >>> CID4 st_setclientid.testAllCases : PASS >>> SATT2c st_setattr.testUselessStateid3 : RUNNING >>> SATT2c st_setattr.testUselessStateid3 : PASS >>> SATT2b st_setattr.testUselessStateid2 : RUNNING >>> SATT2b st_setattr.testUselessStateid2 : PASS >>> SATT2a st_setattr.testUselessStateid1 : RUNNING >>> SATT2a st_setattr.testUselessStateid1 : PASS >>> SATT11s st_setattr.testUnsupportedSocket : RUNNING >>> SATT11s st_setattr.testUnsupportedSocket : PASS >>> SATT11a st_setattr.testUnsupportedLink : RUNNING >>> SATT11a st_setattr.testUnsupportedLink : PASS >>> SATT11r st_setattr.testUnsupportedFile : RUNNING >>> SATT11r st_setattr.testUnsupportedFile : PASS >>> SATT11f st_setattr.testUnsupportedFifo : RUNNING >>> SATT11f st_setattr.testUnsupportedFifo : PASS >>> SATT11d st_setattr.testUnsupportedDir : RUNNING >>> SATT11d st_setattr.testUnsupportedDir : PASS >>> SATT12s st_setattr.testSizeSocket : RUNNING >>> SATT12s st_setattr.testSizeSocket : PASS >>> SATT12a st_setattr.testSizeLink : RUNNING >>> SATT12a st_setattr.testSizeLink : PASS >>> SATT12f st_setattr.testSizeFifo : RUNNING >>> SATT12f st_setattr.testSizeFifo : PASS >>> SATT12d st_setattr.testSizeDir : RUNNING >>> SATT12d st_setattr.testSizeDir : PASS >>> SATT3d st_setattr.testResizeFile3 : RUNNING >>> SATT3d st_setattr.testResizeFile3 : PASS >>> SATT3c st_setattr.testResizeFile2 : RUNNING >>> SATT3c st_setattr.testResizeFile2 : PASS >>> SATT3b st_setattr.testResizeFile1 : RUNNING >>> SATT3b st_setattr.testResizeFile1 : PASS >>> SATT3a st_setattr.testResizeFile0 : RUNNING >>> SATT3a st_setattr.testResizeFile0 : PASS >>> SATT6d st_setattr.testReadonlyDir : RUNNING >>> SATT6d st_setattr.testReadonlyDir : PASS >>> SATT6s st_setattr.testReadonlySocket : RUNNING >>> SATT6s st_setattr.testReadonlySocket : PASS >>> SATT6a st_setattr.testReadonlyLink : RUNNING >>> SATT6a st_setattr.testReadonlyLink : PASS >>> SATT6r st_setattr.testReadonlyFile : RUNNING >>> SATT6r st_setattr.testReadonlyFile : PASS >>> SATT6f st_setattr.testReadonlyFifo : RUNNING >>> SATT6f st_setattr.testReadonlyFifo : PASS >>> SATT4 st_setattr.testOpenModeResize : RUNNING >>> SATT4 st_setattr.testOpenModeResize : PASS >>> SATT5 st_setattr.testNoFh : RUNNING >>> SATT5 st_setattr.testNoFh : PASS >>> SATT10 st_setattr.testInvalidTime : RUNNING >>> SATT10 st_setattr.testInvalidTime : PASS >>> SATT8 st_setattr.testInvalidAttr2 : RUNNING >>> SATT8 st_setattr.testInvalidAttr2 : PASS >>> SATT7 st_setattr.testInvalidAttr1 : RUNNING >>> Traceback (most recent call last): >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run >>> self.runtest(self, environment) >>> File "/root/pynfs/nfs4.0/servertests/st_renew.py", line 41, in testExpired >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_READ, >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm >>> check_result(res, "Opening file %s" % _getname(owner, path)) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result >>> raise BadCompoundRes(resop, res.status, msg) >>> nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY >>> SATT7 st_setattr.testInvalidAttr1 : PASS >>> SATT13 st_setattr.testInodeLocking : RUNNING >>> SATT13 st_setattr.testInodeLocking : PASS >>> SATT1r st_setattr.testFile : RUNNING >>> SATT1r st_setattr.testFile : PASS >>> SATT1f st_setattr.testFifo : RUNNING >>> SATT1f st_setattr.testFifo : PASS >>> SATT16 st_setattr.testEmptyPrincipal : RUNNING >>> SATT16 st_setattr.testEmptyPrincipal : PASS >>> SATT17 st_setattr.testEmptyGroupPrincipal : RUNNING >>> SATT17 st_setattr.testEmptyGroupPrincipal : PASS >>> SATT1d st_setattr.testDir : RUNNING >>> SATT1d st_setattr.testDir : PASS >>> SATT15 st_setattr.testChangeGranularity : RUNNING >>> SATT15 st_setattr.testChangeGranularity : PASS >>> SATT14 st_setattr.testChange : RUNNING >>> SATT14 st_setattr.testChange : PASS >>> SEC1 st_secinfo.testValid : RUNNING >>> SEC1 st_secinfo.testValid : PASS >>> SEC5 st_secinfo.testZeroLenName : RUNNING >>> SEC5 st_secinfo.testZeroLenName : PASS >>> SEC3 st_secinfo.testVaporFile : RUNNING >>> SEC3 st_secinfo.testVaporFile : PASS >>> SEC7 st_secinfo.testRPCSEC_GSS : RUNNING >>> SEC7 st_secinfo.testRPCSEC_GSS : PASS >>> SEC2 st_secinfo.testNotDir : RUNNING >>> SEC2 st_secinfo.testNotDir : PASS >>> SEC4 st_secinfo.testNoFh : RUNNING >>> SEC4 st_secinfo.testNoFh : PASS >>> SVFH1 st_savefh.testNoFh : RUNNING >>> SVFH1 st_savefh.testNoFh : PASS >>> SVFH2s st_restorefh.testValidSocket : RUNNING >>> SVFH2s st_restorefh.testValidSocket : PASS >>> SVFH2a st_restorefh.testValidLink : RUNNING >>> SVFH2a st_restorefh.testValidLink : PASS >>> SVFH2r st_restorefh.testValidFile : RUNNING >>> SVFH2r st_restorefh.testValidFile : PASS >>> SVFH2f st_restorefh.testValidFifo : RUNNING >>> SVFH2f st_restorefh.testValidFifo : PASS >>> SVFH2d st_restorefh.testValidDir : RUNNING >>> SVFH2d st_restorefh.testValidDir : PASS >>> RSFH2 st_restorefh.testNoFh2 : RUNNING >>> RSFH2 st_restorefh.testNoFh2 : PASS >>> RSFH1 st_restorefh.testNoFh1 : RUNNING >>> RSFH1 st_restorefh.testNoFh1 : PASS >>> RENEW1 st_renew.testRenew : RUNNING >>> RENEW1 st_renew.testRenew : PASS >>> RENEW3 st_renew.testExpired : RUNNING >>> Sleeping for 30 seconds: >>> Woke up >>> RENEW3 st_renew.testExpired : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> RENEW2 st_renew.testBadRenew : RUNNING >>> RENEW2 st_renew.testBadRenew : PASS >>> RNM6 st_rename.testZeroLengthOldname : RUNNING >>> RNM6 st_rename.testZeroLengthOldname : PASS >>> RNM7 st_rename.testZeroLengthNewname : RUNNING >>> RNM7 st_rename.testZeroLengthNewname : PASS >>> RNM1s st_rename.testValidSocket : RUNNING >>> RNM1s st_rename.testValidSocket : PASS >>> RNM1a st_rename.testValidLink : RUNNING >>> RNM1a st_rename.testValidLink : PASS >>> RNM1r st_rename.testValidFile : RUNNING >>> RNM1r st_rename.testValidFile : PASS >>> RNM1f st_rename.testValidFifo : RUNNING >>> RNM1f st_rename.testValidFifo : PASS >>> RNM1d st_rename.testValidDir : RUNNING >>> RNM1d st_rename.testValidDir : PASS >>> RNM2s st_rename.testSfhSocket : RUNNING >>> RNM2s st_rename.testSfhSocket : PASS >>> RNM2a st_rename.testSfhLink : RUNNING >>> RNM2a st_rename.testSfhLink : PASS >>> RNM2r st_rename.testSfhFile : RUNNING >>> RNM2r st_rename.testSfhFile : PASS >>> RNM2f st_rename.testSfhFifo : RUNNING >>> RNM2f st_rename.testSfhFifo : PASS >>> RNM19 st_rename.testSelfRenameFile : RUNNING >>> RNM19 st_rename.testSelfRenameFile : PASS >>> RNM18 st_rename.testSelfRenameDir : RUNNING >>> RNM18 st_rename.testSelfRenameDir : PASS >>> RNM5 st_rename.testNonExistent : RUNNING >>> RNM5 st_rename.testNonExistent : PASS >>> RNM4 st_rename.testNoSfh : RUNNING >>> RNM4 st_rename.testNoSfh : PASS >>> LINKS st_link.testSupported : RUNNING >>> LINKS st_link.testSupported : PASS >>> RNM20 st_rename.testLinkRename : RUNNING >>> RNM20 st_rename.testLinkRename : PASS >>> RNM17 st_rename.testFileToFullDir : RUNNING >>> RNM17 st_rename.testFileToFullDir : PASS >>> RNM15 st_rename.testFileToFile : RUNNING >>> RNM15 st_rename.testFileToFile : PASS >>> RNM14 st_rename.testFileToDir : RUNNING >>> RNM14 st_rename.testFileToDir : PASS >>> RNM10 st_rename.testDotsOldname : RUNNING >>> RNM10 st_rename.testDotsOldname : PASS >>> RNM11 st_rename.testDotsNewname : RUNNING >>> RNM11 st_rename.testDotsNewname : PASS >>> RNM12 st_rename.testDirToObj : RUNNING >>> RNM12 st_rename.testDirToObj : PASS >>> RNM16 st_rename.testDirToFullDir : RUNNING >>> RNM16 st_rename.testDirToFullDir : PASS >>> RNM13 st_rename.testDirToDir : RUNNING >>> RNM13 st_rename.testDirToDir : PASS >>> RNM3s st_rename.testCfhSocket : RUNNING >>> RNM3s st_rename.testCfhSocket : PASS >>> RNM3a st_rename.testCfhLink : RUNNING >>> RNM3a st_rename.testCfhLink : PASS >>> RNM3r st_rename.testCfhFile : RUNNING >>> RNM3r st_rename.testCfhFile : PASS >>> RNM3f st_rename.testCfhFifo : RUNNING >>> RNM3f st_rename.testCfhFifo : PASS >>> RM4 st_remove.testZeroLengthTarget : RUNNING >>> RM4 st_remove.testZeroLengthTarget : PASS >>> RM1s st_remove.testSocket : RUNNING >>> RM1s st_remove.testSocket : PASS >>> RM8 st_remove.testNotEmpty : RUNNING >>> RM8 st_remove.testNotEmpty : PASS >>> RM6 st_remove.testNonExistent : RUNNING >>> RM6 st_remove.testNonExistent : PASS >>> RM3 st_remove.testNoFh : RUNNING >>> RM3 st_remove.testNoFh : PASS >>> RM1a st_remove.testLink : RUNNING >>> RM1a st_remove.testLink : PASS >>> RM1r st_remove.testFile : RUNNING >>> RM1r st_remove.testFile : PASS >>> RM1f st_remove.testFifo : RUNNING >>> RM1f st_remove.testFifo : PASS >>> RM7 st_remove.testDots : RUNNING >>> RM7 st_remove.testDots : PASS >>> RM1d st_remove.testDir : RUNNING >>> RM1d st_remove.testDir : PASS >>> RM2s st_remove.testCfhSocket : RUNNING >>> RM2s st_remove.testCfhSocket : PASS >>> RM2a st_remove.testCfhLink : RUNNING >>> RM2a st_remove.testCfhLink : PASS >>> RM2r st_remove.testCfhFile : RUNNING >>> RM2r st_remove.testCfhFile : PASS >>> RM2f st_remove.testCfhFifo : RUNNING >>> RM2f st_remove.testCfhFifo : PASS >>> RLOWN1 st_releaselockowner.testFile : RUNNING >>> RLOWN1 st_releaselockowner.testFile : PASS >>> RDLK2s st_readlink.testSocket : RUNNING >>> RDLK2s st_readlink.testSocket : PASS >>> RDLK1 st_readlink.testReadlink : RUNNING >>> RDLK1 st_readlink.testReadlink : PASS >>> RDLK3 st_readlink.testNoFh : RUNNING >>> RDLK3 st_readlink.testNoFh : PASS >>> RDLK2r st_readlink.testFile : RUNNING >>> RDLK2r st_readlink.testFile : PASS >>> RDLK2f st_readlink.testFifo : RUNNING >>> RDLK2f st_readlink.testFifo : PASS >>> RDLK2d st_readlink.testDir : RUNNING >>> RDLK2d st_readlink.testDir : PASS >>> RDDR9 st_readdir.testWriteOnlyAttributes : RUNNING >>> RDDR9 st_readdir.testWriteOnlyAttributes : PASS >>> RDDR12 st_readdir.testUnaccessibleDirAttrs : RUNNING >>> RDDR12 st_readdir.testUnaccessibleDirAttrs : PASS >>> RDDR11 st_readdir.testUnaccessibleDir : RUNNING >>> RDDR11 st_readdir.testUnaccessibleDir : PASS >>> RDDR4 st_readdir.testSubsequent : RUNNING >>> RDDR4 st_readdir.testSubsequent : PASS >>> RDDR10 st_readdir.testReservedCookies : RUNNING >>> RDDR10 st_readdir.testReservedCookies : PASS >>> RDDR6 st_readdir.testNoFh : RUNNING >>> RDDR6 st_readdir.testNoFh : PASS >>> RDDR7 st_readdir.testMaxcountZero : RUNNING >>> RDDR7 st_readdir.testMaxcountZero : PASS >>> RDDR8 st_readdir.testMaxcountSmall : RUNNING >>> RDDR8 st_readdir.testMaxcountSmall : PASS >>> RDDR2 st_readdir.testFirst : RUNNING >>> RDDR2 st_readdir.testFirst : PASS >>> RDDR5s st_readdir.testFhSocket : RUNNING >>> RDDR5s st_readdir.testFhSocket : PASS >>> RDDR5a st_readdir.testFhLink : RUNNING >>> RDDR5a st_readdir.testFhLink : PASS >>> RDDR5r st_readdir.testFhFile : RUNNING >>> RDDR5r st_readdir.testFhFile : PASS >>> RDDR5f st_readdir.testFhFifo : RUNNING >>> RDDR5f st_readdir.testFhFifo : PASS >>> RDDR1 st_readdir.testEmptyDir : RUNNING >>> RDDR1 st_readdir.testEmptyDir : PASS >>> RDDR8b st_readdir.testDircountVarious : RUNNING >>> RDDR8b st_readdir.testDircountVarious : PASS >>> RDDR3 st_readdir.testAttr : RUNNING >>> RDDR3 st_readdir.testAttr : PASS >>> RD6 st_read.testZeroCount : RUNNING >>> RD6 st_read.testZeroCount : PASS >>> RD3 st_read.testWithOpen : RUNNING >>> RD3 st_read.testWithOpen : PASS >>> RD2 st_read.testStateidOnes : RUNNING >>> RD2 st_read.testStateidOnes : PASS >>> RD10 st_read.testStaleStateid : RUNNING >>> RD10 st_read.testStaleStateid : PASS >>> RD7s st_read.testSocket : RUNNING >>> RD7s st_read.testSocket : PASS >>> RD1 st_read.testSimpleRead : RUNNING >>> RD1 st_read.testSimpleRead : PASS >>> RD11 st_read.testOldStateid : RUNNING >>> RD11 st_read.testOldStateid : PASS >>> RD8 st_read.testNoFh : RUNNING >>> RD8 st_read.testNoFh : PASS >>> RD7a st_read.testLink : RUNNING >>> RD7a st_read.testLink : PASS >>> RD5 st_read.testLargeOffset : RUNNING >>> RD5 st_read.testLargeOffset : PASS >>> RD7f st_read.testFifo : RUNNING >>> RD7f st_read.testFifo : PASS >>> RD7d st_read.testDir : RUNNING >>> RD7d st_read.testDir : PASS >>> ROOT1 st_putrootfh.testSupported : RUNNING >>> ROOT1 st_putrootfh.testSupported : PASS >>> PUB1 st_putpubfh.testSupported : RUNNING >>> PUB1 st_putpubfh.testSupported : PASS >>> PUB2 st_putpubfh.testSameAsRoot : RUNNING >>> PUB2 st_putpubfh.testSameAsRoot : PASS >>> PUTFH1s st_putfh.testSocket : RUNNING >>> PUTFH1s st_putfh.testSocket : PASS >>> PUTFH1a st_putfh.testLink : RUNNING >>> PUTFH1a st_putfh.testLink : PASS >>> PUTFH1r st_putfh.testFile : RUNNING >>> PUTFH1r st_putfh.testFile : PASS >>> PUTFH1f st_putfh.testFifo : RUNNING >>> PUTFH1f st_putfh.testFifo : PASS >>> PUTFH1d st_putfh.testDir : RUNNING >>> PUTFH1d st_putfh.testDir : PASS >>> PUTFH2 st_putfh.testBadHandle : RUNNING >>> PUTFH2 st_putfh.testBadHandle : PASS >>> OPDG6 st_opendowngrade.testStaleStateid : RUNNING >>> OPDG6 st_opendowngrade.testStaleStateid : PASS >>> OPDG1 st_opendowngrade.testRegularOpen : RUNNING >>> OPDG1 st_opendowngrade.testRegularOpen : PASS >>> OPDG10 st_opendowngrade.testOpenDowngradeSequence : RUNNING >>> OPDG10 st_opendowngrade.testOpenDowngradeSequence : PASS >>> OPDG11 st_opendowngrade.testOpenDowngradeLock : RUNNING >>> OPDG11 st_opendowngrade.testOpenDowngradeLock : PASS >>> OPDG7 st_opendowngrade.testOldStateid : RUNNING >>> OPDG7 st_opendowngrade.testOldStateid : PASS >>> OPDG8 st_opendowngrade.testNoFh : RUNNING >>> OPDG8 st_opendowngrade.testNoFh : PASS >>> OPDG3 st_opendowngrade.testNewState2 : RUNNING >>> OPDG3 st_opendowngrade.testNewState2 : PASS >>> OPDG2 st_opendowngrade.testNewState1 : RUNNING >>> OPDG2 st_opendowngrade.testNewState1 : PASS >>> OPDG5 st_opendowngrade.testBadStateid : RUNNING >>> OPDG5 st_opendowngrade.testBadStateid : PASS >>> OPDG4 st_opendowngrade.testBadSeqid : RUNNING >>> OPDG4 st_opendowngrade.testBadSeqid : PASS >>> OPCF6 st_openconfirm.testStaleStateid : RUNNING >>> OPCF6 st_openconfirm.testStaleStateid : PASS >>> OPCF2 st_openconfirm.testNoFh : RUNNING >>> OPCF2 st_openconfirm.testNoFh : PASS >>> OPCF1 st_openconfirm.testConfirmCreate : RUNNING >>> OPCF1 st_openconfirm.testConfirmCreate : PASS >>> OPCF5 st_openconfirm.testBadStateid : RUNNING >>> OPCF5 st_openconfirm.testBadStateid : PASS >>> OPCF4 st_openconfirm.testBadSeqid : RUNNING >>> OPCF4 st_openconfirm.testBadSeqid : PASS >>> OPEN10 st_open.testZeroLenName : RUNNING >>> OPEN10 st_open.testZeroLenName : PASS >>> OPEN29 st_open.testUpgrades : RUNNING >>> OPEN29 st_open.testUpgrades : PASS >>> OPEN15 st_open.testUnsupportedAttributes : RUNNING >>> OPEN15 st_open.testUnsupportedAttributes : PASS >>> OPEN7s st_open.testSocket : RUNNING >>> OPEN7s st_open.testSocket : PASS >>> OPEN18 st_open.testShareConflict1 : RUNNING >>> OPEN18 st_open.testShareConflict1 : PASS >>> OPEN30 st_open.testReplay : RUNNING >>> OPEN30 st_open.testReplay : PASS >>> OPEN6 st_open.testOpenVaporFile : RUNNING >>> OPEN6 st_open.testOpenVaporFile : PASS >>> OPEN5 st_open.testOpenFile : RUNNING >>> OPEN5 st_open.testOpenFile : PASS >>> OPEN12 st_open.testNotDir : RUNNING >>> OPEN12 st_open.testNotDir : PASS >>> OPEN8 st_open.testNoFh : RUNNING >>> OPEN8 st_open.testNoFh : PASS >>> OPEN17 st_open.testModeChange : RUNNING >>> OPEN17 st_open.testModeChange : PASS >>> OPEN11 st_open.testLongName : RUNNING >>> OPEN11 st_open.testLongName : PASS >>> OPEN7a st_open.testLink : RUNNING >>> OPEN7a st_open.testLink : PASS >>> OPEN14 st_open.testInvalidAttrmask : RUNNING >>> OPEN14 st_open.testInvalidAttrmask : PASS >>> OPEN7f st_open.testFifo : RUNNING >>> OPEN7f st_open.testFifo : PASS >>> OPEN20 st_open.testFailedOpen : RUNNING >>> OPEN20 st_open.testFailedOpen : PASS >>> OPEN7d st_open.testDir : RUNNING >>> OPEN7d st_open.testDir : PASS >>> OPEN28 st_open.testDenyWrite4 : RUNNING >>> OPEN28 st_open.testDenyWrite4 : PASS >>> OPEN27 st_open.testDenyWrite3 : RUNNING >>> OPEN27 st_open.testDenyWrite3 : PASS >>> OPEN26 st_open.testDenyWrite2 : RUNNING >>> OPEN26 st_open.testDenyWrite2 : PASS >>> OPEN25 st_open.testDenyWrite1 : RUNNING >>> OPEN25 st_open.testDenyWrite1 : PASS >>> OPEN24 st_open.testDenyRead4 : RUNNING >>> OPEN24 st_open.testDenyRead4 : PASS >>> OPEN23b st_open.testDenyRead3a : RUNNING >>> OPEN23b st_open.testDenyRead3a : PASS >>> OPEN23 st_open.testDenyRead3 : RUNNING >>> OPEN23 st_open.testDenyRead3 : PASS >>> OPEN22 st_open.testDenyRead2 : RUNNING >>> OPEN22 st_open.testDenyRead2 : PASS >>> OPEN21 st_open.testDenyRead1 : RUNNING >>> OPEN21 st_open.testDenyRead1 : PASS >>> OPEN2 st_open.testCreateUncheckedFile : RUNNING >>> OPEN2 st_open.testCreateUncheckedFile : PASS >>> OPEN3 st_open.testCreatGuardedFile : RUNNING >>> OPEN3 st_open.testCreatGuardedFile : PASS >>> OPEN4 st_open.testCreatExclusiveFile : RUNNING >>> OPEN4 st_open.testCreatExclusiveFile : PASS >>> OPEN16 st_open.testClaimPrev : RUNNING >>> OPEN16 st_open.testClaimPrev : PASS >>> OPEN31 st_open.testBadSeqid : RUNNING >>> OPEN31 st_open.testBadSeqid : PASS >>> NVF5s st_nverify.testWriteOnlySocket : RUNNING >>> NVF5s st_nverify.testWriteOnlySocket : PASS >>> NVF5a st_nverify.testWriteOnlyLink : RUNNING >>> NVF5a st_nverify.testWriteOnlyLink : PASS >>> NVF5r st_nverify.testWriteOnlyFile : RUNNING >>> NVF5r st_nverify.testWriteOnlyFile : PASS >>> NVF5f st_nverify.testWriteOnlyFifo : RUNNING >>> NVF5f st_nverify.testWriteOnlyFifo : PASS >>> Traceback (most recent call last): >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run >>> self.runtest(self, environment) >>> File "/root/pynfs/nfs4.0/servertests/st_locku.py", line 266, in testTimedoutUnlock >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm >>> check_result(res, "Opening file %s" % _getname(owner, path)) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result >>> raise BadCompoundRes(resop, res.status, msg) >>> nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY >>> NVF5d st_nverify.testWriteOnlyDir : RUNNING >>> NVF5d st_nverify.testWriteOnlyDir : PASS >>> NVF7s st_nverify.testUnsupportedSocket : RUNNING >>> NVF7s st_nverify.testUnsupportedSocket : PASS >>> NVF7a st_nverify.testUnsupportedLink : RUNNING >>> NVF7a st_nverify.testUnsupportedLink : PASS >>> NVF7r st_nverify.testUnsupportedFile : RUNNING >>> NVF7r st_nverify.testUnsupportedFile : PASS >>> NVF7f st_nverify.testUnsupportedFifo : RUNNING >>> NVF7f st_nverify.testUnsupportedFifo : PASS >>> NVF7d st_nverify.testUnsupportedDir : RUNNING >>> NVF7d st_nverify.testUnsupportedDir : PASS >>> NVF2s st_nverify.testTypeSocket : RUNNING >>> NVF2s st_nverify.testTypeSocket : PASS >>> NVF2a st_nverify.testTypeLink : RUNNING >>> NVF2a st_nverify.testTypeLink : PASS >>> NVF2r st_nverify.testTypeFile : RUNNING >>> NVF2r st_nverify.testTypeFile : PASS >>> NVF2f st_nverify.testTypeFifo : RUNNING >>> NVF2f st_nverify.testTypeFifo : PASS >>> NVF2d st_nverify.testTypeDir : RUNNING >>> NVF2d st_nverify.testTypeDir : PASS >>> NVF4 st_nverify.testNoFh : RUNNING >>> NVF4 st_nverify.testNoFh : PASS >>> NVF1s st_nverify.testMandSocket : RUNNING >>> NVF1s st_nverify.testMandSocket : PASS >>> NVF1a st_nverify.testMandLink : RUNNING >>> NVF1a st_nverify.testMandLink : PASS >>> NVF1r st_nverify.testMandFile : RUNNING >>> NVF1r st_nverify.testMandFile : PASS >>> NVF1f st_nverify.testMandFifo : RUNNING >>> NVF1f st_nverify.testMandFifo : PASS >>> NVF1d st_nverify.testMandDir : RUNNING >>> NVF1d st_nverify.testMandDir : PASS >>> NVF3s st_nverify.testBadSizeSocket : RUNNING >>> NVF3s st_nverify.testBadSizeSocket : PASS >>> NVF3a st_nverify.testBadSizeLink : RUNNING >>> NVF3a st_nverify.testBadSizeLink : PASS >>> NVF3r st_nverify.testBadSizeFile : RUNNING >>> NVF3r st_nverify.testBadSizeFile : PASS >>> NVF3f st_nverify.testBadSizeFifo : RUNNING >>> NVF3f st_nverify.testBadSizeFifo : PASS >>> NVF3d st_nverify.testBadSizeDir : RUNNING >>> NVF3d st_nverify.testBadSizeDir : PASS >>> LOOKP2s st_lookupp.testSock : RUNNING >>> LOOKP2s st_lookupp.testSock : PASS >>> LOOKP4 st_lookupp.testNoFh : RUNNING >>> LOOKP4 st_lookupp.testNoFh : PASS >>> LOOKP2a st_lookupp.testLink : RUNNING >>> LOOKP2a st_lookupp.testLink : PASS >>> LOOKP2r st_lookupp.testFile : RUNNING >>> LOOKP2r st_lookupp.testFile : PASS >>> LOOKP2f st_lookupp.testFifo : RUNNING >>> LOOKP2f st_lookupp.testFifo : PASS >>> LOOKP1 st_lookupp.testDir : RUNNING >>> LOOKP1 st_lookupp.testDir : PASS >>> LOOKP3 st_lookupp.testAtRoot : RUNNING >>> LOOKP3 st_lookupp.testAtRoot : PASS >>> LOOK3 st_lookup.testZeroLength : RUNNING >>> LOOK3 st_lookup.testZeroLength : PASS >>> LOOK9 st_lookup.testUnaccessibleDir : RUNNING >>> LOOK9 st_lookup.testUnaccessibleDir : PASS >>> LOOK5a st_lookup.testSymlinkNotDir : RUNNING >>> LOOK5a st_lookup.testSymlinkNotDir : PASS >>> LOOK5s st_lookup.testSocketNotDir : RUNNING >>> LOOK5s st_lookup.testSocketNotDir : PASS >>> LOOK2 st_lookup.testNonExistent : RUNNING >>> LOOK2 st_lookup.testNonExistent : PASS >>> LOOK6 st_lookup.testNonAccessable : RUNNING >>> LOOK6 st_lookup.testNonAccessable : PASS >>> LOOK1 st_lookup.testNoFh : RUNNING >>> LOOK1 st_lookup.testNoFh : PASS >>> LOOK4 st_lookup.testLongName : RUNNING >>> LOOK4 st_lookup.testLongName : PASS >>> LOOK5r st_lookup.testFileNotDir : RUNNING >>> LOOK5r st_lookup.testFileNotDir : PASS >>> LOOK5f st_lookup.testFifoNotDir : RUNNING >>> LOOK5f st_lookup.testFifoNotDir : PASS >>> LOOK8 st_lookup.testDots : RUNNING >>> LOOK8 st_lookup.testDots : PASS >>> LOOK10 st_lookup.testBadOpaque : RUNNING >>> LOOK10 st_lookup.testBadOpaque : PASS >>> LKU3 st_locku.testZeroLen : RUNNING >>> LKU3 st_locku.testZeroLen : PASS >>> LKUNONE st_locku.testUnlocked : RUNNING >>> LKUNONE st_locku.testUnlocked : PASS >>> LKU10 st_locku.testTimedoutUnlock : RUNNING >>> Sleeping for 22 seconds: >>> Woke up >>> LKU10 st_locku.testTimedoutUnlock : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'LKU10-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> LKU9 st_locku.testStaleLockStateid : RUNNING >>> LKU9 st_locku.testStaleLockStateid : PASS >>> LKUSPLIT st_locku.testSplit : RUNNING >>> LKUSPLIT st_locku.testSplit : PASS >>> LKUOVER st_locku.testOverlap : RUNNING >>> LKUOVER st_locku.testOverlap : PASS >>> LKU7 st_locku.testOldLockStateid : RUNNING >>> LKU7 st_locku.testOldLockStateid : PASS >>> LKU5 st_locku.testNoFh : RUNNING >>> LKU5 st_locku.testNoFh : PASS >>> LKU4 st_locku.testLenTooLong : RUNNING >>> LKU4 st_locku.testLenTooLong : PASS >>> LOCK1 st_lock.testFile : RUNNING >>> LOCK1 st_lock.testFile : PASS >>> LKU1 st_locku.testFile : RUNNING >>> LKU1 st_locku.testFile : PASS >>> LKU8 st_locku.testBadLockStateid : RUNNING >>> LKU8 st_locku.testBadLockStateid : PASS >>> LKU6b st_locku.testBadLockSeqid2 : RUNNING >>> LKU6b st_locku.testBadLockSeqid2 : PASS >>> LKU6 st_locku.testBadLockSeqid : RUNNING >>> LKU6 st_locku.testBadLockSeqid : PASS >>> LOCKRNG st_lock.test32bitRange : RUNNING >>> LOCKRNG st_lock.test32bitRange : PASS >>> LKU2 st_locku.test32bitRange : RUNNING >>> LKU2 st_locku.test32bitRange : PASS >>> LKT6 st_lockt.testZeroLen : RUNNING >>> LKT6 st_lockt.testZeroLen : PASS >>> LKT1 st_lockt.testUnlockedFile : RUNNING >>> LKT1 st_lockt.testUnlockedFile : PASS >>> LKT9 st_lockt.testStaleClientid : RUNNING >>> LKT9 st_lockt.testStaleClientid : PASS >>> LKT2s st_lockt.testSocket : RUNNING >>> LKT2s st_lockt.testSocket : PASS >>> LKT4 st_lockt.testPartialLockedFile2 : RUNNING >>> LKT4 st_lockt.testPartialLockedFile2 : PASS >>> LKT3 st_lockt.testPartialLockedFile1 : RUNNING >>> LKT3 st_lockt.testPartialLockedFile1 : PASS >>> LKTOVER st_lockt.testOverlap : RUNNING >>> LKTOVER st_lockt.testOverlap : PASS >>> LKT8 st_lockt.testNoFh : RUNNING >>> LKT8 st_lockt.testNoFh : PASS >>> LKT2a st_lockt.testLink : RUNNING >>> LKT2a st_lockt.testLink : PASS >>> LKT7 st_lockt.testLenTooLong : RUNNING >>> LKT7 st_lockt.testLenTooLong : PASS >>> LKT2f st_lockt.testFifo : RUNNING >>> LKT2f st_lockt.testFifo : PASS >>> LKT2d st_lockt.testDir : RUNNING >>> LKT2d st_lockt.testDir : PASS >>> LKT5 st_lockt.test32bitRange : RUNNING >>> LKT5 st_lockt.test32bitRange : PASS >>> LOCK5 st_lock.testZeroLen : RUNNING >>> LOCK5 st_lock.testZeroLen : PASS >>> LOCKCHGU st_lock.testUpgrade : RUNNING >>> LOCKCHGU st_lock.testUpgrade : PASS >>> LOCK13 st_lock.testTimedoutGrabLock : RUNNING >>> Sleeping for 7 seconds: >>> Woke up >>> Sleeping for 7 seconds: >>> Woke up >>> Sleeping for 7 seconds: >>> Woke up >>> LOCK13 st_lock.testTimedoutGrabLock : PASS >>> LOCK12b st_lock.testStaleOpenStateid : RUNNING >>> LOCK12b st_lock.testStaleOpenStateid : PASS >>> LOCK12a st_lock.testStaleLockStateid : RUNNING >>> LOCK12a st_lock.testStaleLockStateid : PASS >>> LOCK10 st_lock.testStaleClientid : RUNNING >>> LOCK10 st_lock.testStaleClientid : PASS >>> LOCK17 st_lock.testReadLocks2 : RUNNING >>> LOCK17 st_lock.testReadLocks2 : PASS >>> LOCK16 st_lock.testReadLocks1 : RUNNING >>> LOCK16 st_lock.testReadLocks1 : PASS >>> LOCKMRG st_lock.testOverlap : RUNNING >>> LOCKMRG st_lock.testOverlap : PASS >>> LOCK23 st_lock.testOpenDowngradeLock : RUNNING >>> LOCK23 st_lock.testOpenDowngradeLock : PASS >>> LOCK9c st_lock.testOldOpenStateid2 : RUNNING >>> LOCK9c st_lock.testOldOpenStateid2 : PASS >>> LOCK9b st_lock.testOldOpenStateid : RUNNING >>> LOCK9b st_lock.testOldOpenStateid : PASS >>> LOCK9a st_lock.testOldLockStateid : RUNNING >>> LOCK9a st_lock.testOldLockStateid : PASS >>> LOCK7 st_lock.testNoFh : RUNNING >>> LOCK7 st_lock.testNoFh : PASS >>> LOCK4 st_lock.testMode : RUNNING >>> LOCK4 st_lock.testMode : PASS >>> LOCK6 st_lock.testLenTooLong : RUNNING >>> LOCK6 st_lock.testLenTooLong : PASS >>> LOCK15 st_lock.testGrabLock2 : RUNNING >>> LOCK15 st_lock.testGrabLock2 : PASS >>> LOCK14 st_lock.testGrabLock1 : RUNNING >>> LOCK14 st_lock.testGrabLock1 : PASS >>> LOCK3 st_lock.testExistingFile : RUNNING >>> LOCK3 st_lock.testExistingFile : PASS >>> LOCKCHGD st_lock.testDowngrade : RUNNING >>> LOCKCHGD st_lock.testDowngrade : PASS >>> LOCKHELD st_lock.testClose : RUNNING >>> LOCKHELD st_lock.testClose : PASS >>> LOCK20 st_lock.testBlockTimeout : RUNNING >>> Sleeping for 7 seconds: Waiting for queued blocking lock to timeout >>> Woke up >>> Sleeping for 7 seconds: Waiting for queued blocking lock to timeout >>> Woke up >>> Sleeping for 7 seconds: Waiting for queued blocking lock to timeout >>> Woke up >>> LOCK20 st_lock.testBlockTimeout : PASS >>> LOCK11 st_lock.testBadStateid : RUNNING >>> LOCK11 st_lock.testBadStateid : PASS >>> LOCK8b st_lock.testBadOpenSeqid : RUNNING >>> LOCK8b st_lock.testBadOpenSeqid : PASS >>> LOCK8a st_lock.testBadLockSeqid : RUNNING >>> LOCK8a st_lock.testBadLockSeqid : PASS >>> LINK6 st_link.testZeroLenName : RUNNING >>> LINK6 st_link.testZeroLenName : PASS >>> LINK1s st_link.testSocket : RUNNING >>> LINK1s st_link.testSocket : PASS >>> LINK2 st_link.testNoSfh : RUNNING >>> LINK2 st_link.testNoSfh : PASS >>> LINK3 st_link.testNoCfh : RUNNING >>> LINK3 st_link.testNoCfh : PASS >>> LINK7 st_link.testLongName : RUNNING >>> LINK7 st_link.testLongName : PASS >>> LINK1a st_link.testLink : RUNNING >>> LINK1a st_link.testLink : PASS >>> LINK1r st_link.testFile : RUNNING >>> LINK1r st_link.testFile : PASS >>> LINK1f st_link.testFifo : RUNNING >>> LINK1f st_link.testFifo : PASS >>> LINK5 st_link.testExists : RUNNING >>> LINK5 st_link.testExists : PASS >>> LINK9 st_link.testDots : RUNNING >>> LINK9 st_link.testDots : PASS >>> LINK1d st_link.testDir : RUNNING >>> LINK1d st_link.testDir : PASS >>> LINK4s st_link.testCfhSocket : RUNNING >>> LINK4s st_link.testCfhSocket : PASS >>> LINK4a st_link.testCfhLink : RUNNING >>> LINK4a st_link.testCfhLink : PASS >>> LINK4r st_link.testCfhFile : RUNNING >>> LINK4r st_link.testCfhFile : PASS >>> LINK4f st_link.testCfhFifo : RUNNING >>> LINK4f st_link.testCfhFifo : PASS >>> GF1s st_getfh.testSocket : RUNNING >>> GF1s st_getfh.testSocket : PASS >>> GF9 st_getfh.testNoFh : RUNNING >>> GF9 st_getfh.testNoFh : PASS >>> GF1a st_getfh.testLink : RUNNING >>> GF1a st_getfh.testLink : PASS >>> GF1r st_getfh.testFile : RUNNING >>> GF1r st_getfh.testFile : PASS >>> GF1f st_getfh.testFifo : RUNNING >>> GF1f st_getfh.testFifo : PASS >>> GF1d st_getfh.testDir : RUNNING >>> GF1d st_getfh.testDir : PASS >>> GATT3s st_getattr.testWriteOnlySocket : RUNNING >>> GATT3s st_getattr.testWriteOnlySocket : PASS >>> GATT3a st_getattr.testWriteOnlyLink : RUNNING >>> GATT3a st_getattr.testWriteOnlyLink : PASS >>> GATT3r st_getattr.testWriteOnlyFile : RUNNING >>> GATT3r st_getattr.testWriteOnlyFile : PASS >>> GATT3f st_getattr.testWriteOnlyFifo : RUNNING >>> GATT3f st_getattr.testWriteOnlyFifo : PASS >>> GATT3d st_getattr.testWriteOnlyDir : RUNNING >>> GATT3d st_getattr.testWriteOnlyDir : PASS >>> GATT4s st_getattr.testUnknownAttrSocket : RUNNING >>> GATT4s st_getattr.testUnknownAttrSocket : PASS >>> GATT4a st_getattr.testUnknownAttrLink : RUNNING >>> GATT4a st_getattr.testUnknownAttrLink : PASS >>> GATT4r st_getattr.testUnknownAttrFile : RUNNING >>> GATT4r st_getattr.testUnknownAttrFile : PASS >>> GATT4f st_getattr.testUnknownAttrFifo : RUNNING >>> GATT4f st_getattr.testUnknownAttrFifo : PASS >>> GATT4d st_getattr.testUnknownAttrDir : RUNNING >>> GATT4d st_getattr.testUnknownAttrDir : PASS >>> GATT6s st_getattr.testSupportedSocket : RUNNING >>> GATT6s st_getattr.testSupportedSocket : PASS >>> GATT6a st_getattr.testSupportedLink : RUNNING >>> GATT6a st_getattr.testSupportedLink : PASS >>> GATT6r st_getattr.testSupportedFile : RUNNING >>> GATT6r st_getattr.testSupportedFile : PASS >>> GATT6f st_getattr.testSupportedFifo : RUNNING >>> GATT6f st_getattr.testSupportedFifo : PASS >>> GATT6d st_getattr.testSupportedDir : RUNNING >>> GATT6d st_getattr.testSupportedDir : PASS >>> GATT10 st_getattr.testOwnerName : RUNNING >>> GATT10 st_getattr.testOwnerName : PASS >>> GATT2 st_getattr.testNoFh : RUNNING >>> GATT2 st_getattr.testNoFh : PASS >>> GATT1s st_getattr.testMandSocket : RUNNING >>> GATT1s st_getattr.testMandSocket : PASS >>> GATT1a st_getattr.testMandLink : RUNNING >>> GATT1a st_getattr.testMandLink : PASS >>> GATT1r st_getattr.testMandFile : RUNNING >>> GATT1r st_getattr.testMandFile : PASS >>> GATT1f st_getattr.testMandFifo : RUNNING >>> GATT1f st_getattr.testMandFifo : PASS >>> GATT1d st_getattr.testMandDir : RUNNING >>> GATT1d st_getattr.testMandDir : PASS >>> GATT9 st_getattr.testLotsofGetattrsFile : RUNNING >>> GATT9 st_getattr.testLotsofGetattrsFile : PASS >>> GATT7s st_getattr.testLongSocket : RUNNING >>> GATT7s st_getattr.testLongSocket : PASS >>> GATT7a st_getattr.testLongLink : RUNNING >>> GATT7a st_getattr.testLongLink : PASS >>> GATT7r st_getattr.testLongFile : RUNNING >>> GATT7r st_getattr.testLongFile : PASS >>> GATT7f st_getattr.testLongFifo : RUNNING >>> GATT7f st_getattr.testLongFifo : PASS >>> GATT7d st_getattr.testLongDir : RUNNING >>> GATT7d st_getattr.testLongDir : PASS >>> GATT8 st_getattr.testFSLocations : RUNNING >>> GATT8 st_getattr.testFSLocations : PASS >>> GATT5s st_getattr.testEmptySocket : RUNNING >>> GATT5s st_getattr.testEmptySocket : PASS >>> GATT5a st_getattr.testEmptyLink : RUNNING >>> GATT5a st_getattr.testEmptyLink : PASS >>> GATT5r st_getattr.testEmptyFile : RUNNING >>> GATT5r st_getattr.testEmptyFile : PASS >>> GATT5f st_getattr.testEmptyFifo : RUNNING >>> GATT5f st_getattr.testEmptyFifo : PASS >>> GATT5d st_getattr.testEmptyDir : RUNNING >>> GATT5d st_getattr.testEmptyDir : PASS >>> CR9a st_create.testZeroLengthForLNK : RUNNING >>> CR9a st_create.testZeroLengthForLNK : PASS >>> CR9 st_create.testZeroLength : RUNNING >>> CR9 st_create.testZeroLength : PASS >>> CR12 st_create.testUnsupportedAttributes : RUNNING >>> CR12 st_create.testUnsupportedAttributes : PASS >>> CR14 st_create.testSlash : RUNNING >>> CR14 st_create.testSlash : PASS >>> CR10 st_create.testRegularFile : RUNNING >>> CR10 st_create.testRegularFile : PASS >>> CR8 st_create.testNoFh : RUNNING >>> CR8 st_create.testNoFh : PASS >>> CR15 st_create.testLongName : RUNNING >>> CR15 st_create.testLongName : PASS >>> CR11 st_create.testInvalidAttrmask : RUNNING >>> CR11 st_create.testInvalidAttrmask : PASS >>> CR13 st_create.testDots : RUNNING >>> CR13 st_create.testDots : PASS >>> CR5 st_create.testDirOffSocket : RUNNING >>> CR5 st_create.testDirOffSocket : PASS >>> CR2 st_create.testDirOffLink : RUNNING >>> Traceback (most recent call last): >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run >>> self.runtest(self, environment) >>> File "/root/pynfs/nfs4.0/servertests/st_close.py", line 142, in testTimedoutClose2 >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm >>> check_result(res, "Opening file %s" % _getname(owner, path)) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result >>> raise BadCompoundRes(resop, res.status, msg) >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY >>> Traceback (most recent call last): >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run >>> self.runtest(self, environment) >>> File "/root/pynfs/nfs4.0/servertests/st_close.py", line 118, in testTimedoutClose1 >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm >>> check_result(res, "Opening file %s" % _getname(owner, path)) >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result >>> raise BadCompoundRes(resop, res.status, msg) >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY >>> CR2 st_create.testDirOffLink : PASS >>> CR7 st_create.testDirOffFile : RUNNING >>> CR7 st_create.testDirOffFile : PASS >>> CR6 st_create.testDirOffFIFO : RUNNING >>> CR6 st_create.testDirOffFIFO : PASS >>> COMP1 st_compound.testZeroOps : RUNNING >>> COMP1 st_compound.testZeroOps : PASS >>> COMP5 st_compound.testUndefined : RUNNING >>> COMP5 st_compound.testUndefined : PASS >>> COMP6 st_compound.testLongCompound : RUNNING >>> COMP6 st_compound.testLongCompound : PASS >>> COMP4 st_compound.testInvalidMinor : RUNNING >>> COMP4 st_compound.testInvalidMinor : PASS >>> COMP2 st_compound.testGoodTag : RUNNING >>> COMP2 st_compound.testGoodTag : PASS >>> CMT2s st_commit.testSocket : RUNNING >>> CMT2s st_commit.testSocket : PASS >>> CMT3 st_commit.testNoFh : RUNNING >>> CMT3 st_commit.testNoFh : PASS >>> CMT2a st_commit.testLink : RUNNING >>> CMT2a st_commit.testLink : PASS >>> CMT2f st_commit.testFifo : RUNNING >>> CMT2f st_commit.testFifo : PASS >>> CMT2d st_commit.testDir : RUNNING >>> CMT2d st_commit.testDir : PASS >>> CMT4 st_commit.testCommitOverflow : RUNNING >>> CMT4 st_commit.testCommitOverflow : PASS >>> CMT1d st_commit.testCommitOffsetMax2 : RUNNING >>> CMT1d st_commit.testCommitOffsetMax2 : PASS >>> CMT1c st_commit.testCommitOffsetMax1 : RUNNING >>> CMT1c st_commit.testCommitOffsetMax1 : PASS >>> CMT1b st_commit.testCommitOffset1 : RUNNING >>> CMT1b st_commit.testCommitOffset1 : PASS >>> CMT1aa st_commit.testCommitOffset0 : RUNNING >>> CMT1aa st_commit.testCommitOffset0 : PASS >>> CMT1f st_commit.testCommitCountMax : RUNNING >>> CMT1f st_commit.testCommitCountMax : PASS >>> CMT1e st_commit.testCommitCount1 : RUNNING >>> CMT1e st_commit.testCommitCount1 : PASS >>> CLOSE9 st_close.testTimedoutClose2 : RUNNING >>> Sleeping for 30 seconds: >>> Woke up >>> CLOSE9 st_close.testTimedoutClose2 : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> CLOSE8 st_close.testTimedoutClose1 : RUNNING >>> Sleeping for 30 seconds: >>> Woke up >>> CLOSE8 st_close.testTimedoutClose1 : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> CLOSE6 st_close.testStaleStateid : RUNNING >>> CLOSE6 st_close.testStaleStateid : PASS >>> CLOSE12 st_close.testReplaySeqid2 : RUNNING >>> CLOSE12 st_close.testReplaySeqid2 : PASS >>> CLOSE10 st_close.testReplaySeqid1 : RUNNING >>> CLOSE10 st_close.testReplaySeqid1 : PASS >>> CLOSE5 st_close.testOldStateid : RUNNING >>> CLOSE5 st_close.testOldStateid : PASS >>> CLOSE7 st_close.testNoCfh : RUNNING >>> CLOSE7 st_close.testNoCfh : PASS >>> CLOSE11 st_close.testNextSeqid : RUNNING >>> CLOSE11 st_close.testNextSeqid : PASS >>> CLOSE2 st_close.testCloseOpen : RUNNING >>> CLOSE2 st_close.testCloseOpen : PASS >>> CLOSE1 st_close.testCloseCreate : RUNNING >>> CLOSE1 st_close.testCloseCreate : PASS >>> CLOSE4 st_close.testBadStateid : RUNNING >>> CLOSE4 st_close.testBadStateid : PASS >>> CLOSE3 st_close.testBadSeqid : RUNNING >>> CLOSE3 st_close.testBadSeqid : PASS >>> ACL0 st_acl.testACLsupport : RUNNING >>> ACL0 st_acl.testACLsupport : PASS >>> ACL10 st_acl.testLargeACL : RUNNING >>> ACL10 st_acl.testLargeACL : PASS >>> ACL5 st_acl.testACL : RUNNING >>> ACL5 st_acl.testACL : PASS >>> ACC1s st_access.testReadSocket : RUNNING >>> ACC1s st_access.testReadSocket : PASS >>> ACC1a st_access.testReadLink : RUNNING >>> ACC1a st_access.testReadLink : PASS >>> ACC1r st_access.testReadFile : RUNNING >>> ACC1r st_access.testReadFile : PASS >>> ACC1f st_access.testReadFifo : RUNNING >>> ACC1f st_access.testReadFifo : PASS >>> ACC1d st_access.testReadDir : RUNNING >>> ACC1d st_access.testReadDir : PASS >>> ACC3 st_access.testNoFh : RUNNING >>> ACC3 st_access.testNoFh : PASS >>> ACC4s st_access.testInvalidsSocket : RUNNING >>> ACC4s st_access.testInvalidsSocket : PASS >>> ACC4a st_access.testInvalidsLink : RUNNING >>> ACC4a st_access.testInvalidsLink : PASS >>> ACC4r st_access.testInvalidsFile : RUNNING >>> ACC4r st_access.testInvalidsFile : PASS >>> ACC4f st_access.testInvalidsFifo : RUNNING >>> ACC4f st_access.testInvalidsFifo : PASS >>> ACC4d st_access.testInvalidsDir : RUNNING >>> ACC4d st_access.testInvalidsDir : PASS >>> ACC2s st_access.testAllSocket : RUNNING >>> ACC2s st_access.testAllSocket : PASS >>> ACC2a st_access.testAllLink : RUNNING >>> ACC2a st_access.testAllLink : PASS >>> ACC2r st_access.testAllFile : RUNNING >>> ACC2r st_access.testAllFile : PASS >>> ACC2f st_access.testAllFifo : RUNNING >>> ACC2f st_access.testAllFifo : PASS >>> ACC2d st_access.testAllDir : RUNNING >>> ACC2d st_access.testAllDir : PASS >>> ************************************************** >>> RENEW3 st_renew.testExpired : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> LKU10 st_locku.testTimedoutUnlock : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'LKU10-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> CLOSE9 st_close.testTimedoutClose2 : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> CLOSE8 st_close.testTimedoutClose1 : FAILURE >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': >>> operation OP_OPEN should return NFS4_OK, instead got >>> NFS4ERR_DELAY >>> ************************************************** >>> Command line asked for 526 of 673 tests >>> Of those: 7 Skipped, 4 Failed, 0 Warned, 515 Passed >>> root pynfs tests: >>> MKCHAR st_create.testChar : RUNNING >>> MKCHAR st_create.testChar : PASS >>> WRT6c st_write.testChar : RUNNING >>> WRT6c st_write.testChar : PASS >>> MKBLK st_create.testBlock : RUNNING >>> MKBLK st_create.testBlock : PASS >>> WRT6b st_write.testBlock : RUNNING >>> WRT6b st_write.testBlock : PASS >>> LOOKCHAR st_lookup.testChar : RUNNING >>> LOOKCHAR st_lookup.testChar : PASS >>> VF5c st_verify.testWriteOnlyChar : RUNNING >>> VF5c st_verify.testWriteOnlyChar : PASS >>> LOOKBLK st_lookup.testBlock : RUNNING >>> LOOKBLK st_lookup.testBlock : PASS >>> VF5b st_verify.testWriteOnlyBlock : RUNNING >>> VF5b st_verify.testWriteOnlyBlock : PASS >>> VF7c st_verify.testUnsupportedChar : RUNNING >>> VF7c st_verify.testUnsupportedChar : PASS >>> VF7b st_verify.testUnsupportedBlock : RUNNING >>> VF7b st_verify.testUnsupportedBlock : PASS >>> VF2c st_verify.testTypeChar : RUNNING >>> VF2c st_verify.testTypeChar : PASS >>> VF2b st_verify.testTypeBlock : RUNNING >>> VF2b st_verify.testTypeBlock : PASS >>> VF1c st_verify.testMandChar : RUNNING >>> VF1c st_verify.testMandChar : PASS >>> VF1b st_verify.testMandBlock : RUNNING >>> VF1b st_verify.testMandBlock : PASS >>> VF3c st_verify.testBadSizeChar : RUNNING >>> VF3c st_verify.testBadSizeChar : PASS >>> VF3b st_verify.testBadSizeBlock : RUNNING >>> VF3b st_verify.testBadSizeBlock : PASS >>> SATT11c st_setattr.testUnsupportedChar : RUNNING >>> SATT11c st_setattr.testUnsupportedChar : PASS >>> SATT11b st_setattr.testUnsupportedBlock : RUNNING >>> SATT11b st_setattr.testUnsupportedBlock : PASS >>> SATT12c st_setattr.testSizeChar : RUNNING >>> SATT12c st_setattr.testSizeChar : PASS >>> SATT12b st_setattr.testSizeBlock : RUNNING >>> SATT12b st_setattr.testSizeBlock : PASS >>> MKDIR st_create.testDir : RUNNING >>> MKDIR st_create.testDir : PASS >>> SATT6d st_setattr.testReadonlyDir : RUNNING >>> SATT6d st_setattr.testReadonlyDir : PASS >>> SATT6c st_setattr.testReadonlyChar : RUNNING >>> SATT6c st_setattr.testReadonlyChar : PASS >>> SATT6b st_setattr.testReadonlyBlock : RUNNING >>> SATT6b st_setattr.testReadonlyBlock : PASS >>> MODE st_setattr.testMode : RUNNING >>> MODE st_setattr.testMode : PASS >>> SATT1c st_setattr.testChar : RUNNING >>> SATT1c st_setattr.testChar : PASS >>> SATT1b st_setattr.testBlock : RUNNING >>> SATT1b st_setattr.testBlock : PASS >>> SVFH2c st_restorefh.testValidChar : RUNNING >>> SVFH2c st_restorefh.testValidChar : PASS >>> SVFH2b st_restorefh.testValidBlock : RUNNING >>> SVFH2b st_restorefh.testValidBlock : PASS >>> RNM1c st_rename.testValidChar : RUNNING >>> RNM1c st_rename.testValidChar : PASS >>> RNM1b st_rename.testValidBlock : RUNNING >>> RNM1b st_rename.testValidBlock : PASS >>> RNM2c st_rename.testSfhChar : RUNNING >>> RNM2c st_rename.testSfhChar : PASS >>> RNM2b st_rename.testSfhBlock : RUNNING >>> RNM2b st_rename.testSfhBlock : PASS >>> RNM3c st_rename.testCfhChar : RUNNING >>> RNM3c st_rename.testCfhChar : PASS >>> RNM3b st_rename.testCfhBlock : RUNNING >>> RNM3b st_rename.testCfhBlock : PASS >>> RM1c st_remove.testChar : RUNNING >>> RM1c st_remove.testChar : PASS >>> RM2c st_remove.testCfhChar : RUNNING >>> RM2c st_remove.testCfhChar : PASS >>> RM2b st_remove.testCfhBlock : RUNNING >>> RM2b st_remove.testCfhBlock : PASS >>> RM1b st_remove.testBlock : RUNNING >>> RM1b st_remove.testBlock : PASS >>> RDLK2c st_readlink.testChar : RUNNING >>> RDLK2c st_readlink.testChar : PASS >>> RDLK2b st_readlink.testBlock : RUNNING >>> RDLK2b st_readlink.testBlock : PASS >>> RDDR5c st_readdir.testFhChar : RUNNING >>> RDDR5c st_readdir.testFhChar : PASS >>> RDDR5b st_readdir.testFhBlock : RUNNING >>> RDDR5b st_readdir.testFhBlock : PASS >>> RD7c st_read.testChar : RUNNING >>> RD7c st_read.testChar : PASS >>> RD7b st_read.testBlock : RUNNING >>> RD7b st_read.testBlock : PASS >>> PUTFH1c st_putfh.testChar : RUNNING >>> PUTFH1c st_putfh.testChar : PASS >>> PUTFH1b st_putfh.testBlock : RUNNING >>> PUTFH1b st_putfh.testBlock : PASS >>> INIT st_setclientid.testValid : RUNNING >>> INIT st_setclientid.testValid : PASS >>> OPEN7c st_open.testChar : RUNNING >>> OPEN7c st_open.testChar : PASS >>> OPEN7b st_open.testBlock : RUNNING >>> OPEN7b st_open.testBlock : PASS >>> NVF5c st_nverify.testWriteOnlyChar : RUNNING >>> NVF5c st_nverify.testWriteOnlyChar : PASS >>> NVF5b st_nverify.testWriteOnlyBlock : RUNNING >>> NVF5b st_nverify.testWriteOnlyBlock : PASS >>> NVF7c st_nverify.testUnsupportedChar : RUNNING >>> NVF7c st_nverify.testUnsupportedChar : PASS >>> NVF7b st_nverify.testUnsupportedBlock : RUNNING >>> NVF7b st_nverify.testUnsupportedBlock : PASS >>> NVF2c st_nverify.testTypeChar : RUNNING >>> NVF2c st_nverify.testTypeChar : PASS >>> NVF2b st_nverify.testTypeBlock : RUNNING >>> NVF2b st_nverify.testTypeBlock : PASS >>> NVF1c st_nverify.testMandChar : RUNNING >>> NVF1c st_nverify.testMandChar : PASS >>> NVF1b st_nverify.testMandBlock : RUNNING >>> NVF1b st_nverify.testMandBlock : PASS >>> NVF3c st_nverify.testBadSizeChar : RUNNING >>> NVF3c st_nverify.testBadSizeChar : PASS >>> NVF3b st_nverify.testBadSizeBlock : RUNNING >>> NVF3b st_nverify.testBadSizeBlock : PASS >>> LOOKP2c st_lookupp.testChar : RUNNING >>> LOOKP2c st_lookupp.testChar : PASS >>> LOOKP2b st_lookupp.testBlock : RUNNING >>> LOOKP2b st_lookupp.testBlock : PASS >>> LOOK5c st_lookup.testCharNotDir : RUNNING >>> LOOK5c st_lookup.testCharNotDir : PASS >>> LOOK5b st_lookup.testBlockNotDir : RUNNING >>> LOOK5b st_lookup.testBlockNotDir : PASS >>> LKT2c st_lockt.testChar : RUNNING >>> LKT2c st_lockt.testChar : PASS >>> LKT2b st_lockt.testBlock : RUNNING >>> LKT2b st_lockt.testBlock : PASS >>> LINKS st_link.testSupported : RUNNING >>> LINKS st_link.testSupported : PASS >>> LINK1c st_link.testChar : RUNNING >>> LINK1c st_link.testChar : PASS >>> LOOKFILE st_lookup.testFile : RUNNING >>> LOOKFILE st_lookup.testFile : PASS >>> LINK4c st_link.testCfhChar : RUNNING >>> LINK4c st_link.testCfhChar : PASS >>> LINK4b st_link.testCfhBlock : RUNNING >>> LINK4b st_link.testCfhBlock : PASS >>> LINK1b st_link.testBlock : RUNNING >>> LINK1b st_link.testBlock : PASS >>> GF1c st_getfh.testChar : RUNNING >>> GF1c st_getfh.testChar : PASS >>> GF1b st_getfh.testBlock : RUNNING >>> GF1b st_getfh.testBlock : PASS >>> GATT3c st_getattr.testWriteOnlyChar : RUNNING >>> GATT3c st_getattr.testWriteOnlyChar : PASS >>> GATT3b st_getattr.testWriteOnlyBlock : RUNNING >>> GATT3b st_getattr.testWriteOnlyBlock : PASS >>> GATT4c st_getattr.testUnknownAttrChar : RUNNING >>> GATT4c st_getattr.testUnknownAttrChar : PASS >>> GATT4b st_getattr.testUnknownAttrBlock : RUNNING >>> GATT4b st_getattr.testUnknownAttrBlock : PASS >>> GATT6c st_getattr.testSupportedChar : RUNNING >>> GATT6c st_getattr.testSupportedChar : PASS >>> GATT6b st_getattr.testSupportedBlock : RUNNING >>> GATT6b st_getattr.testSupportedBlock : PASS >>> GATT1c st_getattr.testMandChar : RUNNING >>> GATT1c st_getattr.testMandChar : PASS >>> GATT1b st_getattr.testMandBlock : RUNNING >>> GATT1b st_getattr.testMandBlock : PASS >>> GATT7c st_getattr.testLongChar : RUNNING >>> GATT7c st_getattr.testLongChar : PASS >>> GATT7b st_getattr.testLongBlock : RUNNING >>> GATT7b st_getattr.testLongBlock : PASS >>> GATT5c st_getattr.testEmptyChar : RUNNING >>> GATT5c st_getattr.testEmptyChar : PASS >>> GATT5b st_getattr.testEmptyBlock : RUNNING >>> GATT5b st_getattr.testEmptyBlock : PASS >>> CR4 st_create.testDirOffChar : RUNNING >>> CR4 st_create.testDirOffChar : PASS >>> CR3 st_create.testDirOffBlock : RUNNING >>> CR3 st_create.testDirOffBlock : PASS >>> CMT2c st_commit.testChar : RUNNING >>> CMT2c st_commit.testChar : PASS >>> CMT2b st_commit.testBlock : RUNNING >>> CMT2b st_commit.testBlock : PASS >>> ACC1c st_access.testReadChar : RUNNING >>> ACC1c st_access.testReadChar : PASS >>> ACC1b st_access.testReadBlock : RUNNING >>> ACC1b st_access.testReadBlock : PASS >>> ACC4c st_access.testInvalidsChar : RUNNING >>> ACC4c st_access.testInvalidsChar : PASS >>> ACC4b st_access.testInvalidsBlock : RUNNING >>> ACC4b st_access.testInvalidsBlock : PASS >>> ACC2c st_access.testAllChar : RUNNING >>> ACC2c st_access.testAllChar : PASS >>> ACC2b st_access.testAllBlock : RUNNING >>> ACC2b st_access.testAllBlock : PASS >>> ************************************************** >>> ************************************************** >>> Command line asked for 96 of 673 tests >>> Of those: 0 Skipped, 0 Failed, 0 Warned, 96 Passed >>> INFO :rpc.poll:got connection from ('127.0.0.1', 51342), assigned to fd=5 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Created client to test1.fieldses.org, 2049 >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=17, name=b'socket', attrs={}), entry4(cookie=19, name=b'fifo', attrs={}), entry4(cookie=21, name=b'link', attrs={}), entry4(cookie=24, name=b'block', attrs={}), entry4(cookie=26, name=b'char', attrs={}), entry4(cookie=512, name=b'file', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [] >>> INFO :test.env:client 1 creates file OK >>> >>> INFO :test.env:client 2 open file OK >>> >>> INFO :test.env:force lease to expire... >>> >>> INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs >>> INFO :test.env:Woke up >>> INFO :test.env:3rd client open OK - PASSED >>> >>> INFO :test.env:client 1 creates file OK >>> >>> INFO :test.env:force lease to expire... >>> >>> INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs >>> INFO :test.env:Woke up >>> INFO :test.env:2nd client open OK - PASSED >>> >>> INFO :test.env:2nd client open OK - PASSED >>> >>> INFO :test.env:local open conflict detected - PASSED >>> >>> INFO :test.env:2nd client open conflict detected - PASSED >>> >>> INFO :test.env:force lease to expire... >>> >>> INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs >>> INFO :test.env:Woke up >>> INFO :test.env:3nd client opened OK - no conflict detected - PASSED >>> >>> INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> WARNING:test.env:server took approximately 13 seconds to lift grace after all clients reclaimed >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Sleeping for 10 seconds: Delaying start of reclaim >>> INFO :test.env:Woke up >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> WARNING:test.env:server took approximately 14 seconds to lift grace after all clients reclaimed >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :rpc.poll:Closing 6 >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 6 generated by another thread >>> INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end >>> INFO :test.env:Woke up >>> COUR6 st_courtesy.testShareReservationDB03 : RUNNING >>> COUR6 st_courtesy.testShareReservationDB03 : PASS >>> COUR5 st_courtesy.testShareReservationDB02 : RUNNING >>> COUR5 st_courtesy.testShareReservationDB02 : PASS >>> COUR4 st_courtesy.testShareReservationDB01 : RUNNING >>> COUR4 st_courtesy.testShareReservationDB01 : PASS >>> COUR3 st_courtesy.testShareReservation00 : RUNNING >>> COUR3 st_courtesy.testShareReservation00 : PASS >>> COUR2 st_courtesy.testLockSleepLock : RUNNING >>> COUR2 st_courtesy.testLockSleepLock : PASS >>> CSID3 st_current_stateid.testOpenWriteClose : RUNNING >>> CSID3 st_current_stateid.testOpenWriteClose : PASS >>> CSID8 st_current_stateid.testOpenSetattr : RUNNING >>> CSID8 st_current_stateid.testOpenSetattr : PASS >>> CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : RUNNING >>> CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : PASS >>> CSID5 st_current_stateid.testOpenLookupClose : RUNNING >>> CSID5 st_current_stateid.testOpenLookupClose : PASS >>> CSID9 st_current_stateid.testOpenFreestateidClose : RUNNING >>> CSID9 st_current_stateid.testOpenFreestateidClose : PASS >>> CSID1 st_current_stateid.testOpenAndClose : RUNNING >>> CSID1 st_current_stateid.testOpenAndClose : PASS >>> CSID4 st_current_stateid.testLockWriteLocku : RUNNING >>> CSID4 st_current_stateid.testLockWriteLocku : PASS >>> CSID2 st_current_stateid.testLockLockU : RUNNING >>> CSID2 st_current_stateid.testLockLockU : PASS >>> CSID6 st_current_stateid.testCloseNoStateid : RUNNING >>> CSID6 st_current_stateid.testCloseNoStateid : PASS >>> REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : RUNNING >>> REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : PASS >>> REBT2b st_reboot.testRebootWithManyManyClients : RUNNING >>> REBT2b st_reboot.testRebootWithManyManyClients : PASS >>> REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : RUNNING >>> REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : PASS >>> REBT2a st_reboot.testRebootWithManyClients : RUNNING >>> REBT2a st_reboot.testRebootWithManyClients : PASS >>> REBT5 st_reboot.testRebootWithLateReclaim : RUNNING >>> REBT5 st_reboot.testRebootWithLateReclaim : PASS >>> REBT1 st_reboot.testRebootValid : RUNNING >>> REBT1 st_reboot.testRebootValid : PASS >>> REBT3b st_reboot.testDoubleRebootWithManyManyClients : RUNNING >>> REBT3b st_reboot.testDoubleRebootWithManyManyClients : PASS >>> REBT3a st_reboot.testDoubleRebootWithManyClients : RUNNING >>> REBT3a st_reboot.testDoubleRebootWithManyClients : PASS >>> PUTFH1s st_putfh.testSocket : RUNNING >>> PUTFH1s st_putfh.testSocket : PASS >>> PUTFH1a st_putfh.testLink : RUNNING >>> PUTFH1a st_putfh.testLink : PASS >>> PUTFH1r st_putfh.testFile : RUNNING >>> PUTFH1r st_putfh.testFile : PASS >>> PUTFH1f st_putfh.testFifo : RUNNING >>> PUTFH1f st_putfh.testFifo : PASS >>> PUTFH1d st_putfh.testDir : RUNNING >>> PUTFH1d st_putfh.testDir : PASS >>> PUTFH2 st_putfh.testBadHandle : RUNNING >>> PUTFH2 st_putfh.testBadHandle : PASS >>> RNM6 st_rename.testZeroLengthOldname : RUNNING >>> RNM6 st_rename.testZeroLengthOldname : PASS >>> RNM7 st_rename.testZeroLengthNewname : RUNNING >>> RNM7 st_rename.testZeroLengthNewname : PASS >>> RNM1s st_rename.testValidSocket : RUNNING >>> RNM1s st_rename.testValidSocket : PASS >>> RNM1a st_rename.testValidLink : RUNNING >>> RNM1a st_rename.testValidLink : PASS >>> RNM1r st_rename.testValidFile : RUNNING >>> RNM1r st_rename.testValidFile : PASS >>> RNM1f st_rename.testValidFifo : RUNNING >>> RNM1f st_rename.testValidFifo : PASS >>> RNM1d st_rename.testValidDir : RUNNING >>> RNM1d st_rename.testValidDir : PASS >>> RNM2s st_rename.testSfhSocket : RUNNING >>> RNM2s st_rename.testSfhSocket : PASS >>> RNM2a st_rename.testSfhLink : RUNNING >>> RNM2a st_rename.testSfhLink : PASS >>> RNM2r st_rename.testSfhFile : RUNNING >>> RNM2r st_rename.testSfhFile : PASS >>> RNM2f st_rename.testSfhFifo : RUNNING >>> RNM2f st_rename.testSfhFifo : PASS >>> RNM19 st_rename.testSelfRenameFile : RUNNING >>> RNM19 st_rename.testSelfRenameFile : PASS >>> RNM18 st_rename.testSelfRenameDir : RUNNING >>> RNM18 st_rename.testSelfRenameDir : PASS >>> RNM5 st_rename.testNonExistent : RUNNING >>> RNM5 st_rename.testNonExistent : PASS >>> RNM4 st_rename.testNoSfh : RUNNING >>> RNM4 st_rename.testNoSfh : PASS >>> RNM20 st_rename.testLinkRename : RUNNING >>> RNM20 st_rename.testLinkRename : PASS >>> RNM17 st_rename.testFileToFullDir : RUNNING >>> RNM17 st_rename.testFileToFullDir : PASS >>> RNM15 st_rename.testFileToFile : RUNNING >>> RNM15 st_rename.testFileToFile : PASS >>> RNM14 st_rename.testFileToDir : RUNNING >>> RNM14 st_rename.testFileToDir : PASS >>> RNM10 st_rename.testDotsOldname : RUNNING >>> RNM10 st_rename.testDotsOldname : PASS >>> RNM11 st_rename.testDotsNewname : RUNNING >>> RNM11 st_rename.testDotsNewname : PASS >>> RNM12 st_rename.testDirToObj : RUNNING >>> RNM12 st_rename.testDirToObj : PASS >>> RNM16 st_rename.testDirToFullDir : RUNNING >>> RNM16 st_rename.testDirToFullDir : PASS >>> RNM13 st_rename.testDirToDir : RUNNING >>> RNM13 st_rename.testDirToDir : PASS >>> RNM3s st_rename.testCfhSocket : RUNNING >>> RNM3s st_rename.testCfhSocket : PASS >>> RNM3a st_rename.testCfhLink : RUNNING >>> RNM3a st_rename.testCfhLink : PASS >>> RNM3r st_rename.testCfhFile : RUNNING >>> INFO :nfs.client.cb:******************** >>> INFO :nfs.client.cb:Handling COMPOUND >>> INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** >>> INFO :nfs.client.cb:In CB_SEQUENCE >>> INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** >>> INFO :nfs.client.cb:In CB_RECALL >>> INFO :nfs.client.cb:Replying. Status NFS4_OK (0) >>> INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9cWSo[\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] >>> INFO :test.env:Sleeping for 0 seconds: >>> INFO :test.env:Woke up >>> INFO :nfs.client.cb:******************** >>> INFO :nfs.client.cb:Handling COMPOUND >>> INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** >>> INFO :nfs.client.cb:In CB_SEQUENCE >>> INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** >>> INFO :nfs.client.cb:In CB_RECALL >>> INFO :nfs.client.cb:Replying. Status NFS4_OK (0) >>> INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9eWSo]\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] >>> INFO :test.env:Sleeping for 0 seconds: >>> INFO :test.env:Woke up >>> INFO :nfs.client.cb:******************** >>> INFO :nfs.client.cb:Handling COMPOUND >>> INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** >>> INFO :nfs.client.cb:In CB_SEQUENCE >>> INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** >>> INFO :nfs.client.cb:In CB_RECALL >>> INFO :nfs.client.cb:Replying. Status NFS4_OK (0) >>> INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa1WSo`\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] >>> INFO :nfs.client.cb:******************** >>> INFO :nfs.client.cb:Handling COMPOUND >>> INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** >>> INFO :nfs.client.cb:In CB_SEQUENCE >>> INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** >>> INFO :nfs.client.cb:In CB_RECALL >>> INFO :nfs.client.cb:Replying. Status NFS4_OK (0) >>> INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa3WSob\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] >>> INFO :test.env:Sleeping for 0 seconds: >>> INFO :test.env:Woke up >>> INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) >>> INFO :rpc.poll:Adding 8 generated by another thread >>> RNM3r st_rename.testCfhFile : PASS >>> RNM3f st_rename.testCfhFifo : RUNNING >>> RNM3f st_rename.testCfhFifo : PASS >>> LKPP1s st_lookupp.testSock : RUNNING >>> LKPP1s st_lookupp.testSock : PASS >>> LKPP3 st_lookupp.testNoFH : RUNNING >>> LKPP3 st_lookupp.testNoFH : PASS >>> LKPP2 st_lookupp.testLookuppRoot : RUNNING >>> LKPP2 st_lookupp.testLookuppRoot : PASS >>> LKPP1a st_lookupp.testLink : RUNNING >>> LKPP1a st_lookupp.testLink : PASS >>> LKPP1r st_lookupp.testFile : RUNNING >>> LKPP1r st_lookupp.testFile : PASS >>> LKPP1f st_lookupp.testFifo : RUNNING >>> LKPP1f st_lookupp.testFifo : PASS >>> VF1r st_verify.testMandFile : RUNNING >>> VF1r st_verify.testMandFile : PASS >>> DELEG9 st_delegation.testWriteOpenvsReadDeleg : RUNNING >>> DELEG9 st_delegation.testWriteOpenvsReadDeleg : PASS >>> DELEG23 st_delegation.testServerSelfConflict3 : RUNNING >>> __create_file_with_deleg: b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1eX\xc5%' open_delegation4(delegation_type=OPEN_DELEGATE_READ, read=open_read_delegation4(stateid=stateid4(seqid=1, other=b'<\x0b\xdfa\x9cWSo\x02\x00\x00\x00'), recall=False, permissions=nfsace4(type=0, flag=0, access_mask=0, who=b''))) >>> open_file res: COMPOUND4res(status=NFS4_OK, tag=b'environment.py:open_create_file', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_OPEN, opopen=OPEN4res(status=NFS4_OK, resok4=OPEN4resok(stateid=stateid4(seqid=2, other=b'<\x0b\xdfa\x9cWSo\x01\x00\x00\x00'), cinfo=change_info4(atomic=False, before=1763091998602434224, after=1737777748740145092), rflags=36, attrset=0, delegation=open_delegation4(delegation_type=OPEN_DELEGATE_NONE_EXT, od_whynone=open_none_delegation4(ond_why=WND4_NOT_WANTED))))), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4_OK, resok4=GETFH4resok(object=b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1e >>> X\xc5%')))]) >>> DELEG23 st_delegation.testServerSelfConflict3 : PASS >>> DELEG1 st_delegation.testReadDeleg : RUNNING >>> DELEG1 st_delegation.testReadDeleg : PASS >>> DELEG4 st_delegation.testNoDeleg : RUNNING >>> DELEG4 st_delegation.testNoDeleg : PASS >>> DELEG8 st_delegation.testDelegRevocation : RUNNING >>> DELEG8 st_delegation.testDelegRevocation : PASS >>> DELEG6 st_delegation.testCBSecParmsNull : RUNNING >>> DELEG6 st_delegation.testCBSecParmsNull : PASS >>> OPEN1 st_open.testSupported : RUNNING >>> OPEN1 st_open.testSupported : PASS >>> OPEN2 st_open.testServerStateSeqid : RUNNING >>> OPEN2 st_open.testServerStateSeqid : PASS >>> OPEN30 st_open.testReadWrite : RUNNING >>> OPEN30 st_open.testReadWrite : PASS >>> OPEN7 st_open.testOPENClaimFH : RUNNING >>> OPEN7 st_open.testOPENClaimFH : PASS >>> OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : RUNNING >>> OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : PASS >>> OPEN8 st_open.testCloseWithZeroSeqid : RUNNING >>> OPEN8 st_open.testCloseWithZeroSeqid : PASS >>> OPEN31 st_open.testAnonReadWrite : RUNNING >>> OPEN31 st_open.testAnonReadWrite : PASS >>> TRUNK2 st_trunking.testUseTwoSessions : RUNNING >>> TRUNK2 st_trunking.testUseTwoSessions : PASS >>> TRUNK1 st_trunking.testTwoSessions : RUNNING >>> TRUNK1 st_trunking.testTwoSessions : PASS >>> SEQ7 st_sequence.testTooManyOps : RUNNING >>> SEQ7 st_sequence.testTooManyOps : PASS >>> SEQ1 st_sequence.testSupported : RUNNING >>> SEQ1 st_sequence.testSupported : PASS >>> SEQ12 st_sequence.testSessionidSequenceidSlotid : RUNNING >>> SEQ12 st_sequence.testSessionidSequenceidSlotid : PASS >>> SEQ6 st_sequence.testRequestTooBig : RUNNING >>> SEQ6 st_sequence.testRequestTooBig : PASS >>> SEQ10b st_sequence.testReplayCache007 : RUNNING >>> SEQ10b st_sequence.testReplayCache007 : PASS >>> SEQ9f st_sequence.testReplayCache006 : RUNNING >>> SEQ9f st_sequence.testReplayCache006 : PASS >>> SEQ9e st_sequence.testReplayCache005 : RUNNING >>> SEQ9e st_sequence.testReplayCache005 : PASS >>> SEQ9d st_sequence.testReplayCache004 : RUNNING >>> SEQ9d st_sequence.testReplayCache004 : PASS >>> SEQ9c st_sequence.testReplayCache003 : RUNNING >>> SEQ9c st_sequence.testReplayCache003 : PASS >>> SEQ9b st_sequence.testReplayCache002 : RUNNING >>> SEQ9b st_sequence.testReplayCache002 : PASS >>> SEQ9a st_sequence.testReplayCache001 : RUNNING >>> SEQ9a st_sequence.testReplayCache001 : PASS >>> SEQ11 st_sequence.testOpNotInSession : RUNNING >>> SEQ11 st_sequence.testOpNotInSession : PASS >>> SEQ2 st_sequence.testNotFirst : RUNNING >>> SEQ2 st_sequence.testNotFirst : PASS >>> SEQ4 st_sequence.testImplicitBind : RUNNING >>> SEQ4 st_sequence.testImplicitBind : PASS >>> SEQ8 st_sequence.testBadSlot : RUNNING >>> SEQ8 st_sequence.testBadSlot : PASS >>> SEQ5 st_sequence.testBadSession : RUNNING >>> SEQ5 st_sequence.testBadSession : PASS >>> SEQ13 st_sequence.testBadSequenceidAtSlot : RUNNING >>> SEQ13 st_sequence.testBadSequenceidAtSlot : PASS >>> SEC2 st_secinfo.testSupported2 : RUNNING >>> SEC2 st_secinfo.testSupported2 : PASS >>> SEC1 st_secinfo.testSupported : RUNNING >>> SEC1 st_secinfo.testSupported : PASS >>> SECNN4 st_secinfo_no_name.testSupported4 : RUNNING >>> SECNN4 st_secinfo_no_name.testSupported4 : PASS >>> SECNN3 st_secinfo_no_name.testSupported3 : RUNNING >>> SECNN3 st_secinfo_no_name.testSupported3 : PASS >>> SECNN2 st_secinfo_no_name.testSupported2 : RUNNING >>> COMPOUND4res(status=NFS4ERR_NOFILEHANDLE, tag=b'st_secinfo_no_name.py:testSupported2', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_SECINFO_NO_NAME, opsecinfo_no_name=SECINFO4res(status=NFS4_OK, resok4=[secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_NONE)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_INTEGRITY)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_PRIVACY)), secinfo4(flavor=1)])), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4ERR_NOFILEHANDLE))]) >>> SECNN2 st_secinfo_no_name.testSupported2 : PASS >>> SECNN1 st_secinfo_no_name.testSupported : RUNNING >>> SECNN1 st_secinfo_no_name.testSupported : PASS >>> RECC1 st_reclaim_complete.testSupported : RUNNING >>> RECC1 st_reclaim_complete.testSupported : PASS >>> RECC2 st_reclaim_complete.testReclaimAfterRECC : RUNNING >>> RECC2 st_reclaim_complete.testReclaimAfterRECC : PASS >>> RECC3 st_reclaim_complete.testOpenBeforeRECC : RUNNING >>> RECC3 st_reclaim_complete.testOpenBeforeRECC : PASS >>> RECC4 st_reclaim_complete.testDoubleRECC : RUNNING >>> RECC4 st_reclaim_complete.testDoubleRECC : PASS >>> DESCID1 st_destroy_clientid.testSupported : RUNNING >>> DESCID1 st_destroy_clientid.testSupported : PASS >>> DESCID2 st_destroy_clientid.testDestroyCIDWS : RUNNING >>> DESCID2 st_destroy_clientid.testDestroyCIDWS : PASS >>> DESCID8 st_destroy_clientid.testDestroyCIDTwice : RUNNING >>> DESCID8 st_destroy_clientid.testDestroyCIDTwice : PASS >>> DESCID5 st_destroy_clientid.testDestroyCIDSessionB : RUNNING >>> DESCID5 st_destroy_clientid.testDestroyCIDSessionB : PASS >>> DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : RUNNING >>> DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : PASS >>> DESCID6 st_destroy_clientid.testDestroyCIDCSession : RUNNING >>> DESCID6 st_destroy_clientid.testDestroyCIDCSession : PASS >>> DESCID3 st_destroy_clientid.testDestroyBadCIDWS : RUNNING >>> DESCID3 st_destroy_clientid.testDestroyBadCIDWS : PASS >>> DESCID4 st_destroy_clientid.testDestroyBadCIDIS : RUNNING >>> DESCID4 st_destroy_clientid.testDestroyBadCIDIS : PASS >>> CSESS28 st_create_session.testTooSmallMaxReq : RUNNING >>> CSESS28 st_create_session.testTooSmallMaxReq : PASS >>> CSESS25 st_create_session.testTooSmallMaxRS : RUNNING >>> CSESS25 st_create_session.testTooSmallMaxRS : PASS >>> CSESS2b st_create_session.testSupported2b : RUNNING >>> CSESS2b st_create_session.testSupported2b : PASS >>> CSESS2 st_create_session.testSupported2 : RUNNING >>> CSESS2 st_create_session.testSupported2 : PASS >>> CSESS1 st_create_session.testSupported1 : RUNNING >>> CSESS1 st_create_session.testSupported1 : PASS >>> CSESS9 st_create_session.testPrincipalCollision1 : RUNNING >>> CSESS9 st_create_session.testPrincipalCollision1 : PASS >>> CSESS6 st_create_session.testReplay2 : RUNNING >>> CSESS6 st_create_session.testReplay2 : PASS >>> CSESS5b st_create_session.testReplay1b : RUNNING >>> CSESS5b st_create_session.testReplay1b : PASS >>> CSESS5a st_create_session.testReplay1a : RUNNING >>> CSESS5a st_create_session.testReplay1a : PASS >>> CSESS5 st_create_session.testReplay1 : RUNNING >>> CSESS5 st_create_session.testReplay1 : PASS >>> CSESS27 st_create_session.testRepTooBigToCache : RUNNING >>> CSESS27 st_create_session.testRepTooBigToCache : PASS >>> CSESS26 st_create_session.testRepTooBig : RUNNING >>> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19] >>> CSESS26 st_create_session.testRepTooBig : PASS >>> CSESS19 st_create_session.testRdmaArray2 : RUNNING >>> COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_create_session.py:testRdmaArray2', resarray=[nfs_resop4(resop=OP_CREATE_SESSION, opcreate_session=CREATE_SESSION4res(csr_status=NFS4ERR_BADXDR))]) >>> CSESS19 st_create_session.testRdmaArray2 : PASS >>> CSESS18 st_create_session.testRdmaArray1 : RUNNING >>> CSESS18 st_create_session.testRdmaArray1 : PASS >>> CSESS17 st_create_session.testRdmaArray0 : RUNNING >>> CSESS17 st_create_session.testRdmaArray0 : PASS >>> CSESS10 st_create_session.testPrincipalCollision2 : RUNNING >>> CSESS10 st_create_session.testPrincipalCollision2 : PASS >>> CSESS23 st_create_session.testNotOnlyOp : RUNNING >>> CSESS23 st_create_session.testNotOnlyOp : PASS >>> CSESS3 st_create_session.testNoExchange : RUNNING >>> CSESS3 st_create_session.testNoExchange : PASS >>> CSESS22 st_create_session.testMaxreqs : RUNNING >>> CSESS22 st_create_session.testMaxreqs : PASS >>> CSESS200 st_create_session.testManyClients : RUNNING >>> CSESS200 st_create_session.testManyClients : PASS >>> CSESS29 st_create_session.testDRCMemLeak : RUNNING >>> CSESS29 st_create_session.testDRCMemLeak : PASS >>> CSESS24 st_create_session.testCsr_sequence : RUNNING >>> CSESS24 st_create_session.testCsr_sequence : PASS >>> CSESS4 st_create_session.testContrivedReplay : RUNNING >>> CSESS4 st_create_session.testContrivedReplay : PASS >>> CSESS16a st_create_session.testCbSecParmsDec : RUNNING >>> CSESS16a st_create_session.testCbSecParmsDec : PASS >>> CSESS16 st_create_session.testCbSecParms : RUNNING >>> CSESS16 st_create_session.testCbSecParms : PASS >>> CSESS8 st_create_session.testBadSeqnum2 : RUNNING >>> CSESS8 st_create_session.testBadSeqnum2 : PASS >>> CSESS7 st_create_session.testBadSeqnum1 : RUNNING >>> CSESS7 st_create_session.testBadSeqnum1 : PASS >>> CSESS15 st_create_session.testBadFlag : RUNNING >>> CSESS15 st_create_session.testBadFlag : PASS >>> COMP1 st_compound.testZeroOps : RUNNING >>> COMP1 st_compound.testZeroOps : PASS >>> COMP5 st_compound.testUndefined : RUNNING >>> COMP5 st_compound.testUndefined : PASS >>> COMP4b st_compound.testInvalidMinor2 : RUNNING >>> COMP4b st_compound.testInvalidMinor2 : PASS >>> COMP4a st_compound.testInvalidMinor : RUNNING >>> COMP4a st_compound.testInvalidMinor : PASS >>> COMP2 st_compound.testGoodTag : RUNNING >>> COMP2 st_compound.testGoodTag : PASS >>> EID6 st_exchange_id.testUpdateNonexistant : RUNNING >>> EID6 st_exchange_id.testUpdateNonexistant : PASS >>> EID6h st_exchange_id.testUpdate111 : RUNNING >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=16, name=b'COUR6_1642007029', attrs={}), entry4(cookie=20, name=b'COUR5_1642007029', attrs={}), entry4(cookie=24, name=b'COUR4_1642007029', attrs={}), entry4(cookie=28, name=b'COUR3_1642007029', attrs={}), entry4(cookie=32, name=b'COUR2_1642007029', attrs={}), entry4(cookie=36, name=b'CSID3_1642007029', attrs={}), entry4(cookie=40, name=b'CSID8_1642007029', attrs={}), entry4(cookie=44, name=b'CSID10_1642007029', attrs={}), entry4(cookie=48, name=b'CSID5_1642007029', attrs={}), entry4(cookie=52, name=b'CSID9_1642007029', attrs={}), entry4(cookie=56, name=b'CSID1_1642007029', attrs={}), entry4(cookie=60, name=b'CSID4_1642007029', attrs={}), entry4(cookie=64, name=b'CSID2_1642007029', attrs={}), entry4(cookie=68, name=b'CSID6_1642007029', attrs={}), entry4(cookie=74, name=b'owner_REBT4b_1642007029_client_0', attrs={}), entry4(cookie=80, name=b'owner_REBT4b_1642007029_client_1', attrs={}), entry4(cookie=86, name=b'owner_REBT4b_1642007029_cli >>> ent_2', attrs={}), entry4(cookie=92, name=b'owner_REBT4b_1642007029_client_3', attrs={}), entry4(cookie=98, name=b'owner_REBT4b_1642007029_client_4', attrs={}), entry4(cookie=104, name=b'owner_REBT4b_1642007029_client_5', attrs={}), entry4(cookie=110, name=b'owner_REBT4b_1642007029_client_6', attrs={}), entry4(cookie=116, name=b'owner_REBT4b_1642007029_client_7', attrs={}), entry4(cookie=122, name=b'owner_REBT4b_1642007029_client_8', attrs={}), entry4(cookie=128, name=b'owner_REBT4b_1642007029_client_9', attrs={}), entry4(cookie=134, name=b'owner_REBT4b_1642007029_client_10', attrs={}), entry4(cookie=140, name=b'owner_REBT4b_1642007029_client_11', attrs={}), entry4(cookie=146, name=b'owner_REBT4b_1642007029_client_12', attrs={}), entry4(cookie=152, name=b'owner_REBT4b_1642007029_client_13', attrs={}), entry4(cookie=158, name=b'owner_REBT4b_1642007029_client_14', attrs={}), entry4(cookie=164, name=b'owner_REBT4b_1642007029_client_15', attrs={}), entry4(cookie=170, name=b'owner_REBT4b >>> _1642007029_client_16', attrs={}), entry4(cookie=176, name=b'owner_REBT4b_1642007029_client_17', attrs={}), entry4(cookie=182, name=b'owner_REBT4b_1642007029_client_18', attrs={}), entry4(cookie=188, name=b'owner_REBT4b_1642007029_client_19', attrs={}), entry4(cookie=194, name=b'owner_REBT4b_1642007029_client_20', attrs={}), entry4(cookie=200, name=b'owner_REBT4b_1642007029_client_21', attrs={}), entry4(cookie=206, name=b'owner_REBT4b_1642007029_client_22', attrs={}), entry4(cookie=212, name=b'owner_REBT4b_1642007029_client_23', attrs={}), entry4(cookie=218, name=b'owner_REBT4b_1642007029_client_24', attrs={}), entry4(cookie=224, name=b'owner_REBT4b_1642007029_client_25', attrs={}), entry4(cookie=230, name=b'owner_REBT4b_1642007029_client_26', attrs={}), entry4(cookie=236, name=b'owner_REBT4b_1642007029_client_27', attrs={}), entry4(cookie=242, name=b'owner_REBT4b_1642007029_client_28', attrs={}), entry4(cookie=248, name=b'owner_REBT4b_1642007029_client_29', attrs={}), entry4(cookie >>> =254, name=b'owner_REBT4b_1642007029_client_30', attrs={}), entry4(cookie=260, name=b'owner_REBT4b_1642007029_client_31', attrs={}), entry4(cookie=266, name=b'owner_REBT4b_1642007029_client_32', attrs={}), entry4(cookie=272, name=b'owner_REBT4b_1642007029_client_33', attrs={}), entry4(cookie=278, name=b'owner_REBT4b_1642007029_client_34', attrs={}), entry4(cookie=284, name=b'owner_REBT4b_1642007029_client_35', attrs={}), entry4(cookie=290, name=b'owner_REBT4b_1642007029_client_36', attrs={}), entry4(cookie=296, name=b'owner_REBT4b_1642007029_client_37', attrs={}), entry4(cookie=302, name=b'owner_REBT4b_1642007029_client_38', attrs={}), entry4(cookie=308, name=b'owner_REBT4b_1642007029_client_39', attrs={}), entry4(cookie=314, name=b'owner_REBT4b_1642007029_client_40', attrs={}), entry4(cookie=320, name=b'owner_REBT4b_1642007029_client_41', attrs={}), entry4(cookie=326, name=b'owner_REBT4b_1642007029_client_42', attrs={}), entry4(cookie=332, name=b'owner_REBT4b_1642007029_client_43', >>> attrs={}), entry4(cookie=338, name=b'owner_REBT4b_1642007029_client_44', attrs={}), entry4(cookie=344, name=b'owner_REBT4b_1642007029_client_45', attrs={}), entry4(cookie=350, name=b'owner_REBT4b_1642007029_client_46', attrs={}), entry4(cookie=356, name=b'owner_REBT4b_1642007029_client_47', attrs={}), entry4(cookie=362, name=b'owner_REBT4b_1642007029_client_48', attrs={}), entry4(cookie=368, name=b'owner_REBT4b_1642007029_client_49', attrs={}), entry4(cookie=374, name=b'owner_REBT4b_1642007029_client_50', attrs={}), entry4(cookie=380, name=b'owner_REBT4b_1642007029_client_51', attrs={}), entry4(cookie=386, name=b'owner_REBT4b_1642007029_client_52', attrs={}), entry4(cookie=392, name=b'owner_REBT4b_1642007029_client_53', attrs={}), entry4(cookie=398, name=b'owner_REBT4b_1642007029_client_54', attrs={}), entry4(cookie=404, name=b'owner_REBT4b_1642007029_client_55', attrs={}), entry4(cookie=410, name=b'owner_REBT4b_1642007029_client_56', attrs={}), entry4(cookie=416, name=b'owner_REBT >>> 4b_1642007029_client_57', attrs={}), entry4(cookie=422, name=b'owner_REBT4b_1642007029_client_58', attrs={}), entry4(cookie=428, name=b'owner_REBT4b_1642007029_client_59', attrs={}), entry4(cookie=434, name=b'owner_REBT4b_1642007029_client_60', attrs={}), entry4(cookie=440, name=b'owner_REBT4b_1642007029_client_61', attrs={}), entry4(cookie=446, name=b'owner_REBT4b_1642007029_client_62', attrs={}), entry4(cookie=452, name=b'owner_REBT4b_1642007029_client_63', attrs={}), entry4(cookie=458, name=b'owner_REBT4b_1642007029_client_64', attrs={}), entry4(cookie=464, name=b'owner_REBT4b_1642007029_client_65', attrs={}), entry4(cookie=470, name=b'owner_REBT4b_1642007029_client_66', attrs={}), entry4(cookie=476, name=b'owner_REBT4b_1642007029_client_67', attrs={}), entry4(cookie=482, name=b'owner_REBT4b_1642007029_client_68', attrs={}), entry4(cookie=488, name=b'owner_REBT4b_1642007029_client_69', attrs={}), entry4(cookie=494, name=b'owner_REBT4b_1642007029_client_70', attrs={}), entry4(cook >>> ie=500, name=b'owner_REBT4b_1642007029_client_71', attrs={}), entry4(cookie=506, name=b'owner_REBT4b_1642007029_client_72', attrs={}), entry4(cookie=520, name=b'owner_REBT4b_1642007029_client_73', attrs={}), entry4(cookie=526, name=b'owner_REBT4b_1642007029_client_74', attrs={}), entry4(cookie=532, name=b'owner_REBT4b_1642007029_client_75', attrs={}), entry4(cookie=538, name=b'owner_REBT4b_1642007029_client_76', attrs={}), entry4(cookie=544, name=b'owner_REBT4b_1642007029_client_77', attrs={}), entry4(cookie=550, name=b'owner_REBT4b_1642007029_client_78', attrs={}), entry4(cookie=556, name=b'owner_REBT4b_1642007029_client_79', attrs={}), entry4(cookie=562, name=b'owner_REBT4b_1642007029_client_80', attrs={}), entry4(cookie=568, name=b'owner_REBT4b_1642007029_client_81', attrs={}), entry4(cookie=574, name=b'owner_REBT4b_1642007029_client_82', attrs={}), entry4(cookie=580, name=b'owner_REBT4b_1642007029_client_83', attrs={}), entry4(cookie=586, name=b'owner_REBT4b_1642007029_client_84 >>> ', attrs={}), entry4(cookie=592, name=b'owner_REBT4b_1642007029_client_85', attrs={}), entry4(cookie=598, name=b'owner_REBT4b_1642007029_client_86', attrs={}), entry4(cookie=604, name=b'owner_REBT4b_1642007029_client_87', attrs={}), entry4(cookie=610, name=b'owner_REBT4b_1642007029_client_88', attrs={}), entry4(cookie=616, name=b'owner_REBT4b_1642007029_client_89', attrs={}), entry4(cookie=622, name=b'owner_REBT4b_1642007029_client_90', attrs={}), entry4(cookie=628, name=b'owner_REBT4b_1642007029_client_91', attrs={}), entry4(cookie=634, name=b'owner_REBT4b_1642007029_client_92', attrs={}), entry4(cookie=640, name=b'owner_REBT4b_1642007029_client_93', attrs={}), entry4(cookie=646, name=b'owner_REBT4b_1642007029_client_94', attrs={}), entry4(cookie=652, name=b'owner_REBT4b_1642007029_client_95', attrs={}), entry4(cookie=658, name=b'owner_REBT4b_1642007029_client_96', attrs={}), entry4(cookie=664, name=b'owner_REBT4b_1642007029_client_97', attrs={}), entry4(cookie=670, name=b'owner_RE >>> BT4b_1642007029_client_98', attrs={}), entry4(cookie=676, name=b'owner_REBT4b_1642007029_client_99', attrs={}), entry4(cookie=682, name=b'owner_REBT2b_1642007029_client_0', attrs={}), entry4(cookie=688, name=b'owner_REBT2b_1642007029_client_1', attrs={}), entry4(cookie=694, name=b'owner_REBT2b_1642007029_client_2', attrs={}), entry4(cookie=700, name=b'owner_REBT2b_1642007029_client_3', attrs={}), entry4(cookie=706, name=b'owner_REBT2b_1642007029_client_4', attrs={}), entry4(cookie=712, name=b'owner_REBT2b_1642007029_client_5', attrs={}), entry4(cookie=718, name=b'owner_REBT2b_1642007029_client_6', attrs={}), entry4(cookie=724, name=b'owner_REBT2b_1642007029_client_7', attrs={}), entry4(cookie=730, name=b'owner_REBT2b_1642007029_client_8', attrs={}), entry4(cookie=736, name=b'owner_REBT2b_1642007029_client_9', attrs={}), entry4(cookie=742, name=b'owner_REBT2b_1642007029_client_10', attrs={}), entry4(cookie=748, name=b'owner_REBT2b_1642007029_client_11', attrs={}), entry4(cookie=754, >>> name=b'owner_REBT2b_1642007029_client_12', attrs={}), entry4(cookie=760, name=b'owner_REBT2b_1642007029_client_13', attrs={}), entry4(cookie=766, name=b'owner_REBT2b_1642007029_client_14', attrs={}), entry4(cookie=772, name=b'owner_REBT2b_1642007029_client_15', attrs={}), entry4(cookie=778, name=b'owner_REBT2b_1642007029_client_16', attrs={}), entry4(cookie=784, name=b'owner_REBT2b_1642007029_client_17', attrs={}), entry4(cookie=790, name=b'owner_REBT2b_1642007029_client_18', attrs={}), entry4(cookie=796, name=b'owner_REBT2b_1642007029_client_19', attrs={}), entry4(cookie=802, name=b'owner_REBT2b_1642007029_client_20', attrs={}), entry4(cookie=808, name=b'owner_REBT2b_1642007029_client_21', attrs={}), entry4(cookie=814, name=b'owner_REBT2b_1642007029_client_22', attrs={}), entry4(cookie=820, name=b'owner_REBT2b_1642007029_client_23', attrs={}), entry4(cookie=826, name=b'owner_REBT2b_1642007029_client_24', attrs={}), entry4(cookie=832, name=b'owner_REBT2b_1642007029_client_25', attrs >>> ={}), entry4(cookie=838, name=b'owner_REBT2b_1642007029_client_26', attrs={}), entry4(cookie=844, name=b'owner_REBT2b_1642007029_client_27', attrs={}), entry4(cookie=850, name=b'owner_REBT2b_1642007029_client_28', attrs={}), entry4(cookie=856, name=b'owner_REBT2b_1642007029_client_29', attrs={}), entry4(cookie=862, name=b'owner_REBT2b_1642007029_client_30', attrs={}), entry4(cookie=868, name=b'owner_REBT2b_1642007029_client_31', attrs={}), entry4(cookie=874, name=b'owner_REBT2b_1642007029_client_32', attrs={}), entry4(cookie=880, name=b'owner_REBT2b_1642007029_client_33', attrs={}), entry4(cookie=886, name=b'owner_REBT2b_1642007029_client_34', attrs={}), entry4(cookie=892, name=b'owner_REBT2b_1642007029_client_35', attrs={}), entry4(cookie=898, name=b'owner_REBT2b_1642007029_client_36', attrs={}), entry4(cookie=904, name=b'owner_REBT2b_1642007029_client_37', attrs={}), entry4(cookie=910, name=b'owner_REBT2b_1642007029_client_38', attrs={}), entry4(cookie=916, name=b'owner_REBT2b_164 >>> 2007029_client_39', attrs={}), entry4(cookie=922, name=b'owner_REBT2b_1642007029_client_40', attrs={}), entry4(cookie=928, name=b'owner_REBT2b_1642007029_client_41', attrs={}), entry4(cookie=934, name=b'owner_REBT2b_1642007029_client_42', attrs={}), entry4(cookie=940, name=b'owner_REBT2b_1642007029_client_43', attrs={}), entry4(cookie=946, name=b'owner_REBT2b_1642007029_client_44', attrs={}), entry4(cookie=952, name=b'owner_REBT2b_1642007029_client_45', attrs={}), entry4(cookie=958, name=b'owner_REBT2b_1642007029_client_46', attrs={}), entry4(cookie=964, name=b'owner_REBT2b_1642007029_client_47', attrs={}), entry4(cookie=970, name=b'owner_REBT2b_1642007029_client_48', attrs={}), entry4(cookie=976, name=b'owner_REBT2b_1642007029_client_49', attrs={}), entry4(cookie=982, name=b'owner_REBT2b_1642007029_client_50', attrs={}), entry4(cookie=988, name=b'owner_REBT2b_1642007029_client_51', attrs={}), entry4(cookie=994, name=b'owner_REBT2b_1642007029_client_52', attrs={}), entry4(cookie=100 >>> 0, name=b'owner_REBT2b_1642007029_client_53', attrs={}), entry4(cookie=1006, name=b'owner_REBT2b_1642007029_client_54', attrs={}), entry4(cookie=1012, name=b'owner_REBT2b_1642007029_client_55', attrs={}), entry4(cookie=1018, name=b'owner_REBT2b_1642007029_client_56', attrs={}), entry4(cookie=1032, name=b'owner_REBT2b_1642007029_client_57', attrs={}), entry4(cookie=1038, name=b'owner_REBT2b_1642007029_client_58', attrs={}), entry4(cookie=1044, name=b'owner_REBT2b_1642007029_client_59', attrs={}), entry4(cookie=1050, name=b'owner_REBT2b_1642007029_client_60', attrs={}), entry4(cookie=1056, name=b'owner_REBT2b_1642007029_client_61', attrs={}), entry4(cookie=1062, name=b'owner_REBT2b_1642007029_client_62', attrs={}), entry4(cookie=1068, name=b'owner_REBT2b_1642007029_client_63', attrs={}), entry4(cookie=1074, name=b'owner_REBT2b_1642007029_client_64', attrs={}), entry4(cookie=1080, name=b'owner_REBT2b_1642007029_client_65', attrs={}), entry4(cookie=1086, name=b'owner_REBT2b_1642007029_c >>> lient_66', attrs={}), entry4(cookie=1092, name=b'owner_REBT2b_1642007029_client_67', attrs={}), entry4(cookie=1098, name=b'owner_REBT2b_1642007029_client_68', attrs={}), entry4(cookie=1104, name=b'owner_REBT2b_1642007029_client_69', attrs={}), entry4(cookie=1110, name=b'owner_REBT2b_1642007029_client_70', attrs={}), entry4(cookie=1116, name=b'owner_REBT2b_1642007029_client_71', attrs={}), entry4(cookie=1122, name=b'owner_REBT2b_1642007029_client_72', attrs={}), entry4(cookie=1128, name=b'owner_REBT2b_1642007029_client_73', attrs={}), entry4(cookie=1134, name=b'owner_REBT2b_1642007029_client_74', attrs={}), entry4(cookie=1140, name=b'owner_REBT2b_1642007029_client_75', attrs={}), entry4(cookie=1146, name=b'owner_REBT2b_1642007029_client_76', attrs={}), entry4(cookie=1152, name=b'owner_REBT2b_1642007029_client_77', attrs={}), entry4(cookie=1158, name=b'owner_REBT2b_1642007029_client_78', attrs={}), entry4(cookie=1164, name=b'owner_REBT2b_1642007029_client_79', attrs={}), entry4(cookie >>> =1170, name=b'owner_REBT2b_1642007029_client_80', attrs={}), entry4(cookie=1176, name=b'owner_REBT2b_1642007029_client_81', attrs={}), entry4(cookie=1182, name=b'owner_REBT2b_1642007029_client_82', attrs={}), entry4(cookie=1188, name=b'owner_REBT2b_1642007029_client_83', attrs={}), entry4(cookie=1194, name=b'owner_REBT2b_1642007029_client_84', attrs={}), entry4(cookie=1200, name=b'owner_REBT2b_1642007029_client_85', attrs={}), entry4(cookie=1206, name=b'owner_REBT2b_1642007029_client_86', attrs={}), entry4(cookie=1212, name=b'owner_REBT2b_1642007029_client_87', attrs={}), entry4(cookie=1218, name=b'owner_REBT2b_1642007029_client_88', attrs={}), entry4(cookie=1224, name=b'owner_REBT2b_1642007029_client_89', attrs={}), entry4(cookie=1230, name=b'owner_REBT2b_1642007029_client_90', attrs={}), entry4(cookie=1236, name=b'owner_REBT2b_1642007029_client_91', attrs={}), entry4(cookie=1242, name=b'owner_REBT2b_1642007029_client_92', attrs={}), entry4(cookie=1248, name=b'owner_REBT2b_16420070 >>> 29_client_93', attrs={}), entry4(cookie=1254, name=b'owner_REBT2b_1642007029_client_94', attrs={}), entry4(cookie=1260, name=b'owner_REBT2b_1642007029_client_95', attrs={}), entry4(cookie=1266, name=b'owner_REBT2b_1642007029_client_96', attrs={}), entry4(cookie=1272, name=b'owner_REBT2b_1642007029_client_97', attrs={}), entry4(cookie=1278, name=b'owner_REBT2b_1642007029_client_98', attrs={}), entry4(cookie=1284, name=b'owner_REBT2b_1642007029_client_99', attrs={}), entry4(cookie=1290, name=b'owner_REBT4a_1642007029_client_0', attrs={}), entry4(cookie=1296, name=b'owner_REBT4a_1642007029_client_1', attrs={}), entry4(cookie=1302, name=b'owner_REBT4a_1642007029_client_2', attrs={}), entry4(cookie=1308, name=b'owner_REBT4a_1642007029_client_3', attrs={}), entry4(cookie=1314, name=b'owner_REBT4a_1642007029_client_4', attrs={}), entry4(cookie=1320, name=b'owner_REBT4a_1642007029_client_5', attrs={}), entry4(cookie=1326, name=b'owner_REBT4a_1642007029_client_6', attrs={}), entry4(cookie=13 >>> 32, name=b'owner_REBT4a_1642007029_client_7', attrs={}), entry4(cookie=1338, name=b'owner_REBT4a_1642007029_client_8', attrs={}), entry4(cookie=1344, name=b'owner_REBT4a_1642007029_client_9', attrs={}), entry4(cookie=1350, name=b'owner_REBT2a_1642007029_client_0', attrs={}), entry4(cookie=1356, name=b'owner_REBT2a_1642007029_client_1', attrs={}), entry4(cookie=1362, name=b'owner_REBT2a_1642007029_client_2', attrs={}), entry4(cookie=1368, name=b'owner_REBT2a_1642007029_client_3', attrs={}), entry4(cookie=1374, name=b'owner_REBT2a_1642007029_client_4', attrs={}), entry4(cookie=1380, name=b'owner_REBT2a_1642007029_client_5', attrs={}), entry4(cookie=1386, name=b'owner_REBT2a_1642007029_client_6', attrs={}), entry4(cookie=1392, name=b'owner_REBT2a_1642007029_client_7', attrs={}), entry4(cookie=1398, name=b'owner_REBT2a_1642007029_client_8', attrs={}), entry4(cookie=1404, name=b'owner_REBT2a_1642007029_client_9', attrs={}), entry4(cookie=1410, name=b'owner_REBT5_1642007029_client_file_0' >>> , attrs={}), entry4(cookie=1416, name=b'owner_REBT5_1642007029_client_file_1', attrs={}), entry4(cookie=1422, name=b'owner_REBT5_1642007029_client_file_2', attrs={}), entry4(cookie=1428, name=b'owner_REBT5_1642007029_client_file_3', attrs={}), entry4(cookie=1434, name=b'owner_REBT5_1642007029_client_file_4', attrs={}), entry4(cookie=1440, name=b'owner_REBT5_1642007029_client_file_5', attrs={}), entry4(cookie=1446, name=b'owner_REBT5_1642007029_client_file_6', attrs={}), entry4(cookie=1452, name=b'owner_REBT5_1642007029_client_file_7', attrs={}), entry4(cookie=1458, name=b'owner_REBT5_1642007029_client_file_8', attrs={}), entry4(cookie=1464, name=b'owner_REBT5_1642007029_client_file_9', attrs={}), entry4(cookie=1471, name=b'owner_REBT5_1642007029_client_file_10', attrs={}), entry4(cookie=1478, name=b'owner_REBT5_1642007029_client_file_11', attrs={}), entry4(cookie=1485, name=b'owner_REBT5_1642007029_client_file_12', attrs={}), entry4(cookie=1492, name=b'owner_REBT5_1642007029_client_ >>> file_13', attrs={}), entry4(cookie=1499, name=b'owner_REBT5_1642007029_client_file_14', attrs={}), entry4(cookie=1506, name=b'owner_REBT5_1642007029_client_file_15', attrs={}), entry4(cookie=1513, name=b'owner_REBT5_1642007029_client_file_16', attrs={}), entry4(cookie=1520, name=b'owner_REBT5_1642007029_client_file_17', attrs={}), entry4(cookie=1527, name=b'owner_REBT5_1642007029_client_file_18', attrs={}), entry4(cookie=1544, name=b'owner_REBT5_1642007029_client_file_19', attrs={}), entry4(cookie=1551, name=b'owner_REBT5_1642007029_client_file_20', attrs={}), entry4(cookie=1558, name=b'owner_REBT5_1642007029_client_file_21', attrs={}), entry4(cookie=1565, name=b'owner_REBT5_1642007029_client_file_22', attrs={}), entry4(cookie=1572, name=b'owner_REBT5_1642007029_client_file_23', attrs={}), entry4(cookie=1579, name=b'owner_REBT5_1642007029_client_file_24', attrs={}), entry4(cookie=1586, name=b'owner_REBT5_1642007029_client_file_25', attrs={}), entry4(cookie=1593, name=b'owner_REBT5_1 >>> 642007029_client_file_26', attrs={}), entry4(cookie=1600, name=b'owner_REBT5_1642007029_client_file_27', attrs={}), entry4(cookie=1607, name=b'owner_REBT5_1642007029_client_file_28', attrs={}), entry4(cookie=1614, name=b'owner_REBT5_1642007029_client_file_29', attrs={}), entry4(cookie=1621, name=b'owner_REBT5_1642007029_client_file_30', attrs={}), entry4(cookie=1628, name=b'owner_REBT5_1642007029_client_file_31', attrs={}), entry4(cookie=1635, name=b'owner_REBT5_1642007029_client_file_32', attrs={}), entry4(cookie=1642, name=b'owner_REBT5_1642007029_client_file_33', attrs={}), entry4(cookie=1649, name=b'owner_REBT5_1642007029_client_file_34', attrs={}), entry4(cookie=1656, name=b'owner_REBT5_1642007029_client_file_35', attrs={}), entry4(cookie=1663, name=b'owner_REBT5_1642007029_client_file_36', attrs={}), entry4(cookie=1670, name=b'owner_REBT5_1642007029_client_file_37', attrs={}), entry4(cookie=1677, name=b'owner_REBT5_1642007029_client_file_38', attrs={}), entry4(cookie=1684, nam >>> e=b'owner_REBT5_1642007029_client_file_39', attrs={}), entry4(cookie=1691, name=b'owner_REBT5_1642007029_client_file_40', attrs={}), entry4(cookie=1698, name=b'owner_REBT5_1642007029_client_file_41', attrs={}), entry4(cookie=1703, name=b'owner_REBT1_1642007029', attrs={}), entry4(cookie=1709, name=b'owner_REBT3b_1642007029_client_0', attrs={}), entry4(cookie=1715, name=b'owner_REBT3b_1642007029_client_1', attrs={}), entry4(cookie=1721, name=b'owner_REBT3b_1642007029_client_2', attrs={}), entry4(cookie=1727, name=b'owner_REBT3b_1642007029_client_3', attrs={}), entry4(cookie=1733, name=b'owner_REBT3b_1642007029_client_4', attrs={}), entry4(cookie=1739, name=b'owner_REBT3b_1642007029_client_5', attrs={}), entry4(cookie=1745, name=b'owner_REBT3b_1642007029_client_6', attrs={}), entry4(cookie=1751, name=b'owner_REBT3b_1642007029_client_7', attrs={}), entry4(cookie=1757, name=b'owner_REBT3b_1642007029_client_8', attrs={}), entry4(cookie=1763, name=b'owner_REBT3b_1642007029_client_9', attr >>> s={}), entry4(cookie=1769, name=b'owner_REBT3b_1642007029_client_10', attrs={}), entry4(cookie=1775, name=b'owner_REBT3b_1642007029_client_11', attrs={}), entry4(cookie=1781, name=b'owner_REBT3b_1642007029_client_12', attrs={}), entry4(cookie=1787, name=b'owner_REBT3b_1642007029_client_13', attrs={}), entry4(cookie=1793, name=b'owner_REBT3b_1642007029_client_14', attrs={}), entry4(cookie=1799, name=b'owner_REBT3b_1642007029_client_15', attrs={}), entry4(cookie=1805, name=b'owner_REBT3b_1642007029_client_16', attrs={}), entry4(cookie=1811, name=b'owner_REBT3b_1642007029_client_17', attrs={}), entry4(cookie=1817, name=b'owner_REBT3b_1642007029_client_18', attrs={}), entry4(cookie=1823, name=b'owner_REBT3b_1642007029_client_19', attrs={}), entry4(cookie=1829, name=b'owner_REBT3b_1642007029_client_20', attrs={}), entry4(cookie=1835, name=b'owner_REBT3b_1642007029_client_21', attrs={}), entry4(cookie=1841, name=b'owner_REBT3b_1642007029_client_22', attrs={}), entry4(cookie=1847, name=b'o >>> wner_REBT3b_1642007029_client_23', attrs={}), entry4(cookie=1853, name=b'owner_REBT3b_1642007029_client_24', attrs={}), entry4(cookie=1859, name=b'owner_REBT3b_1642007029_client_25', attrs={}), entry4(cookie=1865, name=b'owner_REBT3b_1642007029_client_26', attrs={}), entry4(cookie=1871, name=b'owner_REBT3b_1642007029_client_27', attrs={}), entry4(cookie=1877, name=b'owner_REBT3b_1642007029_client_28', attrs={}), entry4(cookie=1883, name=b'owner_REBT3b_1642007029_client_29', attrs={}), entry4(cookie=1889, name=b'owner_REBT3b_1642007029_client_30', attrs={}), entry4(cookie=1895, name=b'owner_REBT3b_1642007029_client_31', attrs={}), entry4(cookie=1901, name=b'owner_REBT3b_1642007029_client_32', attrs={}), entry4(cookie=1907, name=b'owner_REBT3b_1642007029_client_33', attrs={}), entry4(cookie=1913, name=b'owner_REBT3b_1642007029_client_34', attrs={}), entry4(cookie=1919, name=b'owner_REBT3b_1642007029_client_35', attrs={}), entry4(cookie=1925, name=b'owner_REBT3b_1642007029_client_36', >>> attrs={}), entry4(cookie=1931, name=b'owner_REBT3b_1642007029_client_37', attrs={}), entry4(cookie=1937, name=b'owner_REBT3b_1642007029_client_38', attrs={}), entry4(cookie=1943, name=b'owner_REBT3b_1642007029_client_39', attrs={}), entry4(cookie=1949, name=b'owner_REBT3b_1642007029_client_40', attrs={}), entry4(cookie=1955, name=b'owner_REBT3b_1642007029_client_41', attrs={}), entry4(cookie=1961, name=b'owner_REBT3b_1642007029_client_42', attrs={}), entry4(cookie=1967, name=b'owner_REBT3b_1642007029_client_43', attrs={}), entry4(cookie=1973, name=b'owner_REBT3b_1642007029_client_44', attrs={}), entry4(cookie=1979, name=b'owner_REBT3b_1642007029_client_45', attrs={}), entry4(cookie=1985, name=b'owner_REBT3b_1642007029_client_46', attrs={}), entry4(cookie=1991, name=b'owner_REBT3b_1642007029_client_47', attrs={}), entry4(cookie=1997, name=b'owner_REBT3b_1642007029_client_48', attrs={}), entry4(cookie=2003, name=b'owner_REBT3b_1642007029_client_49', attrs={}), entry4(cookie=2009, name >>> =b'owner_REBT3b_1642007029_client_50', attrs={}), entry4(cookie=2015, name=b'owner_REBT3b_1642007029_client_51', attrs={}), entry4(cookie=2021, name=b'owner_REBT3b_1642007029_client_52', attrs={}), entry4(cookie=2027, name=b'owner_REBT3b_1642007029_client_53', attrs={}), entry4(cookie=2033, name=b'owner_REBT3b_1642007029_client_54', attrs={}), entry4(cookie=2039, name=b'owner_REBT3b_1642007029_client_55', attrs={}), entry4(cookie=2056, name=b'owner_REBT3b_1642007029_client_56', attrs={}), entry4(cookie=2062, name=b'owner_REBT3b_1642007029_client_57', attrs={}), entry4(cookie=2068, name=b'owner_REBT3b_1642007029_client_58', attrs={}), entry4(cookie=2074, name=b'owner_REBT3b_1642007029_client_59', attrs={}), entry4(cookie=2080, name=b'owner_REBT3b_1642007029_client_60', attrs={}), entry4(cookie=2086, name=b'owner_REBT3b_1642007029_client_61', attrs={}), entry4(cookie=2092, name=b'owner_REBT3b_1642007029_client_62', attrs={}), entry4(cookie=2098, name=b'owner_REBT3b_1642007029_client_6 >>> 3', attrs={}), entry4(cookie=2104, name=b'owner_REBT3b_1642007029_client_64', attrs={}), entry4(cookie=2110, name=b'owner_REBT3b_1642007029_client_65', attrs={}), entry4(cookie=2116, name=b'owner_REBT3b_1642007029_client_66', attrs={}), entry4(cookie=2122, name=b'owner_REBT3b_1642007029_client_67', attrs={}), entry4(cookie=2128, name=b'owner_REBT3b_1642007029_client_68', attrs={}), entry4(cookie=2134, name=b'owner_REBT3b_1642007029_client_69', attrs={}), entry4(cookie=2140, name=b'owner_REBT3b_1642007029_client_70', attrs={}), entry4(cookie=2146, name=b'owner_REBT3b_1642007029_client_71', attrs={}), entry4(cookie=2152, name=b'owner_REBT3b_1642007029_client_72', attrs={}), entry4(cookie=2158, name=b'owner_REBT3b_1642007029_client_73', attrs={}), entry4(cookie=2164, name=b'owner_REBT3b_1642007029_client_74', attrs={}), entry4(cookie=2170, name=b'owner_REBT3b_1642007029_client_75', attrs={}), entry4(cookie=2176, name=b'owner_REBT3b_1642007029_client_76', attrs={}), entry4(cookie=2182, >>> name=b'owner_REBT3b_1642007029_client_77', attrs={}), entry4(cookie=2188, name=b'owner_REBT3b_1642007029_client_78', attrs={}), entry4(cookie=2194, name=b'owner_REBT3b_1642007029_client_79', attrs={}), entry4(cookie=2200, name=b'owner_REBT3b_1642007029_client_80', attrs={}), entry4(cookie=2206, name=b'owner_REBT3b_1642007029_client_81', attrs={}), entry4(cookie=2212, name=b'owner_REBT3b_1642007029_client_82', attrs={}), entry4(cookie=2218, name=b'owner_REBT3b_1642007029_client_83', attrs={}), entry4(cookie=2224, name=b'owner_REBT3b_1642007029_client_84', attrs={}), entry4(cookie=2230, name=b'owner_REBT3b_1642007029_client_85', attrs={}), entry4(cookie=2236, name=b'owner_REBT3b_1642007029_client_86', attrs={}), entry4(cookie=2242, name=b'owner_REBT3b_1642007029_client_87', attrs={}), entry4(cookie=2248, name=b'owner_REBT3b_1642007029_client_88', attrs={}), entry4(cookie=2254, name=b'owner_REBT3b_1642007029_client_89', attrs={}), entry4(cookie=2260, name=b'owner_REBT3b_1642007029_clie >>> nt_90', attrs={}), entry4(cookie=2266, name=b'owner_REBT3b_1642007029_client_91', attrs={}), entry4(cookie=2272, name=b'owner_REBT3b_1642007029_client_92', attrs={}), entry4(cookie=2278, name=b'owner_REBT3b_1642007029_client_93', attrs={}), entry4(cookie=2284, name=b'owner_REBT3b_1642007029_client_94', attrs={}), entry4(cookie=2290, name=b'owner_REBT3b_1642007029_client_95', attrs={}), entry4(cookie=2296, name=b'owner_REBT3b_1642007029_client_96', attrs={}), entry4(cookie=2302, name=b'owner_REBT3b_1642007029_client_97', attrs={}), entry4(cookie=2308, name=b'owner_REBT3b_1642007029_client_98', attrs={}), entry4(cookie=2314, name=b'owner_REBT3b_1642007029_client_99', attrs={}), entry4(cookie=2320, name=b'owner_REBT3a_1642007029_client_0', attrs={}), entry4(cookie=2326, name=b'owner_REBT3a_1642007029_client_1', attrs={}), entry4(cookie=2332, name=b'owner_REBT3a_1642007029_client_2', attrs={}), entry4(cookie=2338, name=b'owner_REBT3a_1642007029_client_3', attrs={}), entry4(cookie=2344, >>> name=b'owner_REBT3a_1642007029_client_4', attrs={}), entry4(cookie=2350, name=b'owner_REBT3a_1642007029_client_5', attrs={}), entry4(cookie=2356, name=b'owner_REBT3a_1642007029_client_6', attrs={}), entry4(cookie=2362, name=b'owner_REBT3a_1642007029_client_7', attrs={}), entry4(cookie=2368, name=b'owner_REBT3a_1642007029_client_8', attrs={}), entry4(cookie=2374, name=b'owner_REBT3a_1642007029_client_9', attrs={}), entry4(cookie=2378, name=b'RNM6_1642007029', attrs={}), entry4(cookie=2382, name=b'RNM7_1642007029', attrs={}), entry4(cookie=2386, name=b'RNM1s_1642007029', attrs={}), entry4(cookie=2390, name=b'RNM1a_1642007029', attrs={}), entry4(cookie=2394, name=b'RNM1r_1642007029', attrs={}), entry4(cookie=2398, name=b'RNM1f_1642007029', attrs={}), entry4(cookie=2402, name=b'RNM1d_1642007029', attrs={}), entry4(cookie=2406, name=b'RNM19_1642007029', attrs={}), entry4(cookie=2410, name=b'RNM18_1642007029', attrs={}), entry4(cookie=2414, name=b'RNM5_1642007029', attrs={}), entry4(cooki >>> e=2418, name=b'RNM20_1642007029', attrs={}), entry4(cookie=2422, name=b'RNM17_1642007029', attrs={}), entry4(cookie=2426, name=b'RNM15_1642007029', attrs={}), entry4(cookie=2430, name=b'RNM14_1642007029', attrs={}), entry4(cookie=2434, name=b'RNM10_1642007029', attrs={}), entry4(cookie=2438, name=b'RNM11_1642007029', attrs={}), entry4(cookie=2442, name=b'RNM12_1642007029', attrs={}), entry4(cookie=2446, name=b'RNM16_1642007029', attrs={}), entry4(cookie=2450, name=b'RNM13_1642007029', attrs={}), entry4(cookie=2454, name=b'RNM3s_1642007029', attrs={}), entry4(cookie=2458, name=b'RNM3a_1642007029', attrs={}), entry4(cookie=2462, name=b'RNM3r_1642007029', attrs={}), entry4(cookie=2466, name=b'RNM3f_1642007029', attrs={}), entry4(cookie=2471, name=b'owner_DELEG9_1642007029', attrs={}), entry4(cookie=2475, name=b'DELEG23_1642007029', attrs={}), entry4(cookie=2479, name=b'DELEG1_1642007029', attrs={}), entry4(cookie=2483, name=b'DELEG4_1642007029', attrs={}), entry4(cookie=2487, name=b'DE >>> LEG8_1642007029', attrs={}), entry4(cookie=2491, name=b'DELEG6_1642007029', attrs={}), entry4(cookie=2495, name=b'OPEN1_1642007029', attrs={}), entry4(cookie=2499, name=b'OPEN2_1642007029', attrs={}), entry4(cookie=2503, name=b'OPEN30_1642007029', attrs={}), entry4(cookie=2507, name=b'OPEN7_1642007029', attrs={}), entry4(cookie=2511, name=b'OPEN6_1642007029', attrs={}), entry4(cookie=2515, name=b'OPEN8_1642007029', attrs={}), entry4(cookie=2523, name=b'OPEN31_1642007029', attrs={}), entry4(cookie=2531, name=b'SEQ10b_1642007029_2', attrs={}), entry4(cookie=2535, name=b'SEQ9b_1642007029_2', attrs={}), entry4(cookie=2539, name=b'SEC2_1642007029', attrs={}), entry4(cookie=2543, name=b'SEC1_1642007029', attrs={}), entry4(cookie=2560, name=b'owner_RECC2_1642007029', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'link', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'dir', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'file2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM10_1642007029', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM11_1642007029', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'dir2', attrs={})] >>> INFO :test.env:Called do_readdir() >>> INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] >>> EID6h st_exchange_id.testUpdate111 : PASS >>> EID6g st_exchange_id.testUpdate110 : RUNNING >>> EID6g st_exchange_id.testUpdate110 : PASS >>> EID6f st_exchange_id.testUpdate101 : RUNNING >>> EID6f st_exchange_id.testUpdate101 : PASS >>> EID6e st_exchange_id.testUpdate100 : RUNNING >>> EID6e st_exchange_id.testUpdate100 : PASS >>> EID6d st_exchange_id.testUpdate011 : RUNNING >>> EID6d st_exchange_id.testUpdate011 : PASS >>> EID6c st_exchange_id.testUpdate010 : RUNNING >>> EID6c st_exchange_id.testUpdate010 : PASS >>> EID6b st_exchange_id.testUpdate001 : RUNNING >>> EID6b st_exchange_id.testUpdate001 : PASS >>> EID6a st_exchange_id.testUpdate000 : RUNNING >>> EID6a st_exchange_id.testUpdate000 : PASS >>> EID1b st_exchange_id.testSupported2 : RUNNING >>> EID1b st_exchange_id.testSupported2 : PASS >>> EID7 st_exchange_id.testSupported1a : RUNNING >>> EID7 st_exchange_id.testSupported1a : PASS >>> EID1 st_exchange_id.testSupported : RUNNING >>> EID1 st_exchange_id.testSupported : PASS >>> EID8 st_exchange_id.testNotOnlyOp : RUNNING >>> EID8 st_exchange_id.testNotOnlyOp : PASS >>> EID5h st_exchange_id.testNoUpdate111 : RUNNING >>> EID5h st_exchange_id.testNoUpdate111 : PASS >>> EID5g st_exchange_id.testNoUpdate110 : RUNNING >>> EID5g st_exchange_id.testNoUpdate110 : PASS >>> EID5fb st_exchange_id.testNoUpdate101b : RUNNING >>> EID5fb st_exchange_id.testNoUpdate101b : PASS >>> EID5f st_exchange_id.testNoUpdate101 : RUNNING >>> EID5f st_exchange_id.testNoUpdate101 : PASS >>> EID5e st_exchange_id.testNoUpdate100 : RUNNING >>> EID5e st_exchange_id.testNoUpdate100 : PASS >>> EID5d st_exchange_id.testNoUpdate011 : RUNNING >>> EID5d st_exchange_id.testNoUpdate011 : PASS >>> EID5c st_exchange_id.testNoUpdate010 : RUNNING >>> EID5c st_exchange_id.testNoUpdate010 : PASS >>> EID5b st_exchange_id.testNoUpdate001 : RUNNING >>> EID5b st_exchange_id.testNoUpdate001 : PASS >>> EID5a st_exchange_id.testNoUpdate000 : RUNNING >>> EID5a st_exchange_id.testNoUpdate000 : PASS >>> EID2 st_exchange_id.testNoImplId : RUNNING >>> EID2 st_exchange_id.testNoImplId : PASS >>> EID3 st_exchange_id.testLongArray : RUNNING >>> COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_exchange_id.py:testNoImplId', resarray=[nfs_resop4(resop=OP_EXCHANGE_ID, opexchange_id=EXCHANGE_ID4res(eir_status=NFS4ERR_BADXDR))]) >>> EID3 st_exchange_id.testLongArray : PASS >>> EID9 st_exchange_id.testLeasePeriod : RUNNING >>> EID9 st_exchange_id.testLeasePeriod : PASS >>> EID4 st_exchange_id.testBadFlags : RUNNING >>> EID4 st_exchange_id.testBadFlags : PASS >>> ************************************************** >>> ************************************************** >>> Command line asked for 172 of 260 tests >>> Of those: 0 Skipped, 0 Failed, 0 Warned, 172 Passed >>> FSTYP -- nfs >>> PLATFORM -- Linux/x86_64 test3 5.16.0-00002-g616758bf6583 #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 >>> MKFS_OPTIONS -- test1.fieldses.org:/exports/xfs2 >>> MOUNT_OPTIONS -- -overs=4.2,sec=sys -o context=system_u:object_r:root_t:s0 test1.fieldses.org:/exports/xfs2 /mnt2 >>> >>> generic/001 41s ... 41s >>> generic/002 1s ... 1s >>> generic/003 [not run] atime related mount options have no effect on nfs >>> generic/004 [not run] O_TMPFILE is not supported >>> generic/005 2s ... 2s >>> generic/006 [expunged] >>> generic/007 [expunged] >>> generic/008 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/009 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/010 [not run] /root/xfstests-dev/src/dbtest not built >>> generic/011 68s ... 65s >>> generic/012 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/013 68s ... 66s >>> generic/014 [expunged] >>> generic/015 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/016 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/017 [expunged] >>> generic/018 [not run] defragmentation not supported for fstype "nfs" >>> generic/020 13s ... 13s >>> generic/021 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/022 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/023 4s ... 3s >>> generic/024 [not run] kernel doesn't support renameat2 syscall >>> generic/025 [not run] kernel doesn't support renameat2 syscall >>> generic/026 [not run] ACLs not supported by this filesystem type: nfs >>> generic/027 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/028 5s ... 5s >>> generic/029 1s ... 2s >>> generic/030 3s ... 3s >>> generic/031 [expunged] >>> generic/032 [expunged] >>> generic/033 [expunged] >>> generic/034 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/035 [expunged] >>> generic/036 11s ... 11s >>> generic/037 21s ... 21s >>> generic/038 [not run] FITRIM not supported on /mnt2 >>> generic/039 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/040 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/041 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/043 [not run] nfs does not support shutdown >>> generic/044 [not run] nfs does not support shutdown >>> generic/045 [not run] nfs does not support shutdown >>> generic/046 [not run] nfs does not support shutdown >>> generic/047 [not run] nfs does not support shutdown >>> generic/048 [not run] nfs does not support shutdown >>> generic/049 [not run] nfs does not support shutdown >>> generic/050 [not run] nfs does not support shutdown >>> generic/051 [not run] nfs does not support shutdown >>> generic/052 [not run] nfs does not support shutdown >>> generic/053 [expunged] >>> generic/054 [not run] nfs does not support shutdown >>> generic/055 [not run] nfs does not support shutdown >>> generic/056 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/057 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/058 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/059 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/060 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/061 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/062 [expunged] >>> generic/063 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/064 [expunged] >>> generic/065 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/066 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/067 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/068 [expunged] >>> generic/069 29s ... 30s >>> generic/070 60s ... 47s >>> generic/071 [expunged] >>> generic/072 24s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) >>> generic/073 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/074 [expunged] >>> generic/075 61s ... 56s >>> generic/076 [not run] require test1.fieldses.org:/exports/xfs2 to be local device >>> generic/077 [not run] ACLs not supported by this filesystem type: nfs >>> generic/078 [not run] kernel doesn't support renameat2 syscall >>> generic/079 [not run] file system doesn't support chattr +ia >>> generic/080 3s ... 3s >>> generic/081 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/082 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/083 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/084 5s ... 6s >>> generic/085 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/086 2s ... 2s >>> generic/087 [expunged] >>> generic/088 [expunged] >>> generic/089 [expunged] >>> generic/090 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/091 [expunged] >>> generic/092 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/093 [not run] attr namespace security not supported by this filesystem type: nfs >>> generic/094 [expunged] >>> generic/095 [not run] fio utility required, skipped this test >>> generic/096 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/097 [not run] attr namespace trusted not supported by this filesystem type: nfs >>> generic/098 2s ... 2s >>> generic/099 [not run] ACLs not supported by this filesystem type: nfs >>> generic/100 [expunged] >>> generic/101 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/102 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/103 3s ... 3s >>> generic/104 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/105 [expunged] >>> generic/106 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/107 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/108 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/109 57s ... 56s >>> generic/110 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/111 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/112 61s ... 59s >>> generic/113 [expunged] >>> generic/114 [not run] device block size: 4096 greater than 512 >>> generic/115 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/116 1s ... 2s >>> generic/117 [expunged] >>> generic/118 2s ... 1s >>> generic/119 3s ... 3s >>> generic/120 [not run] atime related mount options have no effect on nfs >>> generic/121 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/122 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/123 [not run] fsgqa user not defined. >>> generic/124 60s ... 54s >>> generic/126 [expunged] >>> generic/127 [expunged] >>> generic/128 [not run] fsgqa user not defined. >>> generic/129 [expunged] >>> generic/130 19s ... 18s >>> generic/131 2s ... 2s >>> generic/132 20s ... 19s >>> generic/133 [expunged] >>> generic/134 2s ... 2s >>> generic/135 2s ... 1s >>> generic/136 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/137 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/138 3s ... 2s >>> generic/139 3s ... 3s >>> generic/140 2s ... 3s >>> generic/141 1s ... 1s >>> generic/142 10s ... 8s >>> generic/143 246s ... 242s >>> generic/144 2s ... 2s >>> generic/145 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) >>> generic/146 3s ... 2s >>> generic/147 [not run] xfs_io finsert failed (old kernel/wrong fs?) >>> generic/148 2s ... 2s >>> generic/149 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/150 19s ... 17s >>> generic/151 21s ... 20s >>> generic/152 22s ... 20s >>> generic/153 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) >>> generic/154 [expunged] >>> generic/155 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/156 [not run] xfs_io funshare failed (old kernel/wrong fs?) >>> generic/157 88s ... 86s >>> generic/158 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/159 [not run] file system doesn't support chattr +i >>> generic/160 [not run] file system doesn't support chattr +i >>> generic/161 18s ... 20s >>> generic/162 [not run] Dedupe not supported by scratch filesystem type: nfs >>> generic/163 [not run] Dedupe not supported by scratch filesystem type: nfs >>> generic/164 71s ... 70s >>> generic/165 65s ... 60s >>> generic/166 207s ... 182s >>> generic/167 46s ... 42s >>> generic/168 319s ... 280s >>> generic/169 2s ... 2s >>> generic/170 382s ... 361s >>> generic/171 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/172 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/173 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/174 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/175 370s ... 235s >>> generic/176 [not run] Insufficient space for stress test; would only create 32768 extents. >>> generic/177 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/178 5s ... 5s >>> generic/179 1s ... 1s >>> generic/180 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/181 4s ... 4s >>> generic/182 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/183 6s ... 6s >>> generic/184 [expunged] >>> generic/185 6s ... 6s >>> generic/186 832s ... 813s >>> generic/187 829s ... 815s >>> generic/188 8s ... 6s >>> generic/189 4s ... 4s >>> generic/190 5s ... 5s >>> generic/191 5s ... 4s >>> generic/192 [not run] atime related mount options have no effect on nfs >>> generic/193 [not run] fsgqa user not defined. >>> generic/194 6s ... 6s >>> generic/195 6s ... 6s >>> generic/196 4s ... 4s >>> generic/197 4s ... 5s >>> generic/198 6s ... 6s >>> generic/199 6s ... 6s >>> generic/200 6s ... 5s >>> generic/201 5s ... 3s >>> generic/202 2s ... 2s >>> generic/203 2s ... 3s >>> generic/204 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/205 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/206 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/207 22s ... 20s >>> generic/208 [expunged] >>> generic/209 33s ... 45s >>> generic/210 0s ... 0s >>> generic/211 2s ... 1s >>> generic/212 0s ... 0s >>> generic/213 1s ... 0s >>> generic/214 1s ... 1s >>> generic/215 3s ... 3s >>> generic/216 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/217 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/218 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/219 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/220 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/221 1s ... 2s >>> generic/222 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/223 [not run] can't mkfs nfs with geometry >>> generic/224 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/225 [expunged] >>> generic/226 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/227 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/228 1s ... 1s >>> generic/229 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/230 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/231 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/232 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/233 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/234 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/235 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/236 2s ... 2s >>> generic/237 [not run] ACLs not supported by this filesystem type: nfs >>> generic/238 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized >>> generic/239 32s ... 31s >>> generic/240 1s ... 1s >>> generic/241 [not run] dbench not found >>> generic/242 89s ... 85s >>> generic/243 89s ... 81s >>> generic/244 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/245 1s ... 1s >>> generic/246 0s ... 0s >>> generic/247 85s ... 81s >>> generic/248 1s ... 0s >>> generic/249 3s ... 3s >>> generic/250 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/252 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/253 3s ... 2s >>> generic/254 2s ... 3s >>> generic/255 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/256 [not run] fsgqa user not defined. >>> generic/257 4s ... 5s >>> generic/258 1s ... 0s >>> generic/259 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/260 [not run] FITRIM not supported on /mnt2 >>> generic/261 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) >>> generic/262 [not run] xfs_io finsert failed (old kernel/wrong fs?) >>> generic/263 [expunged] >>> generic/264 [not run] xfs_io funshare failed (old kernel/wrong fs?) >>> generic/265 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/266 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/267 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/268 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/269 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/270 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/271 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/272 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/273 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/274 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) >>> generic/275 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/276 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/277 [expunged] >>> generic/278 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/279 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/280 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/281 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/282 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/283 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/284 4s ... 3s >>> generic/285 2s ... 2s >>> generic/286 19s ... 19s >>> generic/287 4s ... 4s >>> generic/288 [not run] FITRIM not supported on /mnt2 >>> generic/289 5s ... 5s >>> generic/290 5s ... 5s >>> generic/291 6s ... 6s >>> generic/292 6s ... 5s >>> generic/293 7s ... 7s >>> generic/294 [expunged] >>> generic/295 8s ... 7s >>> generic/296 4s ... 3s >>> generic/297 [not run] NFS can't interrupt clone operations >>> generic/298 [not run] NFS can't interrupt clone operations >>> generic/299 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/300 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/301 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/302 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/303 1s ... 1s >>> generic/304 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/305 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/306 1s ... 1s >>> generic/307 3s ... [not run] ACLs not supported by this filesystem type: nfs >>> generic/308 1s ... 0s >>> generic/309 1s ... 2s >>> generic/310 [expunged] >>> generic/311 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/312 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/313 4s ... 5s >>> generic/314 [not run] fsgqa user not defined. >>> generic/315 15s ... [not run] xfs_io falloc -k failed (old kernel/wrong fs?) >>> generic/316 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/317 [not run] fsgqa user not defined. >>> generic/318 [expunged] >>> generic/319 [not run] ACLs not supported by this filesystem type: nfs >>> generic/320 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/321 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/322 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/323 [expunged] >>> generic/324 [not run] defragmentation not supported for fstype "nfs" >>> generic/325 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/326 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/327 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/328 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/329 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/330 10s ... 9s >>> generic/331 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/332 9s ... 8s >>> generic/333 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/334 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/335 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/336 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/337 1s ... 1s >>> generic/338 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/339 [expunged] >>> generic/340 41s ... 42s >>> generic/341 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/342 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/343 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/344 86s ... 84s >>> generic/345 89s ... 84s >>> generic/346 41s ... 38s >>> generic/347 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/348 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/352 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/353 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/354 30s ... 29s >>> generic/355 [not run] fsgqa user not defined. >>> generic/356 3s ... 2s >>> generic/357 [expunged] >>> generic/358 58s ... 55s >>> generic/359 15s ... 15s >>> generic/360 0s ... 1s >>> generic/361 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/362 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/363 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/364 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/365 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/366 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/367 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/368 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/369 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/370 [not run] this test requires richacl support on $SCRATCH_DEV >>> generic/371 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/372 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/373 1s ... 1s >>> generic/374 [not run] Dedupe not supported by scratch filesystem type: nfs >>> generic/375 [not run] ACLs not supported by this filesystem type: nfs >>> generic/376 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/377 1s ... 1s >>> generic/378 [not run] fsgqa user not defined. >>> generic/379 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/380 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/381 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/382 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/383 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/384 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/385 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/386 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/387 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/388 [not run] require test1.fieldses.org:/exports/xfs2 to be local device >>> generic/389 [not run] O_TMPFILE is not supported >>> generic/390 9s ... [not run] nfs does not support freezing >>> generic/391 24s ... 22s >>> generic/392 [not run] nfs does not support shutdown >>> generic/393 2s ... 2s >>> generic/394 2s ... 1s >>> generic/395 [not run] No encryption support for nfs >>> generic/396 [not run] No encryption support for nfs >>> generic/397 [not run] No encryption support for nfs >>> generic/398 [not run] No encryption support for nfs >>> generic/399 [not run] No encryption support for nfs >>> generic/400 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/401 1s ... 2s >>> generic/402 [not run] filesystem nfs timestamp bounds are unknown >>> generic/403 [expunged] >>> generic/404 [not run] xfs_io finsert failed (old kernel/wrong fs?) >>> generic/405 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/406 9s ... 8s >>> generic/407 2s ... 1s >>> generic/408 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/409 [not run] require test1.fieldses.org:/exports/xfs2 to be local device >>> generic/410 [not run] require test1.fieldses.org:/exports/xfs2 to be local device >>> generic/411 [not run] require test1.fieldses.org:/exports/xfs2 to be local device >>> generic/412 2s ... 1s >>> generic/413 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed >>> generic/414 [not run] xfs_io fiemap failed (old kernel/wrong fs?) >>> generic/415 15s ... 16s >>> generic/416 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/417 [not run] nfs does not support shutdown >>> generic/418 [not run] require test1.fieldses.org:/exports/xfs to be valid block disk >>> generic/419 [not run] No encryption support for nfs >>> generic/420 1s ... 0s >>> generic/421 [not run] No encryption support for nfs >>> generic/422 [expunged] >>> generic/423 [expunged] >>> generic/424 [not run] file system doesn't support any of /usr/bin/chattr +a/+c/+d/+i >>> generic/425 [expunged] >>> generic/426 [expunged] >>> generic/427 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/428 1s ... 0s >>> generic/429 [not run] No encryption support for nfs >>> generic/430 1s ... 1s >>> generic/431 1s ... 1s >>> generic/432 1s ... 1s >>> generic/433 1s ... 1s >>> generic/434 [expunged] >>> generic/435 [not run] No encryption support for nfs >>> generic/436 1s ... 2s >>> generic/437 21s ... 20s >>> generic/438 [expunged] >>> generic/439 2s ... 2s >>> generic/440 [not run] No encryption support for nfs >>> generic/441 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/443 0s ... 1s >>> generic/444 [not run] ACLs not supported by this filesystem type: nfs >>> generic/445 1s ... 2s >>> generic/446 [expunged] >>> generic/447 [not run] Insufficient space for stress test; would only create 32768 extents (10737418240/21281112064 blocks). >>> generic/448 1s ... 2s >>> generic/449 [not run] ACLs not supported by this filesystem type: nfs >>> generic/450 1s ... 1s >>> generic/451 31s ... 31s >>> generic/452 1s ... 1s >>> generic/453 2s ... 2s >>> generic/454 3s ... 2s >>> generic/455 [not run] This test requires a valid $LOGWRITES_DEV >>> generic/456 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/457 [not run] This test requires a valid $LOGWRITES_DEV >>> generic/458 [not run] xfs_io fzero failed (old kernel/wrong fs?) >>> generic/459 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/460 36s ... 37s >>> generic/461 [not run] nfs does not support shutdown >>> generic/462 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed >>> generic/463 1s ... 1s >>> generic/464 73s ... 73s >>> generic/465 [expunged] >>> generic/466 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/467 4s ... 4s >>> generic/468 [not run] nfs does not support shutdown >>> generic/469 [expunged] >>> generic/470 [not run] This test requires a valid $LOGWRITES_DEV >>> generic/471 [not run] xfs_io pwrite -V 1 -b 4k -N failed (old kernel/wrong fs?) >>> generic/472 2s ... 2s >>> generic/474 [not run] nfs does not support shutdown >>> generic/475 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/476 [expunged] >>> generic/477 4s ... 4s >>> generic/478 [expunged] >>> generic/479 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/480 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/481 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/482 [not run] This test requires a valid $LOGWRITES_DEV >>> generic/483 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/484 [expunged] >>> generic/485 [expunged] >>> generic/486 [expunged] >>> generic/487 [not run] This test requires a valid $SCRATCH_LOGDEV >>> generic/488 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/489 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/490 1s ... 2s >>> generic/491 [expunged] >>> generic/492 [not run] xfs_io label failed (old kernel/wrong fs?) >>> generic/493 [not run] Dedupe not supported by scratch filesystem type: nfs >>> generic/494 3s ... 2s >>> generic/495 2s ... 2s >>> generic/496 7s ... 7s >>> generic/497 2s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) >>> generic/498 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/499 [expunged] >>> generic/500 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/501 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/502 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/503 [expunged] >>> generic/504 0s ... 0s >>> generic/505 [not run] nfs does not support shutdown >>> generic/506 [not run] nfs does not support shutdown >>> generic/507 [not run] file system doesn't support chattr +AsSu >>> generic/508 [not run] lsattr not supported by test filesystem type: nfs >>> generic/509 [not run] O_TMPFILE is not supported >>> generic/510 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/511 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) >>> generic/512 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/513 [expunged] >>> generic/514 [not run] fsgqa user not defined. >>> generic/515 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/516 [not run] Dedupe not supported by test filesystem type: nfs >>> generic/517 [not run] Dedupe not supported by scratch filesystem type: nfs >>> generic/518 2s ... 2s >>> generic/519 [expunged] >>> generic/520 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/523 1s ... 1s >>> generic/524 25s ... 27s >>> generic/525 1s ... 2s >>> generic/526 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/527 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/528 [not run] inode creation time not supported by this filesystem >>> generic/529 [not run] ACLs not supported by this filesystem type: nfs >>> generic/530 [not run] nfs does not support shutdown >>> generic/531 [expunged] >>> generic/532 1s ... 1s >>> generic/533 1s ... 1s >>> generic/534 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/535 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/536 [not run] nfs does not support shutdown >>> generic/537 [not run] FSTRIM not supported >>> generic/538 26s ... 26s >>> generic/539 1s ... 1s >>> generic/540 6s ... 6s >>> generic/541 7s ... 6s >>> generic/542 6s ... 6s >>> generic/543 7s ... 6s >>> generic/544 6s ... 7s >>> generic/545 [not run] file system doesn't support chattr +i >>> generic/546 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/547 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/548 [not run] No encryption support for nfs >>> generic/549 [not run] No encryption support for nfs >>> generic/550 [not run] No encryption support for nfs >>> generic/551 [expunged] >>> generic/552 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/553 [not run] xfs_io chattr +i failed (old kernel/wrong fs?) >>> generic/554 3s ... 2s >>> generic/555 [not run] xfs_io chattr +ia failed (old kernel/wrong fs?) >>> generic/556 [not run] nfs does not support casefold feature >>> generic/557 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/558 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/559 [not run] duperemove utility required, skipped this test >>> generic/560 [not run] duperemove utility required, skipped this test >>> generic/561 [not run] duperemove utility required, skipped this test >>> generic/562 [not run] Filesystem nfs not supported in _scratch_mkfs_sized >>> generic/563 [not run] Cgroup2 doesn't support io controller io >>> generic/564 2s ... 2s >>> generic/565 [expunged] >>> generic/566 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/567 1s ... 2s >>> generic/568 1s ... 1s >>> generic/569 2s ... 3s >>> generic/570 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/571 [expunged] >>> generic/572 [not run] fsverity utility required, skipped this test >>> generic/573 [not run] fsverity utility required, skipped this test >>> generic/574 [not run] fsverity utility required, skipped this test >>> generic/575 [not run] fsverity utility required, skipped this test >>> generic/576 [not run] fsverity utility required, skipped this test >>> generic/577 [not run] fsverity utility required, skipped this test >>> generic/578 [expunged] >>> generic/579 [not run] fsverity utility required, skipped this test >>> generic/580 [not run] No encryption support for nfs >>> generic/581 [not run] fsgqa user not defined. >>> generic/582 [not run] No encryption support for nfs >>> generic/583 [not run] No encryption support for nfs >>> generic/584 [not run] No encryption support for nfs >>> generic/585 8s ... [not run] kernel doesn't support renameat2 syscall >>> generic/586 9s ... 9s >>> generic/587 [not run] fsgqa user not defined. >>> generic/588 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk >>> generic/589 [not run] require test1.fieldses.org:/exports/xfs2 to be local device >>> generic/590 281s ... 276s >>> generic/591 1s ... 1s >>> generic/592 [not run] No encryption support for nfs >>> generic/593 [not run] No encryption support for nfs >>> generic/594 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/595 [not run] No encryption support for nfs >>> generic/596 [not run] file system doesn't support chattr +S >>> generic/597 [not run] fsgqa2 user not defined. >>> generic/598 [not run] fsgqa2 user not defined. >>> generic/599 [not run] nfs does not support shutdown >>> generic/600 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/601 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/602 [not run] No encryption support for nfs >>> generic/603 [not run] disk quotas not supported by this filesystem type: nfs >>> generic/604 6s ... 5s >>> generic/605 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed >>> generic/606 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed >>> generic/607 [expunged] >>> generic/608 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed >>> generic/609 1s ... 0s >>> generic/610 [expunged] >>> generic/611 1s ... 2s >>> nfs/001 3s ... 2s >>> shared/002 [not run] not suitable for this filesystem type: nfs >>> shared/032 [not run] not suitable for this filesystem type: nfs >>> shared/298 [not run] not suitable for this filesystem type: nfs >>> Ran: generic/001 generic/002 generic/003 generic/004 generic/005 generic/008 generic/009 generic/010 generic/011 generic/012 generic/013 generic/015 generic/016 generic/018 generic/020 generic/021 generic/022 generic/023 generic/024 generic/025 generic/026 generic/027 generic/028 generic/029 generic/030 generic/034 generic/036 generic/037 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/069 generic/070 generic/072 generic/073 generic/075 generic/076 generic/077 generic/078 generic/079 generic/080 generic/081 generic/082 generic/083 generic/084 generic/085 generic/086 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/098 generic/099 generic/101 generic/102 generic/103 generic/104 generic/1 >>> 06 generic/107 generic/108 generic/109 generic/110 generic/111 generic/112 generic/114 generic/115 generic/116 generic/118 generic/119 generic/120 generic/121 generic/122 generic/123 generic/124 generic/128 generic/130 generic/131 generic/132 generic/134 generic/135 generic/136 generic/137 generic/138 generic/139 generic/140 generic/141 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/169 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/193 generic/194 generic/195 generic/196 generic/197 generic/19 >>> 8 generic/199 generic/200 generic/201 generic/202 generic/203 generic/204 generic/205 generic/206 generic/207 generic/209 generic/210 generic/211 generic/212 generic/213 generic/214 generic/215 generic/216 generic/217 generic/218 generic/219 generic/220 generic/221 generic/222 generic/223 generic/224 generic/226 generic/227 generic/228 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/236 generic/237 generic/238 generic/239 generic/240 generic/241 generic/242 generic/243 generic/244 generic/245 generic/246 generic/247 generic/248 generic/249 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/257 generic/258 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/285 generic/286 >>> generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/306 generic/307 generic/308 generic/309 generic/311 generic/312 generic/313 generic/314 generic/315 generic/316 generic/317 generic/319 generic/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/337 generic/338 generic/340 generic/341 generic/342 generic/343 generic/344 generic/345 generic/346 generic/347 generic/348 generic/352 generic/353 generic/354 generic/355 generic/356 generic/358 generic/359 generic/360 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/373 generic/374 generic/375 generic/376 generic/377 generic/378 >>> generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/391 generic/392 generic/393 generic/394 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/401 generic/402 generic/404 generic/405 generic/406 generic/407 generic/408 generic/409 generic/410 generic/411 generic/412 generic/413 generic/414 generic/415 generic/416 generic/417 generic/418 generic/419 generic/420 generic/421 generic/424 generic/427 generic/428 generic/429 generic/430 generic/431 generic/432 generic/433 generic/435 generic/436 generic/437 generic/439 generic/440 generic/441 generic/443 generic/444 generic/445 generic/447 generic/448 generic/449 generic/450 generic/451 generic/452 generic/453 generic/454 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/464 generic/466 generic/467 generic/468 generic/470 generic/471 generic/472 g >>> eneric/474 generic/475 generic/477 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/490 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/500 generic/501 generic/502 generic/504 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/518 generic/520 generic/523 generic/524 generic/525 generic/526 generic/527 generic/528 generic/529 generic/530 generic/532 generic/533 generic/534 generic/535 generic/536 generic/537 generic/538 generic/539 generic/540 generic/541 generic/542 generic/543 generic/544 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/554 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/564 generic/566 generic/567 generic/568 generic/569 generic/570 generic/572 ge >>> neric/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/586 generic/587 generic/588 generic/589 generic/590 generic/591 generic/592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/604 generic/605 generic/606 generic/608 generic/609 generic/611 nfs/001 shared/002 shared/032 shared/298 >>> Not run: generic/003 generic/004 generic/008 generic/009 generic/010 generic/012 generic/015 generic/016 generic/018 generic/021 generic/022 generic/024 generic/025 generic/026 generic/027 generic/034 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/072 generic/073 generic/076 generic/077 generic/078 generic/079 generic/081 generic/082 generic/083 generic/085 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/099 generic/101 generic/102 generic/104 generic/106 generic/107 generic/108 generic/110 generic/111 generic/114 generic/115 generic/120 generic/121 generic/122 generic/123 generic/128 generic/136 generic/137 generic/145 generic/147 generic/149 generic/153 generic/155 generic/156 gener >>> ic/158 generic/159 generic/160 generic/162 generic/163 generic/171 generic/172 generic/173 generic/174 generic/176 generic/177 generic/180 generic/182 generic/192 generic/193 generic/204 generic/205 generic/206 generic/216 generic/217 generic/218 generic/219 generic/220 generic/222 generic/223 generic/224 generic/226 generic/227 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/237 generic/238 generic/241 generic/244 generic/250 generic/252 generic/255 generic/256 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/288 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/304 generic/305 generic/307 generic/311 generic/312 generic/314 generic/315 generic/316 generic/317 generic/319 generi >>> c/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/331 generic/333 generic/334 generic/335 generic/336 generic/338 generic/341 generic/342 generic/343 generic/347 generic/348 generic/352 generic/353 generic/355 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/374 generic/375 generic/376 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/392 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/402 generic/404 generic/405 generic/408 generic/409 generic/410 generic/411 generic/413 generic/414 generic/416 generic/417 generic/418 generic/419 generic/421 generic/424 generic/427 generic/429 generic/435 generic/440 generic/441 generic/444 generic/447 generic/449 generic/455 generic/456 generic >>> /457 generic/458 generic/459 generic/461 generic/462 generic/466 generic/468 generic/470 generic/471 generic/474 generic/475 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/492 generic/493 generic/497 generic/498 generic/500 generic/501 generic/502 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/520 generic/526 generic/527 generic/528 generic/529 generic/530 generic/534 generic/535 generic/536 generic/537 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/566 generic/570 generic/572 generic/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/587 generic/588 generic/589 generic/ >>> 592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/605 generic/606 generic/608 shared/002 shared/032 shared/298 >>> Passed all 538 tests >>> >>> [ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 >>> [ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 >>> [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' >>> [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' >>> [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' >>> [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 >>> [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. >>> [ 0.000000] signal: max sigframe size: 1776 >>> [ 0.000000] BIOS-provided physical RAM map: >>> [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable >>> [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdbfff] usable >>> [ 0.000000] BIOS-e820: [mem 0x000000007ffdc000-0x000000007fffffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved >>> [ 0.000000] NX (Execute Disable) protection: active >>> [ 0.000000] SMBIOS 2.8 present. >>> [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.14.0-6.fc35 04/01/2014 >>> [ 0.000000] tsc: Fast TSC calibration using PIT >>> [ 0.000000] tsc: Detected 3591.787 MHz processor >>> [ 0.000930] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved >>> [ 0.000938] e820: remove [mem 0x000a0000-0x000fffff] usable >>> [ 0.000946] last_pfn = 0x7ffdc max_arch_pfn = 0x400000000 >>> [ 0.000979] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT >>> [ 0.004415] found SMP MP-table at [mem 0x000f5c10-0x000f5c1f] >>> [ 0.004436] Using GB pages for direct mapping >>> [ 0.004911] RAMDISK: [mem 0x34784000-0x363b9fff] >>> [ 0.004919] ACPI: Early table checksum verification disabled >>> [ 0.004924] ACPI: RSDP 0x00000000000F5A20 000014 (v00 BOCHS ) >>> [ 0.004934] ACPI: RSDT 0x000000007FFE2066 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004943] ACPI: FACP 0x000000007FFE1E8E 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004953] ACPI: DSDT 0x000000007FFE0040 001E4E (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004960] ACPI: FACS 0x000000007FFE0000 000040 >>> [ 0.004966] ACPI: APIC 0x000000007FFE1F82 000080 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004972] ACPI: MCFG 0x000000007FFE2002 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004978] ACPI: WAET 0x000000007FFE203E 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004984] ACPI: Reserving FACP table memory at [mem 0x7ffe1e8e-0x7ffe1f81] >>> [ 0.004988] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1e8d] >>> [ 0.004991] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] >>> [ 0.004993] ACPI: Reserving APIC table memory at [mem 0x7ffe1f82-0x7ffe2001] >>> [ 0.004996] ACPI: Reserving MCFG table memory at [mem 0x7ffe2002-0x7ffe203d] >>> [ 0.004999] ACPI: Reserving WAET table memory at [mem 0x7ffe203e-0x7ffe2065] >>> [ 0.008477] Zone ranges: >>> [ 0.008484] DMA [mem 0x0000000000001000-0x0000000000ffffff] >>> [ 0.008491] DMA32 [mem 0x0000000001000000-0x000000007ffdbfff] >>> [ 0.008495] Normal empty >>> [ 0.008499] Movable zone start for each node >>> [ 0.008518] Early memory node ranges >>> [ 0.008521] node 0: [mem 0x0000000000001000-0x000000000009efff] >>> [ 0.008535] node 0: [mem 0x0000000000100000-0x000000007ffdbfff] >>> [ 0.008538] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdbfff] >>> [ 0.008548] On node 0, zone DMA: 1 pages in unavailable ranges >>> [ 0.008622] On node 0, zone DMA: 97 pages in unavailable ranges >>> [ 0.016858] On node 0, zone DMA32: 36 pages in unavailable ranges >>> [ 0.048098] kasan: KernelAddressSanitizer initialized >>> [ 0.048939] ACPI: PM-Timer IO Port: 0x608 >>> [ 0.048950] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) >>> [ 0.048993] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 >>> [ 0.049002] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) >>> [ 0.049006] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) >>> [ 0.049009] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) >>> [ 0.049012] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) >>> [ 0.049015] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) >>> [ 0.049021] ACPI: Using ACPI (MADT) for SMP configuration information >>> [ 0.049024] TSC deadline timer available >>> [ 0.049030] smpboot: Allowing 2 CPUs, 0 hotplug CPUs >>> [ 0.049050] [mem 0xc0000000-0xfed1bfff] available for PCI devices >>> [ 0.049055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns >>> [ 0.064532] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 >>> [ 0.064789] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u1048576 >>> [ 0.064798] pcpu-alloc: s231440 r8192 d30704 u1048576 alloc=1*2097152 >>> [ 0.064802] pcpu-alloc: [0] 0 1 >>> [ 0.064836] Built 1 zonelists, mobility grouping on. Total pages: 516828 >>> [ 0.064886] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 >>> [ 0.064998] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. >>> [ 0.065286] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) >>> [ 0.065405] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) >>> [ 0.065443] mem auto-init: stack:off, heap alloc:off, heap free:off >>> [ 0.217018] Memory: 1653208K/2096616K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 443152K reserved, 0K cma-reserved) >>> [ 0.218927] Kernel/User page tables isolation: enabled >>> [ 0.219010] ftrace: allocating 48466 entries in 190 pages >>> [ 0.236213] ftrace: allocated 190 pages with 6 groups >>> [ 0.236405] Dynamic Preempt: full >>> [ 0.236588] Running RCU self tests >>> [ 0.236599] rcu: Preemptible hierarchical RCU implementation. >>> [ 0.236602] rcu: RCU lockdep checking is enabled. >>> [ 0.236604] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. >>> [ 0.236608] Trampoline variant of Tasks RCU enabled. >>> [ 0.236610] Rude variant of Tasks RCU enabled. >>> [ 0.236612] Tracing variant of Tasks RCU enabled. >>> [ 0.236614] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. >>> [ 0.236617] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 >>> [ 0.246098] NR_IRQS: 4352, nr_irqs: 56, preallocated irqs: 16 >>> [ 0.246516] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 >>> [ 0.252863] Console: colour VGA+ 80x25 >>> [ 0.285411] printk: console [tty0] enabled >>> [ 0.341424] printk: console [ttyS0] enabled >>> [ 0.342010] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar >>> [ 0.343034] ... MAX_LOCKDEP_SUBCLASSES: 8 >>> [ 0.343564] ... MAX_LOCK_DEPTH: 48 >>> [ 0.344099] ... MAX_LOCKDEP_KEYS: 8192 >>> [ 0.344657] ... CLASSHASH_SIZE: 4096 >>> [ 0.345239] ... MAX_LOCKDEP_ENTRIES: 32768 >>> [ 0.345872] ... MAX_LOCKDEP_CHAINS: 65536 >>> [ 0.346470] ... CHAINHASH_SIZE: 32768 >>> [ 0.347042] memory used by lock dependency info: 6365 kB >>> [ 0.347732] memory used for stack traces: 4224 kB >>> [ 0.349158] per task-struct memory footprint: 1920 bytes >>> [ 0.350184] ACPI: Core revision 20210930 >>> [ 0.351362] APIC: Switch to symmetric I/O mode setup >>> [ 0.353278] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c604d3dd7, max_idle_ns: 440795267083 ns >>> [ 0.354743] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.57 BogoMIPS (lpj=14367148) >>> [ 0.356135] pid_max: default: 32768 minimum: 301 >>> [ 0.356866] LSM: Security Framework initializing >>> [ 0.357606] SELinux: Initializing. >>> [ 0.358214] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) >>> [ 0.358743] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) >>> [ 0.358743] x86/cpu: User Mode Instruction Prevention (UMIP) activated >>> [ 0.358743] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 >>> [ 0.358743] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 >>> [ 0.358743] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization >>> [ 0.358743] Spectre V2 : Mitigation: Full generic retpoline >>> [ 0.358743] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch >>> [ 0.358743] Spectre V2 : Enabling Restricted Speculation for firmware calls >>> [ 0.358743] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier >>> [ 0.358743] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl >>> [ 0.358743] SRBDS: Unknown: Dependent on hypervisor status >>> [ 0.358743] MDS: Mitigation: Clear CPU buffers >>> [ 0.358743] Freeing SMP alternatives memory: 44K >>> [ 0.358743] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) >>> [ 0.358743] Running RCU-tasks wait API self tests >>> [ 0.458995] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. >>> [ 0.460503] rcu: Hierarchical SRCU implementation. >>> [ 0.462157] NMI watchdog: Perf NMI watchdog permanently disabled >>> [ 0.463002] smp: Bringing up secondary CPUs ... >>> [ 0.464950] x86: Booting SMP configuration: >>> [ 0.465537] .... node #0, CPUs: #1 >>> [ 0.112317] smpboot: CPU 1 Converting physical 0 to logical die 1 >>> [ 0.547215] smp: Brought up 1 node, 2 CPUs >>> [ 0.547814] smpboot: Max logical packages: 2 >>> [ 0.548434] smpboot: Total of 2 processors activated (14386.42 BogoMIPS) >>> [ 0.550634] devtmpfs: initialized >>> [ 0.554801] Callback from call_rcu_tasks_trace() invoked. >>> [ 0.556772] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns >>> [ 0.558148] futex hash table entries: 512 (order: 4, 65536 bytes, linear) >>> [ 0.560130] NET: Registered PF_NETLINK/PF_ROUTE protocol family >>> [ 0.561904] audit: initializing netlink subsys (disabled) >>> [ 0.562980] Callback from call_rcu_tasks_rude() invoked. >>> [ 0.562980] audit: type=2000 audit(1642005631.208:1): state=initialized audit_enabled=0 res=1 >>> [ 0.564434] thermal_sys: Registered thermal governor 'step_wise' >>> [ 0.564897] thermal_sys: Registered thermal governor 'user_space' >>> [ 0.565807] cpuidle: using governor ladder >>> [ 0.567202] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) >>> [ 0.568443] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 >>> [ 0.569384] PCI: Using configuration type 1 for base access >>> [ 0.595171] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. >>> [ 0.597094] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages >>> [ 0.598409] cryptd: max_cpu_qlen set to 1000 >>> [ 0.666772] raid6: avx2x4 gen() 33460 MB/s >>> [ 0.670759] Callback from call_rcu_tasks() invoked. >>> [ 0.738747] raid6: avx2x4 xor() 12834 MB/s >>> [ 0.806748] raid6: avx2x2 gen() 31395 MB/s >>> [ 0.874753] raid6: avx2x2 xor() 16250 MB/s >>> [ 0.942748] raid6: avx2x1 gen() 21106 MB/s >>> [ 1.010748] raid6: avx2x1 xor() 13944 MB/s >>> [ 1.078749] raid6: sse2x4 gen() 15737 MB/s >>> [ 1.146749] raid6: sse2x4 xor() 8765 MB/s >>> [ 1.214864] raid6: sse2x2 gen() 15874 MB/s >>> [ 1.282747] raid6: sse2x2 xor() 9860 MB/s >>> [ 1.350748] raid6: sse2x1 gen() 12302 MB/s >>> [ 1.418748] raid6: sse2x1 xor() 8642 MB/s >>> [ 1.419372] raid6: using algorithm avx2x4 gen() 33460 MB/s >>> [ 1.420108] raid6: .... xor() 12834 MB/s, rmw enabled >>> [ 1.420790] raid6: using avx2x2 recovery algorithm >>> [ 1.421810] ACPI: Added _OSI(Module Device) >>> [ 1.422358] ACPI: Added _OSI(Processor Device) >>> [ 1.422750] ACPI: Added _OSI(3.0 _SCP Extensions) >>> [ 1.423428] ACPI: Added _OSI(Processor Aggregator Device) >>> [ 1.424154] ACPI: Added _OSI(Linux-Dell-Video) >>> [ 1.424733] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) >>> [ 1.425493] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) >>> [ 1.457880] ACPI: 1 ACPI AML tables successfully acquired and loaded >>> [ 1.482752] ACPI: Interpreter enabled >>> [ 1.482752] ACPI: PM: (supports S0 S5) >>> [ 1.482761] ACPI: Using IOAPIC for interrupt routing >>> [ 1.483660] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug >>> [ 1.486749] ACPI: Enabled 1 GPEs in block 00 to 3F >>> [ 1.519179] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) >>> [ 1.520193] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments HPX-Type3] >>> [ 1.521406] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control >>> [ 1.524178] PCI host bridge to bus 0000:00 >>> [ 1.525561] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] >>> [ 1.526771] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] >>> [ 1.527754] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] >>> [ 1.528814] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window] >>> [ 1.529801] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] >>> [ 1.530753] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] >>> [ 1.531784] pci_bus 0000:00: root bus resource [bus 00-ff] >>> [ 1.532720] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 >>> [ 1.535064] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000 >>> [ 1.538691] pci 0000:00:01.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] >>> [ 1.541347] pci 0000:00:01.0: reg 0x14: [mem 0xf8000000-0xfbffffff] >>> [ 1.548136] pci 0000:00:01.0: reg 0x18: [mem 0xfce14000-0xfce15fff] >>> [ 1.551749] pci 0000:00:01.0: reg 0x1c: [io 0xc040-0xc05f] >>> [ 1.562234] pci 0000:00:01.0: reg 0x30: [mem 0xfce00000-0xfce0ffff pref] >>> [ 1.564193] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400 >>> [ 1.566392] pci 0000:00:02.0: reg 0x10: [mem 0xfce16000-0xfce16fff] >>> [ 1.570855] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 >>> [ 1.572957] pci 0000:00:02.1: reg 0x10: [mem 0xfce17000-0xfce17fff] >>> [ 1.576544] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 >>> [ 1.578655] pci 0000:00:02.2: reg 0x10: [mem 0xfce18000-0xfce18fff] >>> [ 1.584327] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 >>> [ 1.587400] pci 0000:00:02.3: reg 0x10: [mem 0xfce19000-0xfce19fff] >>> [ 1.591318] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 >>> [ 1.594121] pci 0000:00:02.4: reg 0x10: [mem 0xfce1a000-0xfce1afff] >>> [ 1.601524] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 >>> [ 1.603552] pci 0000:00:02.5: reg 0x10: [mem 0xfce1b000-0xfce1bfff] >>> [ 1.609104] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 >>> [ 1.611147] pci 0000:00:02.6: reg 0x10: [mem 0xfce1c000-0xfce1cfff] >>> [ 1.615049] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 >>> [ 1.616318] pci 0000:00:1b.0: reg 0x10: [mem 0xfce10000-0xfce13fff] >>> [ 1.622859] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 >>> [ 1.624201] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO >>> [ 1.626532] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 >>> [ 1.631433] pci 0000:00:1f.2: reg 0x20: [io 0xc060-0xc07f] >>> [ 1.633066] pci 0000:00:1f.2: reg 0x24: [mem 0xfce1d000-0xfce1dfff] >>> [ 1.635263] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 >>> [ 1.638672] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] >>> [ 1.646276] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000 >>> [ 1.648447] pci 0000:01:00.0: reg 0x14: [mem 0xfcc40000-0xfcc40fff] >>> [ 1.651541] pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref] >>> [ 1.654708] pci 0000:01:00.0: reg 0x30: [mem 0xfcc00000-0xfcc3ffff pref] >>> [ 1.656245] pci 0000:00:02.0: PCI bridge to [bus 01] >>> [ 1.657166] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] >>> [ 1.658560] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] >>> [ 1.665128] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330 >>> [ 1.666639] pci 0000:02:00.0: reg 0x10: [mem 0xfca00000-0xfca03fff 64bit] >>> [ 1.669547] pci 0000:00:02.1: PCI bridge to [bus 02] >>> [ 1.670253] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] >>> [ 1.670778] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] >>> [ 1.672750] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000 >>> [ 1.676211] pci 0000:03:00.0: reg 0x14: [mem 0xfc800000-0xfc800fff] >>> [ 1.679169] pci 0000:03:00.0: reg 0x20: [mem 0xfe600000-0xfe603fff 64bit pref] >>> [ 1.682558] pci 0000:00:02.2: PCI bridge to [bus 03] >>> [ 1.682793] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] >>> [ 1.685144] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] >>> [ 1.687495] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000 >>> [ 1.689946] pci 0000:04:00.0: reg 0x14: [mem 0xfc600000-0xfc600fff] >>> [ 1.693151] pci 0000:04:00.0: reg 0x20: [mem 0xfe400000-0xfe403fff 64bit pref] >>> [ 1.700473] pci 0000:00:02.3: PCI bridge to [bus 04] >>> [ 1.701209] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] >>> [ 1.702128] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] >>> [ 1.703714] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00 >>> [ 1.707200] pci 0000:05:00.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] >>> [ 1.711310] pci 0000:00:02.4: PCI bridge to [bus 05] >>> [ 1.712069] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] >>> [ 1.713336] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] >>> [ 1.716482] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00 >>> [ 1.722542] pci 0000:06:00.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref] >>> [ 1.725211] pci 0000:00:02.5: PCI bridge to [bus 06] >>> [ 1.726212] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] >>> [ 1.726791] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] >>> [ 1.729879] pci 0000:00:02.6: PCI bridge to [bus 07] >>> [ 1.730651] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] >>> [ 1.730778] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] >>> [ 1.736005] pci_bus 0000:00: on NUMA node 0 >>> [ 1.741503] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 >>> [ 1.744737] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 >>> [ 1.746758] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 >>> [ 1.748846] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 >>> [ 1.750851] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 >>> [ 1.752940] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 >>> [ 1.754949] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 >>> [ 1.757050] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 >>> [ 1.758160] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 >>> [ 1.758938] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 >>> [ 1.759889] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 >>> [ 1.760914] ACPI: PCI: Interrupt link GSID configured for IRQ 19 >>> [ 1.761939] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 >>> [ 1.766937] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 >>> [ 1.767962] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 >>> [ 1.768958] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 >>> [ 1.773089] pci 0000:00:01.0: vgaarb: setting as boot VGA device >>> [ 1.773978] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none >>> [ 1.774767] pci 0000:00:01.0: vgaarb: bridge control possible >>> [ 1.775580] vgaarb: loaded >>> [ 1.776770] SCSI subsystem initialized >>> [ 1.778193] libata version 3.00 loaded. >>> [ 1.778193] ACPI: bus type USB registered >>> [ 1.778750] usbcore: registered new interface driver usbfs >>> [ 1.778857] usbcore: registered new interface driver hub >>> [ 1.779636] usbcore: registered new device driver usb >>> [ 1.780451] pps_core: LinuxPPS API ver. 1 registered >>> [ 1.781112] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> >>> [ 1.782493] PTP clock support registered >>> [ 1.784500] EDAC MC: Ver: 3.0.0 >>> [ 1.785785] Advanced Linux Sound Architecture Driver Initialized. >>> [ 1.786798] PCI: Using ACPI for IRQ routing >>> [ 1.842255] PCI: pci_cache_line_size set to 64 bytes >>> [ 1.842540] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] >>> [ 1.842577] e820: reserve RAM buffer [mem 0x7ffdc000-0x7fffffff] >>> [ 1.842970] clocksource: Switched to clocksource tsc-early >>> [ 2.035298] VFS: Disk quotas dquot_6.6.0 >>> [ 2.035981] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) >>> [ 2.037121] FS-Cache: Loaded >>> [ 2.037960] CacheFiles: Loaded >>> [ 2.038518] pnp: PnP ACPI init >>> [ 2.040511] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved >>> [ 2.044352] pnp: PnP ACPI: found 5 devices >>> [ 2.064254] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns >>> [ 2.065958] NET: Registered PF_INET protocol family >>> [ 2.066945] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) >>> [ 2.069039] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) >>> [ 2.070326] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) >>> [ 2.071828] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) >>> [ 2.073288] TCP: Hash tables configured (established 16384 bind 16384) >>> [ 2.074354] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) >>> [ 2.075383] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) >>> [ 2.076613] NET: Registered PF_UNIX/PF_LOCAL protocol family >>> [ 2.077413] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 >>> [ 2.078529] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 >>> [ 2.079641] pci 0000:00:02.2: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 >>> [ 2.080719] pci 0000:00:02.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000 >>> [ 2.081811] pci 0000:00:02.4: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000 >>> [ 2.082948] pci 0000:00:02.5: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 >>> [ 2.084025] pci 0000:00:02.6: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 >>> [ 2.085111] pci 0000:00:02.0: BAR 7: assigned [io 0x1000-0x1fff] >>> [ 2.085981] pci 0000:00:02.1: BAR 7: assigned [io 0x2000-0x2fff] >>> [ 2.086810] pci 0000:00:02.2: BAR 7: assigned [io 0x3000-0x3fff] >>> [ 2.087614] pci 0000:00:02.3: BAR 7: assigned [io 0x4000-0x4fff] >>> [ 2.088415] pci 0000:00:02.4: BAR 7: assigned [io 0x5000-0x5fff] >>> [ 2.089201] pci 0000:00:02.5: BAR 7: assigned [io 0x6000-0x6fff] >>> [ 2.090032] pci 0000:00:02.6: BAR 7: assigned [io 0x7000-0x7fff] >>> [ 2.091014] pci 0000:00:02.0: PCI bridge to [bus 01] >>> [ 2.091666] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff] >>> [ 2.093625] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] >>> [ 2.096206] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] >>> [ 2.098607] pci 0000:00:02.1: PCI bridge to [bus 02] >>> [ 2.107557] pci 0000:00:02.1: bridge window [io 0x2000-0x2fff] >>> [ 2.109321] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] >>> [ 2.111058] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] >>> [ 2.113315] pci 0000:00:02.2: PCI bridge to [bus 03] >>> [ 2.114828] pci 0000:00:02.2: bridge window [io 0x3000-0x3fff] >>> [ 2.116339] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] >>> [ 2.117673] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] >>> [ 2.119702] pci 0000:00:02.3: PCI bridge to [bus 04] >>> [ 2.120377] pci 0000:00:02.3: bridge window [io 0x4000-0x4fff] >>> [ 2.122070] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] >>> [ 2.123621] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] >>> [ 2.127750] pci 0000:00:02.4: PCI bridge to [bus 05] >>> [ 2.128452] pci 0000:00:02.4: bridge window [io 0x5000-0x5fff] >>> [ 2.129948] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] >>> [ 2.131293] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] >>> [ 2.133183] pci 0000:00:02.5: PCI bridge to [bus 06] >>> [ 2.133884] pci 0000:00:02.5: bridge window [io 0x6000-0x6fff] >>> [ 2.135463] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] >>> [ 2.137987] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] >>> [ 2.139814] pci 0000:00:02.6: PCI bridge to [bus 07] >>> [ 2.140490] pci 0000:00:02.6: bridge window [io 0x7000-0x7fff] >>> [ 2.141949] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] >>> [ 2.143311] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] >>> [ 2.145174] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] >>> [ 2.146052] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] >>> [ 2.148019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] >>> [ 2.148914] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window] >>> [ 2.149845] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] >>> [ 2.150799] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] >>> [ 2.151720] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] >>> [ 2.152452] pci_bus 0000:01: resource 1 [mem 0xfcc00000-0xfcdfffff] >>> [ 2.153255] pci_bus 0000:01: resource 2 [mem 0xfea00000-0xfebfffff 64bit pref] >>> [ 2.154240] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] >>> [ 2.155046] pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff] >>> [ 2.156636] pci_bus 0000:02: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref] >>> [ 2.157602] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] >>> [ 2.158387] pci_bus 0000:03: resource 1 [mem 0xfc800000-0xfc9fffff] >>> [ 2.159282] pci_bus 0000:03: resource 2 [mem 0xfe600000-0xfe7fffff 64bit pref] >>> [ 2.160251] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff] >>> [ 2.161035] pci_bus 0000:04: resource 1 [mem 0xfc600000-0xfc7fffff] >>> [ 2.161909] pci_bus 0000:04: resource 2 [mem 0xfe400000-0xfe5fffff 64bit pref] >>> [ 2.162902] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] >>> [ 2.163619] pci_bus 0000:05: resource 1 [mem 0xfc400000-0xfc5fffff] >>> [ 2.164420] pci_bus 0000:05: resource 2 [mem 0xfe200000-0xfe3fffff 64bit pref] >>> [ 2.165342] pci_bus 0000:06: resource 0 [io 0x6000-0x6fff] >>> [ 2.166091] pci_bus 0000:06: resource 1 [mem 0xfc200000-0xfc3fffff] >>> [ 2.166960] pci_bus 0000:06: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref] >>> [ 2.167884] pci_bus 0000:07: resource 0 [io 0x7000-0x7fff] >>> [ 2.168599] pci_bus 0000:07: resource 1 [mem 0xfc000000-0xfc1fffff] >>> [ 2.169400] pci_bus 0000:07: resource 2 [mem 0xfde00000-0xfdffffff 64bit pref] >>> [ 2.170541] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] >>> [ 2.180949] ACPI: \_SB_.GSIG: Enabled at IRQ 22 >>> [ 2.199686] pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0xa70 took 27224 usecs >>> [ 2.200800] PCI: CLS 0 bytes, default 64 >>> [ 2.202085] Trying to unpack rootfs image as initramfs... >>> [ 2.203583] Initialise system trusted keyrings >>> [ 2.204372] workingset: timestamp_bits=62 max_order=19 bucket_order=0 >>> [ 2.206592] DLM installed >>> [ 2.210086] Key type cifs.idmap registered >>> [ 2.210915] fuse: init (API version 7.35) >>> [ 2.211730] SGI XFS with ACLs, security attributes, no debug enabled >>> [ 2.213541] ocfs2: Registered cluster interface o2cb >>> [ 2.214457] ocfs2: Registered cluster interface user >>> [ 2.215320] OCFS2 User DLM kernel interface loaded >>> [ 2.223471] gfs2: GFS2 installed >>> [ 2.232573] xor: automatically using best checksumming function avx >>> [ 2.233488] Key type asymmetric registered >>> [ 2.234109] Asymmetric key parser 'x509' registered >>> [ 2.235034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) >>> [ 2.236044] io scheduler mq-deadline registered >>> [ 2.236631] io scheduler kyber registered >>> [ 2.237151] test_string_helpers: Running tests... >>> [ 2.251590] cryptomgr_test (80) used greatest stack depth: 30192 bytes left >>> [ 2.253812] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 >>> [ 2.255322] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 >>> [ 2.263630] ACPI: button: Power Button [PWRF] >>> [ 2.503777] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled >>> [ 2.505227] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A >>> [ 2.512214] Non-volatile memory driver v1.3 >>> [ 2.513012] Linux agpgart interface v0.103 >>> [ 2.515374] ACPI: bus type drm_connector registered >>> [ 2.536836] brd: module loaded >>> [ 2.553358] loop: module loaded >>> [ 2.554597] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) >>> [ 2.560013] vda: vda1 vda2 >>> [ 2.563947] zram: Added device: zram0 >>> [ 2.565170] ahci 0000:00:1f.2: version 3.0 >>> [ 2.577984] ACPI: \_SB_.GSIA: Enabled at IRQ 16 >>> [ 2.581236] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode >>> [ 2.582629] ahci 0000:00:1f.2: flags: 64bit ncq only >>> [ 2.591294] scsi host0: ahci >>> [ 2.593071] scsi host1: ahci >>> [ 2.594746] scsi host2: ahci >>> [ 2.596433] scsi host3: ahci >>> [ 2.598107] scsi host4: ahci >>> [ 2.599711] scsi host5: ahci >>> [ 2.600666] ata1: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d100 irq 16 >>> [ 2.601704] ata2: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d180 irq 16 >>> [ 2.602728] ata3: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d200 irq 16 >>> [ 2.603965] ata4: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d280 irq 16 >>> [ 2.604966] ata5: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d300 irq 16 >>> [ 2.606025] ata6: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d380 irq 16 >>> [ 2.608967] tun: Universal TUN/TAP device driver, 1.6 >>> [ 2.615031] e1000: Intel(R) PRO/1000 Network Driver >>> [ 2.615697] e1000: Copyright (c) 1999-2006 Intel Corporation. >>> [ 2.616600] e1000e: Intel(R) PRO/1000 Network Driver >>> [ 2.617285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. >>> [ 2.618418] PPP generic driver version 2.4.2 >>> [ 2.621200] aoe: AoE v85 initialised. >>> [ 2.622145] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver >>> [ 2.623064] ehci-pci: EHCI PCI platform driver >>> [ 2.623725] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver >>> [ 2.624583] ohci-pci: OHCI PCI platform driver >>> [ 2.625273] uhci_hcd: USB Universal Host Controller Interface driver >>> [ 2.626383] usbcore: registered new interface driver usblp >>> [ 2.627485] usbcore: registered new interface driver usb-storage >>> [ 2.628515] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 >>> [ 2.630612] serio: i8042 KBD port at 0x60,0x64 irq 1 >>> [ 2.632241] serio: i8042 AUX port at 0x60,0x64 irq 12 >>> [ 2.633725] mousedev: PS/2 mouse device common for all mice >>> [ 2.635967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 >>> [ 2.641790] input: PC Speaker as /devices/platform/pcspkr/input/input4 >>> [ 2.665764] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt >>> [ 2.667260] i2c i2c-0: 1/1 memory slots populated (from DMI) >>> [ 2.668024] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD >>> [ 2.675052] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. >>> [ 2.676742] device-mapper: uevent: version 1.0.3 >>> [ 2.678918] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com >>> [ 2.683257] device-mapper: multipath round-robin: version 1.2.0 loaded >>> [ 2.684241] intel_pstate: CPU model not supported >>> [ 2.688823] usbcore: registered new interface driver usbhid >>> [ 2.689598] usbhid: USB HID core driver >>> [ 2.705474] netem: version 1.3 >>> [ 2.706277] NET: Registered PF_INET6 protocol family >>> [ 2.712188] Segment Routing with IPv6 >>> [ 2.712717] In-situ OAM (IOAM) with IPv6 >>> [ 2.713285] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver >>> [ 2.715480] NET: Registered PF_PACKET protocol family >>> [ 2.716182] NET: Registered PF_KEY protocol family >>> [ 2.716862] sctp: Hash tables configured (bind 32/56) >>> [ 2.717728] Key type dns_resolver registered >>> [ 2.726933] IPI shorthand broadcast: enabled >>> [ 2.727537] AVX2 version of gcm_enc/dec engaged. >>> [ 2.728259] AES CTR mode by8 optimization enabled >>> [ 2.730257] sched_clock: Marking stable (2618472228, 108317297)->(2782282047, -55492522) >>> [ 2.735020] Loading compiled-in X.509 certificates >>> [ 2.736126] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers >>> [ 2.738851] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no >>> [ 2.739983] ima: No TPM chip found, activating TPM-bypass! >>> [ 2.746925] ima: Allocated hash algorithm: sha1 >>> [ 2.747568] ima: No architecture policies found >>> [ 2.760119] cryptomgr_test (960) used greatest stack depth: 29896 bytes left >>> [ 2.774263] ALSA device list: >>> [ 2.774801] #0: Virtual MIDI Card 1 >>> [ 2.927000] ata2: SATA link down (SStatus 0 SControl 300) >>> [ 2.928006] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) >>> [ 2.929043] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 >>> [ 2.929850] ata1.00: applying bridge limits >>> [ 2.930655] ata1.00: configured for UDMA/100 >>> [ 2.943534] ata3: SATA link down (SStatus 0 SControl 300) >>> [ 2.944410] ata5: SATA link down (SStatus 0 SControl 300) >>> [ 2.945288] ata4: SATA link down (SStatus 0 SControl 300) >>> [ 2.947488] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 >>> [ 2.950893] ata6: SATA link down (SStatus 0 SControl 300) >>> [ 2.983329] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray >>> [ 2.984315] cdrom: Uniform CD-ROM driver Revision: 3.20 >>> [ 3.002413] Freeing initrd memory: 28888K >>> [ 3.003747] kworker/u4:10 (919) used greatest stack depth: 28568 bytes left >>> [ 3.007194] kworker/u4:2 (706) used greatest stack depth: 28384 bytes left >>> [ 3.083826] sr 0:0:0:0: Attached scsi CD-ROM sr0 >>> [ 3.085147] sr 0:0:0:0: Attached scsi generic sg0 type 5 >>> [ 3.103164] Freeing unused kernel image (initmem) memory: 2076K >>> [ 3.117192] Write protecting the kernel read-only data: 61440k >>> [ 3.120374] Freeing unused kernel image (text/rodata gap) memory: 2028K >>> [ 3.122810] Freeing unused kernel image (rodata/data gap) memory: 948K >>> [ 3.126083] Run /init as init process >>> [ 3.127909] with arguments: >>> [ 3.127914] /init >>> [ 3.127917] with environment: >>> [ 3.127920] HOME=/ >>> [ 3.127923] TERM=linux >>> [ 3.127926] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 >>> [ 3.127929] resume=/dev/mapper/fedora-swap >>> [ 3.177129] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) >>> [ 3.191635] systemd[1]: Detected virtualization kvm. >>> [ 3.192554] systemd[1]: Detected architecture x86-64. >>> [ 3.193497] systemd[1]: Running in initial RAM disk. >>> [ 3.200495] systemd[1]: Set hostname to <test3.fieldses.org>. >>> [ 3.206888] tsc: Refined TSC clocksource calibration: 3591.601 MHz >>> [ 3.207931] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55573deb, max_idle_ns: 440795385523 ns >>> [ 3.209808] clocksource: Switched to clocksource tsc >>> [ 3.276323] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 >>> [ 3.410362] dracut-rootfs-g (994) used greatest stack depth: 28168 bytes left >>> [ 3.459425] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. >>> [ 3.483169] systemd[1]: Queued start job for default target Initrd Default Target. >>> [ 3.486365] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. >>> [ 3.490492] systemd[1]: Reached target Slices. >>> [ 3.492032] systemd[1]: Reached target Swap. >>> [ 3.493442] systemd[1]: Reached target Timers. >>> [ 3.496270] systemd[1]: Listening on Journal Audit Socket. >>> [ 3.499878] systemd[1]: Listening on Journal Socket (/dev/log). >>> [ 3.503436] systemd[1]: Listening on Journal Socket. >>> [ 3.506420] systemd[1]: Listening on udev Control Socket. >>> [ 3.509264] systemd[1]: Listening on udev Kernel Socket. >>> [ 3.511877] systemd[1]: Reached target Sockets. >>> [ 3.513442] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. >>> [ 3.520259] systemd[1]: Started Memstrack Anylazing Service. >>> [ 3.527783] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. >>> [ 3.530307] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. >>> [ 3.532742] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) >>> [ 3.540109] systemd[1]: Starting Journal Service... >>> [ 3.550015] systemd[1]: Starting Load Kernel Modules... >>> [ 3.559017] systemd[1]: Starting Create Static Device Nodes in /dev... >>> [ 3.565890] random: rngd: uninitialized urandom read (16 bytes read) >>> [ 3.579371] systemd[1]: Starting Setup Virtual Console... >>> [ 3.611362] systemd[1]: memstrack.service: Succeeded. >>> [ 3.627660] systemd[1]: Finished Create Static Device Nodes in /dev. >>> [ 3.668283] systemd[1]: Finished Load Kernel Modules. >>> [ 3.683342] systemd[1]: Starting Apply Kernel Variables... >>> [ 3.793704] systemd[1]: Finished Apply Kernel Variables. >>> [ 3.852545] audit: type=1130 audit(1642005634.495:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 4.017096] systemd[1]: Started Journal Service. >>> [ 4.019152] audit: type=1130 audit(1642005634.663:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 4.367941] audit: type=1130 audit(1642005635.011:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 5.158530] audit: type=1130 audit(1642005635.799:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 5.240723] random: crng init done >>> [ 5.428343] audit: type=1130 audit(1642005636.071:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 5.562117] audit: type=1130 audit(1642005636.203:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 5.826193] kworker/u4:0 (1195) used greatest stack depth: 27960 bytes left >>> [ 7.667205] virtio_net virtio0 enp1s0: renamed from eth0 >>> [ 8.061253] ata_id (1566) used greatest stack depth: 27648 bytes left >>> [ 8.873062] audit: type=1130 audit(1642005639.515:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 9.126782] audit: type=1130 audit(1642005639.767:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 9.898584] lvm (2335) used greatest stack depth: 27600 bytes left >>> [ 10.171243] lvm (2337) used greatest stack depth: 27504 bytes left >>> [ 10.389632] audit: type=1130 audit(1642005641.031:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' >>> [ 10.456068] audit: type=1130 audit(1642005641.099:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 10.477828] dracut-initqueu (2286) used greatest stack depth: 27416 bytes left >>> [ 10.481902] audit: type=1130 audit(1642005641.123:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 10.545851] fsck (2364) used greatest stack depth: 26560 bytes left >>> [ 10.555806] audit: type=1130 audit(1642005641.195:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 10.584297] XFS (dm-0): Mounting V5 Filesystem >>> [ 10.767936] XFS (dm-0): Ending clean mount >>> [ 10.840832] mount (2366) used greatest stack depth: 25344 bytes left >>> [ 10.996402] systemd-fstab-g (2379) used greatest stack depth: 24872 bytes left >>> [ 11.699148] audit: type=1130 audit(1642005642.339:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 11.702004] audit: type=1131 audit(1642005642.339:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 11.858512] audit: type=1130 audit(1642005642.499:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 11.895749] audit: type=1131 audit(1642005642.535:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 14.895253] SELinux: Permission watch in class filesystem not defined in policy. >>> [ 14.896380] SELinux: Permission watch in class file not defined in policy. >>> [ 14.898184] SELinux: Permission watch_mount in class file not defined in policy. >>> [ 14.899597] SELinux: Permission watch_sb in class file not defined in policy. >>> [ 14.900888] SELinux: Permission watch_with_perm in class file not defined in policy. >>> [ 14.902011] SELinux: Permission watch_reads in class file not defined in policy. >>> [ 14.903080] SELinux: Permission watch in class dir not defined in policy. >>> [ 14.915479] SELinux: Permission watch_mount in class dir not defined in policy. >>> [ 14.916793] SELinux: Permission watch_sb in class dir not defined in policy. >>> [ 14.918117] SELinux: Permission watch_with_perm in class dir not defined in policy. >>> [ 14.919521] SELinux: Permission watch_reads in class dir not defined in policy. >>> [ 14.920832] SELinux: Permission watch in class lnk_file not defined in policy. >>> [ 14.922158] SELinux: Permission watch_mount in class lnk_file not defined in policy. >>> [ 14.923410] SELinux: Permission watch_sb in class lnk_file not defined in policy. >>> [ 14.924406] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. >>> [ 14.925567] SELinux: Permission watch_reads in class lnk_file not defined in policy. >>> [ 14.927302] SELinux: Permission watch in class chr_file not defined in policy. >>> [ 14.928363] SELinux: Permission watch_mount in class chr_file not defined in policy. >>> [ 14.929448] SELinux: Permission watch_sb in class chr_file not defined in policy. >>> [ 14.930486] SELinux: Permission watch_with_perm in class chr_file not defined in policy. >>> [ 14.931631] SELinux: Permission watch_reads in class chr_file not defined in policy. >>> [ 14.932702] SELinux: Permission watch in class blk_file not defined in policy. >>> [ 14.933695] SELinux: Permission watch_mount in class blk_file not defined in policy. >>> [ 14.934779] SELinux: Permission watch_sb in class blk_file not defined in policy. >>> [ 14.935782] SELinux: Permission watch_with_perm in class blk_file not defined in policy. >>> [ 14.936834] SELinux: Permission watch_reads in class blk_file not defined in policy. >>> [ 14.937933] SELinux: Permission watch in class sock_file not defined in policy. >>> [ 14.938979] SELinux: Permission watch_mount in class sock_file not defined in policy. >>> [ 14.940022] SELinux: Permission watch_sb in class sock_file not defined in policy. >>> [ 14.941043] SELinux: Permission watch_with_perm in class sock_file not defined in policy. >>> [ 14.942178] SELinux: Permission watch_reads in class sock_file not defined in policy. >>> [ 14.943287] SELinux: Permission watch in class fifo_file not defined in policy. >>> [ 14.944263] SELinux: Permission watch_mount in class fifo_file not defined in policy. >>> [ 14.945325] SELinux: Permission watch_sb in class fifo_file not defined in policy. >>> [ 14.946386] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. >>> [ 14.947525] SELinux: Permission watch_reads in class fifo_file not defined in policy. >>> [ 14.948611] SELinux: Permission perfmon in class capability2 not defined in policy. >>> [ 14.949662] SELinux: Permission bpf in class capability2 not defined in policy. >>> [ 14.950682] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. >>> [ 14.951921] SELinux: Permission perfmon in class cap2_userns not defined in policy. >>> [ 14.952939] SELinux: Permission bpf in class cap2_userns not defined in policy. >>> [ 14.953970] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. >>> [ 14.955277] SELinux: Class mctp_socket not defined in policy. >>> [ 14.956110] SELinux: Class perf_event not defined in policy. >>> [ 14.957746] SELinux: Class anon_inode not defined in policy. >>> [ 14.958536] SELinux: Class io_uring not defined in policy. >>> [ 14.959313] SELinux: the above unknown classes and permissions will be allowed >>> [ 15.013559] SELinux: policy capability network_peer_controls=1 >>> [ 15.014417] SELinux: policy capability open_perms=1 >>> [ 15.015183] SELinux: policy capability extended_socket_class=1 >>> [ 15.015968] SELinux: policy capability always_check_network=0 >>> [ 15.017534] SELinux: policy capability cgroup_seclabel=1 >>> [ 15.018305] SELinux: policy capability nnp_nosuid_transition=1 >>> [ 15.019126] SELinux: policy capability genfs_seclabel_symlinks=0 >>> [ 15.244501] kauditd_printk_skb: 16 callbacks suppressed >>> [ 15.244506] audit: type=1403 audit(1642005645.887:34): auid=4294967295 ses=4294967295 lsm=selinux res=1 >>> [ 15.255513] systemd[1]: Successfully loaded SELinux policy in 2.766323s. >>> [ 15.619234] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 261.945ms. >>> [ 15.628383] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) >>> [ 15.632666] systemd[1]: Detected virtualization kvm. >>> [ 15.633353] systemd[1]: Detected architecture x86-64. >>> [ 15.639738] systemd[1]: Set hostname to <test3.fieldses.org>. >>> [ 15.905148] lvmconfig (2442) used greatest stack depth: 24544 bytes left >>> [ 15.941811] kdump-dep-gener (2432) used greatest stack depth: 24464 bytes left >>> [ 15.942995] grep (2450) used greatest stack depth: 24448 bytes left >>> [ 16.222623] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. >>> [ 16.548178] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. >>> [ 17.024523] audit: type=1131 audit(1642005647.667:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.032331] systemd[1]: initrd-switch-root.service: Succeeded. >>> [ 17.034511] systemd[1]: Stopped Switch Root. >>> [ 17.037797] audit: type=1130 audit(1642005647.679:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.039820] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. >>> [ 17.040822] audit: type=1131 audit(1642005647.679:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.044319] systemd[1]: Created slice system-getty.slice. >>> [ 17.048401] systemd[1]: Created slice system-modprobe.slice. >>> [ 17.052765] systemd[1]: Created slice system-serial\x2dgetty.slice. >>> [ 17.055258] systemd[1]: Created slice system-sshd\x2dkeygen.slice. >>> [ 17.058406] systemd[1]: Created slice User and Session Slice. >>> [ 17.060191] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. >>> [ 17.063067] systemd[1]: Started Forward Password Requests to Wall Directory Watch. >>> [ 17.066845] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. >>> [ 17.068244] systemd[1]: Reached target Local Encrypted Volumes. >>> [ 17.070271] systemd[1]: Stopped target Switch Root. >>> [ 17.071236] systemd[1]: Stopped target Initrd File Systems. >>> [ 17.072219] systemd[1]: Stopped target Initrd Root File System. >>> [ 17.075495] systemd[1]: Reached target Paths. >>> [ 17.076283] systemd[1]: Reached target Slices. >>> [ 17.080904] systemd[1]: Listening on Device-mapper event daemon FIFOs. >>> [ 17.084889] systemd[1]: Listening on LVM2 poll daemon socket. >>> [ 17.087729] systemd[1]: Listening on multipathd control socket. >>> [ 17.093018] systemd[1]: Listening on Process Core Dump Socket. >>> [ 17.095415] systemd[1]: Listening on initctl Compatibility Named Pipe. >>> [ 17.099466] systemd[1]: Listening on udev Control Socket. >>> [ 17.102467] systemd[1]: Listening on udev Kernel Socket. >>> [ 17.109715] systemd[1]: Activating swap /dev/mapper/fedora-swap... >>> [ 17.117743] systemd[1]: Mounting Huge Pages File System... >>> [ 17.125890] systemd[1]: Mounting POSIX Message Queue File System... >>> [ 17.130492] Adding 2097148k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:2097148k >>> [ 17.140236] systemd[1]: Mounting Kernel Debug File System... >>> [ 17.149754] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... >>> [ 17.151753] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. >>> [ 17.159082] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... >>> [ 17.166647] systemd[1]: Starting Load Kernel Module configfs... >>> [ 17.173097] systemd[1]: Starting Load Kernel Module drm... >>> [ 17.181757] systemd[1]: Starting Load Kernel Module fuse... >>> [ 17.199195] systemd[1]: Starting Preprocess NFS configuration convertion... >>> [ 17.203114] systemd[1]: plymouth-switch-root.service: Succeeded. >>> [ 17.217307] systemd[1]: Stopped Plymouth switch root service. >>> [ 17.220790] audit: type=1131 audit(1642005647.863:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.222477] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. >>> [ 17.235950] systemd[1]: systemd-fsck-root.service: Succeeded. >>> [ 17.239114] systemd[1]: Stopped File System Check on Root Device. >>> [ 17.241914] systemd[1]: Stopped Journal Service. >>> [ 17.246822] audit: type=1131 audit(1642005647.883:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.248647] systemd[1]: Starting Journal Service... >>> [ 17.250212] audit: type=1130 audit(1642005647.883:40): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.263202] audit: type=1131 audit(1642005647.887:41): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.276489] systemd[1]: Starting Load Kernel Modules... >>> [ 17.295377] systemd[1]: Starting Remount Root and Kernel File Systems... >>> [ 17.297774] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. >>> [ 17.324773] systemd[1]: Starting Coldplug All udev Devices... >>> [ 17.328304] systemd[1]: sysroot.mount: Succeeded. >>> [ 17.374101] systemd[1]: Activated swap /dev/mapper/fedora-swap. >>> [ 17.401071] systemd[1]: Mounted Huge Pages File System. >>> [ 17.410741] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) >>> [ 17.425620] systemd[1]: Mounted POSIX Message Queue File System. >>> [ 17.440432] systemd[1]: Mounted Kernel Debug File System. >>> [ 17.447566] RPC: Registered named UNIX socket transport module. >>> [ 17.448425] RPC: Registered udp transport module. >>> [ 17.449052] RPC: Registered tcp transport module. >>> [ 17.449719] RPC: Registered tcp NFSv4.1 backchannel transport module. >>> [ 17.457211] systemd[1]: modprobe@configfs.service: Succeeded. >>> [ 17.459723] systemd[1]: Finished Load Kernel Module configfs. >>> [ 17.461450] audit: type=1130 audit(1642005648.103:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.464558] audit: type=1131 audit(1642005648.103:43): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 17.476290] systemd[1]: modprobe@drm.service: Succeeded. >>> [ 17.491863] systemd[1]: Finished Load Kernel Module drm. >>> [ 17.496010] systemd[1]: Finished Kernel Module supporting RPCSEC_GSS. >>> [ 17.501497] systemd[1]: modprobe@fuse.service: Succeeded. >>> [ 17.504499] systemd[1]: Finished Load Kernel Module fuse. >>> [ 17.517872] systemd[1]: Started Journal Service. >>> [ 20.438290] kauditd_printk_skb: 22 callbacks suppressed >>> [ 20.438294] audit: type=1130 audit(1642005651.079:64): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 20.725931] audit: type=1130 audit(1642005651.367:65): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-pvscan@253:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 20.998904] audit: type=1130 audit(1642005651.639:66): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 22.158644] audit: type=1130 audit(1642005652.799:67): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 22.183237] XFS (vda1): Mounting V5 Filesystem >>> [ 22.329168] XFS (vda1): Ending clean mount >>> [ 22.344447] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) >>> [ 22.381960] audit: type=1130 audit(1642005653.023:68): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 22.430820] audit: type=1130 audit(1642005653.071:69): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 22.485659] audit: type=1130 audit(1642005653.127:70): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=import-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 22.749894] audit: type=1130 audit(1642005653.391:71): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 22.857336] audit: type=1400 audit(1642005653.499:72): avc: denied { fowner } for pid=3657 comm="auditd" capability=3 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:system_r:auditd_t:s0 tclass=capability permissive=0 >>> [ 22.861281] audit: type=1300 audit(1642005653.499:72): arch=c000003e syscall=90 success=yes exit=0 a0=56090a1699e0 a1=1c0 a2=19 a3=56090a169c40 items=0 ppid=3655 pid=3657 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) >>> [ 121.479732] rpm (3866) used greatest stack depth: 23336 bytes left >>> [ 160.313750] FS-Cache: Netfs 'nfs' registered for caching >>> [ 267.826493] NFS: Registering the id_resolver key type >>> [ 267.827159] Key type id_resolver registered >>> [ 267.827643] Key type id_legacy registered >>> [ 268.393694] mount.nfs (5859) used greatest stack depth: 22896 bytes left >>> [ 523.352374] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success >>> [ 938.809224] kworker/dying (2523) used greatest stack depth: 21832 bytes left >>> [ 1827.841420] run fstests generic/001 at 2022-01-12 12:10:59 >>> [ 1867.998292] run fstests generic/002 at 2022-01-12 12:11:39 >>> [ 1869.297577] run fstests generic/003 at 2022-01-12 12:11:40 >>> [ 1869.823503] run fstests generic/004 at 2022-01-12 12:11:40 >>> [ 1870.357158] run fstests generic/005 at 2022-01-12 12:11:41 >>> [ 1872.033166] run fstests generic/008 at 2022-01-12 12:11:43 >>> [ 1872.682257] run fstests generic/009 at 2022-01-12 12:11:43 >>> [ 1873.300870] run fstests generic/010 at 2022-01-12 12:11:44 >>> [ 1873.867023] run fstests generic/011 at 2022-01-12 12:11:45 >>> [ 1939.414212] run fstests generic/012 at 2022-01-12 12:12:50 >>> [ 1940.257756] run fstests generic/013 at 2022-01-12 12:12:51 >>> [ 2006.667055] run fstests generic/015 at 2022-01-12 12:13:57 >>> [ 2007.186484] run fstests generic/016 at 2022-01-12 12:13:58 >>> [ 2008.063569] run fstests generic/018 at 2022-01-12 12:13:59 >>> [ 2008.831790] run fstests generic/020 at 2022-01-12 12:14:00 >>> [ 2020.997738] run fstests generic/021 at 2022-01-12 12:14:12 >>> [ 2021.774590] run fstests generic/022 at 2022-01-12 12:14:12 >>> [ 2022.542934] run fstests generic/023 at 2022-01-12 12:14:13 >>> [ 2025.824308] run fstests generic/024 at 2022-01-12 12:14:16 >>> [ 2026.390736] run fstests generic/025 at 2022-01-12 12:14:17 >>> [ 2026.963217] run fstests generic/026 at 2022-01-12 12:14:18 >>> [ 2027.592530] run fstests generic/027 at 2022-01-12 12:14:18 >>> [ 2028.101801] run fstests generic/028 at 2022-01-12 12:14:19 >>> [ 2033.709852] run fstests generic/029 at 2022-01-12 12:14:24 >>> [ 2035.495458] run fstests generic/030 at 2022-01-12 12:14:26 >>> [ 2038.537954] run fstests generic/034 at 2022-01-12 12:14:29 >>> [ 2039.329741] run fstests generic/036 at 2022-01-12 12:14:30 >>> [ 2050.072609] run fstests generic/037 at 2022-01-12 12:14:41 >>> [ 2071.336677] run fstests generic/038 at 2022-01-12 12:15:02 >>> [ 2072.411721] run fstests generic/039 at 2022-01-12 12:15:03 >>> [ 2073.123576] run fstests generic/040 at 2022-01-12 12:15:04 >>> [ 2073.748265] run fstests generic/041 at 2022-01-12 12:15:04 >>> [ 2074.344951] run fstests generic/043 at 2022-01-12 12:15:05 >>> [ 2075.114885] run fstests generic/044 at 2022-01-12 12:15:06 >>> [ 2075.977059] run fstests generic/045 at 2022-01-12 12:15:07 >>> [ 2076.855028] run fstests generic/046 at 2022-01-12 12:15:08 >>> [ 2077.696747] run fstests generic/047 at 2022-01-12 12:15:08 >>> [ 2078.533668] run fstests generic/048 at 2022-01-12 12:15:09 >>> [ 2079.397374] run fstests generic/049 at 2022-01-12 12:15:10 >>> [ 2080.261339] run fstests generic/050 at 2022-01-12 12:15:11 >>> [ 2081.107141] run fstests generic/051 at 2022-01-12 12:15:12 >>> [ 2082.008096] run fstests generic/052 at 2022-01-12 12:15:13 >>> [ 2082.858320] run fstests generic/054 at 2022-01-12 12:15:14 >>> [ 2083.731997] run fstests generic/055 at 2022-01-12 12:15:14 >>> [ 2084.590242] run fstests generic/056 at 2022-01-12 12:15:15 >>> [ 2085.303754] run fstests generic/057 at 2022-01-12 12:15:16 >>> [ 2085.908458] run fstests generic/058 at 2022-01-12 12:15:17 >>> [ 2086.640354] run fstests generic/059 at 2022-01-12 12:15:17 >>> [ 2087.217469] run fstests generic/060 at 2022-01-12 12:15:18 >>> [ 2087.944489] run fstests generic/061 at 2022-01-12 12:15:19 >>> [ 2088.749344] run fstests generic/063 at 2022-01-12 12:15:19 >>> [ 2089.524340] run fstests generic/065 at 2022-01-12 12:15:20 >>> [ 2090.121276] run fstests generic/066 at 2022-01-12 12:15:21 >>> [ 2090.702873] run fstests generic/067 at 2022-01-12 12:15:21 >>> [ 2091.333532] run fstests generic/069 at 2022-01-12 12:15:22 >>> [ 2121.140927] run fstests generic/070 at 2022-01-12 12:15:52 >>> [ 2168.861297] run fstests generic/072 at 2022-01-12 12:16:40 >>> [ 2169.690898] run fstests generic/073 at 2022-01-12 12:16:40 >>> [ 2170.302749] run fstests generic/075 at 2022-01-12 12:16:41 >>> [ 2226.187399] run fstests generic/076 at 2022-01-12 12:17:37 >>> [ 2226.692121] run fstests generic/077 at 2022-01-12 12:17:37 >>> [ 2230.646484] run fstests generic/078 at 2022-01-12 12:17:41 >>> [ 2231.233467] run fstests generic/079 at 2022-01-12 12:17:42 >>> [ 2231.792759] run fstests generic/080 at 2022-01-12 12:17:42 >>> [ 2234.478551] run fstests generic/081 at 2022-01-12 12:17:45 >>> [ 2235.016264] run fstests generic/082 at 2022-01-12 12:17:46 >>> [ 2235.544754] run fstests generic/083 at 2022-01-12 12:17:46 >>> [ 2236.070354] run fstests generic/084 at 2022-01-12 12:17:47 >>> [ 2242.089643] run fstests generic/085 at 2022-01-12 12:17:53 >>> [ 2242.829424] run fstests generic/086 at 2022-01-12 12:17:54 >>> [ 2244.627985] 086 (63919): drop_caches: 3 >>> [ 2245.004053] run fstests generic/090 at 2022-01-12 12:17:56 >>> [ 2245.726297] run fstests generic/092 at 2022-01-12 12:17:56 >>> [ 2246.386331] run fstests generic/093 at 2022-01-12 12:17:57 >>> [ 2246.989287] run fstests generic/095 at 2022-01-12 12:17:58 >>> [ 2247.568818] run fstests generic/096 at 2022-01-12 12:17:58 >>> [ 2248.194588] run fstests generic/097 at 2022-01-12 12:17:59 >>> [ 2248.808142] run fstests generic/098 at 2022-01-12 12:17:59 >>> [ 2250.531860] run fstests generic/099 at 2022-01-12 12:18:01 >>> [ 2251.371697] run fstests generic/101 at 2022-01-12 12:18:02 >>> [ 2251.916640] run fstests generic/102 at 2022-01-12 12:18:03 >>> [ 2252.419409] run fstests generic/103 at 2022-01-12 12:18:03 >>> [ 2255.825340] run fstests generic/104 at 2022-01-12 12:18:06 >>> [ 2256.640587] run fstests generic/106 at 2022-01-12 12:18:07 >>> [ 2257.275429] run fstests generic/107 at 2022-01-12 12:18:08 >>> [ 2257.871596] run fstests generic/108 at 2022-01-12 12:18:09 >>> [ 2258.649789] run fstests generic/109 at 2022-01-12 12:18:09 >>> [ 2314.619077] run fstests generic/110 at 2022-01-12 12:19:05 >>> [ 2315.511518] run fstests generic/111 at 2022-01-12 12:19:06 >>> [ 2316.200429] run fstests generic/112 at 2022-01-12 12:19:07 >>> [ 2375.093348] run fstests generic/114 at 2022-01-12 12:20:06 >>> [ 2375.726022] run fstests generic/115 at 2022-01-12 12:20:06 >>> [ 2376.417534] run fstests generic/116 at 2022-01-12 12:20:07 >>> [ 2378.207570] run fstests generic/118 at 2022-01-12 12:20:09 >>> [ 2379.767855] run fstests generic/119 at 2022-01-12 12:20:10 >>> [ 2382.596453] run fstests generic/120 at 2022-01-12 12:20:13 >>> [ 2383.118291] run fstests generic/121 at 2022-01-12 12:20:14 >>> [ 2383.763385] run fstests generic/122 at 2022-01-12 12:20:14 >>> [ 2384.417857] run fstests generic/123 at 2022-01-12 12:20:15 >>> [ 2384.952387] run fstests generic/124 at 2022-01-12 12:20:16 >>> [ 2439.979901] run fstests generic/128 at 2022-01-12 12:21:11 >>> [ 2440.534640] run fstests generic/130 at 2022-01-12 12:21:11 >>> [ 2458.532247] run fstests generic/131 at 2022-01-12 12:21:29 >>> [ 2460.624455] run fstests generic/132 at 2022-01-12 12:21:31 >>> [ 2479.380043] run fstests generic/134 at 2022-01-12 12:21:50 >>> [ 2481.259289] run fstests generic/135 at 2022-01-12 12:21:52 >>> [ 2482.602837] run fstests generic/136 at 2022-01-12 12:21:53 >>> [ 2483.422863] run fstests generic/137 at 2022-01-12 12:21:54 >>> [ 2484.225794] run fstests generic/138 at 2022-01-12 12:21:55 >>> [ 2486.911951] run fstests generic/139 at 2022-01-12 12:21:58 >>> [ 2490.247175] run fstests generic/140 at 2022-01-12 12:22:01 >>> [ 2492.960214] run fstests generic/141 at 2022-01-12 12:22:04 >>> [ 2493.949160] run fstests generic/142 at 2022-01-12 12:22:05 >>> [ 2502.811792] run fstests generic/143 at 2022-01-12 12:22:13 >>> [ 2744.562632] run fstests generic/144 at 2022-01-12 12:26:15 >>> [ 2746.679337] run fstests generic/145 at 2022-01-12 12:26:17 >>> [ 2747.559239] run fstests generic/146 at 2022-01-12 12:26:18 >>> [ 2749.654314] run fstests generic/147 at 2022-01-12 12:26:20 >>> [ 2750.441774] run fstests generic/148 at 2022-01-12 12:26:21 >>> [ 2752.169829] run fstests generic/149 at 2022-01-12 12:26:23 >>> [ 2752.935800] run fstests generic/150 at 2022-01-12 12:26:24 >>> [ 2770.733819] run fstests generic/151 at 2022-01-12 12:26:41 >>> [ 2790.154829] run fstests generic/152 at 2022-01-12 12:27:01 >>> [ 2810.016846] run fstests generic/153 at 2022-01-12 12:27:21 >>> [ 2810.829252] run fstests generic/155 at 2022-01-12 12:27:22 >>> [ 2811.642982] run fstests generic/156 at 2022-01-12 12:27:22 >>> [ 2812.435476] run fstests generic/157 at 2022-01-12 12:27:23 >>> [ 2898.516142] run fstests generic/158 at 2022-01-12 12:28:49 >>> [ 2899.169820] run fstests generic/159 at 2022-01-12 12:28:50 >>> [ 2899.707414] run fstests generic/160 at 2022-01-12 12:28:50 >>> [ 2900.240792] run fstests generic/161 at 2022-01-12 12:28:51 >>> [ 2920.346459] run fstests generic/162 at 2022-01-12 12:29:11 >>> [ 2921.465497] run fstests generic/163 at 2022-01-12 12:29:12 >>> [ 2922.457235] run fstests generic/164 at 2022-01-12 12:29:13 >>> [ 2992.429168] run fstests generic/165 at 2022-01-12 12:30:23 >>> [ 3052.173968] run fstests generic/166 at 2022-01-12 12:31:23 >>> [ 3234.652685] run fstests generic/167 at 2022-01-12 12:34:25 >>> [ 3276.304549] run fstests generic/168 at 2022-01-12 12:35:07 >>> [ 3556.737914] run fstests generic/169 at 2022-01-12 12:39:47 >>> [ 3558.300604] run fstests generic/170 at 2022-01-12 12:39:49 >>> [ 3919.058972] run fstests generic/171 at 2022-01-12 12:45:50 >>> [ 3920.624329] run fstests generic/172 at 2022-01-12 12:45:51 >>> [ 3921.953882] run fstests generic/173 at 2022-01-12 12:45:53 >>> [ 3923.239526] run fstests generic/174 at 2022-01-12 12:45:54 >>> [ 3924.575586] run fstests generic/175 at 2022-01-12 12:45:55 >>> [ 4159.652128] run fstests generic/176 at 2022-01-12 12:49:50 >>> [ 4231.459928] run fstests generic/177 at 2022-01-12 12:51:02 >>> [ 4232.370516] run fstests generic/178 at 2022-01-12 12:51:03 >>> [ 4237.868525] run fstests generic/179 at 2022-01-12 12:51:09 >>> [ 4239.533836] run fstests generic/180 at 2022-01-12 12:51:10 >>> [ 4240.307772] run fstests generic/181 at 2022-01-12 12:51:11 >>> [ 4244.757968] run fstests generic/182 at 2022-01-12 12:51:15 >>> [ 4245.418557] run fstests generic/183 at 2022-01-12 12:51:16 >>> [ 4251.302820] run fstests generic/185 at 2022-01-12 12:51:22 >>> [ 4257.418284] run fstests generic/186 at 2022-01-12 12:51:28 >>> [ 5070.488206] run fstests generic/187 at 2022-01-12 13:05:01 >>> [ 5885.066194] run fstests generic/188 at 2022-01-12 13:18:36 >>> [ 5891.287909] run fstests generic/189 at 2022-01-12 13:18:42 >>> [ 5895.605867] run fstests generic/190 at 2022-01-12 13:18:46 >>> [ 5900.073040] run fstests generic/191 at 2022-01-12 13:18:51 >>> [ 5904.614273] run fstests generic/192 at 2022-01-12 13:18:55 >>> [ 5905.308580] run fstests generic/193 at 2022-01-12 13:18:56 >>> [ 5905.844031] run fstests generic/194 at 2022-01-12 13:18:57 >>> [ 5912.087984] run fstests generic/195 at 2022-01-12 13:19:03 >>> [ 5918.021826] run fstests generic/196 at 2022-01-12 13:19:09 >>> [ 5922.532326] run fstests generic/197 at 2022-01-12 13:19:13 >>> [ 5927.467154] run fstests generic/198 at 2022-01-12 13:19:18 >>> [ 5933.061489] run fstests generic/199 at 2022-01-12 13:19:24 >>> [ 5938.925983] run fstests generic/200 at 2022-01-12 13:19:30 >>> [ 5944.827402] run fstests generic/201 at 2022-01-12 13:19:36 >>> [ 5948.708601] run fstests generic/202 at 2022-01-12 13:19:39 >>> [ 5950.790927] run fstests generic/203 at 2022-01-12 13:19:41 >>> [ 5953.029748] run fstests generic/204 at 2022-01-12 13:19:44 >>> [ 5954.153740] run fstests generic/205 at 2022-01-12 13:19:45 >>> [ 5955.124318] run fstests generic/206 at 2022-01-12 13:19:46 >>> [ 5956.139535] run fstests generic/207 at 2022-01-12 13:19:47 >>> [ 5976.917435] run fstests generic/209 at 2022-01-12 13:20:08 >>> [ 6022.149019] run fstests generic/210 at 2022-01-12 13:20:53 >>> [ 6022.898911] run fstests generic/211 at 2022-01-12 13:20:54 >>> [ 6024.148505] run fstests generic/212 at 2022-01-12 13:20:55 >>> [ 6024.829471] run fstests generic/213 at 2022-01-12 13:20:56 >>> [ 6025.661954] run fstests generic/214 at 2022-01-12 13:20:56 >>> [ 6026.799438] run fstests generic/215 at 2022-01-12 13:20:57 >>> [ 6029.680826] run fstests generic/216 at 2022-01-12 13:21:00 >>> [ 6030.690346] run fstests generic/217 at 2022-01-12 13:21:01 >>> [ 6031.755530] run fstests generic/218 at 2022-01-12 13:21:02 >>> [ 6032.778991] run fstests generic/219 at 2022-01-12 13:21:03 >>> [ 6033.283631] run fstests generic/220 at 2022-01-12 13:21:04 >>> [ 6034.360789] run fstests generic/221 at 2022-01-12 13:21:05 >>> [ 6035.998554] run fstests generic/222 at 2022-01-12 13:21:07 >>> [ 6036.984890] run fstests generic/223 at 2022-01-12 13:21:08 >>> [ 6037.549093] run fstests generic/224 at 2022-01-12 13:21:08 >>> [ 6038.116815] run fstests generic/226 at 2022-01-12 13:21:09 >>> [ 6038.692541] run fstests generic/227 at 2022-01-12 13:21:09 >>> [ 6039.755092] run fstests generic/228 at 2022-01-12 13:21:10 >>> [ 6040.281881] Unsafe core_pattern used with fs.suid_dumpable=2. >>> Pipe handler or fully qualified core dump path required. >>> Set kernel.core_pattern before fs.suid_dumpable. >>> [ 6040.553574] run fstests generic/229 at 2022-01-12 13:21:11 >>> [ 6041.551145] run fstests generic/230 at 2022-01-12 13:21:12 >>> [ 6042.058550] run fstests generic/231 at 2022-01-12 13:21:13 >>> [ 6042.559297] run fstests generic/232 at 2022-01-12 13:21:13 >>> [ 6043.063531] run fstests generic/233 at 2022-01-12 13:21:14 >>> [ 6043.572898] run fstests generic/234 at 2022-01-12 13:21:14 >>> [ 6044.083619] run fstests generic/235 at 2022-01-12 13:21:15 >>> [ 6044.595386] run fstests generic/236 at 2022-01-12 13:21:15 >>> [ 6046.330897] run fstests generic/237 at 2022-01-12 13:21:17 >>> [ 6046.995456] run fstests generic/238 at 2022-01-12 13:21:18 >>> [ 6048.062920] run fstests generic/239 at 2022-01-12 13:21:19 >>> [ 6079.167087] run fstests generic/240 at 2022-01-12 13:21:50 >>> [ 6080.262050] run fstests generic/241 at 2022-01-12 13:21:51 >>> [ 6080.777265] run fstests generic/242 at 2022-01-12 13:21:51 >>> [ 6165.131825] run fstests generic/243 at 2022-01-12 13:23:16 >>> [ 6246.858636] run fstests generic/244 at 2022-01-12 13:24:38 >>> [ 6247.538623] run fstests generic/245 at 2022-01-12 13:24:38 >>> [ 6248.262918] run fstests generic/246 at 2022-01-12 13:24:39 >>> [ 6248.891286] run fstests generic/247 at 2022-01-12 13:24:40 >>> [ 6330.034484] run fstests generic/248 at 2022-01-12 13:26:01 >>> [ 6330.856382] run fstests generic/249 at 2022-01-12 13:26:02 >>> [ 6334.074505] run fstests generic/250 at 2022-01-12 13:26:05 >>> [ 6334.909446] run fstests generic/252 at 2022-01-12 13:26:06 >>> [ 6335.473954] run fstests generic/253 at 2022-01-12 13:26:06 >>> [ 6337.650997] run fstests generic/254 at 2022-01-12 13:26:08 >>> [ 6340.130137] run fstests generic/255 at 2022-01-12 13:26:11 >>> [ 6341.103237] run fstests generic/256 at 2022-01-12 13:26:12 >>> [ 6341.796869] run fstests generic/257 at 2022-01-12 13:26:12 >>> [ 6345.943041] run fstests generic/258 at 2022-01-12 13:26:17 >>> [ 6346.813066] run fstests generic/259 at 2022-01-12 13:26:18 >>> [ 6347.896367] run fstests generic/260 at 2022-01-12 13:26:19 >>> [ 6348.746022] run fstests generic/261 at 2022-01-12 13:26:19 >>> [ 6349.851327] run fstests generic/262 at 2022-01-12 13:26:21 >>> [ 6350.974652] run fstests generic/264 at 2022-01-12 13:26:22 >>> [ 6352.017430] run fstests generic/265 at 2022-01-12 13:26:23 >>> [ 6353.016731] run fstests generic/266 at 2022-01-12 13:26:24 >>> [ 6353.983465] run fstests generic/267 at 2022-01-12 13:26:25 >>> [ 6354.953896] run fstests generic/268 at 2022-01-12 13:26:26 >>> [ 6355.951768] run fstests generic/269 at 2022-01-12 13:26:27 >>> [ 6356.458572] run fstests generic/270 at 2022-01-12 13:26:27 >>> [ 6356.938338] run fstests generic/271 at 2022-01-12 13:26:28 >>> [ 6357.892032] run fstests generic/272 at 2022-01-12 13:26:29 >>> [ 6358.849363] run fstests generic/273 at 2022-01-12 13:26:30 >>> [ 6359.360457] run fstests generic/274 at 2022-01-12 13:26:30 >>> [ 6359.918582] run fstests generic/275 at 2022-01-12 13:26:31 >>> [ 6360.433874] run fstests generic/276 at 2022-01-12 13:26:31 >>> [ 6361.462929] run fstests generic/278 at 2022-01-12 13:26:32 >>> [ 6362.446136] run fstests generic/279 at 2022-01-12 13:26:33 >>> [ 6363.428985] run fstests generic/280 at 2022-01-12 13:26:34 >>> [ 6363.934111] run fstests generic/281 at 2022-01-12 13:26:35 >>> [ 6364.932675] run fstests generic/282 at 2022-01-12 13:26:36 >>> [ 6365.931183] run fstests generic/283 at 2022-01-12 13:26:37 >>> [ 6366.950101] run fstests generic/284 at 2022-01-12 13:26:38 >>> [ 6370.483205] run fstests generic/285 at 2022-01-12 13:26:41 >>> [ 6372.532605] run fstests generic/286 at 2022-01-12 13:26:43 >>> [ 6391.552588] run fstests generic/287 at 2022-01-12 13:27:02 >>> [ 6395.221066] run fstests generic/288 at 2022-01-12 13:27:06 >>> [ 6396.199239] run fstests generic/289 at 2022-01-12 13:27:07 >>> [ 6401.494200] run fstests generic/290 at 2022-01-12 13:27:12 >>> [ 6406.705872] run fstests generic/291 at 2022-01-12 13:27:17 >>> [ 6411.919310] run fstests generic/292 at 2022-01-12 13:27:23 >>> [ 6417.313613] run fstests generic/293 at 2022-01-12 13:27:28 >>> [ 6424.177254] run fstests generic/295 at 2022-01-12 13:27:35 >>> [ 6430.984886] run fstests generic/296 at 2022-01-12 13:27:42 >>> [ 6434.891933] run fstests generic/297 at 2022-01-12 13:27:46 >>> [ 6435.979562] run fstests generic/298 at 2022-01-12 13:27:47 >>> [ 6436.941076] run fstests generic/299 at 2022-01-12 13:27:48 >>> [ 6437.539615] run fstests generic/300 at 2022-01-12 13:27:48 >>> [ 6438.104575] run fstests generic/301 at 2022-01-12 13:27:49 >>> [ 6439.145713] run fstests generic/302 at 2022-01-12 13:27:50 >>> [ 6440.109454] run fstests generic/303 at 2022-01-12 13:27:51 >>> [ 6441.507025] run fstests generic/304 at 2022-01-12 13:27:52 >>> [ 6442.163632] run fstests generic/305 at 2022-01-12 13:27:53 >>> [ 6443.161513] run fstests generic/306 at 2022-01-12 13:27:54 >>> [ 6444.462375] run fstests generic/307 at 2022-01-12 13:27:55 >>> [ 6445.026925] run fstests generic/308 at 2022-01-12 13:27:56 >>> [ 6445.694065] run fstests generic/309 at 2022-01-12 13:27:56 >>> [ 6447.429347] run fstests generic/311 at 2022-01-12 13:27:58 >>> [ 6448.065661] run fstests generic/312 at 2022-01-12 13:27:59 >>> [ 6448.641786] run fstests generic/313 at 2022-01-12 13:27:59 >>> [ 6453.330380] run fstests generic/314 at 2022-01-12 13:28:04 >>> [ 6453.869735] run fstests generic/315 at 2022-01-12 13:28:05 >>> [ 6454.432871] run fstests generic/316 at 2022-01-12 13:28:05 >>> [ 6455.179812] run fstests generic/317 at 2022-01-12 13:28:06 >>> [ 6455.744870] run fstests generic/319 at 2022-01-12 13:28:06 >>> [ 6456.295368] run fstests generic/320 at 2022-01-12 13:28:07 >>> [ 6456.823414] run fstests generic/321 at 2022-01-12 13:28:08 >>> [ 6457.398078] run fstests generic/322 at 2022-01-12 13:28:08 >>> [ 6457.986300] run fstests generic/324 at 2022-01-12 13:28:09 >>> [ 6458.486502] run fstests generic/325 at 2022-01-12 13:28:09 >>> [ 6459.043391] run fstests generic/326 at 2022-01-12 13:28:10 >>> [ 6460.040241] run fstests generic/327 at 2022-01-12 13:28:11 >>> [ 6461.054872] run fstests generic/328 at 2022-01-12 13:28:12 >>> [ 6462.066528] run fstests generic/329 at 2022-01-12 13:28:13 >>> [ 6463.065254] run fstests generic/330 at 2022-01-12 13:28:14 >>> [ 6471.961534] run fstests generic/331 at 2022-01-12 13:28:23 >>> [ 6473.162639] run fstests generic/332 at 2022-01-12 13:28:24 >>> [ 6481.558320] run fstests generic/333 at 2022-01-12 13:28:32 >>> [ 6482.970708] run fstests generic/334 at 2022-01-12 13:28:34 >>> [ 6483.883159] run fstests generic/335 at 2022-01-12 13:28:35 >>> [ 6484.424615] run fstests generic/336 at 2022-01-12 13:28:35 >>> [ 6485.026317] run fstests generic/337 at 2022-01-12 13:28:36 >>> [ 6486.087022] run fstests generic/338 at 2022-01-12 13:28:37 >>> [ 6486.853279] run fstests generic/340 at 2022-01-12 13:28:38 >>> [ 6529.018625] run fstests generic/341 at 2022-01-12 13:29:20 >>> [ 6529.743485] run fstests generic/342 at 2022-01-12 13:29:20 >>> [ 6530.324586] run fstests generic/343 at 2022-01-12 13:29:21 >>> [ 6530.920079] run fstests generic/344 at 2022-01-12 13:29:22 >>> [ 6615.377472] run fstests generic/345 at 2022-01-12 13:30:46 >>> [ 6699.843608] run fstests generic/346 at 2022-01-12 13:32:11 >>> [ 6738.437542] run fstests generic/347 at 2022-01-12 13:32:49 >>> [ 6739.294108] run fstests generic/348 at 2022-01-12 13:32:50 >>> [ 6739.898344] run fstests generic/352 at 2022-01-12 13:32:51 >>> [ 6741.077399] run fstests generic/353 at 2022-01-12 13:32:52 >>> [ 6742.043936] run fstests generic/354 at 2022-01-12 13:32:53 >>> [ 6762.336256] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success >>> [ 6771.148344] run fstests generic/355 at 2022-01-12 13:33:22 >>> [ 6771.867718] run fstests generic/356 at 2022-01-12 13:33:23 >>> [ 6772.723288] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 6774.212765] Adding 10236k swap on /mnt2/test-356/file1. Priority:-3 extents:1 across:10236k >>> [ 6774.563473] run fstests generic/358 at 2022-01-12 13:33:25 >>> [ 6829.824103] run fstests generic/359 at 2022-01-12 13:34:21 >>> [ 6844.529776] run fstests generic/360 at 2022-01-12 13:34:35 >>> [ 6845.353612] run fstests generic/361 at 2022-01-12 13:34:36 >>> [ 6845.922540] run fstests generic/362 at 2022-01-12 13:34:37 >>> [ 6846.514415] run fstests generic/363 at 2022-01-12 13:34:37 >>> [ 6847.212681] run fstests generic/364 at 2022-01-12 13:34:38 >>> [ 6847.905685] run fstests generic/365 at 2022-01-12 13:34:39 >>> [ 6848.597706] run fstests generic/366 at 2022-01-12 13:34:39 >>> [ 6849.301636] run fstests generic/367 at 2022-01-12 13:34:40 >>> [ 6849.993675] run fstests generic/368 at 2022-01-12 13:34:41 >>> [ 6850.694262] run fstests generic/369 at 2022-01-12 13:34:41 >>> [ 6851.389744] run fstests generic/370 at 2022-01-12 13:34:42 >>> [ 6852.089253] run fstests generic/371 at 2022-01-12 13:34:43 >>> [ 6852.772792] run fstests generic/372 at 2022-01-12 13:34:43 >>> [ 6853.867908] run fstests generic/373 at 2022-01-12 13:34:45 >>> [ 6855.370332] run fstests generic/374 at 2022-01-12 13:34:46 >>> [ 6856.417262] run fstests generic/375 at 2022-01-12 13:34:47 >>> [ 6857.021504] run fstests generic/376 at 2022-01-12 13:34:48 >>> [ 6857.662821] run fstests generic/377 at 2022-01-12 13:34:48 >>> [ 6858.728302] run fstests generic/378 at 2022-01-12 13:34:49 >>> [ 6859.437621] run fstests generic/379 at 2022-01-12 13:34:50 >>> [ 6859.958758] run fstests generic/380 at 2022-01-12 13:34:51 >>> [ 6860.467861] run fstests generic/381 at 2022-01-12 13:34:51 >>> [ 6860.979217] run fstests generic/382 at 2022-01-12 13:34:52 >>> [ 6861.490673] run fstests generic/383 at 2022-01-12 13:34:52 >>> [ 6862.007029] run fstests generic/384 at 2022-01-12 13:34:53 >>> [ 6862.539285] run fstests generic/385 at 2022-01-12 13:34:53 >>> [ 6863.056895] run fstests generic/386 at 2022-01-12 13:34:54 >>> [ 6863.540959] run fstests generic/387 at 2022-01-12 13:34:54 >>> [ 6864.451640] run fstests generic/388 at 2022-01-12 13:34:55 >>> [ 6865.020938] run fstests generic/389 at 2022-01-12 13:34:56 >>> [ 6865.578808] run fstests generic/390 at 2022-01-12 13:34:56 >>> [ 6866.159617] run fstests generic/391 at 2022-01-12 13:34:57 >>> [ 6886.115735] 391 (267517): drop_caches: 3 >>> [ 6889.286981] run fstests generic/392 at 2022-01-12 13:35:20 >>> [ 6891.203337] run fstests generic/393 at 2022-01-12 13:35:22 >>> [ 6893.177969] run fstests generic/394 at 2022-01-12 13:35:24 >>> [ 6894.586568] run fstests generic/395 at 2022-01-12 13:35:25 >>> [ 6895.341072] run fstests generic/396 at 2022-01-12 13:35:26 >>> [ 6896.026789] run fstests generic/397 at 2022-01-12 13:35:27 >>> [ 6896.798172] run fstests generic/398 at 2022-01-12 13:35:27 >>> [ 6897.556444] run fstests generic/399 at 2022-01-12 13:35:28 >>> [ 6898.303641] run fstests generic/400 at 2022-01-12 13:35:29 >>> [ 6898.815244] run fstests generic/401 at 2022-01-12 13:35:30 >>> [ 6899.937180] run fstests generic/402 at 2022-01-12 13:35:31 >>> [ 6901.017461] run fstests generic/404 at 2022-01-12 13:35:32 >>> [ 6901.789100] run fstests generic/405 at 2022-01-12 13:35:32 >>> [ 6902.645105] run fstests generic/406 at 2022-01-12 13:35:33 >>> [ 6910.841871] run fstests generic/407 at 2022-01-12 13:35:42 >>> [ 6912.903774] run fstests generic/408 at 2022-01-12 13:35:44 >>> [ 6913.608890] run fstests generic/409 at 2022-01-12 13:35:44 >>> [ 6914.156131] run fstests generic/410 at 2022-01-12 13:35:45 >>> [ 6914.704550] run fstests generic/411 at 2022-01-12 13:35:45 >>> [ 6915.251230] run fstests generic/412 at 2022-01-12 13:35:46 >>> [ 6916.526789] run fstests generic/413 at 2022-01-12 13:35:47 >>> [ 6917.304149] nfs: Unknown parameter 'dax' >>> [ 6917.410347] run fstests generic/414 at 2022-01-12 13:35:48 >>> [ 6918.634861] run fstests generic/415 at 2022-01-12 13:35:49 >>> [ 6933.976957] run fstests generic/416 at 2022-01-12 13:36:05 >>> [ 6934.691603] run fstests generic/417 at 2022-01-12 13:36:05 >>> [ 6935.629054] run fstests generic/418 at 2022-01-12 13:36:06 >>> [ 6936.242138] run fstests generic/419 at 2022-01-12 13:36:07 >>> [ 6937.045544] run fstests generic/420 at 2022-01-12 13:36:08 >>> [ 6937.839373] run fstests generic/421 at 2022-01-12 13:36:09 >>> [ 6938.636575] run fstests generic/424 at 2022-01-12 13:36:09 >>> [ 6939.351034] run fstests generic/427 at 2022-01-12 13:36:10 >>> [ 6939.996982] run fstests generic/428 at 2022-01-12 13:36:11 >>> [ 6940.637416] run fstests generic/429 at 2022-01-12 13:36:11 >>> [ 6941.362410] run fstests generic/430 at 2022-01-12 13:36:12 >>> [ 6942.506724] run fstests generic/431 at 2022-01-12 13:36:13 >>> [ 6943.556512] run fstests generic/432 at 2022-01-12 13:36:14 >>> [ 6944.645630] run fstests generic/433 at 2022-01-12 13:36:15 >>> [ 6945.677486] run fstests generic/435 at 2022-01-12 13:36:16 >>> [ 6946.409026] run fstests generic/436 at 2022-01-12 13:36:17 >>> [ 6947.992848] run fstests generic/437 at 2022-01-12 13:36:19 >>> [ 6968.653759] run fstests generic/439 at 2022-01-12 13:36:39 >>> [ 6970.194179] run fstests generic/440 at 2022-01-12 13:36:41 >>> [ 6970.921973] run fstests generic/441 at 2022-01-12 13:36:42 >>> [ 6971.489914] run fstests generic/443 at 2022-01-12 13:36:42 >>> [ 6972.110321] run fstests generic/444 at 2022-01-12 13:36:43 >>> [ 6972.734069] run fstests generic/445 at 2022-01-12 13:36:43 >>> [ 6974.220817] run fstests generic/447 at 2022-01-12 13:36:45 >>> [ 6975.531450] run fstests generic/448 at 2022-01-12 13:36:46 >>> [ 6976.914815] run fstests generic/449 at 2022-01-12 13:36:48 >>> [ 6977.512944] run fstests generic/450 at 2022-01-12 13:36:48 >>> [ 6978.444175] run fstests generic/451 at 2022-01-12 13:36:49 >>> [ 7009.200274] run fstests generic/452 at 2022-01-12 13:37:20 >>> [ 7010.248330] run fstests generic/453 at 2022-01-12 13:37:21 >>> [ 7012.836935] run fstests generic/454 at 2022-01-12 13:37:24 >>> [ 7015.394697] run fstests generic/455 at 2022-01-12 13:37:26 >>> [ 7016.318699] run fstests generic/456 at 2022-01-12 13:37:27 >>> [ 7016.892196] run fstests generic/457 at 2022-01-12 13:37:28 >>> [ 7018.100645] run fstests generic/458 at 2022-01-12 13:37:29 >>> [ 7019.153106] run fstests generic/459 at 2022-01-12 13:37:30 >>> [ 7020.261614] run fstests generic/460 at 2022-01-12 13:37:31 >>> [ 7057.684200] run fstests generic/461 at 2022-01-12 13:38:08 >>> [ 7058.928713] run fstests generic/462 at 2022-01-12 13:38:10 >>> [ 7059.578267] nfs: Unknown parameter 'dax' >>> [ 7059.685070] run fstests generic/463 at 2022-01-12 13:38:10 >>> [ 7060.682186] run fstests generic/464 at 2022-01-12 13:38:11 >>> [ 7133.376125] run fstests generic/466 at 2022-01-12 13:39:24 >>> [ 7134.033001] run fstests generic/467 at 2022-01-12 13:39:25 >>> [ 7134.958056] sh (300657): drop_caches: 3 >>> [ 7135.273575] sh (300664): drop_caches: 3 >>> [ 7135.779078] sh (300671): drop_caches: 3 >>> [ 7136.171387] sh (300678): drop_caches: 3 >>> [ 7136.372701] sh (300683): drop_caches: 3 >>> [ 7136.858710] sh (300690): drop_caches: 3 >>> [ 7137.390146] sh (300699): drop_caches: 3 >>> [ 7137.986292] sh (300709): drop_caches: 3 >>> [ 7138.252495] run fstests generic/468 at 2022-01-12 13:39:29 >>> [ 7140.487581] run fstests generic/470 at 2022-01-12 13:39:31 >>> [ 7141.285153] run fstests generic/471 at 2022-01-12 13:39:32 >>> [ 7141.971971] run fstests generic/472 at 2022-01-12 13:39:33 >>> [ 7142.757677] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7143.294807] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k >>> [ 7143.500315] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k >>> [ 7143.621722] Adding 8k swap on /mnt2/swap. Priority:-3 extents:1 across:8k >>> [ 7144.046333] run fstests generic/474 at 2022-01-12 13:39:35 >>> [ 7144.988579] run fstests generic/475 at 2022-01-12 13:39:36 >>> [ 7145.710624] run fstests generic/477 at 2022-01-12 13:39:36 >>> [ 7146.845233] sh (302346): drop_caches: 3 >>> [ 7147.640367] sh (302387): drop_caches: 3 >>> [ 7148.536961] sh (302428): drop_caches: 3 >>> [ 7149.466709] sh (302470): drop_caches: 3 >>> [ 7149.738194] run fstests generic/479 at 2022-01-12 13:39:40 >>> [ 7150.443204] run fstests generic/480 at 2022-01-12 13:39:41 >>> [ 7151.048938] run fstests generic/481 at 2022-01-12 13:39:42 >>> [ 7151.619524] run fstests generic/482 at 2022-01-12 13:39:42 >>> [ 7152.348315] run fstests generic/483 at 2022-01-12 13:39:43 >>> [ 7153.020108] run fstests generic/487 at 2022-01-12 13:39:44 >>> [ 7153.578129] run fstests generic/488 at 2022-01-12 13:39:44 >>> [ 7154.092708] run fstests generic/489 at 2022-01-12 13:39:45 >>> [ 7154.645766] run fstests generic/490 at 2022-01-12 13:39:45 >>> [ 7156.152532] run fstests generic/492 at 2022-01-12 13:39:47 >>> [ 7156.687978] run fstests generic/493 at 2022-01-12 13:39:47 >>> [ 7157.440775] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7158.071570] run fstests generic/494 at 2022-01-12 13:39:49 >>> [ 7158.945655] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7159.987483] Adding 10236k swap on /mnt2/test-494/file1. Priority:-3 extents:1 across:10236k >>> [ 7160.426306] run fstests generic/495 at 2022-01-12 13:39:51 >>> [ 7161.398950] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7161.828770] swap activate: swapfile has holes >>> [ 7161.924587] Empty swap-file >>> [ 7162.186835] run fstests generic/496 at 2022-01-12 13:39:53 >>> [ 7163.145304] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7163.664228] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k >>> [ 7169.433211] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k >>> [ 7169.727608] run fstests generic/497 at 2022-01-12 13:40:00 >>> [ 7170.735141] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7171.069079] run fstests generic/498 at 2022-01-12 13:40:02 >>> [ 7171.732186] run fstests generic/500 at 2022-01-12 13:40:02 >>> [ 7172.402636] run fstests generic/501 at 2022-01-12 13:40:03 >>> [ 7173.367894] run fstests generic/502 at 2022-01-12 13:40:04 >>> [ 7174.036468] run fstests generic/504 at 2022-01-12 13:40:05 >>> [ 7174.679080] run fstests generic/505 at 2022-01-12 13:40:05 >>> [ 7175.476364] run fstests generic/506 at 2022-01-12 13:40:06 >>> [ 7176.336327] run fstests generic/507 at 2022-01-12 13:40:07 >>> [ 7176.906752] run fstests generic/508 at 2022-01-12 13:40:08 >>> [ 7177.443466] run fstests generic/509 at 2022-01-12 13:40:08 >>> [ 7178.113899] run fstests generic/510 at 2022-01-12 13:40:09 >>> [ 7178.665874] run fstests generic/511 at 2022-01-12 13:40:09 >>> [ 7179.212399] run fstests generic/512 at 2022-01-12 13:40:10 >>> [ 7179.863716] run fstests generic/514 at 2022-01-12 13:40:11 >>> [ 7180.815618] run fstests generic/515 at 2022-01-12 13:40:12 >>> [ 7181.850294] run fstests generic/516 at 2022-01-12 13:40:13 >>> [ 7182.497964] run fstests generic/517 at 2022-01-12 13:40:13 >>> [ 7183.397705] run fstests generic/518 at 2022-01-12 13:40:14 >>> [ 7185.260858] run fstests generic/520 at 2022-01-12 13:40:16 >>> [ 7185.995518] run fstests generic/523 at 2022-01-12 13:40:17 >>> [ 7187.015108] run fstests generic/524 at 2022-01-12 13:40:18 >>> [ 7214.588812] run fstests generic/525 at 2022-01-12 13:40:45 >>> [ 7215.945729] run fstests generic/526 at 2022-01-12 13:40:47 >>> [ 7216.731432] run fstests generic/527 at 2022-01-12 13:40:47 >>> [ 7217.332036] run fstests generic/528 at 2022-01-12 13:40:48 >>> [ 7217.928387] run fstests generic/529 at 2022-01-12 13:40:49 >>> [ 7218.474947] run fstests generic/530 at 2022-01-12 13:40:49 >>> [ 7219.289577] run fstests generic/532 at 2022-01-12 13:40:50 >>> [ 7219.984287] run fstests generic/533 at 2022-01-12 13:40:51 >>> [ 7221.588573] run fstests generic/534 at 2022-01-12 13:40:52 >>> [ 7222.205596] run fstests generic/535 at 2022-01-12 13:40:53 >>> [ 7222.829546] run fstests generic/536 at 2022-01-12 13:40:54 >>> [ 7223.590202] run fstests generic/537 at 2022-01-12 13:40:54 >>> [ 7224.466640] run fstests generic/538 at 2022-01-12 13:40:55 >>> [ 7250.048839] run fstests generic/539 at 2022-01-12 13:41:21 >>> [ 7251.550550] run fstests generic/540 at 2022-01-12 13:41:22 >>> [ 7257.243669] run fstests generic/541 at 2022-01-12 13:41:28 >>> [ 7263.478824] run fstests generic/542 at 2022-01-12 13:41:34 >>> [ 7269.624181] run fstests generic/543 at 2022-01-12 13:41:40 >>> [ 7275.817103] run fstests generic/544 at 2022-01-12 13:41:47 >>> [ 7282.092977] run fstests generic/545 at 2022-01-12 13:41:53 >>> [ 7282.904252] run fstests generic/546 at 2022-01-12 13:41:54 >>> [ 7283.957773] run fstests generic/547 at 2022-01-12 13:41:55 >>> [ 7284.580048] run fstests generic/548 at 2022-01-12 13:41:55 >>> [ 7285.326032] run fstests generic/549 at 2022-01-12 13:41:56 >>> [ 7286.075114] run fstests generic/550 at 2022-01-12 13:41:57 >>> [ 7286.842980] run fstests generic/552 at 2022-01-12 13:41:58 >>> [ 7287.485856] run fstests generic/553 at 2022-01-12 13:41:58 >>> [ 7288.214457] run fstests generic/554 at 2022-01-12 13:41:59 >>> [ 7289.123966] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7290.370393] Adding 16380k swap on /mnt2/swapfile. Priority:-3 extents:1 across:16380k >>> [ 7290.687659] run fstests generic/555 at 2022-01-12 13:42:01 >>> [ 7291.521126] run fstests generic/556 at 2022-01-12 13:42:02 >>> [ 7292.049123] run fstests generic/557 at 2022-01-12 13:42:03 >>> [ 7292.594633] run fstests generic/558 at 2022-01-12 13:42:03 >>> [ 7293.116986] run fstests generic/559 at 2022-01-12 13:42:04 >>> [ 7293.625068] run fstests generic/560 at 2022-01-12 13:42:04 >>> [ 7294.150767] run fstests generic/561 at 2022-01-12 13:42:05 >>> [ 7294.672595] run fstests generic/562 at 2022-01-12 13:42:05 >>> [ 7295.755050] run fstests generic/563 at 2022-01-12 13:42:06 >>> [ 7296.284954] run fstests generic/564 at 2022-01-12 13:42:07 >>> [ 7297.286052] loop0: detected capacity change from 0 to 256 >>> [ 7298.231618] run fstests generic/566 at 2022-01-12 13:42:09 >>> [ 7298.730755] run fstests generic/567 at 2022-01-12 13:42:09 >>> [ 7300.222707] run fstests generic/568 at 2022-01-12 13:42:11 >>> [ 7301.134560] run fstests generic/569 at 2022-01-12 13:42:12 >>> [ 7302.142643] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k >>> [ 7303.448133] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k >>> [ 7303.452275] NFS: attempt to write to active swap file! >>> [ 7303.487542] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k >>> [ 7303.530750] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k >>> [ 7303.587615] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k >>> [ 7303.629119] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k >>> [ 7303.646860] NFS: attempt to write to active swap file! >>> [ 7303.979451] run fstests generic/570 at 2022-01-12 13:42:15 >>> [ 7304.692420] run fstests generic/572 at 2022-01-12 13:42:15 >>> [ 7305.210036] run fstests generic/573 at 2022-01-12 13:42:16 >>> [ 7305.731408] run fstests generic/574 at 2022-01-12 13:42:16 >>> [ 7306.245226] run fstests generic/575 at 2022-01-12 13:42:17 >>> [ 7306.755327] run fstests generic/576 at 2022-01-12 13:42:17 >>> [ 7307.415264] run fstests generic/577 at 2022-01-12 13:42:18 >>> [ 7307.966901] run fstests generic/579 at 2022-01-12 13:42:19 >>> [ 7308.532284] run fstests generic/580 at 2022-01-12 13:42:19 >>> [ 7309.267749] run fstests generic/581 at 2022-01-12 13:42:20 >>> [ 7309.916075] run fstests generic/582 at 2022-01-12 13:42:21 >>> [ 7310.643888] run fstests generic/583 at 2022-01-12 13:42:21 >>> [ 7311.371543] run fstests generic/584 at 2022-01-12 13:42:22 >>> [ 7312.108260] run fstests generic/585 at 2022-01-12 13:42:23 >>> [ 7312.708730] run fstests generic/586 at 2022-01-12 13:42:23 >>> [ 7321.372427] run fstests generic/587 at 2022-01-12 13:42:32 >>> [ 7321.882959] run fstests generic/588 at 2022-01-12 13:42:33 >>> [ 7322.869048] run fstests generic/589 at 2022-01-12 13:42:34 >>> [ 7323.420928] run fstests generic/590 at 2022-01-12 13:42:34 >>> [ 7599.522683] run fstests generic/591 at 2022-01-12 13:47:10 >>> [ 7600.469219] run fstests generic/592 at 2022-01-12 13:47:11 >>> [ 7601.209667] run fstests generic/593 at 2022-01-12 13:47:12 >>> [ 7601.925298] run fstests generic/594 at 2022-01-12 13:47:13 >>> [ 7602.455466] run fstests generic/595 at 2022-01-12 13:47:13 >>> [ 7603.181000] run fstests generic/596 at 2022-01-12 13:47:14 >>> [ 7603.583124] Process accounting resumed >>> [ 7603.780139] run fstests generic/597 at 2022-01-12 13:47:14 >>> [ 7604.359127] run fstests generic/598 at 2022-01-12 13:47:15 >>> [ 7604.907400] run fstests generic/599 at 2022-01-12 13:47:16 >>> [ 7605.710364] run fstests generic/600 at 2022-01-12 13:47:16 >>> [ 7606.295426] run fstests generic/601 at 2022-01-12 13:47:17 >>> [ 7606.813031] run fstests generic/602 at 2022-01-12 13:47:18 >>> [ 7607.566587] run fstests generic/603 at 2022-01-12 13:47:18 >>> [ 7608.093235] run fstests generic/604 at 2022-01-12 13:47:19 >>> [ 7613.505790] run fstests generic/605 at 2022-01-12 13:47:24 >>> [ 7614.268456] nfs: Unknown parameter 'dax' >>> [ 7614.378027] run fstests generic/606 at 2022-01-12 13:47:25 >>> [ 7614.970728] nfs: Unknown parameter 'dax' >>> [ 7615.132524] run fstests generic/608 at 2022-01-12 13:47:26 >>> [ 7615.730417] nfs: Unknown parameter 'dax' >>> [ 7615.838044] run fstests generic/609 at 2022-01-12 13:47:27 >>> [ 7616.725570] run fstests generic/611 at 2022-01-12 13:47:27 >>> [ 7617.915374] run fstests nfs/001 at 2022-01-12 13:47:29 >>> [ 7620.841996] run fstests shared/002 at 2022-01-12 13:47:32 >>> [ 7621.379231] run fstests shared/032 at 2022-01-12 13:47:32 >>> [ 7621.870631] run fstests shared/298 at 2022-01-12 13:47:33 >>> [ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 >>> [ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 >>> [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' >>> [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' >>> [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' >>> [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 >>> [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. >>> [ 0.000000] signal: max sigframe size: 1776 >>> [ 0.000000] BIOS-provided physical RAM map: >>> [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable >>> [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffd7fff] usable >>> [ 0.000000] BIOS-e820: [mem 0x000000007ffd8000-0x000000007fffffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved >>> [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved >>> [ 0.000000] NX (Execute Disable) protection: active >>> [ 0.000000] SMBIOS 2.8 present. >>> [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 >>> [ 0.000000] tsc: Fast TSC calibration using PIT >>> [ 0.000000] tsc: Detected 3591.667 MHz processor >>> [ 0.000880] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved >>> [ 0.000887] e820: remove [mem 0x000a0000-0x000fffff] usable >>> [ 0.000894] last_pfn = 0x7ffd8 max_arch_pfn = 0x400000000 >>> [ 0.000926] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT >>> [ 0.004010] found SMP MP-table at [mem 0x000f5b80-0x000f5b8f] >>> [ 0.004443] RAMDISK: [mem 0x346ce000-0x3635efff] >>> [ 0.004450] ACPI: Early table checksum verification disabled >>> [ 0.004455] ACPI: RSDP 0x00000000000F58F0 000014 (v00 BOCHS ) >>> [ 0.004464] ACPI: RSDT 0x000000007FFE1902 000030 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004473] ACPI: FACP 0x000000007FFE17D6 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004482] ACPI: DSDT 0x000000007FFE0040 001796 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004489] ACPI: FACS 0x000000007FFE0000 000040 >>> [ 0.004494] ACPI: APIC 0x000000007FFE184A 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004501] ACPI: WAET 0x000000007FFE18DA 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) >>> [ 0.004506] ACPI: Reserving FACP table memory at [mem 0x7ffe17d6-0x7ffe1849] >>> [ 0.004510] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe17d5] >>> [ 0.004513] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] >>> [ 0.004515] ACPI: Reserving APIC table memory at [mem 0x7ffe184a-0x7ffe18d9] >>> [ 0.004518] ACPI: Reserving WAET table memory at [mem 0x7ffe18da-0x7ffe1901] >>> [ 0.007926] Zone ranges: >>> [ 0.007934] DMA [mem 0x0000000000001000-0x0000000000ffffff] >>> [ 0.007940] DMA32 [mem 0x0000000001000000-0x000000007ffd7fff] >>> [ 0.007944] Normal empty >>> [ 0.007947] Movable zone start for each node >>> [ 0.007949] Early memory node ranges >>> [ 0.007952] node 0: [mem 0x0000000000001000-0x000000000009efff] >>> [ 0.007955] node 0: [mem 0x0000000000100000-0x000000007ffd7fff] >>> [ 0.007959] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffd7fff] >>> [ 0.007968] On node 0, zone DMA: 1 pages in unavailable ranges >>> [ 0.008031] On node 0, zone DMA: 97 pages in unavailable ranges >>> [ 0.015752] On node 0, zone DMA32: 40 pages in unavailable ranges >>> [ 0.043852] kasan: KernelAddressSanitizer initialized >>> [ 0.044423] ACPI: PM-Timer IO Port: 0x608 >>> [ 0.044432] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) >>> [ 0.044477] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 >>> [ 0.044486] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) >>> [ 0.044490] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) >>> [ 0.044494] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) >>> [ 0.044497] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) >>> [ 0.044500] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) >>> [ 0.044505] ACPI: Using ACPI (MADT) for SMP configuration information >>> [ 0.044508] TSC deadline timer available >>> [ 0.044514] smpboot: Allowing 4 CPUs, 0 hotplug CPUs >>> [ 0.044531] [mem 0x80000000-0xfeffbfff] available for PCI devices >>> [ 0.044536] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns >>> [ 0.059178] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 >>> [ 0.059473] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u524288 >>> [ 0.059481] pcpu-alloc: s231440 r8192 d30704 u524288 alloc=1*2097152 >>> [ 0.059486] pcpu-alloc: [0] 0 1 2 3 >>> [ 0.059518] Built 1 zonelists, mobility grouping on. Total pages: 516824 >>> [ 0.059528] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 >>> [ 0.059605] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. >>> [ 0.059829] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) >>> [ 0.059938] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) >>> [ 0.059987] mem auto-init: stack:off, heap alloc:off, heap free:off >>> [ 0.189829] Memory: 1652304K/2096600K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 444040K reserved, 0K cma-reserved) >>> [ 0.191638] Kernel/User page tables isolation: enabled >>> [ 0.191721] ftrace: allocating 48466 entries in 190 pages >>> [ 0.208382] ftrace: allocated 190 pages with 6 groups >>> [ 0.208563] Dynamic Preempt: full >>> [ 0.208737] Running RCU self tests >>> [ 0.208749] rcu: Preemptible hierarchical RCU implementation. >>> [ 0.208751] rcu: RCU lockdep checking is enabled. >>> [ 0.208754] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. >>> [ 0.208758] Trampoline variant of Tasks RCU enabled. >>> [ 0.208760] Rude variant of Tasks RCU enabled. >>> [ 0.208762] Tracing variant of Tasks RCU enabled. >>> [ 0.208765] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. >>> [ 0.208767] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 >>> [ 0.218069] NR_IRQS: 4352, nr_irqs: 72, preallocated irqs: 16 >>> [ 0.218411] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 >>> [ 0.224704] Console: colour VGA+ 80x25 >>> [ 0.273917] printk: console [ttyS0] enabled >>> [ 0.274215] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar >>> [ 0.274876] ... MAX_LOCKDEP_SUBCLASSES: 8 >>> [ 0.275165] ... MAX_LOCK_DEPTH: 48 >>> [ 0.275459] ... MAX_LOCKDEP_KEYS: 8192 >>> [ 0.275790] ... CLASSHASH_SIZE: 4096 >>> [ 0.276100] ... MAX_LOCKDEP_ENTRIES: 32768 >>> [ 0.276423] ... MAX_LOCKDEP_CHAINS: 65536 >>> [ 0.276742] ... CHAINHASH_SIZE: 32768 >>> [ 0.277061] memory used by lock dependency info: 6365 kB >>> [ 0.277476] memory used for stack traces: 4224 kB >>> [ 0.277830] per task-struct memory footprint: 1920 bytes >>> [ 0.278254] ACPI: Core revision 20210930 >>> [ 0.278762] APIC: Switch to symmetric I/O mode setup >>> [ 0.280353] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c5939df6d, max_idle_ns: 440795297647 ns >>> [ 0.281280] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.33 BogoMIPS (lpj=14366668) >>> [ 0.282204] pid_max: default: 32768 minimum: 301 >>> [ 0.282676] LSM: Security Framework initializing >>> [ 0.283076] SELinux: Initializing. >>> [ 0.283465] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) >>> [ 0.284092] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) >>> [ 0.285279] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 >>> [ 0.285279] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 >>> [ 0.285279] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization >>> [ 0.285279] Spectre V2 : Mitigation: Full generic retpoline >>> [ 0.285279] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch >>> [ 0.285279] Spectre V2 : Enabling Restricted Speculation for firmware calls >>> [ 0.285279] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier >>> [ 0.285279] Speculative Store Bypass: Vulnerable >>> [ 0.285279] SRBDS: Unknown: Dependent on hypervisor status >>> [ 0.285279] MDS: Vulnerable: Clear CPU buffers attempted, no microcode >>> [ 0.285279] Freeing SMP alternatives memory: 44K >>> [ 0.285279] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) >>> [ 0.285279] Running RCU-tasks wait API self tests >>> [ 0.386107] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. >>> [ 0.389599] rcu: Hierarchical SRCU implementation. >>> [ 0.392441] NMI watchdog: Perf NMI watchdog permanently disabled >>> [ 0.393385] Callback from call_rcu_tasks_trace() invoked. >>> [ 0.394170] smp: Bringing up secondary CPUs ... >>> [ 0.396370] x86: Booting SMP configuration: >>> [ 0.396786] .... node #0, CPUs: #1 >>> [ 0.066931] smpboot: CPU 1 Converting physical 0 to logical die 1 >>> [ 0.482790] #2 >>> [ 0.066931] smpboot: CPU 2 Converting physical 0 to logical die 2 >>> [ 0.565821] Callback from call_rcu_tasks_rude() invoked. >>> [ 0.567462] #3 >>> [ 0.066931] smpboot: CPU 3 Converting physical 0 to logical die 3 >>> [ 0.649444] smp: Brought up 1 node, 4 CPUs >>> [ 0.649755] smpboot: Max logical packages: 4 >>> [ 0.650109] smpboot: Total of 4 processors activated (28813.78 BogoMIPS) >>> [ 0.652111] devtmpfs: initialized >>> [ 0.656548] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns >>> [ 0.657296] futex hash table entries: 1024 (order: 5, 131072 bytes, linear) >>> [ 0.659317] NET: Registered PF_NETLINK/PF_ROUTE protocol family >>> [ 0.660716] audit: initializing netlink subsys (disabled) >>> [ 0.661311] audit: type=2000 audit(1642005696.380:1): state=initialized audit_enabled=0 res=1 >>> [ 0.662148] thermal_sys: Registered thermal governor 'step_wise' >>> [ 0.662161] thermal_sys: Registered thermal governor 'user_space' >>> [ 0.662741] cpuidle: using governor ladder >>> [ 0.663957] PCI: Using configuration type 1 for base access >>> [ 0.673336] Callback from call_rcu_tasks() invoked. >>> [ 0.688468] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. >>> [ 0.689933] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages >>> [ 0.690902] cryptd: max_cpu_qlen set to 1000 >>> [ 0.757333] raid6: avx2x4 gen() 34683 MB/s >>> [ 0.825285] raid6: avx2x4 xor() 13341 MB/s >>> [ 0.893285] raid6: avx2x2 gen() 32969 MB/s >>> [ 0.961293] raid6: avx2x2 xor() 18290 MB/s >>> [ 1.029283] raid6: avx2x1 gen() 25495 MB/s >>> [ 1.097283] raid6: avx2x1 xor() 16599 MB/s >>> [ 1.165417] raid6: sse2x4 gen() 18858 MB/s >>> [ 1.233284] raid6: sse2x4 xor() 9882 MB/s >>> [ 1.301284] raid6: sse2x2 gen() 17529 MB/s >>> [ 1.369284] raid6: sse2x2 xor() 10528 MB/s >>> [ 1.437284] raid6: sse2x1 gen() 12868 MB/s >>> [ 1.505284] raid6: sse2x1 xor() 9047 MB/s >>> [ 1.505592] raid6: using algorithm avx2x4 gen() 34683 MB/s >>> [ 1.506016] raid6: .... xor() 13341 MB/s, rmw enabled >>> [ 1.506395] raid6: using avx2x2 recovery algorithm >>> [ 1.507187] ACPI: Added _OSI(Module Device) >>> [ 1.507507] ACPI: Added _OSI(Processor Device) >>> [ 1.507827] ACPI: Added _OSI(3.0 _SCP Extensions) >>> [ 1.508176] ACPI: Added _OSI(Processor Aggregator Device) >>> [ 1.508594] ACPI: Added _OSI(Linux-Dell-Video) >>> [ 1.508918] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) >>> [ 1.509291] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) >>> [ 1.529597] ACPI: 1 ACPI AML tables successfully acquired and loaded >>> [ 1.536937] ACPI: Interpreter enabled >>> [ 1.537121] ACPI: PM: (supports S0 S5) >>> [ 1.537300] ACPI: Using IOAPIC for interrupt routing >>> [ 1.537790] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug >>> [ 1.539878] ACPI: Enabled 2 GPEs in block 00 to 0F >>> [ 1.582821] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) >>> [ 1.583389] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments HPX-Type3] >>> [ 1.584011] acpi PNP0A03:00: PCIe port services disabled; not requesting _OSC control >>> [ 1.584761] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. >>> [ 1.585813] PCI host bridge to bus 0000:00 >>> [ 1.586147] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] >>> [ 1.586722] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] >>> [ 1.587293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] >>> [ 1.587921] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] >>> [ 1.588545] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] >>> [ 1.589183] pci_bus 0000:00: root bus resource [bus 00-ff] >>> [ 1.593451] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 >>> [ 1.604897] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 >>> [ 1.606756] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 >>> [ 1.609820] pci 0000:00:01.1: reg 0x20: [io 0xc2e0-0xc2ef] >>> [ 1.611254] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] >>> [ 1.611843] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] >>> [ 1.612367] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] >>> [ 1.612952] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] >>> [ 1.613748] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 >>> [ 1.614670] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI >>> [ 1.615271] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB >>> [ 1.616279] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 >>> [ 1.618571] pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] >>> [ 1.621026] pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] >>> [ 1.623401] pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] >>> [ 1.625293] pci 0000:00:02.0: reg 0x1c: [io 0xc200-0xc21f] >>> [ 1.632521] pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] >>> [ 1.643746] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 >>> [ 1.645084] pci 0000:00:03.0: reg 0x10: [io 0xc220-0xc23f] >>> [ 1.646115] pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc056fff] >>> [ 1.650262] pci 0000:00:03.0: reg 0x20: [mem 0xfebd4000-0xfebd7fff 64bit pref] >>> [ 1.651726] pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] >>> [ 1.663001] pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 >>> [ 1.663848] pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] >>> [ 1.676622] pci 0000:00:05.0: [8086:2934] type 00 class 0x0c0300 >>> [ 1.678734] pci 0000:00:05.0: reg 0x20: [io 0xc240-0xc25f] >>> [ 1.690560] pci 0000:00:05.1: [8086:2935] type 00 class 0x0c0300 >>> [ 1.692610] pci 0000:00:05.1: reg 0x20: [io 0xc260-0xc27f] >>> [ 1.694089] pci 0000:00:05.2: [8086:2936] type 00 class 0x0c0300 >>> [ 1.696372] pci 0000:00:05.2: reg 0x20: [io 0xc280-0xc29f] >>> [ 1.697989] pci 0000:00:05.7: [8086:293a] type 00 class 0x0c0320 >>> [ 1.698889] pci 0000:00:05.7: reg 0x10: [mem 0xfc057000-0xfc057fff] >>> [ 1.707037] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000 >>> [ 1.708590] pci 0000:00:06.0: reg 0x10: [io 0xc000-0xc03f] >>> [ 1.709714] pci 0000:00:06.0: reg 0x14: [mem 0xfc058000-0xfc058fff] >>> [ 1.712836] pci 0000:00:06.0: reg 0x20: [mem 0xfebd8000-0xfebdbfff 64bit pref] >>> [ 1.726059] pci 0000:00:07.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.727542] pci 0000:00:07.0: reg 0x10: [io 0xc040-0xc07f] >>> [ 1.728892] pci 0000:00:07.0: reg 0x14: [mem 0xfc059000-0xfc059fff] >>> [ 1.731824] pci 0000:00:07.0: reg 0x20: [mem 0xfebdc000-0xfebdffff 64bit pref] >>> [ 1.744361] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 >>> [ 1.745286] pci 0000:00:08.0: reg 0x10: [io 0xc2a0-0xc2bf] >>> [ 1.748005] pci 0000:00:08.0: reg 0x20: [mem 0xfebe0000-0xfebe3fff 64bit pref] >>> [ 1.760699] pci 0000:00:09.0: [1af4:1005] type 00 class 0x00ff00 >>> [ 1.761568] pci 0000:00:09.0: reg 0x10: [io 0xc2c0-0xc2df] >>> [ 1.764291] pci 0000:00:09.0: reg 0x20: [mem 0xfebe4000-0xfebe7fff 64bit pref] >>> [ 1.775904] pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.777237] pci 0000:00:0a.0: reg 0x10: [io 0xc080-0xc0bf] >>> [ 1.778068] pci 0000:00:0a.0: reg 0x14: [mem 0xfc05a000-0xfc05afff] >>> [ 1.781719] pci 0000:00:0a.0: reg 0x20: [mem 0xfebe8000-0xfebebfff 64bit pref] >>> [ 1.794394] pci 0000:00:0b.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.795745] pci 0000:00:0b.0: reg 0x10: [io 0xc0c0-0xc0ff] >>> [ 1.796982] pci 0000:00:0b.0: reg 0x14: [mem 0xfc05b000-0xfc05bfff] >>> [ 1.799779] pci 0000:00:0b.0: reg 0x20: [mem 0xfebec000-0xfebeffff 64bit pref] >>> [ 1.812867] pci 0000:00:0c.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.814289] pci 0000:00:0c.0: reg 0x10: [io 0xc100-0xc13f] >>> [ 1.815517] pci 0000:00:0c.0: reg 0x14: [mem 0xfc05c000-0xfc05cfff] >>> [ 1.818535] pci 0000:00:0c.0: reg 0x20: [mem 0xfebf0000-0xfebf3fff 64bit pref] >>> [ 1.830979] pci 0000:00:0d.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.832321] pci 0000:00:0d.0: reg 0x10: [io 0xc140-0xc17f] >>> [ 1.833286] pci 0000:00:0d.0: reg 0x14: [mem 0xfc05d000-0xfc05dfff] >>> [ 1.836445] pci 0000:00:0d.0: reg 0x20: [mem 0xfebf4000-0xfebf7fff 64bit pref] >>> [ 1.848403] pci 0000:00:0e.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.849691] pci 0000:00:0e.0: reg 0x10: [io 0xc180-0xc1bf] >>> [ 1.850908] pci 0000:00:0e.0: reg 0x14: [mem 0xfc05e000-0xfc05efff] >>> [ 1.853728] pci 0000:00:0e.0: reg 0x20: [mem 0xfebf8000-0xfebfbfff 64bit pref] >>> [ 1.867912] pci 0000:00:0f.0: [1af4:1001] type 00 class 0x010000 >>> [ 1.869286] pci 0000:00:0f.0: reg 0x10: [io 0xc1c0-0xc1ff] >>> [ 1.870507] pci 0000:00:0f.0: reg 0x14: [mem 0xfc05f000-0xfc05ffff] >>> [ 1.873286] pci 0000:00:0f.0: reg 0x20: [mem 0xfebfc000-0xfebfffff 64bit pref] >>> [ 1.886571] pci_bus 0000:00: on NUMA node 0 >>> [ 1.890389] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 >>> [ 1.892145] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 >>> [ 1.893842] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 >>> [ 1.895486] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 >>> [ 1.896509] ACPI: PCI: Interrupt link LNKS configured for IRQ 9 >>> [ 1.904775] pci 0000:00:02.0: vgaarb: setting as boot VGA device >>> [ 1.904775] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none >>> [ 1.904775] pci 0000:00:02.0: vgaarb: bridge control possible >>> [ 1.904775] vgaarb: loaded >>> [ 1.904775] SCSI subsystem initialized >>> [ 1.904775] libata version 3.00 loaded. >>> [ 1.904775] ACPI: bus type USB registered >>> [ 1.905259] usbcore: registered new interface driver usbfs >>> [ 1.909389] usbcore: registered new interface driver hub >>> [ 1.909860] usbcore: registered new device driver usb >>> [ 1.910380] pps_core: LinuxPPS API ver. 1 registered >>> [ 1.910754] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> >>> [ 1.911613] PTP clock support registered >>> [ 1.912179] EDAC MC: Ver: 3.0.0 >>> [ 1.913040] Advanced Linux Sound Architecture Driver Initialized. >>> [ 1.913040] PCI: Using ACPI for IRQ routing >>> [ 1.913040] PCI: pci_cache_line_size set to 64 bytes >>> [ 1.913040] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] >>> [ 1.913040] e820: reserve RAM buffer [mem 0x7ffd8000-0x7fffffff] >>> [ 1.913283] clocksource: Switched to clocksource tsc-early >>> [ 2.100358] VFS: Disk quotas dquot_6.6.0 >>> [ 2.100783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) >>> [ 2.101643] FS-Cache: Loaded >>> [ 2.102237] CacheFiles: Loaded >>> [ 2.102534] pnp: PnP ACPI init >>> [ 2.103635] pnp 00:03: [dma 2] >>> [ 2.106017] pnp: PnP ACPI: found 5 devices >>> [ 2.127076] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns >>> [ 2.127982] NET: Registered PF_INET protocol family >>> [ 2.128550] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) >>> [ 2.130129] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) >>> [ 2.130900] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) >>> [ 2.131794] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) >>> [ 2.132819] TCP: Hash tables configured (established 16384 bind 16384) >>> [ 2.133780] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) >>> [ 2.134414] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) >>> [ 2.135294] NET: Registered PF_UNIX/PF_LOCAL protocol family >>> [ 2.135777] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] >>> [ 2.136308] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] >>> [ 2.136806] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] >>> [ 2.137427] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] >>> [ 2.137992] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] >>> [ 2.138908] pci 0000:00:01.0: PIIX3: Enabling Passive Release >>> [ 2.139376] pci 0000:00:00.0: Limiting direct PCI/PCI transfers >>> [ 2.139854] pci 0000:00:01.0: Activating ISA DMA hang workarounds >>> [ 2.140425] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] >>> [ 3.202115] ACPI: \_SB_.LNKA: Enabled at IRQ 10 >>> [ 4.239171] pci 0000:00:05.0: quirk_usb_early_handoff+0x0/0xa70 took 2048819 usecs >>> [ 5.300725] ACPI: \_SB_.LNKB: Enabled at IRQ 11 >>> [ 6.347387] pci 0000:00:05.1: quirk_usb_early_handoff+0x0/0xa70 took 2058145 usecs >>> [ 7.421229] ACPI: \_SB_.LNKC: Enabled at IRQ 11 >>> [ 8.471039] pci 0000:00:05.2: quirk_usb_early_handoff+0x0/0xa70 took 2073223 usecs >>> [ 9.544718] ACPI: \_SB_.LNKD: Enabled at IRQ 10 >>> [ 10.599331] pci 0000:00:05.7: quirk_usb_early_handoff+0x0/0xa70 took 2077756 usecs >>> [ 10.600123] PCI: CLS 0 bytes, default 64 >>> [ 10.601188] Trying to unpack rootfs image as initramfs... >>> [ 10.604786] Initialise system trusted keyrings >>> [ 10.605377] workingset: timestamp_bits=62 max_order=19 bucket_order=0 >>> [ 10.607827] DLM installed >>> [ 10.610089] Key type cifs.idmap registered >>> [ 10.610742] fuse: init (API version 7.35) >>> [ 10.611401] SGI XFS with ACLs, security attributes, no debug enabled >>> [ 10.612942] ocfs2: Registered cluster interface o2cb >>> [ 10.613684] ocfs2: Registered cluster interface user >>> [ 10.614265] OCFS2 User DLM kernel interface loaded >>> [ 10.617912] gfs2: GFS2 installed >>> [ 10.626466] xor: automatically using best checksumming function avx >>> [ 10.627049] Key type asymmetric registered >>> [ 10.627348] Asymmetric key parser 'x509' registered >>> [ 10.627936] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) >>> [ 10.628640] io scheduler mq-deadline registered >>> [ 10.628991] io scheduler kyber registered >>> [ 10.629268] test_string_helpers: Running tests... >>> [ 10.646349] cryptomgr_test (94) used greatest stack depth: 30192 bytes left >>> [ 10.647783] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 >>> [ 10.649320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 >>> [ 10.661911] ACPI: button: Power Button [PWRF] >>> [ 11.308291] Freeing initrd memory: 29252K >>> [ 11.309219] kworker/u8:1 (116) used greatest stack depth: 28384 bytes left >>> [ 11.613446] tsc: Refined TSC clocksource calibration: 3591.600 MHz >>> [ 11.614007] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55424d7b, max_idle_ns: 440795215499 ns >>> [ 11.615017] clocksource: Switched to clocksource tsc >>> [ 24.416686] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled >>> [ 24.417569] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A >>> [ 24.421615] Non-volatile memory driver v1.3 >>> [ 24.421936] Linux agpgart interface v0.103 >>> [ 24.423208] ACPI: bus type drm_connector registered >>> [ 24.444467] brd: module loaded >>> [ 24.457220] loop: module loaded >>> [ 24.458122] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 GB/8.00 GiB) >>> [ 24.462053] vda: vda1 vda2 >>> [ 24.465619] virtio_blk virtio5: [vdb] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) >>> [ 24.469543] virtio_blk virtio6: [vdc] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) >>> [ 24.473451] virtio_blk virtio7: [vdd] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) >>> [ 24.477416] virtio_blk virtio8: [vde] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) >>> [ 24.481188] virtio_blk virtio9: [vdf] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) >>> [ 24.484978] virtio_blk virtio10: [vdg] 20971520 512-byte logical blocks (10.7 GB/10.0 GiB) >>> [ 24.488125] vdg: >>> [ 24.489758] zram: Added device: zram0 >>> [ 24.492368] ata_piix 0000:00:01.1: version 2.13 >>> [ 24.496603] scsi host0: ata_piix >>> [ 24.498008] scsi host1: ata_piix >>> [ 24.498675] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc2e0 irq 14 >>> [ 24.499256] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc2e8 irq 15 >>> [ 24.501218] tun: Universal TUN/TAP device driver, 1.6 >>> [ 24.504829] e1000: Intel(R) PRO/1000 Network Driver >>> [ 24.505219] e1000: Copyright (c) 1999-2006 Intel Corporation. >>> [ 24.505862] e1000e: Intel(R) PRO/1000 Network Driver >>> [ 24.506254] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. >>> [ 24.507072] PPP generic driver version 2.4.2 >>> [ 24.509436] aoe: AoE v85 initialised. >>> [ 24.510102] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver >>> [ 24.510679] ehci-pci: EHCI PCI platform driver >>> [ 24.657958] ata1.01: NODEV after polling detection >>> [ 24.658233] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 >>> [ 24.660230] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 >>> [ 24.714138] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray >>> [ 24.714722] cdrom: Uniform CD-ROM driver Revision: 3.20 >>> [ 24.749225] sr 0:0:0:0: Attached scsi CD-ROM sr0 >>> [ 24.750199] sr 0:0:0:0: Attached scsi generic sg0 type 5 >>> [ 25.753762] ehci-pci 0000:00:05.7: EHCI Host Controller >>> [ 25.755008] ehci-pci 0000:00:05.7: new USB bus registered, assigned bus number 1 >>> [ 25.755944] ehci-pci 0000:00:05.7: irq 10, io mem 0xfc057000 >>> [ 25.769490] ehci-pci 0000:00:05.7: USB 2.0 started, EHCI 1.00 >>> [ 25.773616] hub 1-0:1.0: USB hub found >>> [ 25.774306] hub 1-0:1.0: 6 ports detected >>> [ 25.779054] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver >>> [ 25.779761] ohci-pci: OHCI PCI platform driver >>> [ 25.780223] uhci_hcd: USB Universal Host Controller Interface driver >>> [ 26.041366] usb 1-1: new high-speed USB device number 2 using ehci-pci >>> [ 27.054250] uhci_hcd 0000:00:05.0: UHCI Host Controller >>> [ 27.055419] uhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 2 >>> [ 27.056446] uhci_hcd 0000:00:05.0: irq 10, io port 0x0000c240 >>> [ 27.058858] hub 2-0:1.0: USB hub found >>> [ 27.059323] hub 2-0:1.0: 2 ports detected >>> [ 28.319755] uhci_hcd 0000:00:05.1: UHCI Host Controller >>> [ 28.320738] uhci_hcd 0000:00:05.1: new USB bus registered, assigned bus number 3 >>> [ 28.321673] uhci_hcd 0000:00:05.1: irq 11, io port 0x0000c260 >>> [ 28.323716] hub 3-0:1.0: USB hub found >>> [ 28.324067] hub 3-0:1.0: 2 ports detected >>> [ 29.592163] uhci_hcd 0000:00:05.2: UHCI Host Controller >>> [ 29.593127] uhci_hcd 0000:00:05.2: new USB bus registered, assigned bus number 4 >>> [ 29.594072] uhci_hcd 0000:00:05.2: irq 11, io port 0x0000c280 >>> [ 29.596130] hub 4-0:1.0: USB hub found >>> [ 29.596496] hub 4-0:1.0: 2 ports detected >>> [ 29.598855] usbcore: registered new interface driver usblp >>> [ 29.599462] usbcore: registered new interface driver usb-storage >>> [ 29.600541] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 >>> [ 29.602527] serio: i8042 KBD port at 0x60,0x64 irq 1 >>> [ 29.603702] serio: i8042 AUX port at 0x60,0x64 irq 12 >>> [ 29.605764] mousedev: PS/2 mouse device common for all mice >>> [ 29.607846] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 >>> [ 29.609776] input: PC Speaker as /devices/platform/pcspkr/input/input3 >>> [ 29.611498] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. >>> [ 29.613021] device-mapper: uevent: version 1.0.3 >>> [ 29.614146] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com >>> [ 29.615545] device-mapper: multipath round-robin: version 1.2.0 loaded >>> [ 29.616195] intel_pstate: CPU model not supported >>> [ 29.627242] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.7/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 >>> [ 29.629270] hid-generic 0003:0627:0001.0001: input: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.7-1/input0 >>> [ 29.631016] usbcore: registered new interface driver usbhid >>> [ 29.631500] usbhid: USB HID core driver >>> [ 29.640019] netem: version 1.3 >>> [ 29.640848] NET: Registered PF_INET6 protocol family >>> [ 29.643109] Segment Routing with IPv6 >>> [ 29.643405] In-situ OAM (IOAM) with IPv6 >>> [ 29.643760] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver >>> [ 29.645948] NET: Registered PF_PACKET protocol family >>> [ 29.646371] NET: Registered PF_KEY protocol family >>> [ 29.646805] sctp: Hash tables configured (bind 32/56) >>> [ 29.647357] Key type dns_resolver registered >>> [ 29.649453] IPI shorthand broadcast: enabled >>> [ 29.649838] AVX2 version of gcm_enc/dec engaged. >>> [ 29.650351] AES CTR mode by8 optimization enabled >>> [ 29.651971] sched_clock: Marking stable (29586356484, 62931318)->(29723854493, -74566691) >>> [ 29.654238] Loading compiled-in X.509 certificates >>> [ 29.655218] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers >>> [ 29.657030] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no >>> [ 29.659515] ima: No TPM chip found, activating TPM-bypass! >>> [ 29.660173] ima: Allocated hash algorithm: sha1 >>> [ 29.660593] ima: No architecture policies found >>> [ 29.673045] ALSA device list: >>> [ 29.673234] #0: Virtual MIDI Card 1 >>> [ 29.682863] Freeing unused kernel image (initmem) memory: 2076K >>> [ 29.717568] Write protecting the kernel read-only data: 61440k >>> [ 29.721990] Freeing unused kernel image (text/rodata gap) memory: 2028K >>> [ 29.724251] Freeing unused kernel image (rodata/data gap) memory: 948K >>> [ 29.727486] Run /init as init process >>> [ 29.727944] with arguments: >>> [ 29.727947] /init >>> [ 29.727951] with environment: >>> [ 29.727954] HOME=/ >>> [ 29.727957] TERM=linux >>> [ 29.727960] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 >>> [ 29.727964] resume=/dev/mapper/fedora-swap >>> [ 29.803093] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) >>> [ 29.806218] systemd[1]: Detected virtualization kvm. >>> [ 29.806681] systemd[1]: Detected architecture x86-64. >>> [ 29.807140] systemd[1]: Running in initial RAM disk. >>> [ 29.809901] systemd[1]: Set hostname to <test1.fieldses.org>. >>> [ 29.885369] systemd-hiberna (1054) used greatest stack depth: 28256 bytes left >>> [ 29.979654] dracut-rootfs-g (1047) used greatest stack depth: 28216 bytes left >>> [ 30.021117] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. >>> [ 30.044537] systemd[1]: Queued start job for default target Initrd Default Target. >>> [ 30.047340] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. >>> [ 30.050175] systemd[1]: Reached target Slices. >>> [ 30.051386] systemd[1]: Reached target Swap. >>> [ 30.052613] systemd[1]: Reached target Timers. >>> [ 30.054515] systemd[1]: Listening on Journal Audit Socket. >>> [ 30.056550] systemd[1]: Listening on Journal Socket (/dev/log). >>> [ 30.058686] systemd[1]: Listening on Journal Socket. >>> [ 30.060760] systemd[1]: Listening on udev Control Socket. >>> [ 30.063831] systemd[1]: Listening on udev Kernel Socket. >>> [ 30.065248] systemd[1]: Reached target Sockets. >>> [ 30.066604] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. >>> [ 30.071265] systemd[1]: Started Memstrack Anylazing Service. >>> [ 30.077532] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. >>> [ 30.079586] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. >>> [ 30.080901] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) >>> [ 30.085726] systemd[1]: Starting Journal Service... >>> [ 30.087684] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. >>> [ 30.089551] random: rngd: uninitialized urandom read (16 bytes read) >>> [ 30.092470] systemd[1]: Starting Apply Kernel Variables... >>> [ 30.098065] systemd[1]: Starting Create Static Device Nodes in /dev... >>> [ 30.117909] systemd[1]: Starting Setup Virtual Console... >>> [ 30.149991] systemd[1]: Finished Create Static Device Nodes in /dev. >>> [ 30.159172] systemd[1]: memstrack.service: Succeeded. >>> [ 30.198818] systemd[1]: Finished Apply Kernel Variables. >>> [ 30.200519] audit: type=1130 audit(1642005725.913:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 30.227486] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 >>> [ 30.460095] systemd[1]: Started Journal Service. >>> [ 30.461750] audit: type=1130 audit(1642005726.177:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 30.803462] audit: type=1130 audit(1642005726.517:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 31.357792] random: crng init done >>> [ 31.748912] dracut-cmdline (1106) used greatest stack depth: 27968 bytes left >>> [ 31.752614] audit: type=1130 audit(1642005727.465:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 32.032836] audit: type=1130 audit(1642005727.745:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 32.157892] audit: type=1130 audit(1642005727.873:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 34.122946] virtio_net virtio0 enp0s3: renamed from eth0 >>> [ 34.168250] kworker/u8:4 (1729) used greatest stack depth: 27536 bytes left >>> [ 34.330444] ata_id (1886) used greatest stack depth: 26656 bytes left >>> [ 34.467966] audit: type=1130 audit(1642005730.181:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 34.581444] audit: type=1130 audit(1642005730.293:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 35.924826] audit: type=1130 audit(1642005731.637:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' >>> [ 35.979064] audit: type=1130 audit(1642005731.693:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 36.080161] audit: type=1130 audit(1642005731.793:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 36.137141] fsck (2468) used greatest stack depth: 26560 bytes left >>> [ 36.142664] audit: type=1130 audit(1642005731.857:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 36.170836] XFS (dm-0): Mounting V5 Filesystem >>> [ 36.314126] XFS (dm-0): Ending clean mount >>> [ 36.383563] mount (2470) used greatest stack depth: 25344 bytes left >>> [ 36.491652] systemd-fstab-g (2483) used greatest stack depth: 25008 bytes left >>> [ 37.102323] audit: type=1130 audit(1642005732.817:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 37.104426] audit: type=1131 audit(1642005732.817:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 37.254915] audit: type=1130 audit(1642005732.969:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 37.290146] audit: type=1131 audit(1642005733.005:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 37.296542] audit: type=1131 audit(1642005733.009:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 37.304265] audit: type=1131 audit(1642005733.017:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 40.558013] SELinux: Permission watch in class filesystem not defined in policy. >>> [ 40.558745] SELinux: Permission watch in class file not defined in policy. >>> [ 40.559313] SELinux: Permission watch_mount in class file not defined in policy. >>> [ 40.559934] SELinux: Permission watch_sb in class file not defined in policy. >>> [ 40.560593] SELinux: Permission watch_with_perm in class file not defined in policy. >>> [ 40.561264] SELinux: Permission watch_reads in class file not defined in policy. >>> [ 40.561928] SELinux: Permission watch in class dir not defined in policy. >>> [ 40.562491] SELinux: Permission watch_mount in class dir not defined in policy. >>> [ 40.563098] SELinux: Permission watch_sb in class dir not defined in policy. >>> [ 40.563684] SELinux: Permission watch_with_perm in class dir not defined in policy. >>> [ 40.564391] SELinux: Permission watch_reads in class dir not defined in policy. >>> [ 40.565023] SELinux: Permission watch in class lnk_file not defined in policy. >>> [ 40.565673] SELinux: Permission watch_mount in class lnk_file not defined in policy. >>> [ 40.566349] SELinux: Permission watch_sb in class lnk_file not defined in policy. >>> [ 40.566973] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. >>> [ 40.567658] SELinux: Permission watch_reads in class lnk_file not defined in policy. >>> [ 40.568356] SELinux: Permission watch in class chr_file not defined in policy. >>> [ 40.568977] SELinux: Permission watch_mount in class chr_file not defined in policy. >>> [ 40.569671] SELinux: Permission watch_sb in class chr_file not defined in policy. >>> [ 40.570298] SELinux: Permission watch_with_perm in class chr_file not defined in policy. >>> [ 40.570986] SELinux: Permission watch_reads in class chr_file not defined in policy. >>> [ 40.571646] SELinux: Permission watch in class blk_file not defined in policy. >>> [ 40.572293] SELinux: Permission watch_mount in class blk_file not defined in policy. >>> [ 40.573045] SELinux: Permission watch_sb in class blk_file not defined in policy. >>> [ 40.573722] SELinux: Permission watch_with_perm in class blk_file not defined in policy. >>> [ 40.574413] SELinux: Permission watch_reads in class blk_file not defined in policy. >>> [ 40.575086] SELinux: Permission watch in class sock_file not defined in policy. >>> [ 40.575697] SELinux: Permission watch_mount in class sock_file not defined in policy. >>> [ 40.576405] SELinux: Permission watch_sb in class sock_file not defined in policy. >>> [ 40.577058] SELinux: Permission watch_with_perm in class sock_file not defined in policy. >>> [ 40.577794] SELinux: Permission watch_reads in class sock_file not defined in policy. >>> [ 40.578458] SELinux: Permission watch in class fifo_file not defined in policy. >>> [ 40.579066] SELinux: Permission watch_mount in class fifo_file not defined in policy. >>> [ 40.579727] SELinux: Permission watch_sb in class fifo_file not defined in policy. >>> [ 40.580405] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. >>> [ 40.581116] SELinux: Permission watch_reads in class fifo_file not defined in policy. >>> [ 40.581870] SELinux: Permission perfmon in class capability2 not defined in policy. >>> [ 40.582516] SELinux: Permission bpf in class capability2 not defined in policy. >>> [ 40.583123] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. >>> [ 40.583865] SELinux: Permission perfmon in class cap2_userns not defined in policy. >>> [ 40.584574] SELinux: Permission bpf in class cap2_userns not defined in policy. >>> [ 40.585208] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. >>> [ 40.586020] SELinux: Class mctp_socket not defined in policy. >>> [ 40.586482] SELinux: Class perf_event not defined in policy. >>> [ 40.586930] SELinux: Class anon_inode not defined in policy. >>> [ 40.587380] SELinux: Class io_uring not defined in policy. >>> [ 40.587811] SELinux: the above unknown classes and permissions will be allowed >>> [ 40.638612] SELinux: policy capability network_peer_controls=1 >>> [ 40.639094] SELinux: policy capability open_perms=1 >>> [ 40.639471] SELinux: policy capability extended_socket_class=1 >>> [ 40.639937] SELinux: policy capability always_check_network=0 >>> [ 40.640472] SELinux: policy capability cgroup_seclabel=1 >>> [ 40.640907] SELinux: policy capability nnp_nosuid_transition=1 >>> [ 40.641442] SELinux: policy capability genfs_seclabel_symlinks=0 >>> [ 40.858863] systemd[1]: Successfully loaded SELinux policy in 2.430314s. >>> [ 41.410189] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 249.521ms. >>> [ 41.418749] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) >>> [ 41.421461] systemd[1]: Detected virtualization kvm. >>> [ 41.421851] systemd[1]: Detected architecture x86-64. >>> [ 41.439136] systemd[1]: Set hostname to <test1.fieldses.org>. >>> [ 41.753375] lvmconfig (2543) used greatest stack depth: 24544 bytes left >>> [ 41.774174] grep (2557) used greatest stack depth: 24448 bytes left >>> [ 41.800082] zram_generator::generator[2554]: Creating dev-zram0.swap for /dev/zram0 (823MB) >>> [ 41.850246] systemd-sysv-generator[2552]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust. >>> [ 42.699764] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. >>> [ 42.961005] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. >>> [ 43.550746] kauditd_printk_skb: 13 callbacks suppressed >>> [ 43.550750] audit: type=1131 audit(1642005739.265:33): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.557309] systemd[1]: initrd-switch-root.service: Succeeded. >>> [ 43.559018] systemd[1]: Stopped Switch Root. >>> [ 43.559933] audit: type=1130 audit(1642005739.273:34): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.562887] audit: type=1131 audit(1642005739.277:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.563870] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. >>> [ 43.566772] systemd[1]: Created slice system-getty.slice. >>> [ 43.568626] systemd[1]: Created slice system-modprobe.slice. >>> [ 43.570533] systemd[1]: Created slice system-serial\x2dgetty.slice. >>> [ 43.572518] systemd[1]: Created slice system-sshd\x2dkeygen.slice. >>> [ 43.575249] systemd[1]: Created slice system-swap\x2dcreate.slice. >>> [ 43.577790] systemd[1]: Created slice system-systemd\x2dfsck.slice. >>> [ 43.580470] systemd[1]: Created slice User and Session Slice. >>> [ 43.581081] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. >>> [ 43.583848] systemd[1]: Started Forward Password Requests to Wall Directory Watch. >>> [ 43.587144] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. >>> [ 43.588834] systemd[1]: Reached target Local Encrypted Volumes. >>> [ 43.589488] systemd[1]: Stopped target Switch Root. >>> [ 43.590478] systemd[1]: Stopped target Initrd File Systems. >>> [ 43.591448] systemd[1]: Stopped target Initrd Root File System. >>> [ 43.592607] systemd[1]: Reached target Paths. >>> [ 43.593681] systemd[1]: Reached target Slices. >>> [ 43.595921] systemd[1]: Listening on Device-mapper event daemon FIFOs. >>> [ 43.599288] systemd[1]: Listening on LVM2 poll daemon socket. >>> [ 43.603589] systemd[1]: Listening on RPCbind Server Activation Socket. >>> [ 43.604301] systemd[1]: Reached target RPC Port Mapper. >>> [ 43.621281] systemd[1]: Listening on Process Core Dump Socket. >>> [ 43.623666] systemd[1]: Listening on initctl Compatibility Named Pipe. >>> [ 43.639128] systemd[1]: Listening on udev Control Socket. >>> [ 43.641921] systemd[1]: Listening on udev Kernel Socket. >>> [ 43.648355] systemd[1]: Activating swap /dev/mapper/fedora-swap... >>> [ 43.654892] systemd[1]: Mounting Huge Pages File System... >>> [ 43.661099] systemd[1]: Mounting POSIX Message Queue File System... >>> [ 43.667262] systemd[1]: Mounting NFSD configuration filesystem... >>> [ 43.676216] systemd[1]: Mounting Kernel Debug File System... >>> [ 43.682222] Adding 839676k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:839676k >>> [ 43.684653] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... >>> [ 43.686822] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. >>> [ 43.696795] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... >>> [ 43.703564] systemd[1]: Starting Load Kernel Module configfs... >>> [ 43.711831] systemd[1]: Starting Load Kernel Module drm... >>> [ 43.721843] systemd[1]: Starting Load Kernel Module fuse... >>> [ 43.735057] systemd[1]: Starting Preprocess NFS configuration convertion... >>> [ 43.739099] systemd[1]: plymouth-switch-root.service: Succeeded. >>> [ 43.742433] systemd[1]: Stopped Plymouth switch root service. >>> [ 43.744497] audit: type=1131 audit(1642005739.457:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.751143] systemd[1]: Starting Create swap on /dev/zram0... >>> [ 43.752961] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. >>> [ 43.755225] systemd[1]: systemd-fsck-root.service: Succeeded. >>> [ 43.758291] systemd[1]: Stopped File System Check on Root Device. >>> [ 43.759755] audit: type=1131 audit(1642005739.473:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.759862] systemd[1]: Stopped Journal Service. >>> [ 43.766144] audit: type=1130 audit(1642005739.481:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.770089] audit: type=1131 audit(1642005739.481:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 43.785015] systemd[1]: Starting Journal Service... >>> [ 43.786753] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. >>> [ 43.788967] zram0: detected capacity change from 0 to 1685504 >>> [ 43.792217] systemd[1]: Starting Remount Root and Kernel File Systems... >>> [ 43.793231] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. >>> [ 43.799775] systemd[1]: Starting Apply Kernel Variables... >>> [ 43.830240] systemd[1]: Starting Coldplug All udev Devices... >>> [ 43.833802] systemd[1]: sysroot.mount: Succeeded. >>> [ 43.838089] RPC: Registered named UNIX socket transport module. >>> [ 43.838642] RPC: Registered udp transport module. >>> [ 43.838999] RPC: Registered tcp transport module. >>> [ 43.839369] RPC: Registered tcp NFSv4.1 backchannel transport module. >>> [ 43.854269] systemd[1]: Activated swap /dev/mapper/fedora-swap. >>> [ 43.871240] audit: type=1305 audit(1642005739.585:40): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:syslogd_t:s0 res=1 >>> [ 43.872637] audit: type=1300 audit(1642005739.585:40): arch=c000003e syscall=46 success=yes exit=60 a0=5 a1=7ffd304bc550 a2=4000 a3=7ffd304bc5fc items=0 ppid=1 pid=2572 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-journal" exe="/usr/lib/systemd/systemd-journald" subj=system_u:system_r:syslogd_t:s0 key=(null) >>> [ 43.876478] audit: type=1327 audit(1642005739.585:40): proctitle="/usr/lib/systemd/systemd-journald" >>> [ 43.882944] systemd[1]: Mounted Huge Pages File System. >>> [ 43.886495] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) >>> [ 43.895767] systemd[1]: Started Journal Service. >>> [ 43.974904] Adding 842748k swap on /dev/zram0. Priority:100 extents:1 across:842748k SS >>> [ 43.996937] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). >>> [ 46.194003] BTRFS: device fsid 27379e6a-3b97-45ef-bf83-dc7e8178b695 devid 1 transid 865 /dev/vde scanned by systemd-udevd (3767) >>> [ 47.371666] FAT-fs (vdg): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. >>> [ 47.378054] XFS (vdb): Mounting V5 Filesystem >>> [ 47.384999] XFS (vdf): Mounting V5 Filesystem >>> [ 47.404867] EXT4-fs (vdd): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. >>> [ 47.576714] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. >>> [ 48.050435] XFS (vdf): Ending clean mount >>> [ 48.091447] XFS (vdb): Ending clean mount >>> [ 48.100548] xfs filesystem being mounted at /exports/xfs2 supports timestamps until 2038 (0x7fffffff) >>> [ 48.102015] xfs filesystem being mounted at /exports/xfs supports timestamps until 2038 (0x7fffffff) >>> [ 48.600280] kauditd_printk_skb: 40 callbacks suppressed >>> [ 48.600285] audit: type=1130 audit(1642005744.313:73): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=nfs-idmapd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' >>> [ 48.650555] audit: type=1400 audit(1642005744.365:74): avc: denied { map } for pid=3849 comm="nfsdcld" path="/var/lib/nfs/nfsdcld/main.sqlite-shm" dev="dm-0" ino=873070 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:var_lib_nfs_t:s0 tclass=file permissive=1 >>> [ 48.655197] audit: type=1300 audit(1642005744.365:74): arch=c000003e syscall=9 success=yes exit=140401715851264 a0=0 a1=8000 a2=3 a3=1 items=0 ppid=1 pid=3849 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nfsdcld" exe="/root/nfsdcld" subj=system_u:system_r:init_t:s0 key=(null) >>> [ 48.659212] audit: type=1327 audit(1642005744.365:74): proctitle="/root/nfsdcld" >>> [ 48.662263] audit: type=1305 audit(1642005744.377:75): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 >>> [ 48.663809] audit: type=1300 audit(1642005744.377:75): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd61589d20 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) >>> [ 48.668534] audit: type=1327 audit(1642005744.377:75): proctitle="/sbin/auditd" >>> [ 48.669369] audit: type=1305 audit(1642005744.377:76): op=set audit_pid=3850 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 >>> [ 48.670842] audit: type=1300 audit(1642005744.377:76): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd615879d0 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) >>> [ 48.673934] audit: type=1327 audit(1642005744.377:76): proctitle="/sbin/auditd" >>> [ 51.467504] plymouthd (2385) used greatest stack depth: 24080 bytes left >>> [ 52.964929] NFSD: Using nfsdcld client tracking operations. >>> [ 52.965487] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000098) >>> [ 57.672761] rpm (4068) used greatest stack depth: 22976 bytes left >>> [ 201.516445] clocksource: timekeeping watchdog on CPU2: acpi_pm retried 2 times before success >>> >>> [ 335.595143] ====================================================== >>> [ 335.596176] WARNING: possible circular locking dependency detected >>> [ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted >>> [ 335.597903] ------------------------------------------------------ >>> [ 335.598845] kworker/u8:0/7 is trying to acquire lock: >>> [ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.601111] >>> but task is already holding lock: >>> [ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] >>> [ 335.602896] >>> which lock already depends on the new lock. >>> >>> [ 335.603378] >>> the existing dependency chain (in reverse order) is: >>> [ 335.603897] >>> -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: >>> [ 335.604305] _raw_spin_lock+0x2f/0x40 >>> [ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] >>> [ 335.605078] posix_lock_inode+0x9b8/0x1a50 >>> [ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] >>> [ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] >>> [ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] >>> [ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] >>> [ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] >>> [ 335.607604] nfsd+0x306/0x530 [nfsd] >>> [ 335.607923] kthread+0x3b1/0x490 >>> [ 335.608199] ret_from_fork+0x22/0x30 >>> [ 335.608512] >>> -> #1 (&ctx->flc_lock){+.+.}-{2:2}: >>> [ 335.608878] _raw_spin_lock+0x2f/0x40 >>> [ 335.609187] check_for_locks+0xcf/0x200 [nfsd] >>> [ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] >>> [ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] >>> [ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] >>> [ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] >>> [ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] >>> [ 335.611863] nfsd+0x306/0x530 [nfsd] >>> [ 335.612193] kthread+0x3b1/0x490 >>> [ 335.612463] ret_from_fork+0x22/0x30 >>> [ 335.612764] >>> -> #0 (&clp->cl_lock){+.+.}-{2:2}: >>> [ 335.613120] __lock_acquire+0x29f8/0x5b80 >>> [ 335.613469] lock_acquire+0x1a6/0x4b0 >>> [ 335.613763] _raw_spin_lock+0x2f/0x40 >>> [ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.614477] process_one_work+0x7ec/0x1320 >>> [ 335.614813] worker_thread+0x59e/0xf90 >>> [ 335.615135] kthread+0x3b1/0x490 >>> [ 335.615409] ret_from_fork+0x22/0x30 >>> [ 335.615695] >>> other info that might help us debug this: >>> >>> [ 335.616135] Chain exists of: >>> &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock >>> >>> [ 335.616806] Possible unsafe locking scenario: >>> >>> [ 335.617140] CPU0 CPU1 >>> [ 335.617467] ---- ---- >>> [ 335.617793] lock(&clp->cl_cs_lock); >>> [ 335.618036] lock(&ctx->flc_lock); >>> [ 335.618531] lock(&clp->cl_cs_lock); >>> [ 335.619037] lock(&clp->cl_lock); >>> [ 335.619256] >>> *** DEADLOCK *** >>> >>> [ 335.619487] 4 locks held by kworker/u8:0/7: >>> [ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 >>> [ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 >>> [ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] >>> [ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] >>> [ 335.623462] >>> stack backtrace: >>> [ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 >>> [ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 >>> [ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] >>> [ 335.625514] Call Trace: >>> [ 335.625641] <TASK> >>> [ 335.625734] dump_stack_lvl+0x45/0x59 >>> [ 335.625981] check_noncircular+0x23e/0x2e0 >>> [ 335.626268] ? print_circular_bug+0x450/0x450 >>> [ 335.626583] ? mark_lock+0xf1/0x30c0 >>> [ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 >>> [ 335.627156] __lock_acquire+0x29f8/0x5b80 >>> [ 335.627463] ? lock_chain_count+0x20/0x20 >>> [ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 >>> [ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 >>> [ 335.628555] lock_acquire+0x1a6/0x4b0 >>> [ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.629184] ? lock_release+0x6d0/0x6d0 >>> [ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] >>> [ 335.629825] ? do_raw_spin_lock+0x11e/0x240 >>> [ 335.630120] ? rwlock_bug.part.0+0x90/0x90 >>> [ 335.630409] _raw_spin_lock+0x2f/0x40 >>> [ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] >>> [ 335.631450] ? lock_release+0x6d0/0x6d0 >>> [ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] >>> [ 335.632110] process_one_work+0x7ec/0x1320 >>> [ 335.632411] ? lock_release+0x6d0/0x6d0 >>> [ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 >>> [ 335.633002] ? rwlock_bug.part.0+0x90/0x90 >>> [ 335.633290] worker_thread+0x59e/0xf90 >>> [ 335.633548] ? process_one_work+0x1320/0x1320 >>> [ 335.633860] kthread+0x3b1/0x490 >>> [ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 >>> [ 335.634396] ? set_kthread_struct+0x100/0x100 >>> [ 335.634709] ret_from_fork+0x22/0x30 >>> [ 335.634961] </TASK> >>> [ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left >>> [ 751.769042] nfsd: last server has exited, flushing export cache >>> [ 751.957555] NFSD: Using nfsdcld client tracking operations. >>> [ 751.958050] NFSD: starting 15-second grace period (net f0000098) >>> [ 773.101065] nfsd: last server has exited, flushing export cache >>> [ 773.341554] NFSD: Using nfsdcld client tracking operations. >>> [ 773.342404] NFSD: starting 15-second grace period (net f0000098) >>> [ 795.757041] nfsd: last server has exited, flushing export cache >>> [ 795.881057] NFSD: Using nfsdcld client tracking operations. >>> [ 795.881637] NFSD: starting 15-second grace period (net f0000098) >>> [ 816.968871] nfsd: last server has exited, flushing export cache >>> [ 817.199987] NFSD: Using nfsdcld client tracking operations. >>> [ 817.201123] NFSD: starting 15-second grace period (net f0000098) >>> [ 817.696746] nfsd: last server has exited, flushing export cache >>> [ 817.925616] NFSD: Using nfsdcld client tracking operations. >>> [ 817.926073] NFSD: starting 15-second grace period (net f0000098) >>> [ 839.080820] nfsd: last server has exited, flushing export cache >>> [ 839.321569] NFSD: Using nfsdcld client tracking operations. >>> [ 839.322562] NFSD: starting 15-second grace period (net f0000098) >>> [ 860.492782] nfsd: last server has exited, flushing export cache >>> [ 860.749705] NFSD: Using nfsdcld client tracking operations. >>> [ 860.751710] NFSD: starting 15-second grace period (net f0000098) >>> [ 882.889711] nfsd: last server has exited, flushing export cache >>> [ 883.125502] NFSD: Using nfsdcld client tracking operations. >>> [ 883.126399] NFSD: starting 15-second grace period (net f0000098) >>> [ 904.224662] nfsd: last server has exited, flushing export cache >>> [ 904.342387] NFSD: Using nfsdcld client tracking operations. >>> [ 904.342962] NFSD: starting 15-second grace period (net f0000098) >>> [ 947.528620] nfsd: last server has exited, flushing export cache >>> [ 947.763520] NFSD: Using nfsdcld client tracking operations. >>> [ 947.764569] NFSD: starting 15-second grace period (net f0000098) >>> [ 1442.187410] nfsd: last server has exited, flushing export cache >>> [ 1442.430496] NFSD: Using nfsdcld client tracking operations. >>> [ 1442.430974] NFSD: starting 15-second grace period (net f0000098) >>> [ 1483.739309] nfsd: last server has exited, flushing export cache >>> [ 1483.864102] NFSD: Using nfsdcld client tracking operations. >>> [ 1483.864606] NFSD: starting 15-second grace period (net f0000098) >>> [ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success >>> [ 1508.807419] nfsd: last server has exited, flushing export cache >>> [ 1508.925396] NFSD: Using nfsdcld client tracking operations. >>> [ 1508.925905] NFSD: starting 15-second grace period (net f0000098) >>> [ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1530.667340] nfsd: last server has exited, flushing export cache >>> [ 1530.803387] NFSD: Using nfsdcld client tracking operations. >>> [ 1530.804150] NFSD: starting 15-second grace period (net f0000098) >>> [ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1552.563368] nfsd: last server has exited, flushing export cache >>> [ 1552.794957] NFSD: Using nfsdcld client tracking operations. >>> [ 1552.797092] NFSD: starting 15-second grace period (net f0000098) >>> [ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1594.943247] nfsd: last server has exited, flushing export cache >>> [ 1595.175609] NFSD: Using nfsdcld client tracking operations. >>> [ 1595.177610] NFSD: starting 15-second grace period (net f0000098) >>> [ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 1618.323178] nfsd: last server has exited, flushing export cache >>> [ 1618.553210] NFSD: Using nfsdcld client tracking operations. >>> [ 1618.555049] NFSD: starting 15-second grace period (net f0000098) >>> [ 1620.455011] nfsd: last server has exited, flushing export cache >>> [ 1620.687824] NFSD: Using nfsdcld client tracking operations. >>> [ 1620.688329] NFSD: starting 15-second grace period (net f0000098) >>> [ 1660.003178] nfsd: last server has exited, flushing export cache >>> [ 1660.236374] NFSD: Using nfsdcld client tracking operations. >>> [ 1660.237760] NFSD: starting 15-second grace period (net f0000098) >>> [ 1660.842977] nfsd: last server has exited, flushing export cache >>> [ 1661.061619] NFSD: Using nfsdcld client tracking operations. >>> [ 1661.062070] NFSD: starting 15-second grace period (net f0000098) >>> [ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) >>> [ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success >>> [ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success >>> [ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success >>> >>> >>> I will update the >>>> Documentation/filesystems/locking.rst in v10. >>>> >>>>> I agree with Chuck that we don't need to reschedule the laundromat, it's >>>>> OK if it takes longer to get around to cleaning up a dead client. >>>> Yes, it is now implemented for lock conflict and share reservation >>>> resolution. I'm doing the same for delegation conflict. >>>> >>>> -Dai >>>> >>>>> --b. >>>>> >>>>> On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: >>>>>> Hi Bruce, Chuck >>>>>> >>>>>> This series of patches implement the NFSv4 Courteous Server. >>>>>> >>>>>> A server which does not immediately expunge the state on lease expiration >>>>>> is known as a Courteous Server. A Courteous Server continues to recognize >>>>>> previously generated state tokens as valid until conflict arises between >>>>>> the expired state and the requests from another client, or the server >>>>>> reboots. >>>>>> >>>>>> The v2 patch includes the following: >>>>>> >>>>>> . add new callback, lm_expire_lock, to lock_manager_operations to >>>>>> allow the lock manager to take appropriate action with conflict lock. >>>>>> >>>>>> . handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. >>>>>> >>>>>> . expire courtesy client after 24hr if client has not reconnected. >>>>>> >>>>>> . do not allow expired client to become courtesy client if there are >>>>>> waiters for client's locks. >>>>>> >>>>>> . modify client_info_show to show courtesy client and seconds from >>>>>> last renew. >>>>>> >>>>>> . fix a problem with NFSv4.1 server where the it keeps returning >>>>>> SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after >>>>>> the courtesy client re-connects, causing the client to keep sending >>>>>> BCTS requests to server. >>>>>> >>>>>> The v3 patch includes the following: >>>>>> >>>>>> . modified posix_test_lock to check and resolve conflict locks >>>>>> to handle NLM TEST and NFSv4 LOCKT requests. >>>>>> >>>>>> . separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. >>>>>> >>>>>> The v4 patch includes: >>>>>> >>>>>> . rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock >>>>>> by asking the laudromat thread to destroy the courtesy client. >>>>>> >>>>>> . handle NFSv4 share reservation conflicts with courtesy client. This >>>>>> includes conflicts between access mode and deny mode and vice versa. >>>>>> >>>>>> . drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. >>>>>> >>>>>> The v5 patch includes: >>>>>> >>>>>> . fix recursive locking of file_rwsem from posix_lock_file. >>>>>> >>>>>> . retest with LOCKDEP enabled. >>>>>> >>>>>> The v6 patch includes: >>>>>> >>>>>> . merge witn 5.15-rc7 >>>>>> >>>>>> . fix a bug in nfs4_check_deny_bmap that did not check for matched >>>>>> nfs4_file before checking for access/deny conflict. This bug causes >>>>>> pynfs OPEN18 to fail since the server taking too long to release >>>>>> lots of un-conflict clients' state. >>>>>> >>>>>> . enhance share reservation conflict handler to handle case where >>>>>> a large number of conflict courtesy clients need to be expired. >>>>>> The 1st 100 clients are expired synchronously and the rest are >>>>>> expired in the background by the laundromat and NFS4ERR_DELAY >>>>>> is returned to the NFS client. This is needed to prevent the >>>>>> NFS client from timing out waiting got the reply. >>>>>> >>>>>> The v7 patch includes: >>>>>> >>>>>> . Fix race condition in posix_test_lock and posix_lock_inode after >>>>>> dropping spinlock. >>>>>> >>>>>> . Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock >>>>>> callback >>>>>> >>>>>> . Always resolve share reservation conflicts asynchrously. >>>>>> >>>>>> . Fix bug in nfs4_laundromat where spinlock is not used when >>>>>> scanning cl_ownerstr_hashtbl. >>>>>> >>>>>> . Fix bug in nfs4_laundromat where idr_get_next was called >>>>>> with incorrect 'id'. >>>>>> >>>>>> . Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. >>>>>> >>>>>> The v8 patch includes: >>>>>> >>>>>> . Fix warning in nfsd4_fl_expire_lock reported by test robot. >>>>>> >>>>>> The V9 patch include: >>>>>> >>>>>> . Simplify lm_expire_lock API by (1) remove the 'testonly' flag >>>>>> and (2) specifying return value as true/false to indicate >>>>>> whether conflict was succesfully resolved. >>>>>> >>>>>> . Rework nfsd4_fl_expire_lock to mark client with >>>>>> NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire >>>>>> the client in the background. >>>>>> >>>>>> . Add a spinlock in nfs4_client to synchronize access to the >>>>>> NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to >>>>>> handle race conditions when resolving lock and share reservation >>>>>> conflict. >>>>>> >>>>>> . Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT >>>>>> are now consisdered 'dead', waiting for the laundromat to expire >>>>>> it. This client is no longer allowed to use its states if it >>>>>> re-connects before the laundromat finishes expiring the client. >>>>>> >>>>>> For v4.1 client, the detection is done in the processing of the >>>>>> SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client >>>>>> to re-establish new clientid and session. >>>>>> For v4.0 client, the detection is done in the processing of the >>>>>> RENEW and state-related ops and return NFS4ERR_EXPIRE to force >>>>>> the client to re-establish new clientid.
On Wed, Jan 12, 2022 at 12:34:53PM -0800, dai.ngo@oracle.com wrote: > > On 1/12/22 11:42 AM, J. Bruce Fields wrote: > >On Wed, Jan 12, 2022 at 11:31:55AM -0800, dai.ngo@oracle.com wrote: > >>On 1/12/22 11:21 AM, J. Bruce Fields wrote: > >>>On Wed, Jan 12, 2022 at 11:05:03AM -0800, dai.ngo@oracle.com wrote: > >>>>On 1/12/22 10:59 AM, J. Bruce Fields wrote: > >>>>>Could you look back over previous comments? I notice there's a couple > >>>>>unaddressed (circular locking dependency, Documentation/filesystems/). > >>>>I think v9 addresses the circular locking dependency. > >>>The below is on 5.16 + these two v9 patches. > >>> > >>>--b. > >>> > >>>[ 335.595143] ====================================================== > >>>[ 335.596176] WARNING: possible circular locking dependency detected > >>>[ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted > >>>[ 335.597903] ------------------------------------------------------ > >>>[ 335.598845] kworker/u8:0/7 is trying to acquire lock: > >>>[ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.601111] > >>> but task is already holding lock: > >>>[ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >>This is the new spinlock that I added. It's weird that I don't see it > >>my messages log, I will check. > >Not especially weird, we probably have different config options and run > >different tests. > > > >You'll need to just inspect the code and figure ou why these locks are > >being taken in different orders. > > I will inspect the code paths but it helps to reproduce this warning > messages to ensure the problem is really fixed. > > I have these in my .config: > > CONFIG_LOCKDEP_SUPPORT=y > CONFIG_LOCKDEP=y > CONFIG_LOCKDEP_BITS=15 > CONFIG_LOCKDEP_CHAINS_BITS=16 > CONFIG_LOCKDEP_STACK_TRACE_BITS=19 > CONFIG_LOCKDEP_STACK_TRACE_HASH_BITS=14 > CONFIG_LOCKDEP_CIRCULAR_QUEUE_BITS=12 > # CONFIG_DEBUG_LOCKDEP is not set > > I ran pynfs and did not see the messages. What tests did you run > to get these messages? Sorry, I'm not sure which tests were running at the time. I'll let you know if I manage to narrow it down. For now, I really think the lockdep output should be enough to figure out what's going on. --b. > > Thanks, > -Dai > > > > >--b. > > > >>Thanks, > >>-Dai > >> > >>>[ 335.602896] > >>> which lock already depends on the new lock. > >>> > >>>[ 335.603378] > >>> the existing dependency chain (in reverse order) is: > >>>[ 335.603897] > >>> -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: > >>>[ 335.604305] _raw_spin_lock+0x2f/0x40 > >>>[ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] > >>>[ 335.605078] posix_lock_inode+0x9b8/0x1a50 > >>>[ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] > >>>[ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >>>[ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >>>[ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] > >>>[ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] > >>>[ 335.607604] nfsd+0x306/0x530 [nfsd] > >>>[ 335.607923] kthread+0x3b1/0x490 > >>>[ 335.608199] ret_from_fork+0x22/0x30 > >>>[ 335.608512] > >>> -> #1 (&ctx->flc_lock){+.+.}-{2:2}: > >>>[ 335.608878] _raw_spin_lock+0x2f/0x40 > >>>[ 335.609187] check_for_locks+0xcf/0x200 [nfsd] > >>>[ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] > >>>[ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >>>[ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >>>[ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] > >>>[ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] > >>>[ 335.611863] nfsd+0x306/0x530 [nfsd] > >>>[ 335.612193] kthread+0x3b1/0x490 > >>>[ 335.612463] ret_from_fork+0x22/0x30 > >>>[ 335.612764] > >>> -> #0 (&clp->cl_lock){+.+.}-{2:2}: > >>>[ 335.613120] __lock_acquire+0x29f8/0x5b80 > >>>[ 335.613469] lock_acquire+0x1a6/0x4b0 > >>>[ 335.613763] _raw_spin_lock+0x2f/0x40 > >>>[ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.614477] process_one_work+0x7ec/0x1320 > >>>[ 335.614813] worker_thread+0x59e/0xf90 > >>>[ 335.615135] kthread+0x3b1/0x490 > >>>[ 335.615409] ret_from_fork+0x22/0x30 > >>>[ 335.615695] > >>> other info that might help us debug this: > >>> > >>>[ 335.616135] Chain exists of: > >>> &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock > >>> > >>>[ 335.616806] Possible unsafe locking scenario: > >>> > >>>[ 335.617140] CPU0 CPU1 > >>>[ 335.617467] ---- ---- > >>>[ 335.617793] lock(&clp->cl_cs_lock); > >>>[ 335.618036] lock(&ctx->flc_lock); > >>>[ 335.618531] lock(&clp->cl_cs_lock); > >>>[ 335.619037] lock(&clp->cl_lock); > >>>[ 335.619256] > >>> *** DEADLOCK *** > >>> > >>>[ 335.619487] 4 locks held by kworker/u8:0/7: > >>>[ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 > >>>[ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 > >>>[ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] > >>>[ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >>>[ 335.623462] > >>> stack backtrace: > >>>[ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 > >>>[ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > >>>[ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] > >>>[ 335.625514] Call Trace: > >>>[ 335.625641] <TASK> > >>>[ 335.625734] dump_stack_lvl+0x45/0x59 > >>>[ 335.625981] check_noncircular+0x23e/0x2e0 > >>>[ 335.626268] ? print_circular_bug+0x450/0x450 > >>>[ 335.626583] ? mark_lock+0xf1/0x30c0 > >>>[ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 > >>>[ 335.627156] __lock_acquire+0x29f8/0x5b80 > >>>[ 335.627463] ? lock_chain_count+0x20/0x20 > >>>[ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >>>[ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >>>[ 335.628555] lock_acquire+0x1a6/0x4b0 > >>>[ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.629184] ? lock_release+0x6d0/0x6d0 > >>>[ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] > >>>[ 335.629825] ? do_raw_spin_lock+0x11e/0x240 > >>>[ 335.630120] ? rwlock_bug.part.0+0x90/0x90 > >>>[ 335.630409] _raw_spin_lock+0x2f/0x40 > >>>[ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.631450] ? lock_release+0x6d0/0x6d0 > >>>[ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] > >>>[ 335.632110] process_one_work+0x7ec/0x1320 > >>>[ 335.632411] ? lock_release+0x6d0/0x6d0 > >>>[ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 > >>>[ 335.633002] ? rwlock_bug.part.0+0x90/0x90 > >>>[ 335.633290] worker_thread+0x59e/0xf90 > >>>[ 335.633548] ? process_one_work+0x1320/0x1320 > >>>[ 335.633860] kthread+0x3b1/0x490 > >>>[ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 > >>>[ 335.634396] ? set_kthread_struct+0x100/0x100 > >>>[ 335.634709] ret_from_fork+0x22/0x30 > >>>[ 335.634961] </TASK> > >>>[ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left > >>>[ 751.769042] nfsd: last server has exited, flushing export cache > >>>[ 751.957555] NFSD: Using nfsdcld client tracking operations. > >>>[ 751.958050] NFSD: starting 15-second grace period (net f0000098) > >>>[ 773.101065] nfsd: last server has exited, flushing export cache > >>>[ 773.341554] NFSD: Using nfsdcld client tracking operations. > >>>[ 773.342404] NFSD: starting 15-second grace period (net f0000098) > >>>[ 795.757041] nfsd: last server has exited, flushing export cache > >>>[ 795.881057] NFSD: Using nfsdcld client tracking operations. > >>>[ 795.881637] NFSD: starting 15-second grace period (net f0000098) > >>>[ 816.968871] nfsd: last server has exited, flushing export cache > >>>[ 817.199987] NFSD: Using nfsdcld client tracking operations. > >>>[ 817.201123] NFSD: starting 15-second grace period (net f0000098) > >>>[ 817.696746] nfsd: last server has exited, flushing export cache > >>>[ 817.925616] NFSD: Using nfsdcld client tracking operations. > >>>[ 817.926073] NFSD: starting 15-second grace period (net f0000098) > >>>[ 839.080820] nfsd: last server has exited, flushing export cache > >>>[ 839.321569] NFSD: Using nfsdcld client tracking operations. > >>>[ 839.322562] NFSD: starting 15-second grace period (net f0000098) > >>>[ 860.492782] nfsd: last server has exited, flushing export cache > >>>[ 860.749705] NFSD: Using nfsdcld client tracking operations. > >>>[ 860.751710] NFSD: starting 15-second grace period (net f0000098) > >>>[ 882.889711] nfsd: last server has exited, flushing export cache > >>>[ 883.125502] NFSD: Using nfsdcld client tracking operations. > >>>[ 883.126399] NFSD: starting 15-second grace period (net f0000098) > >>>[ 904.224662] nfsd: last server has exited, flushing export cache > >>>[ 904.342387] NFSD: Using nfsdcld client tracking operations. > >>>[ 904.342962] NFSD: starting 15-second grace period (net f0000098) > >>>[ 947.528620] nfsd: last server has exited, flushing export cache > >>>[ 947.763520] NFSD: Using nfsdcld client tracking operations. > >>>[ 947.764569] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1442.187410] nfsd: last server has exited, flushing export cache > >>>[ 1442.430496] NFSD: Using nfsdcld client tracking operations. > >>>[ 1442.430974] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1483.739309] nfsd: last server has exited, flushing export cache > >>>[ 1483.864102] NFSD: Using nfsdcld client tracking operations. > >>>[ 1483.864606] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >>>[ 1508.807419] nfsd: last server has exited, flushing export cache > >>>[ 1508.925396] NFSD: Using nfsdcld client tracking operations. > >>>[ 1508.925905] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1530.667340] nfsd: last server has exited, flushing export cache > >>>[ 1530.803387] NFSD: Using nfsdcld client tracking operations. > >>>[ 1530.804150] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1552.563368] nfsd: last server has exited, flushing export cache > >>>[ 1552.794957] NFSD: Using nfsdcld client tracking operations. > >>>[ 1552.797092] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1594.943247] nfsd: last server has exited, flushing export cache > >>>[ 1595.175609] NFSD: Using nfsdcld client tracking operations. > >>>[ 1595.177610] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1618.323178] nfsd: last server has exited, flushing export cache > >>>[ 1618.553210] NFSD: Using nfsdcld client tracking operations. > >>>[ 1618.555049] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1620.455011] nfsd: last server has exited, flushing export cache > >>>[ 1620.687824] NFSD: Using nfsdcld client tracking operations. > >>>[ 1620.688329] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1660.003178] nfsd: last server has exited, flushing export cache > >>>[ 1660.236374] NFSD: Using nfsdcld client tracking operations. > >>>[ 1660.237760] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1660.842977] nfsd: last server has exited, flushing export cache > >>>[ 1661.061619] NFSD: Using nfsdcld client tracking operations. > >>>[ 1661.062070] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >>>[ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >>>[ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success > >>> > >>>started Wed Jan 12 11:28:28 AM EST 2022, finished Wed Jan 12 01:47:36 PM EST 2022 > >>> > >>> > >>>+-----------------------------------------+ > >>>| verbose output | > >>>+-----------------------------------------+ > >>>fs/select.c: In function ‘do_select’: > >>>fs/select.c:611:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 611 | } > >>> | ^ > >>>fs/select.c: In function ‘do_sys_poll’: > >>>fs/select.c:1041:1: warning: the frame size of 1296 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 1041 | } > >>> | ^ > >>>net/core/rtnetlink.c: In function ‘__rtnl_newlink’: > >>>net/core/rtnetlink.c:3494:1: warning: the frame size of 1368 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 3494 | } > >>> | ^ > >>>drivers/tty/serial/8250/8250_core.c: In function ‘serial8250_probe’: > >>>drivers/tty/serial/8250/8250_core.c:840:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 840 | } > >>> | ^ > >>>drivers/tty/serial/8250/8250_pnp.c: In function ‘serial_pnp_probe’: > >>>drivers/tty/serial/8250/8250_pnp.c:488:1: warning: the frame size of 1136 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 488 | } > >>> | ^ > >>>drivers/tty/serial/8250/8250_pci.c: In function ‘pciserial_init_ports’: > >>>drivers/tty/serial/8250/8250_pci.c:4030:1: warning: the frame size of 1160 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 4030 | } > >>> | ^ > >>>drivers/tty/serial/8250/8250_exar.c: In function ‘exar_pci_probe’: > >>>drivers/tty/serial/8250/8250_exar.c:678:1: warning: the frame size of 1176 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 678 | } > >>> | ^ > >>>drivers/tty/serial/8250/8250_lpss.c: In function ‘lpss8250_probe.part.0’: > >>>drivers/tty/serial/8250/8250_lpss.c:351:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 351 | } > >>> | ^ > >>>drivers/tty/serial/8250/8250_mid.c: In function ‘mid8250_probe.part.0’: > >>>drivers/tty/serial/8250/8250_mid.c:337:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 337 | } > >>> | ^ > >>>lib/zstd/common/entropy_common.c: In function ‘HUF_readStats’: > >>>lib/zstd/common/entropy_common.c:257:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 257 | } > >>> | ^ > >>>drivers/acpi/processor_thermal.c: In function ‘cpu_has_cpufreq’: > >>>drivers/acpi/processor_thermal.c:60:1: warning: the frame size of 1384 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 60 | } > >>> | ^ > >>>drivers/dma-buf/dma-resv.c: In function ‘dma_resv_lockdep’: > >>>drivers/dma-buf/dma-resv.c:708:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 708 | } > >>> | ^ > >>>fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: > >>>fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 418 | } > >>> | ^ > >>>drivers/md/raid5-ppl.c: In function ‘ppl_recover_entry’: > >>>drivers/md/raid5-ppl.c:968:1: warning: the frame size of 1200 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 968 | } > >>> | ^ > >>>fs/ocfs2/namei.c: In function ‘ocfs2_rename’: > >>>fs/ocfs2/namei.c:1686:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 1686 | } > >>> | ^ > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 717 | } > >>> | ^ > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 810 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘nldev_set_doit’: > >>>drivers/infiniband/core/nldev.c:1112:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 1112 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘nldev_newlink’: > >>>drivers/infiniband/core/nldev.c:1722:1: warning: the frame size of 1128 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 1722 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘nldev_get_chardev’: > >>>drivers/infiniband/core/nldev.c:1833:1: warning: the frame size of 1144 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 1833 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘nldev_stat_set_doit’: > >>>drivers/infiniband/core/nldev.c:2061:1: warning: the frame size of 1064 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 2061 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘res_get_common_dumpit’: > >>>drivers/infiniband/core/nldev.c:1613:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 1613 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_doit’: > >>>drivers/infiniband/core/nldev.c:2318:1: warning: the frame size of 1088 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 2318 | } > >>> | ^ > >>>drivers/infiniband/core/nldev.c: In function ‘nldev_stat_get_counter_status_doit’: > >>>drivers/infiniband/core/nldev.c:2438:1: warning: the frame size of 1096 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 2438 | } > >>> | ^ > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_encrypt’: > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c:717:1: warning: the frame size of 1120 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 717 | } > >>> | ^ > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c: In function ‘gss_krb5_aes_decrypt’: > >>>net/sunrpc/auth_gss/gss_krb5_crypto.c:810:1: warning: the frame size of 1168 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 810 | } > >>> | ^ > >>>fs/lockd/svcsubs.c: In function ‘nlmsvc_mark_resources’: > >>>fs/lockd/svcsubs.c:418:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=] > >>> 418 | } > >>> | ^ > >>>make -f ./Makefile > >>> CALL scripts/checksyscalls.sh > >>> CALL scripts/atomic/check-atomics.sh > >>> DESCEND objtool > >>> CHK include/generated/compile.h > >>> BUILD arch/x86/boot/bzImage > >>>Kernel: arch/x86/boot/bzImage is ready (#1278) > >>>sh ./scripts/package/buildtar targz-pkg > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authenc.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/authencesn.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/crypto_engine.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/crypto/echainiv.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/crypto/virtio/virtio_crypto.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/iscsi_tcp.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/libiscsi_tcp.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/scsi/scsi_transport_iscsi.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/drivers/thermal/intel/x86_pkg_temp_thermal.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/lockd/lockd.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/blocklayout/blocklayoutdriver.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/filelayout/nfs_layout_nfsv41_files.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfs.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv2.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv3.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs/nfsv4.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/grace.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfs_common/nfs_acl.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/fs/nfsd/nfsd.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sched/cls_bpf.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/sunrpc.ko > >>> INSTALL tar-install/lib/modules/5.16.0-00002-g616758bf6583/kernel/net/sunrpc/xprtrdma/rpcrdma.ko > >>> DEPMOD ./tar-install/lib/modules/5.16.0-00002-g616758bf6583 > >>>'./System.map' -> './tar-install/boot/System.map-5.16.0-00002-g616758bf6583' > >>>'.config' -> './tar-install/boot/config-5.16.0-00002-g616758bf6583' > >>>'./vmlinux' -> './tar-install/boot/vmlinux-5.16.0-00002-g616758bf6583' > >>>'./arch/x86/boot/bzImage' -> './tar-install/boot/vmlinuz-5.16.0-00002-g616758bf6583' > >>>Tarball successfully created in ./linux-5.16.0-00002-g616758bf6583-x86_64.tar.gz > >>>user pynfs tests: > >>>WARNING - could not create /b'exports/xfs/pynfstest-user/tree/block' > >>>WARNING - could not create /b'exports/xfs/pynfstest-user/tree/char' > >>>DELEG22 st_delegation.testServerSelfConflict2 : RUNNING > >>>DELEG22 st_delegation.testServerSelfConflict2 : PASS > >>>DELEG21 st_delegation.testServerSelfConflict : RUNNING > >>>DELEG21 st_delegation.testServerSelfConflict : PASS > >>>DELEG18 st_delegation.testServerRenameTarget : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=3)******** > >>>DELEG18 st_delegation.testServerRenameTarget : PASS > >>>DELEG17 st_delegation.testServerRenameSource : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=4)******** > >>>DELEG17 st_delegation.testServerRenameSource : PASS > >>>DELEG16 st_delegation.testServerRemove : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=5)******** > >>>DELEG16 st_delegation.testServerRemove : PASS > >>>DELEG19 st_delegation.testServerLink : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=6)******** > >>>DELEG19 st_delegation.testServerLink : PASS > >>>DELEG20 st_delegation.testServerChmod : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=7)******** > >>>DELEG20 st_delegation.testServerChmod : PASS > >>>DELEG6 st_delegation.testRenew : RUNNING > >>>Sleeping for 7.5 seconds: Waiting to send RENEW > >>>Woke up > >>>DELEG6 st_delegation.testRenew : PASS > >>>DELEG15d st_delegation.testRenameOver : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=9)******** > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename > >>>Woke up > >>>DELEG15d st_delegation.testRenameOver : PASS > >>>DELEG15c st_delegation.testRename : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=10)******** > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on rename > >>>Woke up > >>>DELEG15c st_delegation.testRename : PASS > >>>DELEG15a st_delegation.testRemove : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on remove > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=11)******** > >>>Woke up > >>>DELEG15a st_delegation.testRemove : PASS > >>>DELEG3e st_delegation.testReadDeleg3e : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=12)******** > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG3e st_delegation.testReadDeleg3e : PASS > >>>DELEG3d st_delegation.testReadDeleg3d : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=13)******** > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG3d st_delegation.testReadDeleg3d : PASS > >>>DELEG3c st_delegation.testReadDeleg3c : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=14)******** > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG3c st_delegation.testReadDeleg3c : PASS > >>>DELEG3b st_delegation.testReadDeleg3b : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=15)******** > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG3b st_delegation.testReadDeleg3b : PASS > >>>DELEG3a st_delegation.testReadDeleg3a : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=16)******** > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG3a st_delegation.testReadDeleg3a : PASS > >>>DELEG2 st_delegation.testReadDeleg2 : RUNNING > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=17)******** > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG2 st_delegation.testReadDeleg2 : PASS > >>>DELEG1 st_delegation.testReadDeleg1 : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=18)******** > >>>Woke up > >>>DELEG1 st_delegation.testReadDeleg1 : PASS > >>>DELEG15b st_delegation.testLink : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on link > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=19)******** > >>>Woke up > >>>DELEG15b st_delegation.testLink : PASS > >>>DELEG7 st_delegation.testIgnoreDeleg : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=20)******** > >>>Woke up > >>>DELEG7 st_delegation.testIgnoreDeleg : PASS > >>>DELEG8 st_delegation.testDelegShare : RUNNING > >>>DELEG8 st_delegation.testDelegShare : PASS > >>>DELEG4 st_delegation.testCloseDeleg : RUNNING > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=22)******** > >>>Woke up > >>>DELEG4 st_delegation.testCloseDeleg : PASS > >>>DELEG14 st_delegation.testClaimCur : RUNNING > >>>Sleeping for 2 seconds: Waiting for recall > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=23)******** > >>>Woke up > >>>DELEG14 st_delegation.testClaimCur : PASS > >>>DELEG9 st_delegation.testChangeDeleg : RUNNING > >>>Sleeping for 3 seconds: > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>*****CB received COMPOUND****** > >>>******* CB_Recall (id=1)******** > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>Sleeping for 1 seconds: Got NFS4ERR_DELAY on open > >>>Woke up > >>>DELEG9 st_delegation.testChangeDeleg : PASS > >>>INIT st_setclientid.testValid : RUNNING > >>>INIT st_setclientid.testValid : PASS > >>>MKFILE st_open.testOpen : RUNNING > >>>MKFILE st_open.testOpen : PASS > >>>REBT8 st_reboot.testValidDeleg : RUNNING > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT8 st_reboot.testValidDeleg : PASS > >>>REBT3 st_reboot.testRebootWait : RUNNING > >>>Got error: Connection closed > >>>Sleeping for 10 seconds: Waiting till halfway through grace period > >>>Woke up > >>>Sleeping for 11 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT3 st_reboot.testRebootWait : PASS > >>>REBT1 st_reboot.testRebootValid : RUNNING > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT1 st_reboot.testRebootValid : PASS > >>>REBT10 st_reboot.testRebootMultiple : RUNNING > >>>Got error: Connection closed > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT10 st_reboot.testRebootMultiple : PASS > >>>MKDIR st_create.testDir : RUNNING > >>>MKDIR st_create.testDir : PASS > >>>REBT2 st_reboot.testManyClaims : RUNNING > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT2 st_reboot.testManyClaims : PASS > >>>REBT11 st_reboot.testGraceSeqid : RUNNING > >>>Got error: Connection closed > >>>Sleeping for 10 seconds: Waiting till halfway through grace period > >>>Woke up > >>>Sleeping for 11 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT11 st_reboot.testGraceSeqid : PASS > >>>REBT6 st_reboot.testEdge2 : RUNNING > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>Got error: Connection closed > >>>Got error: Connection closed > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT6 st_reboot.testEdge2 : PASS > >>>REBT5 st_reboot.testEdge1 : RUNNING > >>>Sleeping for 22 seconds: Waiting for lock lease to expire > >>>Woke up > >>>Got error: Connection closed > >>>Got error: Connection closed > >>>Sleeping for 20 seconds: Waiting for grace period to end > >>>Woke up > >>>REBT5 st_reboot.testEdge1 : PASS > >>>RPLY8 st_replay.testUnlockWait : RUNNING > >>>Sleeping for 30 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY8 st_replay.testUnlockWait : PASS > >>>RPLY7 st_replay.testUnlock : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY7 st_replay.testUnlock : PASS > >>>RPLY3 st_replay.testReplayState2 : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY3 st_replay.testReplayState2 : PASS > >>>RPLY2 st_replay.testReplayState1 : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY2 st_replay.testReplayState1 : PASS > >>>RPLY4 st_replay.testReplayNonState : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY4 st_replay.testReplayNonState : PASS > >>>RPLY13 st_replay.testOpenConfirmFail : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY13 st_replay.testOpenConfirmFail : PASS > >>>RPLY12 st_replay.testOpenConfirm : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY12 st_replay.testOpenConfirm : PASS > >>>RPLY1 st_replay.testOpen : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY1 st_replay.testOpen : PASS > >>>RPLY14 st_replay.testMkdirReplay : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY14 st_replay.testMkdirReplay : PASS > >>>RPLY6 st_replay.testLockDenied : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY6 st_replay.testLockDenied : PASS > >>>RPLY5 st_replay.testLock : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY5 st_replay.testLock : PASS > >>>RPLY10 st_replay.testCloseWait : RUNNING > >>>Sleeping for 30 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY10 st_replay.testCloseWait : PASS > >>>RPLY11 st_replay.testCloseFail : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY11 st_replay.testCloseFail : PASS > >>>RPLY9 st_replay.testClose : RUNNING > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>Sleeping for 0.3 seconds: > >>>Woke up > >>>RPLY9 st_replay.testClose : PASS > >>>WRT3 st_write.testWithOpen : RUNNING > >>>WRT3 st_write.testWithOpen : PASS > >>>WRT5b st_write.testTooLargeData : RUNNING > >>>WRT5b st_write.testTooLargeData : PASS > >>>WRT19 st_write.testStolenStateid : RUNNING > >>>WRT19 st_write.testStolenStateid : PASS > >>>WRT2 st_write.testStateidOne : RUNNING > >>>WRT2 st_write.testStateidOne : PASS > >>>WRT11 st_write.testStaleStateid : RUNNING > >>>WRT11 st_write.testStaleStateid : PASS > >>>MKSOCK st_create.testSocket : RUNNING > >>>MKSOCK st_create.testSocket : PASS > >>>WRT6s st_write.testSocket : RUNNING > >>>WRT6s st_write.testSocket : PASS > >>>WRT15 st_write.testSizes : RUNNING > >>>WRT15 st_write.testSizes : PASS > >>>WRT1b st_write.testSimpleWrite2 : RUNNING > >>>WRT1b st_write.testSimpleWrite2 : PASS > >>>WRT1 st_write.testSimpleWrite : RUNNING > >>>WRT1 st_write.testSimpleWrite : PASS > >>>WRT9 st_write.testShareDeny : RUNNING > >>>WRT9 st_write.testShareDeny : PASS > >>>WRT8 st_write.testOpenMode : RUNNING > >>>WRT8 st_write.testOpenMode : PASS > >>>WRT12 st_write.testOldStateid : RUNNING > >>>WRT12 st_write.testOldStateid : PASS > >>>WRT7 st_write.testNoFh : RUNNING > >>>WRT7 st_write.testNoFh : PASS > >>>WRT4 st_write.testNoData : RUNNING > >>>Sleeping for 1 seconds: > >>>Woke up > >>>WRT4 st_write.testNoData : PASS > >>>WRT5a st_write.testMaximumData : RUNNING > >>>WRT5a st_write.testMaximumData : PASS > >>>MKLINK st_create.testLink : RUNNING > >>>MKLINK st_create.testLink : PASS > >>>WRT6a st_write.testLink : RUNNING > >>>WRT6a st_write.testLink : PASS > >>>WRT14 st_write.testLargeWrite : RUNNING > >>>WRT14 st_write.testLargeWrite : PASS > >>>MKFIFO st_create.testFIFO : RUNNING > >>>MKFIFO st_create.testFIFO : PASS > >>>WRT6f st_write.testFifo : RUNNING > >>>WRT6f st_write.testFifo : PASS > >>>WRT13 st_write.testDoubleWrite : RUNNING > >>>WRT13 st_write.testDoubleWrite : PASS > >>>WRT6d st_write.testDir : RUNNING > >>>WRT6d st_write.testDir : PASS > >>>MODE st_setattr.testMode : RUNNING > >>>MODE st_setattr.testMode : PASS > >>>WRT18 st_write.testChangeGranularityWrite : RUNNING > >>>WRT18 st_write.testChangeGranularityWrite : PASS > >>>LOOKSOCK st_lookup.testSocket : RUNNING > >>>LOOKSOCK st_lookup.testSocket : PASS > >>>VF5s st_verify.testWriteOnlySocket : RUNNING > >>>VF5s st_verify.testWriteOnlySocket : PASS > >>>LOOKLINK st_lookup.testLink : RUNNING > >>>LOOKLINK st_lookup.testLink : PASS > >>>VF5a st_verify.testWriteOnlyLink : RUNNING > >>>VF5a st_verify.testWriteOnlyLink : PASS > >>>LOOKFILE st_lookup.testFile : RUNNING > >>>LOOKFILE st_lookup.testFile : PASS > >>>VF5r st_verify.testWriteOnlyFile : RUNNING > >>>VF5r st_verify.testWriteOnlyFile : PASS > >>>LOOKFIFO st_lookup.testFifo : RUNNING > >>>LOOKFIFO st_lookup.testFifo : PASS > >>>VF5f st_verify.testWriteOnlyFifo : RUNNING > >>>VF5f st_verify.testWriteOnlyFifo : PASS > >>>LOOKDIR st_lookup.testDir : RUNNING > >>>LOOKDIR st_lookup.testDir : PASS > >>>VF5d st_verify.testWriteOnlyDir : RUNNING > >>>VF5d st_verify.testWriteOnlyDir : PASS > >>>VF7s st_verify.testUnsupportedSocket : RUNNING > >>>VF7s st_verify.testUnsupportedSocket : PASS > >>>VF7a st_verify.testUnsupportedLink : RUNNING > >>>VF7a st_verify.testUnsupportedLink : PASS > >>>VF7r st_verify.testUnsupportedFile : RUNNING > >>>VF7r st_verify.testUnsupportedFile : PASS > >>>VF7f st_verify.testUnsupportedFifo : RUNNING > >>>VF7f st_verify.testUnsupportedFifo : PASS > >>>VF7d st_verify.testUnsupportedDir : RUNNING > >>>VF7d st_verify.testUnsupportedDir : PASS > >>>VF2s st_verify.testTypeSocket : RUNNING > >>>VF2s st_verify.testTypeSocket : PASS > >>>VF2a st_verify.testTypeLink : RUNNING > >>>VF2a st_verify.testTypeLink : PASS > >>>VF2r st_verify.testTypeFile : RUNNING > >>>VF2r st_verify.testTypeFile : PASS > >>>VF2f st_verify.testTypeFifo : RUNNING > >>>VF2f st_verify.testTypeFifo : PASS > >>>VF2d st_verify.testTypeDir : RUNNING > >>>VF2d st_verify.testTypeDir : PASS > >>>VF4 st_verify.testNoFh : RUNNING > >>>VF4 st_verify.testNoFh : PASS > >>>VF1s st_verify.testMandSocket : RUNNING > >>>VF1s st_verify.testMandSocket : PASS > >>>VF1a st_verify.testMandLink : RUNNING > >>>VF1a st_verify.testMandLink : PASS > >>>VF1r st_verify.testMandFile : RUNNING > >>>VF1r st_verify.testMandFile : PASS > >>>VF1f st_verify.testMandFifo : RUNNING > >>>VF1f st_verify.testMandFifo : PASS > >>>VF1d st_verify.testMandDir : RUNNING > >>>VF1d st_verify.testMandDir : PASS > >>>VF3s st_verify.testBadSizeSocket : RUNNING > >>>VF3s st_verify.testBadSizeSocket : PASS > >>>VF3a st_verify.testBadSizeLink : RUNNING > >>>VF3a st_verify.testBadSizeLink : PASS > >>>VF3r st_verify.testBadSizeFile : RUNNING > >>>VF3r st_verify.testBadSizeFile : PASS > >>>VF3f st_verify.testBadSizeFifo : RUNNING > >>>VF3f st_verify.testBadSizeFifo : PASS > >>>VF3d st_verify.testBadSizeDir : RUNNING > >>>VF3d st_verify.testBadSizeDir : PASS > >>>CIDCF1 st_setclientidconfirm.testStale : RUNNING > >>>CIDCF1 st_setclientidconfirm.testStale : PASS > >>>CIDCF3 st_setclientidconfirm.testAllCases : RUNNING > >>>CIDCF3 st_setclientidconfirm.testAllCases : PASS > >>>CID4e st_setclientid.testUnConfReplaced : RUNNING > >>>CID4e st_setclientid.testUnConfReplaced : PASS > >>>CID2 st_setclientid.testNotInUse : RUNNING > >>>CID2 st_setclientid.testNotInUse : PASS > >>>CID6 st_setclientid.testNoConfirm : RUNNING > >>>CID6 st_setclientid.testNoConfirm : PASS > >>>CID5 st_setclientid.testLotsOfClients : RUNNING > >>>CID5 st_setclientid.testLotsOfClients : PASS > >>>CID3 st_setclientid.testLoseAnswer : RUNNING > >>>CID3 st_setclientid.testLoseAnswer : PASS > >>>CID2a st_setclientid.testInUse : RUNNING > >>>CID2a st_setclientid.testInUse : PASS > >>>CID4b st_setclientid.testConfirmedDiffVerifier : RUNNING > >>>CID4b st_setclientid.testConfirmedDiffVerifier : PASS > >>>CID4d st_setclientid.testConfUnConfDiffVerifier2 : RUNNING > >>>CID4d st_setclientid.testConfUnConfDiffVerifier2 : PASS > >>>CID4c st_setclientid.testConfUnConfDiffVerifier1 : RUNNING > >>>CID4c st_setclientid.testConfUnConfDiffVerifier1 : PASS > >>>CID1b st_setclientid.testClientUpdateCallback : RUNNING > >>>CID1b st_setclientid.testClientUpdateCallback : PASS > >>>CID1 st_setclientid.testClientReboot : RUNNING > >>>CID1 st_setclientid.testClientReboot : PASS > >>>CID4a st_setclientid.testCallbackInfoUpdate : RUNNING > >>>CID4a st_setclientid.testCallbackInfoUpdate : PASS > >>>CID4 st_setclientid.testAllCases : RUNNING > >>>CID4 st_setclientid.testAllCases : PASS > >>>SATT2c st_setattr.testUselessStateid3 : RUNNING > >>>SATT2c st_setattr.testUselessStateid3 : PASS > >>>SATT2b st_setattr.testUselessStateid2 : RUNNING > >>>SATT2b st_setattr.testUselessStateid2 : PASS > >>>SATT2a st_setattr.testUselessStateid1 : RUNNING > >>>SATT2a st_setattr.testUselessStateid1 : PASS > >>>SATT11s st_setattr.testUnsupportedSocket : RUNNING > >>>SATT11s st_setattr.testUnsupportedSocket : PASS > >>>SATT11a st_setattr.testUnsupportedLink : RUNNING > >>>SATT11a st_setattr.testUnsupportedLink : PASS > >>>SATT11r st_setattr.testUnsupportedFile : RUNNING > >>>SATT11r st_setattr.testUnsupportedFile : PASS > >>>SATT11f st_setattr.testUnsupportedFifo : RUNNING > >>>SATT11f st_setattr.testUnsupportedFifo : PASS > >>>SATT11d st_setattr.testUnsupportedDir : RUNNING > >>>SATT11d st_setattr.testUnsupportedDir : PASS > >>>SATT12s st_setattr.testSizeSocket : RUNNING > >>>SATT12s st_setattr.testSizeSocket : PASS > >>>SATT12a st_setattr.testSizeLink : RUNNING > >>>SATT12a st_setattr.testSizeLink : PASS > >>>SATT12f st_setattr.testSizeFifo : RUNNING > >>>SATT12f st_setattr.testSizeFifo : PASS > >>>SATT12d st_setattr.testSizeDir : RUNNING > >>>SATT12d st_setattr.testSizeDir : PASS > >>>SATT3d st_setattr.testResizeFile3 : RUNNING > >>>SATT3d st_setattr.testResizeFile3 : PASS > >>>SATT3c st_setattr.testResizeFile2 : RUNNING > >>>SATT3c st_setattr.testResizeFile2 : PASS > >>>SATT3b st_setattr.testResizeFile1 : RUNNING > >>>SATT3b st_setattr.testResizeFile1 : PASS > >>>SATT3a st_setattr.testResizeFile0 : RUNNING > >>>SATT3a st_setattr.testResizeFile0 : PASS > >>>SATT6d st_setattr.testReadonlyDir : RUNNING > >>>SATT6d st_setattr.testReadonlyDir : PASS > >>>SATT6s st_setattr.testReadonlySocket : RUNNING > >>>SATT6s st_setattr.testReadonlySocket : PASS > >>>SATT6a st_setattr.testReadonlyLink : RUNNING > >>>SATT6a st_setattr.testReadonlyLink : PASS > >>>SATT6r st_setattr.testReadonlyFile : RUNNING > >>>SATT6r st_setattr.testReadonlyFile : PASS > >>>SATT6f st_setattr.testReadonlyFifo : RUNNING > >>>SATT6f st_setattr.testReadonlyFifo : PASS > >>>SATT4 st_setattr.testOpenModeResize : RUNNING > >>>SATT4 st_setattr.testOpenModeResize : PASS > >>>SATT5 st_setattr.testNoFh : RUNNING > >>>SATT5 st_setattr.testNoFh : PASS > >>>SATT10 st_setattr.testInvalidTime : RUNNING > >>>SATT10 st_setattr.testInvalidTime : PASS > >>>SATT8 st_setattr.testInvalidAttr2 : RUNNING > >>>SATT8 st_setattr.testInvalidAttr2 : PASS > >>>SATT7 st_setattr.testInvalidAttr1 : RUNNING > >>>Traceback (most recent call last): > >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > >>> self.runtest(self, environment) > >>> File "/root/pynfs/nfs4.0/servertests/st_renew.py", line 41, in testExpired > >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_READ, > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > >>> check_result(res, "Opening file %s" % _getname(owner, path)) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > >>> raise BadCompoundRes(resop, res.status, msg) > >>>nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >>>SATT7 st_setattr.testInvalidAttr1 : PASS > >>>SATT13 st_setattr.testInodeLocking : RUNNING > >>>SATT13 st_setattr.testInodeLocking : PASS > >>>SATT1r st_setattr.testFile : RUNNING > >>>SATT1r st_setattr.testFile : PASS > >>>SATT1f st_setattr.testFifo : RUNNING > >>>SATT1f st_setattr.testFifo : PASS > >>>SATT16 st_setattr.testEmptyPrincipal : RUNNING > >>>SATT16 st_setattr.testEmptyPrincipal : PASS > >>>SATT17 st_setattr.testEmptyGroupPrincipal : RUNNING > >>>SATT17 st_setattr.testEmptyGroupPrincipal : PASS > >>>SATT1d st_setattr.testDir : RUNNING > >>>SATT1d st_setattr.testDir : PASS > >>>SATT15 st_setattr.testChangeGranularity : RUNNING > >>>SATT15 st_setattr.testChangeGranularity : PASS > >>>SATT14 st_setattr.testChange : RUNNING > >>>SATT14 st_setattr.testChange : PASS > >>>SEC1 st_secinfo.testValid : RUNNING > >>>SEC1 st_secinfo.testValid : PASS > >>>SEC5 st_secinfo.testZeroLenName : RUNNING > >>>SEC5 st_secinfo.testZeroLenName : PASS > >>>SEC3 st_secinfo.testVaporFile : RUNNING > >>>SEC3 st_secinfo.testVaporFile : PASS > >>>SEC7 st_secinfo.testRPCSEC_GSS : RUNNING > >>>SEC7 st_secinfo.testRPCSEC_GSS : PASS > >>>SEC2 st_secinfo.testNotDir : RUNNING > >>>SEC2 st_secinfo.testNotDir : PASS > >>>SEC4 st_secinfo.testNoFh : RUNNING > >>>SEC4 st_secinfo.testNoFh : PASS > >>>SVFH1 st_savefh.testNoFh : RUNNING > >>>SVFH1 st_savefh.testNoFh : PASS > >>>SVFH2s st_restorefh.testValidSocket : RUNNING > >>>SVFH2s st_restorefh.testValidSocket : PASS > >>>SVFH2a st_restorefh.testValidLink : RUNNING > >>>SVFH2a st_restorefh.testValidLink : PASS > >>>SVFH2r st_restorefh.testValidFile : RUNNING > >>>SVFH2r st_restorefh.testValidFile : PASS > >>>SVFH2f st_restorefh.testValidFifo : RUNNING > >>>SVFH2f st_restorefh.testValidFifo : PASS > >>>SVFH2d st_restorefh.testValidDir : RUNNING > >>>SVFH2d st_restorefh.testValidDir : PASS > >>>RSFH2 st_restorefh.testNoFh2 : RUNNING > >>>RSFH2 st_restorefh.testNoFh2 : PASS > >>>RSFH1 st_restorefh.testNoFh1 : RUNNING > >>>RSFH1 st_restorefh.testNoFh1 : PASS > >>>RENEW1 st_renew.testRenew : RUNNING > >>>RENEW1 st_renew.testRenew : PASS > >>>RENEW3 st_renew.testExpired : RUNNING > >>>Sleeping for 30 seconds: > >>>Woke up > >>>RENEW3 st_renew.testExpired : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>RENEW2 st_renew.testBadRenew : RUNNING > >>>RENEW2 st_renew.testBadRenew : PASS > >>>RNM6 st_rename.testZeroLengthOldname : RUNNING > >>>RNM6 st_rename.testZeroLengthOldname : PASS > >>>RNM7 st_rename.testZeroLengthNewname : RUNNING > >>>RNM7 st_rename.testZeroLengthNewname : PASS > >>>RNM1s st_rename.testValidSocket : RUNNING > >>>RNM1s st_rename.testValidSocket : PASS > >>>RNM1a st_rename.testValidLink : RUNNING > >>>RNM1a st_rename.testValidLink : PASS > >>>RNM1r st_rename.testValidFile : RUNNING > >>>RNM1r st_rename.testValidFile : PASS > >>>RNM1f st_rename.testValidFifo : RUNNING > >>>RNM1f st_rename.testValidFifo : PASS > >>>RNM1d st_rename.testValidDir : RUNNING > >>>RNM1d st_rename.testValidDir : PASS > >>>RNM2s st_rename.testSfhSocket : RUNNING > >>>RNM2s st_rename.testSfhSocket : PASS > >>>RNM2a st_rename.testSfhLink : RUNNING > >>>RNM2a st_rename.testSfhLink : PASS > >>>RNM2r st_rename.testSfhFile : RUNNING > >>>RNM2r st_rename.testSfhFile : PASS > >>>RNM2f st_rename.testSfhFifo : RUNNING > >>>RNM2f st_rename.testSfhFifo : PASS > >>>RNM19 st_rename.testSelfRenameFile : RUNNING > >>>RNM19 st_rename.testSelfRenameFile : PASS > >>>RNM18 st_rename.testSelfRenameDir : RUNNING > >>>RNM18 st_rename.testSelfRenameDir : PASS > >>>RNM5 st_rename.testNonExistent : RUNNING > >>>RNM5 st_rename.testNonExistent : PASS > >>>RNM4 st_rename.testNoSfh : RUNNING > >>>RNM4 st_rename.testNoSfh : PASS > >>>LINKS st_link.testSupported : RUNNING > >>>LINKS st_link.testSupported : PASS > >>>RNM20 st_rename.testLinkRename : RUNNING > >>>RNM20 st_rename.testLinkRename : PASS > >>>RNM17 st_rename.testFileToFullDir : RUNNING > >>>RNM17 st_rename.testFileToFullDir : PASS > >>>RNM15 st_rename.testFileToFile : RUNNING > >>>RNM15 st_rename.testFileToFile : PASS > >>>RNM14 st_rename.testFileToDir : RUNNING > >>>RNM14 st_rename.testFileToDir : PASS > >>>RNM10 st_rename.testDotsOldname : RUNNING > >>>RNM10 st_rename.testDotsOldname : PASS > >>>RNM11 st_rename.testDotsNewname : RUNNING > >>>RNM11 st_rename.testDotsNewname : PASS > >>>RNM12 st_rename.testDirToObj : RUNNING > >>>RNM12 st_rename.testDirToObj : PASS > >>>RNM16 st_rename.testDirToFullDir : RUNNING > >>>RNM16 st_rename.testDirToFullDir : PASS > >>>RNM13 st_rename.testDirToDir : RUNNING > >>>RNM13 st_rename.testDirToDir : PASS > >>>RNM3s st_rename.testCfhSocket : RUNNING > >>>RNM3s st_rename.testCfhSocket : PASS > >>>RNM3a st_rename.testCfhLink : RUNNING > >>>RNM3a st_rename.testCfhLink : PASS > >>>RNM3r st_rename.testCfhFile : RUNNING > >>>RNM3r st_rename.testCfhFile : PASS > >>>RNM3f st_rename.testCfhFifo : RUNNING > >>>RNM3f st_rename.testCfhFifo : PASS > >>>RM4 st_remove.testZeroLengthTarget : RUNNING > >>>RM4 st_remove.testZeroLengthTarget : PASS > >>>RM1s st_remove.testSocket : RUNNING > >>>RM1s st_remove.testSocket : PASS > >>>RM8 st_remove.testNotEmpty : RUNNING > >>>RM8 st_remove.testNotEmpty : PASS > >>>RM6 st_remove.testNonExistent : RUNNING > >>>RM6 st_remove.testNonExistent : PASS > >>>RM3 st_remove.testNoFh : RUNNING > >>>RM3 st_remove.testNoFh : PASS > >>>RM1a st_remove.testLink : RUNNING > >>>RM1a st_remove.testLink : PASS > >>>RM1r st_remove.testFile : RUNNING > >>>RM1r st_remove.testFile : PASS > >>>RM1f st_remove.testFifo : RUNNING > >>>RM1f st_remove.testFifo : PASS > >>>RM7 st_remove.testDots : RUNNING > >>>RM7 st_remove.testDots : PASS > >>>RM1d st_remove.testDir : RUNNING > >>>RM1d st_remove.testDir : PASS > >>>RM2s st_remove.testCfhSocket : RUNNING > >>>RM2s st_remove.testCfhSocket : PASS > >>>RM2a st_remove.testCfhLink : RUNNING > >>>RM2a st_remove.testCfhLink : PASS > >>>RM2r st_remove.testCfhFile : RUNNING > >>>RM2r st_remove.testCfhFile : PASS > >>>RM2f st_remove.testCfhFifo : RUNNING > >>>RM2f st_remove.testCfhFifo : PASS > >>>RLOWN1 st_releaselockowner.testFile : RUNNING > >>>RLOWN1 st_releaselockowner.testFile : PASS > >>>RDLK2s st_readlink.testSocket : RUNNING > >>>RDLK2s st_readlink.testSocket : PASS > >>>RDLK1 st_readlink.testReadlink : RUNNING > >>>RDLK1 st_readlink.testReadlink : PASS > >>>RDLK3 st_readlink.testNoFh : RUNNING > >>>RDLK3 st_readlink.testNoFh : PASS > >>>RDLK2r st_readlink.testFile : RUNNING > >>>RDLK2r st_readlink.testFile : PASS > >>>RDLK2f st_readlink.testFifo : RUNNING > >>>RDLK2f st_readlink.testFifo : PASS > >>>RDLK2d st_readlink.testDir : RUNNING > >>>RDLK2d st_readlink.testDir : PASS > >>>RDDR9 st_readdir.testWriteOnlyAttributes : RUNNING > >>>RDDR9 st_readdir.testWriteOnlyAttributes : PASS > >>>RDDR12 st_readdir.testUnaccessibleDirAttrs : RUNNING > >>>RDDR12 st_readdir.testUnaccessibleDirAttrs : PASS > >>>RDDR11 st_readdir.testUnaccessibleDir : RUNNING > >>>RDDR11 st_readdir.testUnaccessibleDir : PASS > >>>RDDR4 st_readdir.testSubsequent : RUNNING > >>>RDDR4 st_readdir.testSubsequent : PASS > >>>RDDR10 st_readdir.testReservedCookies : RUNNING > >>>RDDR10 st_readdir.testReservedCookies : PASS > >>>RDDR6 st_readdir.testNoFh : RUNNING > >>>RDDR6 st_readdir.testNoFh : PASS > >>>RDDR7 st_readdir.testMaxcountZero : RUNNING > >>>RDDR7 st_readdir.testMaxcountZero : PASS > >>>RDDR8 st_readdir.testMaxcountSmall : RUNNING > >>>RDDR8 st_readdir.testMaxcountSmall : PASS > >>>RDDR2 st_readdir.testFirst : RUNNING > >>>RDDR2 st_readdir.testFirst : PASS > >>>RDDR5s st_readdir.testFhSocket : RUNNING > >>>RDDR5s st_readdir.testFhSocket : PASS > >>>RDDR5a st_readdir.testFhLink : RUNNING > >>>RDDR5a st_readdir.testFhLink : PASS > >>>RDDR5r st_readdir.testFhFile : RUNNING > >>>RDDR5r st_readdir.testFhFile : PASS > >>>RDDR5f st_readdir.testFhFifo : RUNNING > >>>RDDR5f st_readdir.testFhFifo : PASS > >>>RDDR1 st_readdir.testEmptyDir : RUNNING > >>>RDDR1 st_readdir.testEmptyDir : PASS > >>>RDDR8b st_readdir.testDircountVarious : RUNNING > >>>RDDR8b st_readdir.testDircountVarious : PASS > >>>RDDR3 st_readdir.testAttr : RUNNING > >>>RDDR3 st_readdir.testAttr : PASS > >>>RD6 st_read.testZeroCount : RUNNING > >>>RD6 st_read.testZeroCount : PASS > >>>RD3 st_read.testWithOpen : RUNNING > >>>RD3 st_read.testWithOpen : PASS > >>>RD2 st_read.testStateidOnes : RUNNING > >>>RD2 st_read.testStateidOnes : PASS > >>>RD10 st_read.testStaleStateid : RUNNING > >>>RD10 st_read.testStaleStateid : PASS > >>>RD7s st_read.testSocket : RUNNING > >>>RD7s st_read.testSocket : PASS > >>>RD1 st_read.testSimpleRead : RUNNING > >>>RD1 st_read.testSimpleRead : PASS > >>>RD11 st_read.testOldStateid : RUNNING > >>>RD11 st_read.testOldStateid : PASS > >>>RD8 st_read.testNoFh : RUNNING > >>>RD8 st_read.testNoFh : PASS > >>>RD7a st_read.testLink : RUNNING > >>>RD7a st_read.testLink : PASS > >>>RD5 st_read.testLargeOffset : RUNNING > >>>RD5 st_read.testLargeOffset : PASS > >>>RD7f st_read.testFifo : RUNNING > >>>RD7f st_read.testFifo : PASS > >>>RD7d st_read.testDir : RUNNING > >>>RD7d st_read.testDir : PASS > >>>ROOT1 st_putrootfh.testSupported : RUNNING > >>>ROOT1 st_putrootfh.testSupported : PASS > >>>PUB1 st_putpubfh.testSupported : RUNNING > >>>PUB1 st_putpubfh.testSupported : PASS > >>>PUB2 st_putpubfh.testSameAsRoot : RUNNING > >>>PUB2 st_putpubfh.testSameAsRoot : PASS > >>>PUTFH1s st_putfh.testSocket : RUNNING > >>>PUTFH1s st_putfh.testSocket : PASS > >>>PUTFH1a st_putfh.testLink : RUNNING > >>>PUTFH1a st_putfh.testLink : PASS > >>>PUTFH1r st_putfh.testFile : RUNNING > >>>PUTFH1r st_putfh.testFile : PASS > >>>PUTFH1f st_putfh.testFifo : RUNNING > >>>PUTFH1f st_putfh.testFifo : PASS > >>>PUTFH1d st_putfh.testDir : RUNNING > >>>PUTFH1d st_putfh.testDir : PASS > >>>PUTFH2 st_putfh.testBadHandle : RUNNING > >>>PUTFH2 st_putfh.testBadHandle : PASS > >>>OPDG6 st_opendowngrade.testStaleStateid : RUNNING > >>>OPDG6 st_opendowngrade.testStaleStateid : PASS > >>>OPDG1 st_opendowngrade.testRegularOpen : RUNNING > >>>OPDG1 st_opendowngrade.testRegularOpen : PASS > >>>OPDG10 st_opendowngrade.testOpenDowngradeSequence : RUNNING > >>>OPDG10 st_opendowngrade.testOpenDowngradeSequence : PASS > >>>OPDG11 st_opendowngrade.testOpenDowngradeLock : RUNNING > >>>OPDG11 st_opendowngrade.testOpenDowngradeLock : PASS > >>>OPDG7 st_opendowngrade.testOldStateid : RUNNING > >>>OPDG7 st_opendowngrade.testOldStateid : PASS > >>>OPDG8 st_opendowngrade.testNoFh : RUNNING > >>>OPDG8 st_opendowngrade.testNoFh : PASS > >>>OPDG3 st_opendowngrade.testNewState2 : RUNNING > >>>OPDG3 st_opendowngrade.testNewState2 : PASS > >>>OPDG2 st_opendowngrade.testNewState1 : RUNNING > >>>OPDG2 st_opendowngrade.testNewState1 : PASS > >>>OPDG5 st_opendowngrade.testBadStateid : RUNNING > >>>OPDG5 st_opendowngrade.testBadStateid : PASS > >>>OPDG4 st_opendowngrade.testBadSeqid : RUNNING > >>>OPDG4 st_opendowngrade.testBadSeqid : PASS > >>>OPCF6 st_openconfirm.testStaleStateid : RUNNING > >>>OPCF6 st_openconfirm.testStaleStateid : PASS > >>>OPCF2 st_openconfirm.testNoFh : RUNNING > >>>OPCF2 st_openconfirm.testNoFh : PASS > >>>OPCF1 st_openconfirm.testConfirmCreate : RUNNING > >>>OPCF1 st_openconfirm.testConfirmCreate : PASS > >>>OPCF5 st_openconfirm.testBadStateid : RUNNING > >>>OPCF5 st_openconfirm.testBadStateid : PASS > >>>OPCF4 st_openconfirm.testBadSeqid : RUNNING > >>>OPCF4 st_openconfirm.testBadSeqid : PASS > >>>OPEN10 st_open.testZeroLenName : RUNNING > >>>OPEN10 st_open.testZeroLenName : PASS > >>>OPEN29 st_open.testUpgrades : RUNNING > >>>OPEN29 st_open.testUpgrades : PASS > >>>OPEN15 st_open.testUnsupportedAttributes : RUNNING > >>>OPEN15 st_open.testUnsupportedAttributes : PASS > >>>OPEN7s st_open.testSocket : RUNNING > >>>OPEN7s st_open.testSocket : PASS > >>>OPEN18 st_open.testShareConflict1 : RUNNING > >>>OPEN18 st_open.testShareConflict1 : PASS > >>>OPEN30 st_open.testReplay : RUNNING > >>>OPEN30 st_open.testReplay : PASS > >>>OPEN6 st_open.testOpenVaporFile : RUNNING > >>>OPEN6 st_open.testOpenVaporFile : PASS > >>>OPEN5 st_open.testOpenFile : RUNNING > >>>OPEN5 st_open.testOpenFile : PASS > >>>OPEN12 st_open.testNotDir : RUNNING > >>>OPEN12 st_open.testNotDir : PASS > >>>OPEN8 st_open.testNoFh : RUNNING > >>>OPEN8 st_open.testNoFh : PASS > >>>OPEN17 st_open.testModeChange : RUNNING > >>>OPEN17 st_open.testModeChange : PASS > >>>OPEN11 st_open.testLongName : RUNNING > >>>OPEN11 st_open.testLongName : PASS > >>>OPEN7a st_open.testLink : RUNNING > >>>OPEN7a st_open.testLink : PASS > >>>OPEN14 st_open.testInvalidAttrmask : RUNNING > >>>OPEN14 st_open.testInvalidAttrmask : PASS > >>>OPEN7f st_open.testFifo : RUNNING > >>>OPEN7f st_open.testFifo : PASS > >>>OPEN20 st_open.testFailedOpen : RUNNING > >>>OPEN20 st_open.testFailedOpen : PASS > >>>OPEN7d st_open.testDir : RUNNING > >>>OPEN7d st_open.testDir : PASS > >>>OPEN28 st_open.testDenyWrite4 : RUNNING > >>>OPEN28 st_open.testDenyWrite4 : PASS > >>>OPEN27 st_open.testDenyWrite3 : RUNNING > >>>OPEN27 st_open.testDenyWrite3 : PASS > >>>OPEN26 st_open.testDenyWrite2 : RUNNING > >>>OPEN26 st_open.testDenyWrite2 : PASS > >>>OPEN25 st_open.testDenyWrite1 : RUNNING > >>>OPEN25 st_open.testDenyWrite1 : PASS > >>>OPEN24 st_open.testDenyRead4 : RUNNING > >>>OPEN24 st_open.testDenyRead4 : PASS > >>>OPEN23b st_open.testDenyRead3a : RUNNING > >>>OPEN23b st_open.testDenyRead3a : PASS > >>>OPEN23 st_open.testDenyRead3 : RUNNING > >>>OPEN23 st_open.testDenyRead3 : PASS > >>>OPEN22 st_open.testDenyRead2 : RUNNING > >>>OPEN22 st_open.testDenyRead2 : PASS > >>>OPEN21 st_open.testDenyRead1 : RUNNING > >>>OPEN21 st_open.testDenyRead1 : PASS > >>>OPEN2 st_open.testCreateUncheckedFile : RUNNING > >>>OPEN2 st_open.testCreateUncheckedFile : PASS > >>>OPEN3 st_open.testCreatGuardedFile : RUNNING > >>>OPEN3 st_open.testCreatGuardedFile : PASS > >>>OPEN4 st_open.testCreatExclusiveFile : RUNNING > >>>OPEN4 st_open.testCreatExclusiveFile : PASS > >>>OPEN16 st_open.testClaimPrev : RUNNING > >>>OPEN16 st_open.testClaimPrev : PASS > >>>OPEN31 st_open.testBadSeqid : RUNNING > >>>OPEN31 st_open.testBadSeqid : PASS > >>>NVF5s st_nverify.testWriteOnlySocket : RUNNING > >>>NVF5s st_nverify.testWriteOnlySocket : PASS > >>>NVF5a st_nverify.testWriteOnlyLink : RUNNING > >>>NVF5a st_nverify.testWriteOnlyLink : PASS > >>>NVF5r st_nverify.testWriteOnlyFile : RUNNING > >>>NVF5r st_nverify.testWriteOnlyFile : PASS > >>>NVF5f st_nverify.testWriteOnlyFifo : RUNNING > >>>NVF5f st_nverify.testWriteOnlyFifo : PASS > >>>Traceback (most recent call last): > >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > >>> self.runtest(self, environment) > >>> File "/root/pynfs/nfs4.0/servertests/st_locku.py", line 266, in testTimedoutUnlock > >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > >>> check_result(res, "Opening file %s" % _getname(owner, path)) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > >>> raise BadCompoundRes(resop, res.status, msg) > >>>nfs4lib.BadCompoundRes: Opening file b'LKU10-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >>>NVF5d st_nverify.testWriteOnlyDir : RUNNING > >>>NVF5d st_nverify.testWriteOnlyDir : PASS > >>>NVF7s st_nverify.testUnsupportedSocket : RUNNING > >>>NVF7s st_nverify.testUnsupportedSocket : PASS > >>>NVF7a st_nverify.testUnsupportedLink : RUNNING > >>>NVF7a st_nverify.testUnsupportedLink : PASS > >>>NVF7r st_nverify.testUnsupportedFile : RUNNING > >>>NVF7r st_nverify.testUnsupportedFile : PASS > >>>NVF7f st_nverify.testUnsupportedFifo : RUNNING > >>>NVF7f st_nverify.testUnsupportedFifo : PASS > >>>NVF7d st_nverify.testUnsupportedDir : RUNNING > >>>NVF7d st_nverify.testUnsupportedDir : PASS > >>>NVF2s st_nverify.testTypeSocket : RUNNING > >>>NVF2s st_nverify.testTypeSocket : PASS > >>>NVF2a st_nverify.testTypeLink : RUNNING > >>>NVF2a st_nverify.testTypeLink : PASS > >>>NVF2r st_nverify.testTypeFile : RUNNING > >>>NVF2r st_nverify.testTypeFile : PASS > >>>NVF2f st_nverify.testTypeFifo : RUNNING > >>>NVF2f st_nverify.testTypeFifo : PASS > >>>NVF2d st_nverify.testTypeDir : RUNNING > >>>NVF2d st_nverify.testTypeDir : PASS > >>>NVF4 st_nverify.testNoFh : RUNNING > >>>NVF4 st_nverify.testNoFh : PASS > >>>NVF1s st_nverify.testMandSocket : RUNNING > >>>NVF1s st_nverify.testMandSocket : PASS > >>>NVF1a st_nverify.testMandLink : RUNNING > >>>NVF1a st_nverify.testMandLink : PASS > >>>NVF1r st_nverify.testMandFile : RUNNING > >>>NVF1r st_nverify.testMandFile : PASS > >>>NVF1f st_nverify.testMandFifo : RUNNING > >>>NVF1f st_nverify.testMandFifo : PASS > >>>NVF1d st_nverify.testMandDir : RUNNING > >>>NVF1d st_nverify.testMandDir : PASS > >>>NVF3s st_nverify.testBadSizeSocket : RUNNING > >>>NVF3s st_nverify.testBadSizeSocket : PASS > >>>NVF3a st_nverify.testBadSizeLink : RUNNING > >>>NVF3a st_nverify.testBadSizeLink : PASS > >>>NVF3r st_nverify.testBadSizeFile : RUNNING > >>>NVF3r st_nverify.testBadSizeFile : PASS > >>>NVF3f st_nverify.testBadSizeFifo : RUNNING > >>>NVF3f st_nverify.testBadSizeFifo : PASS > >>>NVF3d st_nverify.testBadSizeDir : RUNNING > >>>NVF3d st_nverify.testBadSizeDir : PASS > >>>LOOKP2s st_lookupp.testSock : RUNNING > >>>LOOKP2s st_lookupp.testSock : PASS > >>>LOOKP4 st_lookupp.testNoFh : RUNNING > >>>LOOKP4 st_lookupp.testNoFh : PASS > >>>LOOKP2a st_lookupp.testLink : RUNNING > >>>LOOKP2a st_lookupp.testLink : PASS > >>>LOOKP2r st_lookupp.testFile : RUNNING > >>>LOOKP2r st_lookupp.testFile : PASS > >>>LOOKP2f st_lookupp.testFifo : RUNNING > >>>LOOKP2f st_lookupp.testFifo : PASS > >>>LOOKP1 st_lookupp.testDir : RUNNING > >>>LOOKP1 st_lookupp.testDir : PASS > >>>LOOKP3 st_lookupp.testAtRoot : RUNNING > >>>LOOKP3 st_lookupp.testAtRoot : PASS > >>>LOOK3 st_lookup.testZeroLength : RUNNING > >>>LOOK3 st_lookup.testZeroLength : PASS > >>>LOOK9 st_lookup.testUnaccessibleDir : RUNNING > >>>LOOK9 st_lookup.testUnaccessibleDir : PASS > >>>LOOK5a st_lookup.testSymlinkNotDir : RUNNING > >>>LOOK5a st_lookup.testSymlinkNotDir : PASS > >>>LOOK5s st_lookup.testSocketNotDir : RUNNING > >>>LOOK5s st_lookup.testSocketNotDir : PASS > >>>LOOK2 st_lookup.testNonExistent : RUNNING > >>>LOOK2 st_lookup.testNonExistent : PASS > >>>LOOK6 st_lookup.testNonAccessable : RUNNING > >>>LOOK6 st_lookup.testNonAccessable : PASS > >>>LOOK1 st_lookup.testNoFh : RUNNING > >>>LOOK1 st_lookup.testNoFh : PASS > >>>LOOK4 st_lookup.testLongName : RUNNING > >>>LOOK4 st_lookup.testLongName : PASS > >>>LOOK5r st_lookup.testFileNotDir : RUNNING > >>>LOOK5r st_lookup.testFileNotDir : PASS > >>>LOOK5f st_lookup.testFifoNotDir : RUNNING > >>>LOOK5f st_lookup.testFifoNotDir : PASS > >>>LOOK8 st_lookup.testDots : RUNNING > >>>LOOK8 st_lookup.testDots : PASS > >>>LOOK10 st_lookup.testBadOpaque : RUNNING > >>>LOOK10 st_lookup.testBadOpaque : PASS > >>>LKU3 st_locku.testZeroLen : RUNNING > >>>LKU3 st_locku.testZeroLen : PASS > >>>LKUNONE st_locku.testUnlocked : RUNNING > >>>LKUNONE st_locku.testUnlocked : PASS > >>>LKU10 st_locku.testTimedoutUnlock : RUNNING > >>>Sleeping for 22 seconds: > >>>Woke up > >>>LKU10 st_locku.testTimedoutUnlock : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'LKU10-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>LKU9 st_locku.testStaleLockStateid : RUNNING > >>>LKU9 st_locku.testStaleLockStateid : PASS > >>>LKUSPLIT st_locku.testSplit : RUNNING > >>>LKUSPLIT st_locku.testSplit : PASS > >>>LKUOVER st_locku.testOverlap : RUNNING > >>>LKUOVER st_locku.testOverlap : PASS > >>>LKU7 st_locku.testOldLockStateid : RUNNING > >>>LKU7 st_locku.testOldLockStateid : PASS > >>>LKU5 st_locku.testNoFh : RUNNING > >>>LKU5 st_locku.testNoFh : PASS > >>>LKU4 st_locku.testLenTooLong : RUNNING > >>>LKU4 st_locku.testLenTooLong : PASS > >>>LOCK1 st_lock.testFile : RUNNING > >>>LOCK1 st_lock.testFile : PASS > >>>LKU1 st_locku.testFile : RUNNING > >>>LKU1 st_locku.testFile : PASS > >>>LKU8 st_locku.testBadLockStateid : RUNNING > >>>LKU8 st_locku.testBadLockStateid : PASS > >>>LKU6b st_locku.testBadLockSeqid2 : RUNNING > >>>LKU6b st_locku.testBadLockSeqid2 : PASS > >>>LKU6 st_locku.testBadLockSeqid : RUNNING > >>>LKU6 st_locku.testBadLockSeqid : PASS > >>>LOCKRNG st_lock.test32bitRange : RUNNING > >>>LOCKRNG st_lock.test32bitRange : PASS > >>>LKU2 st_locku.test32bitRange : RUNNING > >>>LKU2 st_locku.test32bitRange : PASS > >>>LKT6 st_lockt.testZeroLen : RUNNING > >>>LKT6 st_lockt.testZeroLen : PASS > >>>LKT1 st_lockt.testUnlockedFile : RUNNING > >>>LKT1 st_lockt.testUnlockedFile : PASS > >>>LKT9 st_lockt.testStaleClientid : RUNNING > >>>LKT9 st_lockt.testStaleClientid : PASS > >>>LKT2s st_lockt.testSocket : RUNNING > >>>LKT2s st_lockt.testSocket : PASS > >>>LKT4 st_lockt.testPartialLockedFile2 : RUNNING > >>>LKT4 st_lockt.testPartialLockedFile2 : PASS > >>>LKT3 st_lockt.testPartialLockedFile1 : RUNNING > >>>LKT3 st_lockt.testPartialLockedFile1 : PASS > >>>LKTOVER st_lockt.testOverlap : RUNNING > >>>LKTOVER st_lockt.testOverlap : PASS > >>>LKT8 st_lockt.testNoFh : RUNNING > >>>LKT8 st_lockt.testNoFh : PASS > >>>LKT2a st_lockt.testLink : RUNNING > >>>LKT2a st_lockt.testLink : PASS > >>>LKT7 st_lockt.testLenTooLong : RUNNING > >>>LKT7 st_lockt.testLenTooLong : PASS > >>>LKT2f st_lockt.testFifo : RUNNING > >>>LKT2f st_lockt.testFifo : PASS > >>>LKT2d st_lockt.testDir : RUNNING > >>>LKT2d st_lockt.testDir : PASS > >>>LKT5 st_lockt.test32bitRange : RUNNING > >>>LKT5 st_lockt.test32bitRange : PASS > >>>LOCK5 st_lock.testZeroLen : RUNNING > >>>LOCK5 st_lock.testZeroLen : PASS > >>>LOCKCHGU st_lock.testUpgrade : RUNNING > >>>LOCKCHGU st_lock.testUpgrade : PASS > >>>LOCK13 st_lock.testTimedoutGrabLock : RUNNING > >>>Sleeping for 7 seconds: > >>>Woke up > >>>Sleeping for 7 seconds: > >>>Woke up > >>>Sleeping for 7 seconds: > >>>Woke up > >>>LOCK13 st_lock.testTimedoutGrabLock : PASS > >>>LOCK12b st_lock.testStaleOpenStateid : RUNNING > >>>LOCK12b st_lock.testStaleOpenStateid : PASS > >>>LOCK12a st_lock.testStaleLockStateid : RUNNING > >>>LOCK12a st_lock.testStaleLockStateid : PASS > >>>LOCK10 st_lock.testStaleClientid : RUNNING > >>>LOCK10 st_lock.testStaleClientid : PASS > >>>LOCK17 st_lock.testReadLocks2 : RUNNING > >>>LOCK17 st_lock.testReadLocks2 : PASS > >>>LOCK16 st_lock.testReadLocks1 : RUNNING > >>>LOCK16 st_lock.testReadLocks1 : PASS > >>>LOCKMRG st_lock.testOverlap : RUNNING > >>>LOCKMRG st_lock.testOverlap : PASS > >>>LOCK23 st_lock.testOpenDowngradeLock : RUNNING > >>>LOCK23 st_lock.testOpenDowngradeLock : PASS > >>>LOCK9c st_lock.testOldOpenStateid2 : RUNNING > >>>LOCK9c st_lock.testOldOpenStateid2 : PASS > >>>LOCK9b st_lock.testOldOpenStateid : RUNNING > >>>LOCK9b st_lock.testOldOpenStateid : PASS > >>>LOCK9a st_lock.testOldLockStateid : RUNNING > >>>LOCK9a st_lock.testOldLockStateid : PASS > >>>LOCK7 st_lock.testNoFh : RUNNING > >>>LOCK7 st_lock.testNoFh : PASS > >>>LOCK4 st_lock.testMode : RUNNING > >>>LOCK4 st_lock.testMode : PASS > >>>LOCK6 st_lock.testLenTooLong : RUNNING > >>>LOCK6 st_lock.testLenTooLong : PASS > >>>LOCK15 st_lock.testGrabLock2 : RUNNING > >>>LOCK15 st_lock.testGrabLock2 : PASS > >>>LOCK14 st_lock.testGrabLock1 : RUNNING > >>>LOCK14 st_lock.testGrabLock1 : PASS > >>>LOCK3 st_lock.testExistingFile : RUNNING > >>>LOCK3 st_lock.testExistingFile : PASS > >>>LOCKCHGD st_lock.testDowngrade : RUNNING > >>>LOCKCHGD st_lock.testDowngrade : PASS > >>>LOCKHELD st_lock.testClose : RUNNING > >>>LOCKHELD st_lock.testClose : PASS > >>>LOCK20 st_lock.testBlockTimeout : RUNNING > >>>Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > >>>Woke up > >>>Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > >>>Woke up > >>>Sleeping for 7 seconds: Waiting for queued blocking lock to timeout > >>>Woke up > >>>LOCK20 st_lock.testBlockTimeout : PASS > >>>LOCK11 st_lock.testBadStateid : RUNNING > >>>LOCK11 st_lock.testBadStateid : PASS > >>>LOCK8b st_lock.testBadOpenSeqid : RUNNING > >>>LOCK8b st_lock.testBadOpenSeqid : PASS > >>>LOCK8a st_lock.testBadLockSeqid : RUNNING > >>>LOCK8a st_lock.testBadLockSeqid : PASS > >>>LINK6 st_link.testZeroLenName : RUNNING > >>>LINK6 st_link.testZeroLenName : PASS > >>>LINK1s st_link.testSocket : RUNNING > >>>LINK1s st_link.testSocket : PASS > >>>LINK2 st_link.testNoSfh : RUNNING > >>>LINK2 st_link.testNoSfh : PASS > >>>LINK3 st_link.testNoCfh : RUNNING > >>>LINK3 st_link.testNoCfh : PASS > >>>LINK7 st_link.testLongName : RUNNING > >>>LINK7 st_link.testLongName : PASS > >>>LINK1a st_link.testLink : RUNNING > >>>LINK1a st_link.testLink : PASS > >>>LINK1r st_link.testFile : RUNNING > >>>LINK1r st_link.testFile : PASS > >>>LINK1f st_link.testFifo : RUNNING > >>>LINK1f st_link.testFifo : PASS > >>>LINK5 st_link.testExists : RUNNING > >>>LINK5 st_link.testExists : PASS > >>>LINK9 st_link.testDots : RUNNING > >>>LINK9 st_link.testDots : PASS > >>>LINK1d st_link.testDir : RUNNING > >>>LINK1d st_link.testDir : PASS > >>>LINK4s st_link.testCfhSocket : RUNNING > >>>LINK4s st_link.testCfhSocket : PASS > >>>LINK4a st_link.testCfhLink : RUNNING > >>>LINK4a st_link.testCfhLink : PASS > >>>LINK4r st_link.testCfhFile : RUNNING > >>>LINK4r st_link.testCfhFile : PASS > >>>LINK4f st_link.testCfhFifo : RUNNING > >>>LINK4f st_link.testCfhFifo : PASS > >>>GF1s st_getfh.testSocket : RUNNING > >>>GF1s st_getfh.testSocket : PASS > >>>GF9 st_getfh.testNoFh : RUNNING > >>>GF9 st_getfh.testNoFh : PASS > >>>GF1a st_getfh.testLink : RUNNING > >>>GF1a st_getfh.testLink : PASS > >>>GF1r st_getfh.testFile : RUNNING > >>>GF1r st_getfh.testFile : PASS > >>>GF1f st_getfh.testFifo : RUNNING > >>>GF1f st_getfh.testFifo : PASS > >>>GF1d st_getfh.testDir : RUNNING > >>>GF1d st_getfh.testDir : PASS > >>>GATT3s st_getattr.testWriteOnlySocket : RUNNING > >>>GATT3s st_getattr.testWriteOnlySocket : PASS > >>>GATT3a st_getattr.testWriteOnlyLink : RUNNING > >>>GATT3a st_getattr.testWriteOnlyLink : PASS > >>>GATT3r st_getattr.testWriteOnlyFile : RUNNING > >>>GATT3r st_getattr.testWriteOnlyFile : PASS > >>>GATT3f st_getattr.testWriteOnlyFifo : RUNNING > >>>GATT3f st_getattr.testWriteOnlyFifo : PASS > >>>GATT3d st_getattr.testWriteOnlyDir : RUNNING > >>>GATT3d st_getattr.testWriteOnlyDir : PASS > >>>GATT4s st_getattr.testUnknownAttrSocket : RUNNING > >>>GATT4s st_getattr.testUnknownAttrSocket : PASS > >>>GATT4a st_getattr.testUnknownAttrLink : RUNNING > >>>GATT4a st_getattr.testUnknownAttrLink : PASS > >>>GATT4r st_getattr.testUnknownAttrFile : RUNNING > >>>GATT4r st_getattr.testUnknownAttrFile : PASS > >>>GATT4f st_getattr.testUnknownAttrFifo : RUNNING > >>>GATT4f st_getattr.testUnknownAttrFifo : PASS > >>>GATT4d st_getattr.testUnknownAttrDir : RUNNING > >>>GATT4d st_getattr.testUnknownAttrDir : PASS > >>>GATT6s st_getattr.testSupportedSocket : RUNNING > >>>GATT6s st_getattr.testSupportedSocket : PASS > >>>GATT6a st_getattr.testSupportedLink : RUNNING > >>>GATT6a st_getattr.testSupportedLink : PASS > >>>GATT6r st_getattr.testSupportedFile : RUNNING > >>>GATT6r st_getattr.testSupportedFile : PASS > >>>GATT6f st_getattr.testSupportedFifo : RUNNING > >>>GATT6f st_getattr.testSupportedFifo : PASS > >>>GATT6d st_getattr.testSupportedDir : RUNNING > >>>GATT6d st_getattr.testSupportedDir : PASS > >>>GATT10 st_getattr.testOwnerName : RUNNING > >>>GATT10 st_getattr.testOwnerName : PASS > >>>GATT2 st_getattr.testNoFh : RUNNING > >>>GATT2 st_getattr.testNoFh : PASS > >>>GATT1s st_getattr.testMandSocket : RUNNING > >>>GATT1s st_getattr.testMandSocket : PASS > >>>GATT1a st_getattr.testMandLink : RUNNING > >>>GATT1a st_getattr.testMandLink : PASS > >>>GATT1r st_getattr.testMandFile : RUNNING > >>>GATT1r st_getattr.testMandFile : PASS > >>>GATT1f st_getattr.testMandFifo : RUNNING > >>>GATT1f st_getattr.testMandFifo : PASS > >>>GATT1d st_getattr.testMandDir : RUNNING > >>>GATT1d st_getattr.testMandDir : PASS > >>>GATT9 st_getattr.testLotsofGetattrsFile : RUNNING > >>>GATT9 st_getattr.testLotsofGetattrsFile : PASS > >>>GATT7s st_getattr.testLongSocket : RUNNING > >>>GATT7s st_getattr.testLongSocket : PASS > >>>GATT7a st_getattr.testLongLink : RUNNING > >>>GATT7a st_getattr.testLongLink : PASS > >>>GATT7r st_getattr.testLongFile : RUNNING > >>>GATT7r st_getattr.testLongFile : PASS > >>>GATT7f st_getattr.testLongFifo : RUNNING > >>>GATT7f st_getattr.testLongFifo : PASS > >>>GATT7d st_getattr.testLongDir : RUNNING > >>>GATT7d st_getattr.testLongDir : PASS > >>>GATT8 st_getattr.testFSLocations : RUNNING > >>>GATT8 st_getattr.testFSLocations : PASS > >>>GATT5s st_getattr.testEmptySocket : RUNNING > >>>GATT5s st_getattr.testEmptySocket : PASS > >>>GATT5a st_getattr.testEmptyLink : RUNNING > >>>GATT5a st_getattr.testEmptyLink : PASS > >>>GATT5r st_getattr.testEmptyFile : RUNNING > >>>GATT5r st_getattr.testEmptyFile : PASS > >>>GATT5f st_getattr.testEmptyFifo : RUNNING > >>>GATT5f st_getattr.testEmptyFifo : PASS > >>>GATT5d st_getattr.testEmptyDir : RUNNING > >>>GATT5d st_getattr.testEmptyDir : PASS > >>>CR9a st_create.testZeroLengthForLNK : RUNNING > >>>CR9a st_create.testZeroLengthForLNK : PASS > >>>CR9 st_create.testZeroLength : RUNNING > >>>CR9 st_create.testZeroLength : PASS > >>>CR12 st_create.testUnsupportedAttributes : RUNNING > >>>CR12 st_create.testUnsupportedAttributes : PASS > >>>CR14 st_create.testSlash : RUNNING > >>>CR14 st_create.testSlash : PASS > >>>CR10 st_create.testRegularFile : RUNNING > >>>CR10 st_create.testRegularFile : PASS > >>>CR8 st_create.testNoFh : RUNNING > >>>CR8 st_create.testNoFh : PASS > >>>CR15 st_create.testLongName : RUNNING > >>>CR15 st_create.testLongName : PASS > >>>CR11 st_create.testInvalidAttrmask : RUNNING > >>>CR11 st_create.testInvalidAttrmask : PASS > >>>CR13 st_create.testDots : RUNNING > >>>CR13 st_create.testDots : PASS > >>>CR5 st_create.testDirOffSocket : RUNNING > >>>CR5 st_create.testDirOffSocket : PASS > >>>CR2 st_create.testDirOffLink : RUNNING > >>>Traceback (most recent call last): > >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > >>> self.runtest(self, environment) > >>> File "/root/pynfs/nfs4.0/servertests/st_close.py", line 142, in testTimedoutClose2 > >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > >>> check_result(res, "Opening file %s" % _getname(owner, path)) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > >>> raise BadCompoundRes(resop, res.status, msg) > >>>nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >>>Traceback (most recent call last): > >>> File "/root/pynfs/nfs4.0/lib/testmod.py", line 234, in run > >>> self.runtest(self, environment) > >>> File "/root/pynfs/nfs4.0/servertests/st_close.py", line 118, in testTimedoutClose1 > >>> c2.open_confirm(t.word(), access=OPEN4_SHARE_ACCESS_WRITE) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 727, in open_confirm > >>> check_result(res, "Opening file %s" % _getname(owner, path)) > >>> File "/root/pynfs/nfs4.0/nfs4lib.py", line 895, in check_result > >>> raise BadCompoundRes(resop, res.status, msg) > >>>nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': operation OP_OPEN should return NFS4_OK, instead got NFS4ERR_DELAY > >>>CR2 st_create.testDirOffLink : PASS > >>>CR7 st_create.testDirOffFile : RUNNING > >>>CR7 st_create.testDirOffFile : PASS > >>>CR6 st_create.testDirOffFIFO : RUNNING > >>>CR6 st_create.testDirOffFIFO : PASS > >>>COMP1 st_compound.testZeroOps : RUNNING > >>>COMP1 st_compound.testZeroOps : PASS > >>>COMP5 st_compound.testUndefined : RUNNING > >>>COMP5 st_compound.testUndefined : PASS > >>>COMP6 st_compound.testLongCompound : RUNNING > >>>COMP6 st_compound.testLongCompound : PASS > >>>COMP4 st_compound.testInvalidMinor : RUNNING > >>>COMP4 st_compound.testInvalidMinor : PASS > >>>COMP2 st_compound.testGoodTag : RUNNING > >>>COMP2 st_compound.testGoodTag : PASS > >>>CMT2s st_commit.testSocket : RUNNING > >>>CMT2s st_commit.testSocket : PASS > >>>CMT3 st_commit.testNoFh : RUNNING > >>>CMT3 st_commit.testNoFh : PASS > >>>CMT2a st_commit.testLink : RUNNING > >>>CMT2a st_commit.testLink : PASS > >>>CMT2f st_commit.testFifo : RUNNING > >>>CMT2f st_commit.testFifo : PASS > >>>CMT2d st_commit.testDir : RUNNING > >>>CMT2d st_commit.testDir : PASS > >>>CMT4 st_commit.testCommitOverflow : RUNNING > >>>CMT4 st_commit.testCommitOverflow : PASS > >>>CMT1d st_commit.testCommitOffsetMax2 : RUNNING > >>>CMT1d st_commit.testCommitOffsetMax2 : PASS > >>>CMT1c st_commit.testCommitOffsetMax1 : RUNNING > >>>CMT1c st_commit.testCommitOffsetMax1 : PASS > >>>CMT1b st_commit.testCommitOffset1 : RUNNING > >>>CMT1b st_commit.testCommitOffset1 : PASS > >>>CMT1aa st_commit.testCommitOffset0 : RUNNING > >>>CMT1aa st_commit.testCommitOffset0 : PASS > >>>CMT1f st_commit.testCommitCountMax : RUNNING > >>>CMT1f st_commit.testCommitCountMax : PASS > >>>CMT1e st_commit.testCommitCount1 : RUNNING > >>>CMT1e st_commit.testCommitCount1 : PASS > >>>CLOSE9 st_close.testTimedoutClose2 : RUNNING > >>>Sleeping for 30 seconds: > >>>Woke up > >>>CLOSE9 st_close.testTimedoutClose2 : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>CLOSE8 st_close.testTimedoutClose1 : RUNNING > >>>Sleeping for 30 seconds: > >>>Woke up > >>>CLOSE8 st_close.testTimedoutClose1 : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>CLOSE6 st_close.testStaleStateid : RUNNING > >>>CLOSE6 st_close.testStaleStateid : PASS > >>>CLOSE12 st_close.testReplaySeqid2 : RUNNING > >>>CLOSE12 st_close.testReplaySeqid2 : PASS > >>>CLOSE10 st_close.testReplaySeqid1 : RUNNING > >>>CLOSE10 st_close.testReplaySeqid1 : PASS > >>>CLOSE5 st_close.testOldStateid : RUNNING > >>>CLOSE5 st_close.testOldStateid : PASS > >>>CLOSE7 st_close.testNoCfh : RUNNING > >>>CLOSE7 st_close.testNoCfh : PASS > >>>CLOSE11 st_close.testNextSeqid : RUNNING > >>>CLOSE11 st_close.testNextSeqid : PASS > >>>CLOSE2 st_close.testCloseOpen : RUNNING > >>>CLOSE2 st_close.testCloseOpen : PASS > >>>CLOSE1 st_close.testCloseCreate : RUNNING > >>>CLOSE1 st_close.testCloseCreate : PASS > >>>CLOSE4 st_close.testBadStateid : RUNNING > >>>CLOSE4 st_close.testBadStateid : PASS > >>>CLOSE3 st_close.testBadSeqid : RUNNING > >>>CLOSE3 st_close.testBadSeqid : PASS > >>>ACL0 st_acl.testACLsupport : RUNNING > >>>ACL0 st_acl.testACLsupport : PASS > >>>ACL10 st_acl.testLargeACL : RUNNING > >>>ACL10 st_acl.testLargeACL : PASS > >>>ACL5 st_acl.testACL : RUNNING > >>>ACL5 st_acl.testACL : PASS > >>>ACC1s st_access.testReadSocket : RUNNING > >>>ACC1s st_access.testReadSocket : PASS > >>>ACC1a st_access.testReadLink : RUNNING > >>>ACC1a st_access.testReadLink : PASS > >>>ACC1r st_access.testReadFile : RUNNING > >>>ACC1r st_access.testReadFile : PASS > >>>ACC1f st_access.testReadFifo : RUNNING > >>>ACC1f st_access.testReadFifo : PASS > >>>ACC1d st_access.testReadDir : RUNNING > >>>ACC1d st_access.testReadDir : PASS > >>>ACC3 st_access.testNoFh : RUNNING > >>>ACC3 st_access.testNoFh : PASS > >>>ACC4s st_access.testInvalidsSocket : RUNNING > >>>ACC4s st_access.testInvalidsSocket : PASS > >>>ACC4a st_access.testInvalidsLink : RUNNING > >>>ACC4a st_access.testInvalidsLink : PASS > >>>ACC4r st_access.testInvalidsFile : RUNNING > >>>ACC4r st_access.testInvalidsFile : PASS > >>>ACC4f st_access.testInvalidsFifo : RUNNING > >>>ACC4f st_access.testInvalidsFifo : PASS > >>>ACC4d st_access.testInvalidsDir : RUNNING > >>>ACC4d st_access.testInvalidsDir : PASS > >>>ACC2s st_access.testAllSocket : RUNNING > >>>ACC2s st_access.testAllSocket : PASS > >>>ACC2a st_access.testAllLink : RUNNING > >>>ACC2a st_access.testAllLink : PASS > >>>ACC2r st_access.testAllFile : RUNNING > >>>ACC2r st_access.testAllFile : PASS > >>>ACC2f st_access.testAllFifo : RUNNING > >>>ACC2f st_access.testAllFifo : PASS > >>>ACC2d st_access.testAllDir : RUNNING > >>>ACC2d st_access.testAllDir : PASS > >>>************************************************** > >>>RENEW3 st_renew.testExpired : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'RENEW3-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>LKU10 st_locku.testTimedoutUnlock : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'LKU10-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>CLOSE9 st_close.testTimedoutClose2 : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE9-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>CLOSE8 st_close.testTimedoutClose1 : FAILURE > >>> nfs4lib.BadCompoundRes: Opening file b'CLOSE8-1': > >>> operation OP_OPEN should return NFS4_OK, instead got > >>> NFS4ERR_DELAY > >>>************************************************** > >>>Command line asked for 526 of 673 tests > >>>Of those: 7 Skipped, 4 Failed, 0 Warned, 515 Passed > >>>root pynfs tests: > >>>MKCHAR st_create.testChar : RUNNING > >>>MKCHAR st_create.testChar : PASS > >>>WRT6c st_write.testChar : RUNNING > >>>WRT6c st_write.testChar : PASS > >>>MKBLK st_create.testBlock : RUNNING > >>>MKBLK st_create.testBlock : PASS > >>>WRT6b st_write.testBlock : RUNNING > >>>WRT6b st_write.testBlock : PASS > >>>LOOKCHAR st_lookup.testChar : RUNNING > >>>LOOKCHAR st_lookup.testChar : PASS > >>>VF5c st_verify.testWriteOnlyChar : RUNNING > >>>VF5c st_verify.testWriteOnlyChar : PASS > >>>LOOKBLK st_lookup.testBlock : RUNNING > >>>LOOKBLK st_lookup.testBlock : PASS > >>>VF5b st_verify.testWriteOnlyBlock : RUNNING > >>>VF5b st_verify.testWriteOnlyBlock : PASS > >>>VF7c st_verify.testUnsupportedChar : RUNNING > >>>VF7c st_verify.testUnsupportedChar : PASS > >>>VF7b st_verify.testUnsupportedBlock : RUNNING > >>>VF7b st_verify.testUnsupportedBlock : PASS > >>>VF2c st_verify.testTypeChar : RUNNING > >>>VF2c st_verify.testTypeChar : PASS > >>>VF2b st_verify.testTypeBlock : RUNNING > >>>VF2b st_verify.testTypeBlock : PASS > >>>VF1c st_verify.testMandChar : RUNNING > >>>VF1c st_verify.testMandChar : PASS > >>>VF1b st_verify.testMandBlock : RUNNING > >>>VF1b st_verify.testMandBlock : PASS > >>>VF3c st_verify.testBadSizeChar : RUNNING > >>>VF3c st_verify.testBadSizeChar : PASS > >>>VF3b st_verify.testBadSizeBlock : RUNNING > >>>VF3b st_verify.testBadSizeBlock : PASS > >>>SATT11c st_setattr.testUnsupportedChar : RUNNING > >>>SATT11c st_setattr.testUnsupportedChar : PASS > >>>SATT11b st_setattr.testUnsupportedBlock : RUNNING > >>>SATT11b st_setattr.testUnsupportedBlock : PASS > >>>SATT12c st_setattr.testSizeChar : RUNNING > >>>SATT12c st_setattr.testSizeChar : PASS > >>>SATT12b st_setattr.testSizeBlock : RUNNING > >>>SATT12b st_setattr.testSizeBlock : PASS > >>>MKDIR st_create.testDir : RUNNING > >>>MKDIR st_create.testDir : PASS > >>>SATT6d st_setattr.testReadonlyDir : RUNNING > >>>SATT6d st_setattr.testReadonlyDir : PASS > >>>SATT6c st_setattr.testReadonlyChar : RUNNING > >>>SATT6c st_setattr.testReadonlyChar : PASS > >>>SATT6b st_setattr.testReadonlyBlock : RUNNING > >>>SATT6b st_setattr.testReadonlyBlock : PASS > >>>MODE st_setattr.testMode : RUNNING > >>>MODE st_setattr.testMode : PASS > >>>SATT1c st_setattr.testChar : RUNNING > >>>SATT1c st_setattr.testChar : PASS > >>>SATT1b st_setattr.testBlock : RUNNING > >>>SATT1b st_setattr.testBlock : PASS > >>>SVFH2c st_restorefh.testValidChar : RUNNING > >>>SVFH2c st_restorefh.testValidChar : PASS > >>>SVFH2b st_restorefh.testValidBlock : RUNNING > >>>SVFH2b st_restorefh.testValidBlock : PASS > >>>RNM1c st_rename.testValidChar : RUNNING > >>>RNM1c st_rename.testValidChar : PASS > >>>RNM1b st_rename.testValidBlock : RUNNING > >>>RNM1b st_rename.testValidBlock : PASS > >>>RNM2c st_rename.testSfhChar : RUNNING > >>>RNM2c st_rename.testSfhChar : PASS > >>>RNM2b st_rename.testSfhBlock : RUNNING > >>>RNM2b st_rename.testSfhBlock : PASS > >>>RNM3c st_rename.testCfhChar : RUNNING > >>>RNM3c st_rename.testCfhChar : PASS > >>>RNM3b st_rename.testCfhBlock : RUNNING > >>>RNM3b st_rename.testCfhBlock : PASS > >>>RM1c st_remove.testChar : RUNNING > >>>RM1c st_remove.testChar : PASS > >>>RM2c st_remove.testCfhChar : RUNNING > >>>RM2c st_remove.testCfhChar : PASS > >>>RM2b st_remove.testCfhBlock : RUNNING > >>>RM2b st_remove.testCfhBlock : PASS > >>>RM1b st_remove.testBlock : RUNNING > >>>RM1b st_remove.testBlock : PASS > >>>RDLK2c st_readlink.testChar : RUNNING > >>>RDLK2c st_readlink.testChar : PASS > >>>RDLK2b st_readlink.testBlock : RUNNING > >>>RDLK2b st_readlink.testBlock : PASS > >>>RDDR5c st_readdir.testFhChar : RUNNING > >>>RDDR5c st_readdir.testFhChar : PASS > >>>RDDR5b st_readdir.testFhBlock : RUNNING > >>>RDDR5b st_readdir.testFhBlock : PASS > >>>RD7c st_read.testChar : RUNNING > >>>RD7c st_read.testChar : PASS > >>>RD7b st_read.testBlock : RUNNING > >>>RD7b st_read.testBlock : PASS > >>>PUTFH1c st_putfh.testChar : RUNNING > >>>PUTFH1c st_putfh.testChar : PASS > >>>PUTFH1b st_putfh.testBlock : RUNNING > >>>PUTFH1b st_putfh.testBlock : PASS > >>>INIT st_setclientid.testValid : RUNNING > >>>INIT st_setclientid.testValid : PASS > >>>OPEN7c st_open.testChar : RUNNING > >>>OPEN7c st_open.testChar : PASS > >>>OPEN7b st_open.testBlock : RUNNING > >>>OPEN7b st_open.testBlock : PASS > >>>NVF5c st_nverify.testWriteOnlyChar : RUNNING > >>>NVF5c st_nverify.testWriteOnlyChar : PASS > >>>NVF5b st_nverify.testWriteOnlyBlock : RUNNING > >>>NVF5b st_nverify.testWriteOnlyBlock : PASS > >>>NVF7c st_nverify.testUnsupportedChar : RUNNING > >>>NVF7c st_nverify.testUnsupportedChar : PASS > >>>NVF7b st_nverify.testUnsupportedBlock : RUNNING > >>>NVF7b st_nverify.testUnsupportedBlock : PASS > >>>NVF2c st_nverify.testTypeChar : RUNNING > >>>NVF2c st_nverify.testTypeChar : PASS > >>>NVF2b st_nverify.testTypeBlock : RUNNING > >>>NVF2b st_nverify.testTypeBlock : PASS > >>>NVF1c st_nverify.testMandChar : RUNNING > >>>NVF1c st_nverify.testMandChar : PASS > >>>NVF1b st_nverify.testMandBlock : RUNNING > >>>NVF1b st_nverify.testMandBlock : PASS > >>>NVF3c st_nverify.testBadSizeChar : RUNNING > >>>NVF3c st_nverify.testBadSizeChar : PASS > >>>NVF3b st_nverify.testBadSizeBlock : RUNNING > >>>NVF3b st_nverify.testBadSizeBlock : PASS > >>>LOOKP2c st_lookupp.testChar : RUNNING > >>>LOOKP2c st_lookupp.testChar : PASS > >>>LOOKP2b st_lookupp.testBlock : RUNNING > >>>LOOKP2b st_lookupp.testBlock : PASS > >>>LOOK5c st_lookup.testCharNotDir : RUNNING > >>>LOOK5c st_lookup.testCharNotDir : PASS > >>>LOOK5b st_lookup.testBlockNotDir : RUNNING > >>>LOOK5b st_lookup.testBlockNotDir : PASS > >>>LKT2c st_lockt.testChar : RUNNING > >>>LKT2c st_lockt.testChar : PASS > >>>LKT2b st_lockt.testBlock : RUNNING > >>>LKT2b st_lockt.testBlock : PASS > >>>LINKS st_link.testSupported : RUNNING > >>>LINKS st_link.testSupported : PASS > >>>LINK1c st_link.testChar : RUNNING > >>>LINK1c st_link.testChar : PASS > >>>LOOKFILE st_lookup.testFile : RUNNING > >>>LOOKFILE st_lookup.testFile : PASS > >>>LINK4c st_link.testCfhChar : RUNNING > >>>LINK4c st_link.testCfhChar : PASS > >>>LINK4b st_link.testCfhBlock : RUNNING > >>>LINK4b st_link.testCfhBlock : PASS > >>>LINK1b st_link.testBlock : RUNNING > >>>LINK1b st_link.testBlock : PASS > >>>GF1c st_getfh.testChar : RUNNING > >>>GF1c st_getfh.testChar : PASS > >>>GF1b st_getfh.testBlock : RUNNING > >>>GF1b st_getfh.testBlock : PASS > >>>GATT3c st_getattr.testWriteOnlyChar : RUNNING > >>>GATT3c st_getattr.testWriteOnlyChar : PASS > >>>GATT3b st_getattr.testWriteOnlyBlock : RUNNING > >>>GATT3b st_getattr.testWriteOnlyBlock : PASS > >>>GATT4c st_getattr.testUnknownAttrChar : RUNNING > >>>GATT4c st_getattr.testUnknownAttrChar : PASS > >>>GATT4b st_getattr.testUnknownAttrBlock : RUNNING > >>>GATT4b st_getattr.testUnknownAttrBlock : PASS > >>>GATT6c st_getattr.testSupportedChar : RUNNING > >>>GATT6c st_getattr.testSupportedChar : PASS > >>>GATT6b st_getattr.testSupportedBlock : RUNNING > >>>GATT6b st_getattr.testSupportedBlock : PASS > >>>GATT1c st_getattr.testMandChar : RUNNING > >>>GATT1c st_getattr.testMandChar : PASS > >>>GATT1b st_getattr.testMandBlock : RUNNING > >>>GATT1b st_getattr.testMandBlock : PASS > >>>GATT7c st_getattr.testLongChar : RUNNING > >>>GATT7c st_getattr.testLongChar : PASS > >>>GATT7b st_getattr.testLongBlock : RUNNING > >>>GATT7b st_getattr.testLongBlock : PASS > >>>GATT5c st_getattr.testEmptyChar : RUNNING > >>>GATT5c st_getattr.testEmptyChar : PASS > >>>GATT5b st_getattr.testEmptyBlock : RUNNING > >>>GATT5b st_getattr.testEmptyBlock : PASS > >>>CR4 st_create.testDirOffChar : RUNNING > >>>CR4 st_create.testDirOffChar : PASS > >>>CR3 st_create.testDirOffBlock : RUNNING > >>>CR3 st_create.testDirOffBlock : PASS > >>>CMT2c st_commit.testChar : RUNNING > >>>CMT2c st_commit.testChar : PASS > >>>CMT2b st_commit.testBlock : RUNNING > >>>CMT2b st_commit.testBlock : PASS > >>>ACC1c st_access.testReadChar : RUNNING > >>>ACC1c st_access.testReadChar : PASS > >>>ACC1b st_access.testReadBlock : RUNNING > >>>ACC1b st_access.testReadBlock : PASS > >>>ACC4c st_access.testInvalidsChar : RUNNING > >>>ACC4c st_access.testInvalidsChar : PASS > >>>ACC4b st_access.testInvalidsBlock : RUNNING > >>>ACC4b st_access.testInvalidsBlock : PASS > >>>ACC2c st_access.testAllChar : RUNNING > >>>ACC2c st_access.testAllChar : PASS > >>>ACC2b st_access.testAllBlock : RUNNING > >>>ACC2b st_access.testAllBlock : PASS > >>>************************************************** > >>>************************************************** > >>>Command line asked for 96 of 673 tests > >>>Of those: 0 Skipped, 0 Failed, 0 Warned, 96 Passed > >>>INFO :rpc.poll:got connection from ('127.0.0.1', 51342), assigned to fd=5 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Created client to test1.fieldses.org, 2049 > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=17, name=b'socket', attrs={}), entry4(cookie=19, name=b'fifo', attrs={}), entry4(cookie=21, name=b'link', attrs={}), entry4(cookie=24, name=b'block', attrs={}), entry4(cookie=26, name=b'char', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [] > >>>INFO :test.env:client 1 creates file OK > >>> > >>>INFO :test.env:client 2 open file OK > >>> > >>>INFO :test.env:force lease to expire... > >>> > >>>INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >>>INFO :test.env:Woke up > >>>INFO :test.env:3rd client open OK - PASSED > >>> > >>>INFO :test.env:client 1 creates file OK > >>> > >>>INFO :test.env:force lease to expire... > >>> > >>>INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >>>INFO :test.env:Woke up > >>>INFO :test.env:2nd client open OK - PASSED > >>> > >>>INFO :test.env:2nd client open OK - PASSED > >>> > >>>INFO :test.env:local open conflict detected - PASSED > >>> > >>>INFO :test.env:2nd client open conflict detected - PASSED > >>> > >>>INFO :test.env:force lease to expire... > >>> > >>>INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >>>INFO :test.env:Woke up > >>>INFO :test.env:3nd client opened OK - no conflict detected - PASSED > >>> > >>>INFO :test.env:Sleeping for 25 seconds: the lease period + 10 secs > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>WARNING:test.env:server took approximately 13 seconds to lift grace after all clients reclaimed > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Sleeping for 10 seconds: Delaying start of reclaim > >>>INFO :test.env:Woke up > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>WARNING:test.env:server took approximately 14 seconds to lift grace after all clients reclaimed > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :rpc.poll:Closing 6 > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 6 generated by another thread > >>>INFO :test.env:Sleeping for 20 seconds: Waiting for grace period to end > >>>INFO :test.env:Woke up > >>>COUR6 st_courtesy.testShareReservationDB03 : RUNNING > >>>COUR6 st_courtesy.testShareReservationDB03 : PASS > >>>COUR5 st_courtesy.testShareReservationDB02 : RUNNING > >>>COUR5 st_courtesy.testShareReservationDB02 : PASS > >>>COUR4 st_courtesy.testShareReservationDB01 : RUNNING > >>>COUR4 st_courtesy.testShareReservationDB01 : PASS > >>>COUR3 st_courtesy.testShareReservation00 : RUNNING > >>>COUR3 st_courtesy.testShareReservation00 : PASS > >>>COUR2 st_courtesy.testLockSleepLock : RUNNING > >>>COUR2 st_courtesy.testLockSleepLock : PASS > >>>CSID3 st_current_stateid.testOpenWriteClose : RUNNING > >>>CSID3 st_current_stateid.testOpenWriteClose : PASS > >>>CSID8 st_current_stateid.testOpenSetattr : RUNNING > >>>CSID8 st_current_stateid.testOpenSetattr : PASS > >>>CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : RUNNING > >>>CSID10 st_current_stateid.testOpenSaveFHLookupRestoreFHClose : PASS > >>>CSID5 st_current_stateid.testOpenLookupClose : RUNNING > >>>CSID5 st_current_stateid.testOpenLookupClose : PASS > >>>CSID9 st_current_stateid.testOpenFreestateidClose : RUNNING > >>>CSID9 st_current_stateid.testOpenFreestateidClose : PASS > >>>CSID1 st_current_stateid.testOpenAndClose : RUNNING > >>>CSID1 st_current_stateid.testOpenAndClose : PASS > >>>CSID4 st_current_stateid.testLockWriteLocku : RUNNING > >>>CSID4 st_current_stateid.testLockWriteLocku : PASS > >>>CSID2 st_current_stateid.testLockLockU : RUNNING > >>>CSID2 st_current_stateid.testLockLockU : PASS > >>>CSID6 st_current_stateid.testCloseNoStateid : RUNNING > >>>CSID6 st_current_stateid.testCloseNoStateid : PASS > >>>REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : RUNNING > >>>REBT4b st_reboot.testRebootWithManyManyClientsDoubleReclaim : PASS > >>>REBT2b st_reboot.testRebootWithManyManyClients : RUNNING > >>>REBT2b st_reboot.testRebootWithManyManyClients : PASS > >>>REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : RUNNING > >>>REBT4a st_reboot.testRebootWithManyClientsDoubleReclaim : PASS > >>>REBT2a st_reboot.testRebootWithManyClients : RUNNING > >>>REBT2a st_reboot.testRebootWithManyClients : PASS > >>>REBT5 st_reboot.testRebootWithLateReclaim : RUNNING > >>>REBT5 st_reboot.testRebootWithLateReclaim : PASS > >>>REBT1 st_reboot.testRebootValid : RUNNING > >>>REBT1 st_reboot.testRebootValid : PASS > >>>REBT3b st_reboot.testDoubleRebootWithManyManyClients : RUNNING > >>>REBT3b st_reboot.testDoubleRebootWithManyManyClients : PASS > >>>REBT3a st_reboot.testDoubleRebootWithManyClients : RUNNING > >>>REBT3a st_reboot.testDoubleRebootWithManyClients : PASS > >>>PUTFH1s st_putfh.testSocket : RUNNING > >>>PUTFH1s st_putfh.testSocket : PASS > >>>PUTFH1a st_putfh.testLink : RUNNING > >>>PUTFH1a st_putfh.testLink : PASS > >>>PUTFH1r st_putfh.testFile : RUNNING > >>>PUTFH1r st_putfh.testFile : PASS > >>>PUTFH1f st_putfh.testFifo : RUNNING > >>>PUTFH1f st_putfh.testFifo : PASS > >>>PUTFH1d st_putfh.testDir : RUNNING > >>>PUTFH1d st_putfh.testDir : PASS > >>>PUTFH2 st_putfh.testBadHandle : RUNNING > >>>PUTFH2 st_putfh.testBadHandle : PASS > >>>RNM6 st_rename.testZeroLengthOldname : RUNNING > >>>RNM6 st_rename.testZeroLengthOldname : PASS > >>>RNM7 st_rename.testZeroLengthNewname : RUNNING > >>>RNM7 st_rename.testZeroLengthNewname : PASS > >>>RNM1s st_rename.testValidSocket : RUNNING > >>>RNM1s st_rename.testValidSocket : PASS > >>>RNM1a st_rename.testValidLink : RUNNING > >>>RNM1a st_rename.testValidLink : PASS > >>>RNM1r st_rename.testValidFile : RUNNING > >>>RNM1r st_rename.testValidFile : PASS > >>>RNM1f st_rename.testValidFifo : RUNNING > >>>RNM1f st_rename.testValidFifo : PASS > >>>RNM1d st_rename.testValidDir : RUNNING > >>>RNM1d st_rename.testValidDir : PASS > >>>RNM2s st_rename.testSfhSocket : RUNNING > >>>RNM2s st_rename.testSfhSocket : PASS > >>>RNM2a st_rename.testSfhLink : RUNNING > >>>RNM2a st_rename.testSfhLink : PASS > >>>RNM2r st_rename.testSfhFile : RUNNING > >>>RNM2r st_rename.testSfhFile : PASS > >>>RNM2f st_rename.testSfhFifo : RUNNING > >>>RNM2f st_rename.testSfhFifo : PASS > >>>RNM19 st_rename.testSelfRenameFile : RUNNING > >>>RNM19 st_rename.testSelfRenameFile : PASS > >>>RNM18 st_rename.testSelfRenameDir : RUNNING > >>>RNM18 st_rename.testSelfRenameDir : PASS > >>>RNM5 st_rename.testNonExistent : RUNNING > >>>RNM5 st_rename.testNonExistent : PASS > >>>RNM4 st_rename.testNoSfh : RUNNING > >>>RNM4 st_rename.testNoSfh : PASS > >>>RNM20 st_rename.testLinkRename : RUNNING > >>>RNM20 st_rename.testLinkRename : PASS > >>>RNM17 st_rename.testFileToFullDir : RUNNING > >>>RNM17 st_rename.testFileToFullDir : PASS > >>>RNM15 st_rename.testFileToFile : RUNNING > >>>RNM15 st_rename.testFileToFile : PASS > >>>RNM14 st_rename.testFileToDir : RUNNING > >>>RNM14 st_rename.testFileToDir : PASS > >>>RNM10 st_rename.testDotsOldname : RUNNING > >>>RNM10 st_rename.testDotsOldname : PASS > >>>RNM11 st_rename.testDotsNewname : RUNNING > >>>RNM11 st_rename.testDotsNewname : PASS > >>>RNM12 st_rename.testDirToObj : RUNNING > >>>RNM12 st_rename.testDirToObj : PASS > >>>RNM16 st_rename.testDirToFullDir : RUNNING > >>>RNM16 st_rename.testDirToFullDir : PASS > >>>RNM13 st_rename.testDirToDir : RUNNING > >>>RNM13 st_rename.testDirToDir : PASS > >>>RNM3s st_rename.testCfhSocket : RUNNING > >>>RNM3s st_rename.testCfhSocket : PASS > >>>RNM3a st_rename.testCfhLink : RUNNING > >>>RNM3a st_rename.testCfhLink : PASS > >>>RNM3r st_rename.testCfhFile : RUNNING > >>>INFO :nfs.client.cb:******************** > >>>INFO :nfs.client.cb:Handling COMPOUND > >>>INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >>>INFO :nfs.client.cb:In CB_SEQUENCE > >>>INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >>>INFO :nfs.client.cb:In CB_RECALL > >>>INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >>>INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9cWSo[\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >>>INFO :test.env:Sleeping for 0 seconds: > >>>INFO :test.env:Woke up > >>>INFO :nfs.client.cb:******************** > >>>INFO :nfs.client.cb:Handling COMPOUND > >>>INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >>>INFO :nfs.client.cb:In CB_SEQUENCE > >>>INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >>>INFO :nfs.client.cb:In CB_RECALL > >>>INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >>>INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\x9eWSo]\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >>>INFO :test.env:Sleeping for 0 seconds: > >>>INFO :test.env:Woke up > >>>INFO :nfs.client.cb:******************** > >>>INFO :nfs.client.cb:Handling COMPOUND > >>>INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >>>INFO :nfs.client.cb:In CB_SEQUENCE > >>>INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >>>INFO :nfs.client.cb:In CB_RECALL > >>>INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >>>INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa1WSo`\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >>>INFO :nfs.client.cb:******************** > >>>INFO :nfs.client.cb:Handling COMPOUND > >>>INFO :nfs.client.cb:*** OP_CB_SEQUENCE (11) *** > >>>INFO :nfs.client.cb:In CB_SEQUENCE > >>>INFO :nfs.client.cb:*** OP_CB_RECALL (4) *** > >>>INFO :nfs.client.cb:In CB_RECALL > >>>INFO :nfs.client.cb:Replying. Status NFS4_OK (0) > >>>INFO :nfs.client.cb:[nfs_cb_resop4(resop=11, opcbsequence=CB_SEQUENCE4res(csr_status=NFS4_OK, csr_resok4=CB_SEQUENCE4resok(csr_sessionid=b'<\x0b\xdfa\xa3WSob\x03\x00\x00\x00\x00\x00\x00', csr_sequenceid=1, csr_slotid=0, csr_highest_slotid=8, csr_target_highest_slotid=8))), nfs_cb_resop4(resop=4, opcbrecall=CB_RECALL4res(status=NFS4_OK))] > >>>INFO :test.env:Sleeping for 0 seconds: > >>>INFO :test.env:Woke up > >>>INFO :rpc.thread:Called connect(('test1.fieldses.org', 2049)) > >>>INFO :rpc.poll:Adding 8 generated by another thread > >>>RNM3r st_rename.testCfhFile : PASS > >>>RNM3f st_rename.testCfhFifo : RUNNING > >>>RNM3f st_rename.testCfhFifo : PASS > >>>LKPP1s st_lookupp.testSock : RUNNING > >>>LKPP1s st_lookupp.testSock : PASS > >>>LKPP3 st_lookupp.testNoFH : RUNNING > >>>LKPP3 st_lookupp.testNoFH : PASS > >>>LKPP2 st_lookupp.testLookuppRoot : RUNNING > >>>LKPP2 st_lookupp.testLookuppRoot : PASS > >>>LKPP1a st_lookupp.testLink : RUNNING > >>>LKPP1a st_lookupp.testLink : PASS > >>>LKPP1r st_lookupp.testFile : RUNNING > >>>LKPP1r st_lookupp.testFile : PASS > >>>LKPP1f st_lookupp.testFifo : RUNNING > >>>LKPP1f st_lookupp.testFifo : PASS > >>>VF1r st_verify.testMandFile : RUNNING > >>>VF1r st_verify.testMandFile : PASS > >>>DELEG9 st_delegation.testWriteOpenvsReadDeleg : RUNNING > >>>DELEG9 st_delegation.testWriteOpenvsReadDeleg : PASS > >>>DELEG23 st_delegation.testServerSelfConflict3 : RUNNING > >>>__create_file_with_deleg: b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1eX\xc5%' open_delegation4(delegation_type=OPEN_DELEGATE_READ, read=open_read_delegation4(stateid=stateid4(seqid=1, other=b'<\x0b\xdfa\x9cWSo\x02\x00\x00\x00'), recall=False, permissions=nfsace4(type=0, flag=0, access_mask=0, who=b''))) > >>>open_file res: COMPOUND4res(status=NFS4_OK, tag=b'environment.py:open_create_file', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_LOOKUP, oplookup=LOOKUP4res(status=NFS4_OK)), nfs_resop4(resop=OP_OPEN, opopen=OPEN4res(status=NFS4_OK, resok4=OPEN4resok(stateid=stateid4(seqid=2, other=b'<\x0b\xdfa\x9cWSo\x01\x00\x00\x00'), cinfo=change_info4(atomic=False, before=1763091998602434224, after=1737777748740145092), rflags=36, attrset=0, delegation=open_delegation4(delegation_type=OPEN_DELEGATE_NONE_EXT, od_whynone=open_none_delegation4(ond_why=WND4_NOT_WANTED))))), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4_OK, resok4=GETFH4resok(object=b'\x01\x00\x06\x81\xa68F}\x17\x9bN\xb5\xa8\x85Pp0\xbc\xdc`?S\x80\x00\x00\x00\x00\x00\x1e > >>> X\xc5%')))]) > >>>DELEG23 st_delegation.testServerSelfConflict3 : PASS > >>>DELEG1 st_delegation.testReadDeleg : RUNNING > >>>DELEG1 st_delegation.testReadDeleg : PASS > >>>DELEG4 st_delegation.testNoDeleg : RUNNING > >>>DELEG4 st_delegation.testNoDeleg : PASS > >>>DELEG8 st_delegation.testDelegRevocation : RUNNING > >>>DELEG8 st_delegation.testDelegRevocation : PASS > >>>DELEG6 st_delegation.testCBSecParmsNull : RUNNING > >>>DELEG6 st_delegation.testCBSecParmsNull : PASS > >>>OPEN1 st_open.testSupported : RUNNING > >>>OPEN1 st_open.testSupported : PASS > >>>OPEN2 st_open.testServerStateSeqid : RUNNING > >>>OPEN2 st_open.testServerStateSeqid : PASS > >>>OPEN30 st_open.testReadWrite : RUNNING > >>>OPEN30 st_open.testReadWrite : PASS > >>>OPEN7 st_open.testOPENClaimFH : RUNNING > >>>OPEN7 st_open.testOPENClaimFH : PASS > >>>OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : RUNNING > >>>OPEN6 st_open.testEXCLUSIVE4AtNameAttribute : PASS > >>>OPEN8 st_open.testCloseWithZeroSeqid : RUNNING > >>>OPEN8 st_open.testCloseWithZeroSeqid : PASS > >>>OPEN31 st_open.testAnonReadWrite : RUNNING > >>>OPEN31 st_open.testAnonReadWrite : PASS > >>>TRUNK2 st_trunking.testUseTwoSessions : RUNNING > >>>TRUNK2 st_trunking.testUseTwoSessions : PASS > >>>TRUNK1 st_trunking.testTwoSessions : RUNNING > >>>TRUNK1 st_trunking.testTwoSessions : PASS > >>>SEQ7 st_sequence.testTooManyOps : RUNNING > >>>SEQ7 st_sequence.testTooManyOps : PASS > >>>SEQ1 st_sequence.testSupported : RUNNING > >>>SEQ1 st_sequence.testSupported : PASS > >>>SEQ12 st_sequence.testSessionidSequenceidSlotid : RUNNING > >>>SEQ12 st_sequence.testSessionidSequenceidSlotid : PASS > >>>SEQ6 st_sequence.testRequestTooBig : RUNNING > >>>SEQ6 st_sequence.testRequestTooBig : PASS > >>>SEQ10b st_sequence.testReplayCache007 : RUNNING > >>>SEQ10b st_sequence.testReplayCache007 : PASS > >>>SEQ9f st_sequence.testReplayCache006 : RUNNING > >>>SEQ9f st_sequence.testReplayCache006 : PASS > >>>SEQ9e st_sequence.testReplayCache005 : RUNNING > >>>SEQ9e st_sequence.testReplayCache005 : PASS > >>>SEQ9d st_sequence.testReplayCache004 : RUNNING > >>>SEQ9d st_sequence.testReplayCache004 : PASS > >>>SEQ9c st_sequence.testReplayCache003 : RUNNING > >>>SEQ9c st_sequence.testReplayCache003 : PASS > >>>SEQ9b st_sequence.testReplayCache002 : RUNNING > >>>SEQ9b st_sequence.testReplayCache002 : PASS > >>>SEQ9a st_sequence.testReplayCache001 : RUNNING > >>>SEQ9a st_sequence.testReplayCache001 : PASS > >>>SEQ11 st_sequence.testOpNotInSession : RUNNING > >>>SEQ11 st_sequence.testOpNotInSession : PASS > >>>SEQ2 st_sequence.testNotFirst : RUNNING > >>>SEQ2 st_sequence.testNotFirst : PASS > >>>SEQ4 st_sequence.testImplicitBind : RUNNING > >>>SEQ4 st_sequence.testImplicitBind : PASS > >>>SEQ8 st_sequence.testBadSlot : RUNNING > >>>SEQ8 st_sequence.testBadSlot : PASS > >>>SEQ5 st_sequence.testBadSession : RUNNING > >>>SEQ5 st_sequence.testBadSession : PASS > >>>SEQ13 st_sequence.testBadSequenceidAtSlot : RUNNING > >>>SEQ13 st_sequence.testBadSequenceidAtSlot : PASS > >>>SEC2 st_secinfo.testSupported2 : RUNNING > >>>SEC2 st_secinfo.testSupported2 : PASS > >>>SEC1 st_secinfo.testSupported : RUNNING > >>>SEC1 st_secinfo.testSupported : PASS > >>>SECNN4 st_secinfo_no_name.testSupported4 : RUNNING > >>>SECNN4 st_secinfo_no_name.testSupported4 : PASS > >>>SECNN3 st_secinfo_no_name.testSupported3 : RUNNING > >>>SECNN3 st_secinfo_no_name.testSupported3 : PASS > >>>SECNN2 st_secinfo_no_name.testSupported2 : RUNNING > >>>COMPOUND4res(status=NFS4ERR_NOFILEHANDLE, tag=b'st_secinfo_no_name.py:testSupported2', resarray=[nfs_resop4(resop=OP_PUTROOTFH, opputrootfh=PUTROOTFH4res(status=NFS4_OK)), nfs_resop4(resop=OP_SECINFO_NO_NAME, opsecinfo_no_name=SECINFO4res(status=NFS4_OK, resok4=[secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_NONE)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_INTEGRITY)), secinfo4(flavor=6, flavor_info=rpcsec_gss_info(oid=b'*\x86H\x86\xf7\x12\x01\x02\x02', qop=0, service=RPC_GSS_SVC_PRIVACY)), secinfo4(flavor=1)])), nfs_resop4(resop=OP_GETFH, opgetfh=GETFH4res(status=NFS4ERR_NOFILEHANDLE))]) > >>>SECNN2 st_secinfo_no_name.testSupported2 : PASS > >>>SECNN1 st_secinfo_no_name.testSupported : RUNNING > >>>SECNN1 st_secinfo_no_name.testSupported : PASS > >>>RECC1 st_reclaim_complete.testSupported : RUNNING > >>>RECC1 st_reclaim_complete.testSupported : PASS > >>>RECC2 st_reclaim_complete.testReclaimAfterRECC : RUNNING > >>>RECC2 st_reclaim_complete.testReclaimAfterRECC : PASS > >>>RECC3 st_reclaim_complete.testOpenBeforeRECC : RUNNING > >>>RECC3 st_reclaim_complete.testOpenBeforeRECC : PASS > >>>RECC4 st_reclaim_complete.testDoubleRECC : RUNNING > >>>RECC4 st_reclaim_complete.testDoubleRECC : PASS > >>>DESCID1 st_destroy_clientid.testSupported : RUNNING > >>>DESCID1 st_destroy_clientid.testSupported : PASS > >>>DESCID2 st_destroy_clientid.testDestroyCIDWS : RUNNING > >>>DESCID2 st_destroy_clientid.testDestroyCIDWS : PASS > >>>DESCID8 st_destroy_clientid.testDestroyCIDTwice : RUNNING > >>>DESCID8 st_destroy_clientid.testDestroyCIDTwice : PASS > >>>DESCID5 st_destroy_clientid.testDestroyCIDSessionB : RUNNING > >>>DESCID5 st_destroy_clientid.testDestroyCIDSessionB : PASS > >>>DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : RUNNING > >>>DESCID7 st_destroy_clientid.testDestroyCIDNotOnly : PASS > >>>DESCID6 st_destroy_clientid.testDestroyCIDCSession : RUNNING > >>>DESCID6 st_destroy_clientid.testDestroyCIDCSession : PASS > >>>DESCID3 st_destroy_clientid.testDestroyBadCIDWS : RUNNING > >>>DESCID3 st_destroy_clientid.testDestroyBadCIDWS : PASS > >>>DESCID4 st_destroy_clientid.testDestroyBadCIDIS : RUNNING > >>>DESCID4 st_destroy_clientid.testDestroyBadCIDIS : PASS > >>>CSESS28 st_create_session.testTooSmallMaxReq : RUNNING > >>>CSESS28 st_create_session.testTooSmallMaxReq : PASS > >>>CSESS25 st_create_session.testTooSmallMaxRS : RUNNING > >>>CSESS25 st_create_session.testTooSmallMaxRS : PASS > >>>CSESS2b st_create_session.testSupported2b : RUNNING > >>>CSESS2b st_create_session.testSupported2b : PASS > >>>CSESS2 st_create_session.testSupported2 : RUNNING > >>>CSESS2 st_create_session.testSupported2 : PASS > >>>CSESS1 st_create_session.testSupported1 : RUNNING > >>>CSESS1 st_create_session.testSupported1 : PASS > >>>CSESS9 st_create_session.testPrincipalCollision1 : RUNNING > >>>CSESS9 st_create_session.testPrincipalCollision1 : PASS > >>>CSESS6 st_create_session.testReplay2 : RUNNING > >>>CSESS6 st_create_session.testReplay2 : PASS > >>>CSESS5b st_create_session.testReplay1b : RUNNING > >>>CSESS5b st_create_session.testReplay1b : PASS > >>>CSESS5a st_create_session.testReplay1a : RUNNING > >>>CSESS5a st_create_session.testReplay1a : PASS > >>>CSESS5 st_create_session.testReplay1 : RUNNING > >>>CSESS5 st_create_session.testReplay1 : PASS > >>>CSESS27 st_create_session.testRepTooBigToCache : RUNNING > >>>CSESS27 st_create_session.testRepTooBigToCache : PASS > >>>CSESS26 st_create_session.testRepTooBig : RUNNING > >>>[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19] > >>>CSESS26 st_create_session.testRepTooBig : PASS > >>>CSESS19 st_create_session.testRdmaArray2 : RUNNING > >>>COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_create_session.py:testRdmaArray2', resarray=[nfs_resop4(resop=OP_CREATE_SESSION, opcreate_session=CREATE_SESSION4res(csr_status=NFS4ERR_BADXDR))]) > >>>CSESS19 st_create_session.testRdmaArray2 : PASS > >>>CSESS18 st_create_session.testRdmaArray1 : RUNNING > >>>CSESS18 st_create_session.testRdmaArray1 : PASS > >>>CSESS17 st_create_session.testRdmaArray0 : RUNNING > >>>CSESS17 st_create_session.testRdmaArray0 : PASS > >>>CSESS10 st_create_session.testPrincipalCollision2 : RUNNING > >>>CSESS10 st_create_session.testPrincipalCollision2 : PASS > >>>CSESS23 st_create_session.testNotOnlyOp : RUNNING > >>>CSESS23 st_create_session.testNotOnlyOp : PASS > >>>CSESS3 st_create_session.testNoExchange : RUNNING > >>>CSESS3 st_create_session.testNoExchange : PASS > >>>CSESS22 st_create_session.testMaxreqs : RUNNING > >>>CSESS22 st_create_session.testMaxreqs : PASS > >>>CSESS200 st_create_session.testManyClients : RUNNING > >>>CSESS200 st_create_session.testManyClients : PASS > >>>CSESS29 st_create_session.testDRCMemLeak : RUNNING > >>>CSESS29 st_create_session.testDRCMemLeak : PASS > >>>CSESS24 st_create_session.testCsr_sequence : RUNNING > >>>CSESS24 st_create_session.testCsr_sequence : PASS > >>>CSESS4 st_create_session.testContrivedReplay : RUNNING > >>>CSESS4 st_create_session.testContrivedReplay : PASS > >>>CSESS16a st_create_session.testCbSecParmsDec : RUNNING > >>>CSESS16a st_create_session.testCbSecParmsDec : PASS > >>>CSESS16 st_create_session.testCbSecParms : RUNNING > >>>CSESS16 st_create_session.testCbSecParms : PASS > >>>CSESS8 st_create_session.testBadSeqnum2 : RUNNING > >>>CSESS8 st_create_session.testBadSeqnum2 : PASS > >>>CSESS7 st_create_session.testBadSeqnum1 : RUNNING > >>>CSESS7 st_create_session.testBadSeqnum1 : PASS > >>>CSESS15 st_create_session.testBadFlag : RUNNING > >>>CSESS15 st_create_session.testBadFlag : PASS > >>>COMP1 st_compound.testZeroOps : RUNNING > >>>COMP1 st_compound.testZeroOps : PASS > >>>COMP5 st_compound.testUndefined : RUNNING > >>>COMP5 st_compound.testUndefined : PASS > >>>COMP4b st_compound.testInvalidMinor2 : RUNNING > >>>COMP4b st_compound.testInvalidMinor2 : PASS > >>>COMP4a st_compound.testInvalidMinor : RUNNING > >>>COMP4a st_compound.testInvalidMinor : PASS > >>>COMP2 st_compound.testGoodTag : RUNNING > >>>COMP2 st_compound.testGoodTag : PASS > >>>EID6 st_exchange_id.testUpdateNonexistant : RUNNING > >>>EID6 st_exchange_id.testUpdateNonexistant : PASS > >>>EID6h st_exchange_id.testUpdate111 : RUNNING > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=16, name=b'COUR6_1642007029', attrs={}), entry4(cookie=20, name=b'COUR5_1642007029', attrs={}), entry4(cookie=24, name=b'COUR4_1642007029', attrs={}), entry4(cookie=28, name=b'COUR3_1642007029', attrs={}), entry4(cookie=32, name=b'COUR2_1642007029', attrs={}), entry4(cookie=36, name=b'CSID3_1642007029', attrs={}), entry4(cookie=40, name=b'CSID8_1642007029', attrs={}), entry4(cookie=44, name=b'CSID10_1642007029', attrs={}), entry4(cookie=48, name=b'CSID5_1642007029', attrs={}), entry4(cookie=52, name=b'CSID9_1642007029', attrs={}), entry4(cookie=56, name=b'CSID1_1642007029', attrs={}), entry4(cookie=60, name=b'CSID4_1642007029', attrs={}), entry4(cookie=64, name=b'CSID2_1642007029', attrs={}), entry4(cookie=68, name=b'CSID6_1642007029', attrs={}), entry4(cookie=74, name=b'owner_REBT4b_1642007029_client_0', attrs={}), entry4(cookie=80, name=b'owner_REBT4b_1642007029_client_1', attrs={}), entry4(cookie=86, name=b'owner_REBT4b_1642007029_cli > >>> ent_2', attrs={}), entry4(cookie=92, name=b'owner_REBT4b_1642007029_client_3', attrs={}), entry4(cookie=98, name=b'owner_REBT4b_1642007029_client_4', attrs={}), entry4(cookie=104, name=b'owner_REBT4b_1642007029_client_5', attrs={}), entry4(cookie=110, name=b'owner_REBT4b_1642007029_client_6', attrs={}), entry4(cookie=116, name=b'owner_REBT4b_1642007029_client_7', attrs={}), entry4(cookie=122, name=b'owner_REBT4b_1642007029_client_8', attrs={}), entry4(cookie=128, name=b'owner_REBT4b_1642007029_client_9', attrs={}), entry4(cookie=134, name=b'owner_REBT4b_1642007029_client_10', attrs={}), entry4(cookie=140, name=b'owner_REBT4b_1642007029_client_11', attrs={}), entry4(cookie=146, name=b'owner_REBT4b_1642007029_client_12', attrs={}), entry4(cookie=152, name=b'owner_REBT4b_1642007029_client_13', attrs={}), entry4(cookie=158, name=b'owner_REBT4b_1642007029_client_14', attrs={}), entry4(cookie=164, name=b'owner_REBT4b_1642007029_client_15', attrs={}), entry4(cookie=170, name=b'owner_REBT4b > >>> _1642007029_client_16', attrs={}), entry4(cookie=176, name=b'owner_REBT4b_1642007029_client_17', attrs={}), entry4(cookie=182, name=b'owner_REBT4b_1642007029_client_18', attrs={}), entry4(cookie=188, name=b'owner_REBT4b_1642007029_client_19', attrs={}), entry4(cookie=194, name=b'owner_REBT4b_1642007029_client_20', attrs={}), entry4(cookie=200, name=b'owner_REBT4b_1642007029_client_21', attrs={}), entry4(cookie=206, name=b'owner_REBT4b_1642007029_client_22', attrs={}), entry4(cookie=212, name=b'owner_REBT4b_1642007029_client_23', attrs={}), entry4(cookie=218, name=b'owner_REBT4b_1642007029_client_24', attrs={}), entry4(cookie=224, name=b'owner_REBT4b_1642007029_client_25', attrs={}), entry4(cookie=230, name=b'owner_REBT4b_1642007029_client_26', attrs={}), entry4(cookie=236, name=b'owner_REBT4b_1642007029_client_27', attrs={}), entry4(cookie=242, name=b'owner_REBT4b_1642007029_client_28', attrs={}), entry4(cookie=248, name=b'owner_REBT4b_1642007029_client_29', attrs={}), entry4(cookie > >>> =254, name=b'owner_REBT4b_1642007029_client_30', attrs={}), entry4(cookie=260, name=b'owner_REBT4b_1642007029_client_31', attrs={}), entry4(cookie=266, name=b'owner_REBT4b_1642007029_client_32', attrs={}), entry4(cookie=272, name=b'owner_REBT4b_1642007029_client_33', attrs={}), entry4(cookie=278, name=b'owner_REBT4b_1642007029_client_34', attrs={}), entry4(cookie=284, name=b'owner_REBT4b_1642007029_client_35', attrs={}), entry4(cookie=290, name=b'owner_REBT4b_1642007029_client_36', attrs={}), entry4(cookie=296, name=b'owner_REBT4b_1642007029_client_37', attrs={}), entry4(cookie=302, name=b'owner_REBT4b_1642007029_client_38', attrs={}), entry4(cookie=308, name=b'owner_REBT4b_1642007029_client_39', attrs={}), entry4(cookie=314, name=b'owner_REBT4b_1642007029_client_40', attrs={}), entry4(cookie=320, name=b'owner_REBT4b_1642007029_client_41', attrs={}), entry4(cookie=326, name=b'owner_REBT4b_1642007029_client_42', attrs={}), entry4(cookie=332, name=b'owner_REBT4b_1642007029_client_43', > >>> attrs={}), entry4(cookie=338, name=b'owner_REBT4b_1642007029_client_44', attrs={}), entry4(cookie=344, name=b'owner_REBT4b_1642007029_client_45', attrs={}), entry4(cookie=350, name=b'owner_REBT4b_1642007029_client_46', attrs={}), entry4(cookie=356, name=b'owner_REBT4b_1642007029_client_47', attrs={}), entry4(cookie=362, name=b'owner_REBT4b_1642007029_client_48', attrs={}), entry4(cookie=368, name=b'owner_REBT4b_1642007029_client_49', attrs={}), entry4(cookie=374, name=b'owner_REBT4b_1642007029_client_50', attrs={}), entry4(cookie=380, name=b'owner_REBT4b_1642007029_client_51', attrs={}), entry4(cookie=386, name=b'owner_REBT4b_1642007029_client_52', attrs={}), entry4(cookie=392, name=b'owner_REBT4b_1642007029_client_53', attrs={}), entry4(cookie=398, name=b'owner_REBT4b_1642007029_client_54', attrs={}), entry4(cookie=404, name=b'owner_REBT4b_1642007029_client_55', attrs={}), entry4(cookie=410, name=b'owner_REBT4b_1642007029_client_56', attrs={}), entry4(cookie=416, name=b'owner_REBT > >>> 4b_1642007029_client_57', attrs={}), entry4(cookie=422, name=b'owner_REBT4b_1642007029_client_58', attrs={}), entry4(cookie=428, name=b'owner_REBT4b_1642007029_client_59', attrs={}), entry4(cookie=434, name=b'owner_REBT4b_1642007029_client_60', attrs={}), entry4(cookie=440, name=b'owner_REBT4b_1642007029_client_61', attrs={}), entry4(cookie=446, name=b'owner_REBT4b_1642007029_client_62', attrs={}), entry4(cookie=452, name=b'owner_REBT4b_1642007029_client_63', attrs={}), entry4(cookie=458, name=b'owner_REBT4b_1642007029_client_64', attrs={}), entry4(cookie=464, name=b'owner_REBT4b_1642007029_client_65', attrs={}), entry4(cookie=470, name=b'owner_REBT4b_1642007029_client_66', attrs={}), entry4(cookie=476, name=b'owner_REBT4b_1642007029_client_67', attrs={}), entry4(cookie=482, name=b'owner_REBT4b_1642007029_client_68', attrs={}), entry4(cookie=488, name=b'owner_REBT4b_1642007029_client_69', attrs={}), entry4(cookie=494, name=b'owner_REBT4b_1642007029_client_70', attrs={}), entry4(cook > >>> ie=500, name=b'owner_REBT4b_1642007029_client_71', attrs={}), entry4(cookie=506, name=b'owner_REBT4b_1642007029_client_72', attrs={}), entry4(cookie=520, name=b'owner_REBT4b_1642007029_client_73', attrs={}), entry4(cookie=526, name=b'owner_REBT4b_1642007029_client_74', attrs={}), entry4(cookie=532, name=b'owner_REBT4b_1642007029_client_75', attrs={}), entry4(cookie=538, name=b'owner_REBT4b_1642007029_client_76', attrs={}), entry4(cookie=544, name=b'owner_REBT4b_1642007029_client_77', attrs={}), entry4(cookie=550, name=b'owner_REBT4b_1642007029_client_78', attrs={}), entry4(cookie=556, name=b'owner_REBT4b_1642007029_client_79', attrs={}), entry4(cookie=562, name=b'owner_REBT4b_1642007029_client_80', attrs={}), entry4(cookie=568, name=b'owner_REBT4b_1642007029_client_81', attrs={}), entry4(cookie=574, name=b'owner_REBT4b_1642007029_client_82', attrs={}), entry4(cookie=580, name=b'owner_REBT4b_1642007029_client_83', attrs={}), entry4(cookie=586, name=b'owner_REBT4b_1642007029_client_84 > >>> ', attrs={}), entry4(cookie=592, name=b'owner_REBT4b_1642007029_client_85', attrs={}), entry4(cookie=598, name=b'owner_REBT4b_1642007029_client_86', attrs={}), entry4(cookie=604, name=b'owner_REBT4b_1642007029_client_87', attrs={}), entry4(cookie=610, name=b'owner_REBT4b_1642007029_client_88', attrs={}), entry4(cookie=616, name=b'owner_REBT4b_1642007029_client_89', attrs={}), entry4(cookie=622, name=b'owner_REBT4b_1642007029_client_90', attrs={}), entry4(cookie=628, name=b'owner_REBT4b_1642007029_client_91', attrs={}), entry4(cookie=634, name=b'owner_REBT4b_1642007029_client_92', attrs={}), entry4(cookie=640, name=b'owner_REBT4b_1642007029_client_93', attrs={}), entry4(cookie=646, name=b'owner_REBT4b_1642007029_client_94', attrs={}), entry4(cookie=652, name=b'owner_REBT4b_1642007029_client_95', attrs={}), entry4(cookie=658, name=b'owner_REBT4b_1642007029_client_96', attrs={}), entry4(cookie=664, name=b'owner_REBT4b_1642007029_client_97', attrs={}), entry4(cookie=670, name=b'owner_RE > >>> BT4b_1642007029_client_98', attrs={}), entry4(cookie=676, name=b'owner_REBT4b_1642007029_client_99', attrs={}), entry4(cookie=682, name=b'owner_REBT2b_1642007029_client_0', attrs={}), entry4(cookie=688, name=b'owner_REBT2b_1642007029_client_1', attrs={}), entry4(cookie=694, name=b'owner_REBT2b_1642007029_client_2', attrs={}), entry4(cookie=700, name=b'owner_REBT2b_1642007029_client_3', attrs={}), entry4(cookie=706, name=b'owner_REBT2b_1642007029_client_4', attrs={}), entry4(cookie=712, name=b'owner_REBT2b_1642007029_client_5', attrs={}), entry4(cookie=718, name=b'owner_REBT2b_1642007029_client_6', attrs={}), entry4(cookie=724, name=b'owner_REBT2b_1642007029_client_7', attrs={}), entry4(cookie=730, name=b'owner_REBT2b_1642007029_client_8', attrs={}), entry4(cookie=736, name=b'owner_REBT2b_1642007029_client_9', attrs={}), entry4(cookie=742, name=b'owner_REBT2b_1642007029_client_10', attrs={}), entry4(cookie=748, name=b'owner_REBT2b_1642007029_client_11', attrs={}), entry4(cookie=754, > >>> name=b'owner_REBT2b_1642007029_client_12', attrs={}), entry4(cookie=760, name=b'owner_REBT2b_1642007029_client_13', attrs={}), entry4(cookie=766, name=b'owner_REBT2b_1642007029_client_14', attrs={}), entry4(cookie=772, name=b'owner_REBT2b_1642007029_client_15', attrs={}), entry4(cookie=778, name=b'owner_REBT2b_1642007029_client_16', attrs={}), entry4(cookie=784, name=b'owner_REBT2b_1642007029_client_17', attrs={}), entry4(cookie=790, name=b'owner_REBT2b_1642007029_client_18', attrs={}), entry4(cookie=796, name=b'owner_REBT2b_1642007029_client_19', attrs={}), entry4(cookie=802, name=b'owner_REBT2b_1642007029_client_20', attrs={}), entry4(cookie=808, name=b'owner_REBT2b_1642007029_client_21', attrs={}), entry4(cookie=814, name=b'owner_REBT2b_1642007029_client_22', attrs={}), entry4(cookie=820, name=b'owner_REBT2b_1642007029_client_23', attrs={}), entry4(cookie=826, name=b'owner_REBT2b_1642007029_client_24', attrs={}), entry4(cookie=832, name=b'owner_REBT2b_1642007029_client_25', attrs > >>> ={}), entry4(cookie=838, name=b'owner_REBT2b_1642007029_client_26', attrs={}), entry4(cookie=844, name=b'owner_REBT2b_1642007029_client_27', attrs={}), entry4(cookie=850, name=b'owner_REBT2b_1642007029_client_28', attrs={}), entry4(cookie=856, name=b'owner_REBT2b_1642007029_client_29', attrs={}), entry4(cookie=862, name=b'owner_REBT2b_1642007029_client_30', attrs={}), entry4(cookie=868, name=b'owner_REBT2b_1642007029_client_31', attrs={}), entry4(cookie=874, name=b'owner_REBT2b_1642007029_client_32', attrs={}), entry4(cookie=880, name=b'owner_REBT2b_1642007029_client_33', attrs={}), entry4(cookie=886, name=b'owner_REBT2b_1642007029_client_34', attrs={}), entry4(cookie=892, name=b'owner_REBT2b_1642007029_client_35', attrs={}), entry4(cookie=898, name=b'owner_REBT2b_1642007029_client_36', attrs={}), entry4(cookie=904, name=b'owner_REBT2b_1642007029_client_37', attrs={}), entry4(cookie=910, name=b'owner_REBT2b_1642007029_client_38', attrs={}), entry4(cookie=916, name=b'owner_REBT2b_164 > >>> 2007029_client_39', attrs={}), entry4(cookie=922, name=b'owner_REBT2b_1642007029_client_40', attrs={}), entry4(cookie=928, name=b'owner_REBT2b_1642007029_client_41', attrs={}), entry4(cookie=934, name=b'owner_REBT2b_1642007029_client_42', attrs={}), entry4(cookie=940, name=b'owner_REBT2b_1642007029_client_43', attrs={}), entry4(cookie=946, name=b'owner_REBT2b_1642007029_client_44', attrs={}), entry4(cookie=952, name=b'owner_REBT2b_1642007029_client_45', attrs={}), entry4(cookie=958, name=b'owner_REBT2b_1642007029_client_46', attrs={}), entry4(cookie=964, name=b'owner_REBT2b_1642007029_client_47', attrs={}), entry4(cookie=970, name=b'owner_REBT2b_1642007029_client_48', attrs={}), entry4(cookie=976, name=b'owner_REBT2b_1642007029_client_49', attrs={}), entry4(cookie=982, name=b'owner_REBT2b_1642007029_client_50', attrs={}), entry4(cookie=988, name=b'owner_REBT2b_1642007029_client_51', attrs={}), entry4(cookie=994, name=b'owner_REBT2b_1642007029_client_52', attrs={}), entry4(cookie=100 > >>> 0, name=b'owner_REBT2b_1642007029_client_53', attrs={}), entry4(cookie=1006, name=b'owner_REBT2b_1642007029_client_54', attrs={}), entry4(cookie=1012, name=b'owner_REBT2b_1642007029_client_55', attrs={}), entry4(cookie=1018, name=b'owner_REBT2b_1642007029_client_56', attrs={}), entry4(cookie=1032, name=b'owner_REBT2b_1642007029_client_57', attrs={}), entry4(cookie=1038, name=b'owner_REBT2b_1642007029_client_58', attrs={}), entry4(cookie=1044, name=b'owner_REBT2b_1642007029_client_59', attrs={}), entry4(cookie=1050, name=b'owner_REBT2b_1642007029_client_60', attrs={}), entry4(cookie=1056, name=b'owner_REBT2b_1642007029_client_61', attrs={}), entry4(cookie=1062, name=b'owner_REBT2b_1642007029_client_62', attrs={}), entry4(cookie=1068, name=b'owner_REBT2b_1642007029_client_63', attrs={}), entry4(cookie=1074, name=b'owner_REBT2b_1642007029_client_64', attrs={}), entry4(cookie=1080, name=b'owner_REBT2b_1642007029_client_65', attrs={}), entry4(cookie=1086, name=b'owner_REBT2b_1642007029_c > >>> lient_66', attrs={}), entry4(cookie=1092, name=b'owner_REBT2b_1642007029_client_67', attrs={}), entry4(cookie=1098, name=b'owner_REBT2b_1642007029_client_68', attrs={}), entry4(cookie=1104, name=b'owner_REBT2b_1642007029_client_69', attrs={}), entry4(cookie=1110, name=b'owner_REBT2b_1642007029_client_70', attrs={}), entry4(cookie=1116, name=b'owner_REBT2b_1642007029_client_71', attrs={}), entry4(cookie=1122, name=b'owner_REBT2b_1642007029_client_72', attrs={}), entry4(cookie=1128, name=b'owner_REBT2b_1642007029_client_73', attrs={}), entry4(cookie=1134, name=b'owner_REBT2b_1642007029_client_74', attrs={}), entry4(cookie=1140, name=b'owner_REBT2b_1642007029_client_75', attrs={}), entry4(cookie=1146, name=b'owner_REBT2b_1642007029_client_76', attrs={}), entry4(cookie=1152, name=b'owner_REBT2b_1642007029_client_77', attrs={}), entry4(cookie=1158, name=b'owner_REBT2b_1642007029_client_78', attrs={}), entry4(cookie=1164, name=b'owner_REBT2b_1642007029_client_79', attrs={}), entry4(cookie > >>> =1170, name=b'owner_REBT2b_1642007029_client_80', attrs={}), entry4(cookie=1176, name=b'owner_REBT2b_1642007029_client_81', attrs={}), entry4(cookie=1182, name=b'owner_REBT2b_1642007029_client_82', attrs={}), entry4(cookie=1188, name=b'owner_REBT2b_1642007029_client_83', attrs={}), entry4(cookie=1194, name=b'owner_REBT2b_1642007029_client_84', attrs={}), entry4(cookie=1200, name=b'owner_REBT2b_1642007029_client_85', attrs={}), entry4(cookie=1206, name=b'owner_REBT2b_1642007029_client_86', attrs={}), entry4(cookie=1212, name=b'owner_REBT2b_1642007029_client_87', attrs={}), entry4(cookie=1218, name=b'owner_REBT2b_1642007029_client_88', attrs={}), entry4(cookie=1224, name=b'owner_REBT2b_1642007029_client_89', attrs={}), entry4(cookie=1230, name=b'owner_REBT2b_1642007029_client_90', attrs={}), entry4(cookie=1236, name=b'owner_REBT2b_1642007029_client_91', attrs={}), entry4(cookie=1242, name=b'owner_REBT2b_1642007029_client_92', attrs={}), entry4(cookie=1248, name=b'owner_REBT2b_16420070 > >>> 29_client_93', attrs={}), entry4(cookie=1254, name=b'owner_REBT2b_1642007029_client_94', attrs={}), entry4(cookie=1260, name=b'owner_REBT2b_1642007029_client_95', attrs={}), entry4(cookie=1266, name=b'owner_REBT2b_1642007029_client_96', attrs={}), entry4(cookie=1272, name=b'owner_REBT2b_1642007029_client_97', attrs={}), entry4(cookie=1278, name=b'owner_REBT2b_1642007029_client_98', attrs={}), entry4(cookie=1284, name=b'owner_REBT2b_1642007029_client_99', attrs={}), entry4(cookie=1290, name=b'owner_REBT4a_1642007029_client_0', attrs={}), entry4(cookie=1296, name=b'owner_REBT4a_1642007029_client_1', attrs={}), entry4(cookie=1302, name=b'owner_REBT4a_1642007029_client_2', attrs={}), entry4(cookie=1308, name=b'owner_REBT4a_1642007029_client_3', attrs={}), entry4(cookie=1314, name=b'owner_REBT4a_1642007029_client_4', attrs={}), entry4(cookie=1320, name=b'owner_REBT4a_1642007029_client_5', attrs={}), entry4(cookie=1326, name=b'owner_REBT4a_1642007029_client_6', attrs={}), entry4(cookie=13 > >>> 32, name=b'owner_REBT4a_1642007029_client_7', attrs={}), entry4(cookie=1338, name=b'owner_REBT4a_1642007029_client_8', attrs={}), entry4(cookie=1344, name=b'owner_REBT4a_1642007029_client_9', attrs={}), entry4(cookie=1350, name=b'owner_REBT2a_1642007029_client_0', attrs={}), entry4(cookie=1356, name=b'owner_REBT2a_1642007029_client_1', attrs={}), entry4(cookie=1362, name=b'owner_REBT2a_1642007029_client_2', attrs={}), entry4(cookie=1368, name=b'owner_REBT2a_1642007029_client_3', attrs={}), entry4(cookie=1374, name=b'owner_REBT2a_1642007029_client_4', attrs={}), entry4(cookie=1380, name=b'owner_REBT2a_1642007029_client_5', attrs={}), entry4(cookie=1386, name=b'owner_REBT2a_1642007029_client_6', attrs={}), entry4(cookie=1392, name=b'owner_REBT2a_1642007029_client_7', attrs={}), entry4(cookie=1398, name=b'owner_REBT2a_1642007029_client_8', attrs={}), entry4(cookie=1404, name=b'owner_REBT2a_1642007029_client_9', attrs={}), entry4(cookie=1410, name=b'owner_REBT5_1642007029_client_file_0' > >>> , attrs={}), entry4(cookie=1416, name=b'owner_REBT5_1642007029_client_file_1', attrs={}), entry4(cookie=1422, name=b'owner_REBT5_1642007029_client_file_2', attrs={}), entry4(cookie=1428, name=b'owner_REBT5_1642007029_client_file_3', attrs={}), entry4(cookie=1434, name=b'owner_REBT5_1642007029_client_file_4', attrs={}), entry4(cookie=1440, name=b'owner_REBT5_1642007029_client_file_5', attrs={}), entry4(cookie=1446, name=b'owner_REBT5_1642007029_client_file_6', attrs={}), entry4(cookie=1452, name=b'owner_REBT5_1642007029_client_file_7', attrs={}), entry4(cookie=1458, name=b'owner_REBT5_1642007029_client_file_8', attrs={}), entry4(cookie=1464, name=b'owner_REBT5_1642007029_client_file_9', attrs={}), entry4(cookie=1471, name=b'owner_REBT5_1642007029_client_file_10', attrs={}), entry4(cookie=1478, name=b'owner_REBT5_1642007029_client_file_11', attrs={}), entry4(cookie=1485, name=b'owner_REBT5_1642007029_client_file_12', attrs={}), entry4(cookie=1492, name=b'owner_REBT5_1642007029_client_ > >>> file_13', attrs={}), entry4(cookie=1499, name=b'owner_REBT5_1642007029_client_file_14', attrs={}), entry4(cookie=1506, name=b'owner_REBT5_1642007029_client_file_15', attrs={}), entry4(cookie=1513, name=b'owner_REBT5_1642007029_client_file_16', attrs={}), entry4(cookie=1520, name=b'owner_REBT5_1642007029_client_file_17', attrs={}), entry4(cookie=1527, name=b'owner_REBT5_1642007029_client_file_18', attrs={}), entry4(cookie=1544, name=b'owner_REBT5_1642007029_client_file_19', attrs={}), entry4(cookie=1551, name=b'owner_REBT5_1642007029_client_file_20', attrs={}), entry4(cookie=1558, name=b'owner_REBT5_1642007029_client_file_21', attrs={}), entry4(cookie=1565, name=b'owner_REBT5_1642007029_client_file_22', attrs={}), entry4(cookie=1572, name=b'owner_REBT5_1642007029_client_file_23', attrs={}), entry4(cookie=1579, name=b'owner_REBT5_1642007029_client_file_24', attrs={}), entry4(cookie=1586, name=b'owner_REBT5_1642007029_client_file_25', attrs={}), entry4(cookie=1593, name=b'owner_REBT5_1 > >>> 642007029_client_file_26', attrs={}), entry4(cookie=1600, name=b'owner_REBT5_1642007029_client_file_27', attrs={}), entry4(cookie=1607, name=b'owner_REBT5_1642007029_client_file_28', attrs={}), entry4(cookie=1614, name=b'owner_REBT5_1642007029_client_file_29', attrs={}), entry4(cookie=1621, name=b'owner_REBT5_1642007029_client_file_30', attrs={}), entry4(cookie=1628, name=b'owner_REBT5_1642007029_client_file_31', attrs={}), entry4(cookie=1635, name=b'owner_REBT5_1642007029_client_file_32', attrs={}), entry4(cookie=1642, name=b'owner_REBT5_1642007029_client_file_33', attrs={}), entry4(cookie=1649, name=b'owner_REBT5_1642007029_client_file_34', attrs={}), entry4(cookie=1656, name=b'owner_REBT5_1642007029_client_file_35', attrs={}), entry4(cookie=1663, name=b'owner_REBT5_1642007029_client_file_36', attrs={}), entry4(cookie=1670, name=b'owner_REBT5_1642007029_client_file_37', attrs={}), entry4(cookie=1677, name=b'owner_REBT5_1642007029_client_file_38', attrs={}), entry4(cookie=1684, nam > >>> e=b'owner_REBT5_1642007029_client_file_39', attrs={}), entry4(cookie=1691, name=b'owner_REBT5_1642007029_client_file_40', attrs={}), entry4(cookie=1698, name=b'owner_REBT5_1642007029_client_file_41', attrs={}), entry4(cookie=1703, name=b'owner_REBT1_1642007029', attrs={}), entry4(cookie=1709, name=b'owner_REBT3b_1642007029_client_0', attrs={}), entry4(cookie=1715, name=b'owner_REBT3b_1642007029_client_1', attrs={}), entry4(cookie=1721, name=b'owner_REBT3b_1642007029_client_2', attrs={}), entry4(cookie=1727, name=b'owner_REBT3b_1642007029_client_3', attrs={}), entry4(cookie=1733, name=b'owner_REBT3b_1642007029_client_4', attrs={}), entry4(cookie=1739, name=b'owner_REBT3b_1642007029_client_5', attrs={}), entry4(cookie=1745, name=b'owner_REBT3b_1642007029_client_6', attrs={}), entry4(cookie=1751, name=b'owner_REBT3b_1642007029_client_7', attrs={}), entry4(cookie=1757, name=b'owner_REBT3b_1642007029_client_8', attrs={}), entry4(cookie=1763, name=b'owner_REBT3b_1642007029_client_9', attr > >>> s={}), entry4(cookie=1769, name=b'owner_REBT3b_1642007029_client_10', attrs={}), entry4(cookie=1775, name=b'owner_REBT3b_1642007029_client_11', attrs={}), entry4(cookie=1781, name=b'owner_REBT3b_1642007029_client_12', attrs={}), entry4(cookie=1787, name=b'owner_REBT3b_1642007029_client_13', attrs={}), entry4(cookie=1793, name=b'owner_REBT3b_1642007029_client_14', attrs={}), entry4(cookie=1799, name=b'owner_REBT3b_1642007029_client_15', attrs={}), entry4(cookie=1805, name=b'owner_REBT3b_1642007029_client_16', attrs={}), entry4(cookie=1811, name=b'owner_REBT3b_1642007029_client_17', attrs={}), entry4(cookie=1817, name=b'owner_REBT3b_1642007029_client_18', attrs={}), entry4(cookie=1823, name=b'owner_REBT3b_1642007029_client_19', attrs={}), entry4(cookie=1829, name=b'owner_REBT3b_1642007029_client_20', attrs={}), entry4(cookie=1835, name=b'owner_REBT3b_1642007029_client_21', attrs={}), entry4(cookie=1841, name=b'owner_REBT3b_1642007029_client_22', attrs={}), entry4(cookie=1847, name=b'o > >>> wner_REBT3b_1642007029_client_23', attrs={}), entry4(cookie=1853, name=b'owner_REBT3b_1642007029_client_24', attrs={}), entry4(cookie=1859, name=b'owner_REBT3b_1642007029_client_25', attrs={}), entry4(cookie=1865, name=b'owner_REBT3b_1642007029_client_26', attrs={}), entry4(cookie=1871, name=b'owner_REBT3b_1642007029_client_27', attrs={}), entry4(cookie=1877, name=b'owner_REBT3b_1642007029_client_28', attrs={}), entry4(cookie=1883, name=b'owner_REBT3b_1642007029_client_29', attrs={}), entry4(cookie=1889, name=b'owner_REBT3b_1642007029_client_30', attrs={}), entry4(cookie=1895, name=b'owner_REBT3b_1642007029_client_31', attrs={}), entry4(cookie=1901, name=b'owner_REBT3b_1642007029_client_32', attrs={}), entry4(cookie=1907, name=b'owner_REBT3b_1642007029_client_33', attrs={}), entry4(cookie=1913, name=b'owner_REBT3b_1642007029_client_34', attrs={}), entry4(cookie=1919, name=b'owner_REBT3b_1642007029_client_35', attrs={}), entry4(cookie=1925, name=b'owner_REBT3b_1642007029_client_36', > >>> attrs={}), entry4(cookie=1931, name=b'owner_REBT3b_1642007029_client_37', attrs={}), entry4(cookie=1937, name=b'owner_REBT3b_1642007029_client_38', attrs={}), entry4(cookie=1943, name=b'owner_REBT3b_1642007029_client_39', attrs={}), entry4(cookie=1949, name=b'owner_REBT3b_1642007029_client_40', attrs={}), entry4(cookie=1955, name=b'owner_REBT3b_1642007029_client_41', attrs={}), entry4(cookie=1961, name=b'owner_REBT3b_1642007029_client_42', attrs={}), entry4(cookie=1967, name=b'owner_REBT3b_1642007029_client_43', attrs={}), entry4(cookie=1973, name=b'owner_REBT3b_1642007029_client_44', attrs={}), entry4(cookie=1979, name=b'owner_REBT3b_1642007029_client_45', attrs={}), entry4(cookie=1985, name=b'owner_REBT3b_1642007029_client_46', attrs={}), entry4(cookie=1991, name=b'owner_REBT3b_1642007029_client_47', attrs={}), entry4(cookie=1997, name=b'owner_REBT3b_1642007029_client_48', attrs={}), entry4(cookie=2003, name=b'owner_REBT3b_1642007029_client_49', attrs={}), entry4(cookie=2009, name > >>> =b'owner_REBT3b_1642007029_client_50', attrs={}), entry4(cookie=2015, name=b'owner_REBT3b_1642007029_client_51', attrs={}), entry4(cookie=2021, name=b'owner_REBT3b_1642007029_client_52', attrs={}), entry4(cookie=2027, name=b'owner_REBT3b_1642007029_client_53', attrs={}), entry4(cookie=2033, name=b'owner_REBT3b_1642007029_client_54', attrs={}), entry4(cookie=2039, name=b'owner_REBT3b_1642007029_client_55', attrs={}), entry4(cookie=2056, name=b'owner_REBT3b_1642007029_client_56', attrs={}), entry4(cookie=2062, name=b'owner_REBT3b_1642007029_client_57', attrs={}), entry4(cookie=2068, name=b'owner_REBT3b_1642007029_client_58', attrs={}), entry4(cookie=2074, name=b'owner_REBT3b_1642007029_client_59', attrs={}), entry4(cookie=2080, name=b'owner_REBT3b_1642007029_client_60', attrs={}), entry4(cookie=2086, name=b'owner_REBT3b_1642007029_client_61', attrs={}), entry4(cookie=2092, name=b'owner_REBT3b_1642007029_client_62', attrs={}), entry4(cookie=2098, name=b'owner_REBT3b_1642007029_client_6 > >>> 3', attrs={}), entry4(cookie=2104, name=b'owner_REBT3b_1642007029_client_64', attrs={}), entry4(cookie=2110, name=b'owner_REBT3b_1642007029_client_65', attrs={}), entry4(cookie=2116, name=b'owner_REBT3b_1642007029_client_66', attrs={}), entry4(cookie=2122, name=b'owner_REBT3b_1642007029_client_67', attrs={}), entry4(cookie=2128, name=b'owner_REBT3b_1642007029_client_68', attrs={}), entry4(cookie=2134, name=b'owner_REBT3b_1642007029_client_69', attrs={}), entry4(cookie=2140, name=b'owner_REBT3b_1642007029_client_70', attrs={}), entry4(cookie=2146, name=b'owner_REBT3b_1642007029_client_71', attrs={}), entry4(cookie=2152, name=b'owner_REBT3b_1642007029_client_72', attrs={}), entry4(cookie=2158, name=b'owner_REBT3b_1642007029_client_73', attrs={}), entry4(cookie=2164, name=b'owner_REBT3b_1642007029_client_74', attrs={}), entry4(cookie=2170, name=b'owner_REBT3b_1642007029_client_75', attrs={}), entry4(cookie=2176, name=b'owner_REBT3b_1642007029_client_76', attrs={}), entry4(cookie=2182, > >>> name=b'owner_REBT3b_1642007029_client_77', attrs={}), entry4(cookie=2188, name=b'owner_REBT3b_1642007029_client_78', attrs={}), entry4(cookie=2194, name=b'owner_REBT3b_1642007029_client_79', attrs={}), entry4(cookie=2200, name=b'owner_REBT3b_1642007029_client_80', attrs={}), entry4(cookie=2206, name=b'owner_REBT3b_1642007029_client_81', attrs={}), entry4(cookie=2212, name=b'owner_REBT3b_1642007029_client_82', attrs={}), entry4(cookie=2218, name=b'owner_REBT3b_1642007029_client_83', attrs={}), entry4(cookie=2224, name=b'owner_REBT3b_1642007029_client_84', attrs={}), entry4(cookie=2230, name=b'owner_REBT3b_1642007029_client_85', attrs={}), entry4(cookie=2236, name=b'owner_REBT3b_1642007029_client_86', attrs={}), entry4(cookie=2242, name=b'owner_REBT3b_1642007029_client_87', attrs={}), entry4(cookie=2248, name=b'owner_REBT3b_1642007029_client_88', attrs={}), entry4(cookie=2254, name=b'owner_REBT3b_1642007029_client_89', attrs={}), entry4(cookie=2260, name=b'owner_REBT3b_1642007029_clie > >>> nt_90', attrs={}), entry4(cookie=2266, name=b'owner_REBT3b_1642007029_client_91', attrs={}), entry4(cookie=2272, name=b'owner_REBT3b_1642007029_client_92', attrs={}), entry4(cookie=2278, name=b'owner_REBT3b_1642007029_client_93', attrs={}), entry4(cookie=2284, name=b'owner_REBT3b_1642007029_client_94', attrs={}), entry4(cookie=2290, name=b'owner_REBT3b_1642007029_client_95', attrs={}), entry4(cookie=2296, name=b'owner_REBT3b_1642007029_client_96', attrs={}), entry4(cookie=2302, name=b'owner_REBT3b_1642007029_client_97', attrs={}), entry4(cookie=2308, name=b'owner_REBT3b_1642007029_client_98', attrs={}), entry4(cookie=2314, name=b'owner_REBT3b_1642007029_client_99', attrs={}), entry4(cookie=2320, name=b'owner_REBT3a_1642007029_client_0', attrs={}), entry4(cookie=2326, name=b'owner_REBT3a_1642007029_client_1', attrs={}), entry4(cookie=2332, name=b'owner_REBT3a_1642007029_client_2', attrs={}), entry4(cookie=2338, name=b'owner_REBT3a_1642007029_client_3', attrs={}), entry4(cookie=2344, > >>> name=b'owner_REBT3a_1642007029_client_4', attrs={}), entry4(cookie=2350, name=b'owner_REBT3a_1642007029_client_5', attrs={}), entry4(cookie=2356, name=b'owner_REBT3a_1642007029_client_6', attrs={}), entry4(cookie=2362, name=b'owner_REBT3a_1642007029_client_7', attrs={}), entry4(cookie=2368, name=b'owner_REBT3a_1642007029_client_8', attrs={}), entry4(cookie=2374, name=b'owner_REBT3a_1642007029_client_9', attrs={}), entry4(cookie=2378, name=b'RNM6_1642007029', attrs={}), entry4(cookie=2382, name=b'RNM7_1642007029', attrs={}), entry4(cookie=2386, name=b'RNM1s_1642007029', attrs={}), entry4(cookie=2390, name=b'RNM1a_1642007029', attrs={}), entry4(cookie=2394, name=b'RNM1r_1642007029', attrs={}), entry4(cookie=2398, name=b'RNM1f_1642007029', attrs={}), entry4(cookie=2402, name=b'RNM1d_1642007029', attrs={}), entry4(cookie=2406, name=b'RNM19_1642007029', attrs={}), entry4(cookie=2410, name=b'RNM18_1642007029', attrs={}), entry4(cookie=2414, name=b'RNM5_1642007029', attrs={}), entry4(cooki > >>> e=2418, name=b'RNM20_1642007029', attrs={}), entry4(cookie=2422, name=b'RNM17_1642007029', attrs={}), entry4(cookie=2426, name=b'RNM15_1642007029', attrs={}), entry4(cookie=2430, name=b'RNM14_1642007029', attrs={}), entry4(cookie=2434, name=b'RNM10_1642007029', attrs={}), entry4(cookie=2438, name=b'RNM11_1642007029', attrs={}), entry4(cookie=2442, name=b'RNM12_1642007029', attrs={}), entry4(cookie=2446, name=b'RNM16_1642007029', attrs={}), entry4(cookie=2450, name=b'RNM13_1642007029', attrs={}), entry4(cookie=2454, name=b'RNM3s_1642007029', attrs={}), entry4(cookie=2458, name=b'RNM3a_1642007029', attrs={}), entry4(cookie=2462, name=b'RNM3r_1642007029', attrs={}), entry4(cookie=2466, name=b'RNM3f_1642007029', attrs={}), entry4(cookie=2471, name=b'owner_DELEG9_1642007029', attrs={}), entry4(cookie=2475, name=b'DELEG23_1642007029', attrs={}), entry4(cookie=2479, name=b'DELEG1_1642007029', attrs={}), entry4(cookie=2483, name=b'DELEG4_1642007029', attrs={}), entry4(cookie=2487, name=b'DE > >>> LEG8_1642007029', attrs={}), entry4(cookie=2491, name=b'DELEG6_1642007029', attrs={}), entry4(cookie=2495, name=b'OPEN1_1642007029', attrs={}), entry4(cookie=2499, name=b'OPEN2_1642007029', attrs={}), entry4(cookie=2503, name=b'OPEN30_1642007029', attrs={}), entry4(cookie=2507, name=b'OPEN7_1642007029', attrs={}), entry4(cookie=2511, name=b'OPEN6_1642007029', attrs={}), entry4(cookie=2515, name=b'OPEN8_1642007029', attrs={}), entry4(cookie=2523, name=b'OPEN31_1642007029', attrs={}), entry4(cookie=2531, name=b'SEQ10b_1642007029_2', attrs={}), entry4(cookie=2535, name=b'SEQ9b_1642007029_2', attrs={}), entry4(cookie=2539, name=b'SEC2_1642007029', attrs={}), entry4(cookie=2543, name=b'SEC1_1642007029', attrs={}), entry4(cookie=2560, name=b'owner_RECC2_1642007029', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'bar', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'link', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'file', attrs={}), entry4(cookie=512, name=b'dir', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'file2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM10_1642007029', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'RNM11_1642007029', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir', attrs={}), entry4(cookie=512, name=b'file', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=14, name=b'dir1', attrs={}), entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'dir2', attrs={})] > >>>INFO :test.env:Called do_readdir() > >>>INFO :test.env:do_readdir() = [entry4(cookie=512, name=b'foo', attrs={})] > >>>EID6h st_exchange_id.testUpdate111 : PASS > >>>EID6g st_exchange_id.testUpdate110 : RUNNING > >>>EID6g st_exchange_id.testUpdate110 : PASS > >>>EID6f st_exchange_id.testUpdate101 : RUNNING > >>>EID6f st_exchange_id.testUpdate101 : PASS > >>>EID6e st_exchange_id.testUpdate100 : RUNNING > >>>EID6e st_exchange_id.testUpdate100 : PASS > >>>EID6d st_exchange_id.testUpdate011 : RUNNING > >>>EID6d st_exchange_id.testUpdate011 : PASS > >>>EID6c st_exchange_id.testUpdate010 : RUNNING > >>>EID6c st_exchange_id.testUpdate010 : PASS > >>>EID6b st_exchange_id.testUpdate001 : RUNNING > >>>EID6b st_exchange_id.testUpdate001 : PASS > >>>EID6a st_exchange_id.testUpdate000 : RUNNING > >>>EID6a st_exchange_id.testUpdate000 : PASS > >>>EID1b st_exchange_id.testSupported2 : RUNNING > >>>EID1b st_exchange_id.testSupported2 : PASS > >>>EID7 st_exchange_id.testSupported1a : RUNNING > >>>EID7 st_exchange_id.testSupported1a : PASS > >>>EID1 st_exchange_id.testSupported : RUNNING > >>>EID1 st_exchange_id.testSupported : PASS > >>>EID8 st_exchange_id.testNotOnlyOp : RUNNING > >>>EID8 st_exchange_id.testNotOnlyOp : PASS > >>>EID5h st_exchange_id.testNoUpdate111 : RUNNING > >>>EID5h st_exchange_id.testNoUpdate111 : PASS > >>>EID5g st_exchange_id.testNoUpdate110 : RUNNING > >>>EID5g st_exchange_id.testNoUpdate110 : PASS > >>>EID5fb st_exchange_id.testNoUpdate101b : RUNNING > >>>EID5fb st_exchange_id.testNoUpdate101b : PASS > >>>EID5f st_exchange_id.testNoUpdate101 : RUNNING > >>>EID5f st_exchange_id.testNoUpdate101 : PASS > >>>EID5e st_exchange_id.testNoUpdate100 : RUNNING > >>>EID5e st_exchange_id.testNoUpdate100 : PASS > >>>EID5d st_exchange_id.testNoUpdate011 : RUNNING > >>>EID5d st_exchange_id.testNoUpdate011 : PASS > >>>EID5c st_exchange_id.testNoUpdate010 : RUNNING > >>>EID5c st_exchange_id.testNoUpdate010 : PASS > >>>EID5b st_exchange_id.testNoUpdate001 : RUNNING > >>>EID5b st_exchange_id.testNoUpdate001 : PASS > >>>EID5a st_exchange_id.testNoUpdate000 : RUNNING > >>>EID5a st_exchange_id.testNoUpdate000 : PASS > >>>EID2 st_exchange_id.testNoImplId : RUNNING > >>>EID2 st_exchange_id.testNoImplId : PASS > >>>EID3 st_exchange_id.testLongArray : RUNNING > >>>COMPOUND4res(status=NFS4ERR_BADXDR, tag=b'st_exchange_id.py:testNoImplId', resarray=[nfs_resop4(resop=OP_EXCHANGE_ID, opexchange_id=EXCHANGE_ID4res(eir_status=NFS4ERR_BADXDR))]) > >>>EID3 st_exchange_id.testLongArray : PASS > >>>EID9 st_exchange_id.testLeasePeriod : RUNNING > >>>EID9 st_exchange_id.testLeasePeriod : PASS > >>>EID4 st_exchange_id.testBadFlags : RUNNING > >>>EID4 st_exchange_id.testBadFlags : PASS > >>>************************************************** > >>>************************************************** > >>>Command line asked for 172 of 260 tests > >>>Of those: 0 Skipped, 0 Failed, 0 Warned, 172 Passed > >>>FSTYP -- nfs > >>>PLATFORM -- Linux/x86_64 test3 5.16.0-00002-g616758bf6583 #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > >>>MKFS_OPTIONS -- test1.fieldses.org:/exports/xfs2 > >>>MOUNT_OPTIONS -- -overs=4.2,sec=sys -o context=system_u:object_r:root_t:s0 test1.fieldses.org:/exports/xfs2 /mnt2 > >>> > >>>generic/001 41s ... 41s > >>>generic/002 1s ... 1s > >>>generic/003 [not run] atime related mount options have no effect on nfs > >>>generic/004 [not run] O_TMPFILE is not supported > >>>generic/005 2s ... 2s > >>>generic/006 [expunged] > >>>generic/007 [expunged] > >>>generic/008 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/009 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/010 [not run] /root/xfstests-dev/src/dbtest not built > >>>generic/011 68s ... 65s > >>>generic/012 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/013 68s ... 66s > >>>generic/014 [expunged] > >>>generic/015 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/016 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/017 [expunged] > >>>generic/018 [not run] defragmentation not supported for fstype "nfs" > >>>generic/020 13s ... 13s > >>>generic/021 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/022 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/023 4s ... 3s > >>>generic/024 [not run] kernel doesn't support renameat2 syscall > >>>generic/025 [not run] kernel doesn't support renameat2 syscall > >>>generic/026 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/027 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/028 5s ... 5s > >>>generic/029 1s ... 2s > >>>generic/030 3s ... 3s > >>>generic/031 [expunged] > >>>generic/032 [expunged] > >>>generic/033 [expunged] > >>>generic/034 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/035 [expunged] > >>>generic/036 11s ... 11s > >>>generic/037 21s ... 21s > >>>generic/038 [not run] FITRIM not supported on /mnt2 > >>>generic/039 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/040 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/041 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/043 [not run] nfs does not support shutdown > >>>generic/044 [not run] nfs does not support shutdown > >>>generic/045 [not run] nfs does not support shutdown > >>>generic/046 [not run] nfs does not support shutdown > >>>generic/047 [not run] nfs does not support shutdown > >>>generic/048 [not run] nfs does not support shutdown > >>>generic/049 [not run] nfs does not support shutdown > >>>generic/050 [not run] nfs does not support shutdown > >>>generic/051 [not run] nfs does not support shutdown > >>>generic/052 [not run] nfs does not support shutdown > >>>generic/053 [expunged] > >>>generic/054 [not run] nfs does not support shutdown > >>>generic/055 [not run] nfs does not support shutdown > >>>generic/056 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/057 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/058 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/059 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/060 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/061 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/062 [expunged] > >>>generic/063 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/064 [expunged] > >>>generic/065 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/066 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/067 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/068 [expunged] > >>>generic/069 29s ... 30s > >>>generic/070 60s ... 47s > >>>generic/071 [expunged] > >>>generic/072 24s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >>>generic/073 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/074 [expunged] > >>>generic/075 61s ... 56s > >>>generic/076 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >>>generic/077 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/078 [not run] kernel doesn't support renameat2 syscall > >>>generic/079 [not run] file system doesn't support chattr +ia > >>>generic/080 3s ... 3s > >>>generic/081 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/082 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/083 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/084 5s ... 6s > >>>generic/085 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/086 2s ... 2s > >>>generic/087 [expunged] > >>>generic/088 [expunged] > >>>generic/089 [expunged] > >>>generic/090 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/091 [expunged] > >>>generic/092 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/093 [not run] attr namespace security not supported by this filesystem type: nfs > >>>generic/094 [expunged] > >>>generic/095 [not run] fio utility required, skipped this test > >>>generic/096 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/097 [not run] attr namespace trusted not supported by this filesystem type: nfs > >>>generic/098 2s ... 2s > >>>generic/099 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/100 [expunged] > >>>generic/101 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/102 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/103 3s ... 3s > >>>generic/104 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/105 [expunged] > >>>generic/106 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/107 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/108 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/109 57s ... 56s > >>>generic/110 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/111 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/112 61s ... 59s > >>>generic/113 [expunged] > >>>generic/114 [not run] device block size: 4096 greater than 512 > >>>generic/115 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/116 1s ... 2s > >>>generic/117 [expunged] > >>>generic/118 2s ... 1s > >>>generic/119 3s ... 3s > >>>generic/120 [not run] atime related mount options have no effect on nfs > >>>generic/121 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/122 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/123 [not run] fsgqa user not defined. > >>>generic/124 60s ... 54s > >>>generic/126 [expunged] > >>>generic/127 [expunged] > >>>generic/128 [not run] fsgqa user not defined. > >>>generic/129 [expunged] > >>>generic/130 19s ... 18s > >>>generic/131 2s ... 2s > >>>generic/132 20s ... 19s > >>>generic/133 [expunged] > >>>generic/134 2s ... 2s > >>>generic/135 2s ... 1s > >>>generic/136 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/137 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/138 3s ... 2s > >>>generic/139 3s ... 3s > >>>generic/140 2s ... 3s > >>>generic/141 1s ... 1s > >>>generic/142 10s ... 8s > >>>generic/143 246s ... 242s > >>>generic/144 2s ... 2s > >>>generic/145 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >>>generic/146 3s ... 2s > >>>generic/147 [not run] xfs_io finsert failed (old kernel/wrong fs?) > >>>generic/148 2s ... 2s > >>>generic/149 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/150 19s ... 17s > >>>generic/151 21s ... 20s > >>>generic/152 22s ... 20s > >>>generic/153 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >>>generic/154 [expunged] > >>>generic/155 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/156 [not run] xfs_io funshare failed (old kernel/wrong fs?) > >>>generic/157 88s ... 86s > >>>generic/158 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/159 [not run] file system doesn't support chattr +i > >>>generic/160 [not run] file system doesn't support chattr +i > >>>generic/161 18s ... 20s > >>>generic/162 [not run] Dedupe not supported by scratch filesystem type: nfs > >>>generic/163 [not run] Dedupe not supported by scratch filesystem type: nfs > >>>generic/164 71s ... 70s > >>>generic/165 65s ... 60s > >>>generic/166 207s ... 182s > >>>generic/167 46s ... 42s > >>>generic/168 319s ... 280s > >>>generic/169 2s ... 2s > >>>generic/170 382s ... 361s > >>>generic/171 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/172 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/173 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/174 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/175 370s ... 235s > >>>generic/176 [not run] Insufficient space for stress test; would only create 32768 extents. > >>>generic/177 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/178 5s ... 5s > >>>generic/179 1s ... 1s > >>>generic/180 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/181 4s ... 4s > >>>generic/182 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/183 6s ... 6s > >>>generic/184 [expunged] > >>>generic/185 6s ... 6s > >>>generic/186 832s ... 813s > >>>generic/187 829s ... 815s > >>>generic/188 8s ... 6s > >>>generic/189 4s ... 4s > >>>generic/190 5s ... 5s > >>>generic/191 5s ... 4s > >>>generic/192 [not run] atime related mount options have no effect on nfs > >>>generic/193 [not run] fsgqa user not defined. > >>>generic/194 6s ... 6s > >>>generic/195 6s ... 6s > >>>generic/196 4s ... 4s > >>>generic/197 4s ... 5s > >>>generic/198 6s ... 6s > >>>generic/199 6s ... 6s > >>>generic/200 6s ... 5s > >>>generic/201 5s ... 3s > >>>generic/202 2s ... 2s > >>>generic/203 2s ... 3s > >>>generic/204 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/205 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/206 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/207 22s ... 20s > >>>generic/208 [expunged] > >>>generic/209 33s ... 45s > >>>generic/210 0s ... 0s > >>>generic/211 2s ... 1s > >>>generic/212 0s ... 0s > >>>generic/213 1s ... 0s > >>>generic/214 1s ... 1s > >>>generic/215 3s ... 3s > >>>generic/216 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/217 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/218 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/219 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/220 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/221 1s ... 2s > >>>generic/222 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/223 [not run] can't mkfs nfs with geometry > >>>generic/224 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/225 [expunged] > >>>generic/226 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/227 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/228 1s ... 1s > >>>generic/229 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/230 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/231 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/232 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/233 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/234 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/235 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/236 2s ... 2s > >>>generic/237 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/238 [not run] Filesystem nfs not supported in _scratch_mkfs_blocksized > >>>generic/239 32s ... 31s > >>>generic/240 1s ... 1s > >>>generic/241 [not run] dbench not found > >>>generic/242 89s ... 85s > >>>generic/243 89s ... 81s > >>>generic/244 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/245 1s ... 1s > >>>generic/246 0s ... 0s > >>>generic/247 85s ... 81s > >>>generic/248 1s ... 0s > >>>generic/249 3s ... 3s > >>>generic/250 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/252 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/253 3s ... 2s > >>>generic/254 2s ... 3s > >>>generic/255 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/256 [not run] fsgqa user not defined. > >>>generic/257 4s ... 5s > >>>generic/258 1s ... 0s > >>>generic/259 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/260 [not run] FITRIM not supported on /mnt2 > >>>generic/261 [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >>>generic/262 [not run] xfs_io finsert failed (old kernel/wrong fs?) > >>>generic/263 [expunged] > >>>generic/264 [not run] xfs_io funshare failed (old kernel/wrong fs?) > >>>generic/265 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/266 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/267 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/268 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/269 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/270 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/271 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/272 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/273 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/274 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > >>>generic/275 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/276 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/277 [expunged] > >>>generic/278 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/279 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/280 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/281 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/282 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/283 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/284 4s ... 3s > >>>generic/285 2s ... 2s > >>>generic/286 19s ... 19s > >>>generic/287 4s ... 4s > >>>generic/288 [not run] FITRIM not supported on /mnt2 > >>>generic/289 5s ... 5s > >>>generic/290 5s ... 5s > >>>generic/291 6s ... 6s > >>>generic/292 6s ... 5s > >>>generic/293 7s ... 7s > >>>generic/294 [expunged] > >>>generic/295 8s ... 7s > >>>generic/296 4s ... 3s > >>>generic/297 [not run] NFS can't interrupt clone operations > >>>generic/298 [not run] NFS can't interrupt clone operations > >>>generic/299 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/300 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/301 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/302 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/303 1s ... 1s > >>>generic/304 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/305 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/306 1s ... 1s > >>>generic/307 3s ... [not run] ACLs not supported by this filesystem type: nfs > >>>generic/308 1s ... 0s > >>>generic/309 1s ... 2s > >>>generic/310 [expunged] > >>>generic/311 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/312 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/313 4s ... 5s > >>>generic/314 [not run] fsgqa user not defined. > >>>generic/315 15s ... [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > >>>generic/316 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/317 [not run] fsgqa user not defined. > >>>generic/318 [expunged] > >>>generic/319 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/320 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/321 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/322 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/323 [expunged] > >>>generic/324 [not run] defragmentation not supported for fstype "nfs" > >>>generic/325 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/326 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/327 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/328 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/329 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/330 10s ... 9s > >>>generic/331 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/332 9s ... 8s > >>>generic/333 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/334 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/335 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/336 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/337 1s ... 1s > >>>generic/338 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/339 [expunged] > >>>generic/340 41s ... 42s > >>>generic/341 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/342 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/343 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/344 86s ... 84s > >>>generic/345 89s ... 84s > >>>generic/346 41s ... 38s > >>>generic/347 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/348 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/352 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/353 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/354 30s ... 29s > >>>generic/355 [not run] fsgqa user not defined. > >>>generic/356 3s ... 2s > >>>generic/357 [expunged] > >>>generic/358 58s ... 55s > >>>generic/359 15s ... 15s > >>>generic/360 0s ... 1s > >>>generic/361 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/362 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/363 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/364 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/365 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/366 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/367 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/368 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/369 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/370 [not run] this test requires richacl support on $SCRATCH_DEV > >>>generic/371 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/372 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/373 1s ... 1s > >>>generic/374 [not run] Dedupe not supported by scratch filesystem type: nfs > >>>generic/375 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/376 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/377 1s ... 1s > >>>generic/378 [not run] fsgqa user not defined. > >>>generic/379 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/380 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/381 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/382 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/383 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/384 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/385 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/386 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/387 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/388 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >>>generic/389 [not run] O_TMPFILE is not supported > >>>generic/390 9s ... [not run] nfs does not support freezing > >>>generic/391 24s ... 22s > >>>generic/392 [not run] nfs does not support shutdown > >>>generic/393 2s ... 2s > >>>generic/394 2s ... 1s > >>>generic/395 [not run] No encryption support for nfs > >>>generic/396 [not run] No encryption support for nfs > >>>generic/397 [not run] No encryption support for nfs > >>>generic/398 [not run] No encryption support for nfs > >>>generic/399 [not run] No encryption support for nfs > >>>generic/400 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/401 1s ... 2s > >>>generic/402 [not run] filesystem nfs timestamp bounds are unknown > >>>generic/403 [expunged] > >>>generic/404 [not run] xfs_io finsert failed (old kernel/wrong fs?) > >>>generic/405 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/406 9s ... 8s > >>>generic/407 2s ... 1s > >>>generic/408 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/409 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >>>generic/410 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >>>generic/411 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >>>generic/412 2s ... 1s > >>>generic/413 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed > >>>generic/414 [not run] xfs_io fiemap failed (old kernel/wrong fs?) > >>>generic/415 15s ... 16s > >>>generic/416 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/417 [not run] nfs does not support shutdown > >>>generic/418 [not run] require test1.fieldses.org:/exports/xfs to be valid block disk > >>>generic/419 [not run] No encryption support for nfs > >>>generic/420 1s ... 0s > >>>generic/421 [not run] No encryption support for nfs > >>>generic/422 [expunged] > >>>generic/423 [expunged] > >>>generic/424 [not run] file system doesn't support any of /usr/bin/chattr +a/+c/+d/+i > >>>generic/425 [expunged] > >>>generic/426 [expunged] > >>>generic/427 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/428 1s ... 0s > >>>generic/429 [not run] No encryption support for nfs > >>>generic/430 1s ... 1s > >>>generic/431 1s ... 1s > >>>generic/432 1s ... 1s > >>>generic/433 1s ... 1s > >>>generic/434 [expunged] > >>>generic/435 [not run] No encryption support for nfs > >>>generic/436 1s ... 2s > >>>generic/437 21s ... 20s > >>>generic/438 [expunged] > >>>generic/439 2s ... 2s > >>>generic/440 [not run] No encryption support for nfs > >>>generic/441 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/443 0s ... 1s > >>>generic/444 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/445 1s ... 2s > >>>generic/446 [expunged] > >>>generic/447 [not run] Insufficient space for stress test; would only create 32768 extents (10737418240/21281112064 blocks). > >>>generic/448 1s ... 2s > >>>generic/449 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/450 1s ... 1s > >>>generic/451 31s ... 31s > >>>generic/452 1s ... 1s > >>>generic/453 2s ... 2s > >>>generic/454 3s ... 2s > >>>generic/455 [not run] This test requires a valid $LOGWRITES_DEV > >>>generic/456 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/457 [not run] This test requires a valid $LOGWRITES_DEV > >>>generic/458 [not run] xfs_io fzero failed (old kernel/wrong fs?) > >>>generic/459 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/460 36s ... 37s > >>>generic/461 [not run] nfs does not support shutdown > >>>generic/462 [not run] mount test1.fieldses.org:/exports/xfs2 with dax failed > >>>generic/463 1s ... 1s > >>>generic/464 73s ... 73s > >>>generic/465 [expunged] > >>>generic/466 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/467 4s ... 4s > >>>generic/468 [not run] nfs does not support shutdown > >>>generic/469 [expunged] > >>>generic/470 [not run] This test requires a valid $LOGWRITES_DEV > >>>generic/471 [not run] xfs_io pwrite -V 1 -b 4k -N failed (old kernel/wrong fs?) > >>>generic/472 2s ... 2s > >>>generic/474 [not run] nfs does not support shutdown > >>>generic/475 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/476 [expunged] > >>>generic/477 4s ... 4s > >>>generic/478 [expunged] > >>>generic/479 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/480 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/481 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/482 [not run] This test requires a valid $LOGWRITES_DEV > >>>generic/483 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/484 [expunged] > >>>generic/485 [expunged] > >>>generic/486 [expunged] > >>>generic/487 [not run] This test requires a valid $SCRATCH_LOGDEV > >>>generic/488 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/489 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/490 1s ... 2s > >>>generic/491 [expunged] > >>>generic/492 [not run] xfs_io label failed (old kernel/wrong fs?) > >>>generic/493 [not run] Dedupe not supported by scratch filesystem type: nfs > >>>generic/494 3s ... 2s > >>>generic/495 2s ... 2s > >>>generic/496 7s ... 7s > >>>generic/497 2s ... [not run] xfs_io fcollapse failed (old kernel/wrong fs?) > >>>generic/498 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/499 [expunged] > >>>generic/500 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/501 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/502 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/503 [expunged] > >>>generic/504 0s ... 0s > >>>generic/505 [not run] nfs does not support shutdown > >>>generic/506 [not run] nfs does not support shutdown > >>>generic/507 [not run] file system doesn't support chattr +AsSu > >>>generic/508 [not run] lsattr not supported by test filesystem type: nfs > >>>generic/509 [not run] O_TMPFILE is not supported > >>>generic/510 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/511 [not run] xfs_io falloc -k failed (old kernel/wrong fs?) > >>>generic/512 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/513 [expunged] > >>>generic/514 [not run] fsgqa user not defined. > >>>generic/515 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/516 [not run] Dedupe not supported by test filesystem type: nfs > >>>generic/517 [not run] Dedupe not supported by scratch filesystem type: nfs > >>>generic/518 2s ... 2s > >>>generic/519 [expunged] > >>>generic/520 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/523 1s ... 1s > >>>generic/524 25s ... 27s > >>>generic/525 1s ... 2s > >>>generic/526 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/527 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/528 [not run] inode creation time not supported by this filesystem > >>>generic/529 [not run] ACLs not supported by this filesystem type: nfs > >>>generic/530 [not run] nfs does not support shutdown > >>>generic/531 [expunged] > >>>generic/532 1s ... 1s > >>>generic/533 1s ... 1s > >>>generic/534 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/535 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/536 [not run] nfs does not support shutdown > >>>generic/537 [not run] FSTRIM not supported > >>>generic/538 26s ... 26s > >>>generic/539 1s ... 1s > >>>generic/540 6s ... 6s > >>>generic/541 7s ... 6s > >>>generic/542 6s ... 6s > >>>generic/543 7s ... 6s > >>>generic/544 6s ... 7s > >>>generic/545 [not run] file system doesn't support chattr +i > >>>generic/546 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/547 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/548 [not run] No encryption support for nfs > >>>generic/549 [not run] No encryption support for nfs > >>>generic/550 [not run] No encryption support for nfs > >>>generic/551 [expunged] > >>>generic/552 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/553 [not run] xfs_io chattr +i failed (old kernel/wrong fs?) > >>>generic/554 3s ... 2s > >>>generic/555 [not run] xfs_io chattr +ia failed (old kernel/wrong fs?) > >>>generic/556 [not run] nfs does not support casefold feature > >>>generic/557 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/558 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/559 [not run] duperemove utility required, skipped this test > >>>generic/560 [not run] duperemove utility required, skipped this test > >>>generic/561 [not run] duperemove utility required, skipped this test > >>>generic/562 [not run] Filesystem nfs not supported in _scratch_mkfs_sized > >>>generic/563 [not run] Cgroup2 doesn't support io controller io > >>>generic/564 2s ... 2s > >>>generic/565 [expunged] > >>>generic/566 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/567 1s ... 2s > >>>generic/568 1s ... 1s > >>>generic/569 2s ... 3s > >>>generic/570 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/571 [expunged] > >>>generic/572 [not run] fsverity utility required, skipped this test > >>>generic/573 [not run] fsverity utility required, skipped this test > >>>generic/574 [not run] fsverity utility required, skipped this test > >>>generic/575 [not run] fsverity utility required, skipped this test > >>>generic/576 [not run] fsverity utility required, skipped this test > >>>generic/577 [not run] fsverity utility required, skipped this test > >>>generic/578 [expunged] > >>>generic/579 [not run] fsverity utility required, skipped this test > >>>generic/580 [not run] No encryption support for nfs > >>>generic/581 [not run] fsgqa user not defined. > >>>generic/582 [not run] No encryption support for nfs > >>>generic/583 [not run] No encryption support for nfs > >>>generic/584 [not run] No encryption support for nfs > >>>generic/585 8s ... [not run] kernel doesn't support renameat2 syscall > >>>generic/586 9s ... 9s > >>>generic/587 [not run] fsgqa user not defined. > >>>generic/588 [not run] require test1.fieldses.org:/exports/xfs2 to be valid block disk > >>>generic/589 [not run] require test1.fieldses.org:/exports/xfs2 to be local device > >>>generic/590 281s ... 276s > >>>generic/591 1s ... 1s > >>>generic/592 [not run] No encryption support for nfs > >>>generic/593 [not run] No encryption support for nfs > >>>generic/594 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/595 [not run] No encryption support for nfs > >>>generic/596 [not run] file system doesn't support chattr +S > >>>generic/597 [not run] fsgqa2 user not defined. > >>>generic/598 [not run] fsgqa2 user not defined. > >>>generic/599 [not run] nfs does not support shutdown > >>>generic/600 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/601 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/602 [not run] No encryption support for nfs > >>>generic/603 [not run] disk quotas not supported by this filesystem type: nfs > >>>generic/604 6s ... 5s > >>>generic/605 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > >>>generic/606 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > >>>generic/607 [expunged] > >>>generic/608 [not run] mount test1.fieldses.org:/exports/xfs2 with dax=always failed > >>>generic/609 1s ... 0s > >>>generic/610 [expunged] > >>>generic/611 1s ... 2s > >>>nfs/001 3s ... 2s > >>>shared/002 [not run] not suitable for this filesystem type: nfs > >>>shared/032 [not run] not suitable for this filesystem type: nfs > >>>shared/298 [not run] not suitable for this filesystem type: nfs > >>>Ran: generic/001 generic/002 generic/003 generic/004 generic/005 generic/008 generic/009 generic/010 generic/011 generic/012 generic/013 generic/015 generic/016 generic/018 generic/020 generic/021 generic/022 generic/023 generic/024 generic/025 generic/026 generic/027 generic/028 generic/029 generic/030 generic/034 generic/036 generic/037 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/069 generic/070 generic/072 generic/073 generic/075 generic/076 generic/077 generic/078 generic/079 generic/080 generic/081 generic/082 generic/083 generic/084 generic/085 generic/086 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/098 generic/099 generic/101 generic/102 generic/103 generic/104 generic/1 > >>> 06 generic/107 generic/108 generic/109 generic/110 generic/111 generic/112 generic/114 generic/115 generic/116 generic/118 generic/119 generic/120 generic/121 generic/122 generic/123 generic/124 generic/128 generic/130 generic/131 generic/132 generic/134 generic/135 generic/136 generic/137 generic/138 generic/139 generic/140 generic/141 generic/142 generic/143 generic/144 generic/145 generic/146 generic/147 generic/148 generic/149 generic/150 generic/151 generic/152 generic/153 generic/155 generic/156 generic/157 generic/158 generic/159 generic/160 generic/161 generic/162 generic/163 generic/164 generic/165 generic/166 generic/167 generic/168 generic/169 generic/170 generic/171 generic/172 generic/173 generic/174 generic/175 generic/176 generic/177 generic/178 generic/179 generic/180 generic/181 generic/182 generic/183 generic/185 generic/186 generic/187 generic/188 generic/189 generic/190 generic/191 generic/192 generic/193 generic/194 generic/195 generic/196 generic/197 generic/19 > >>> 8 generic/199 generic/200 generic/201 generic/202 generic/203 generic/204 generic/205 generic/206 generic/207 generic/209 generic/210 generic/211 generic/212 generic/213 generic/214 generic/215 generic/216 generic/217 generic/218 generic/219 generic/220 generic/221 generic/222 generic/223 generic/224 generic/226 generic/227 generic/228 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/236 generic/237 generic/238 generic/239 generic/240 generic/241 generic/242 generic/243 generic/244 generic/245 generic/246 generic/247 generic/248 generic/249 generic/250 generic/252 generic/253 generic/254 generic/255 generic/256 generic/257 generic/258 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/284 generic/285 generic/286 > >>> generic/287 generic/288 generic/289 generic/290 generic/291 generic/292 generic/293 generic/295 generic/296 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/303 generic/304 generic/305 generic/306 generic/307 generic/308 generic/309 generic/311 generic/312 generic/313 generic/314 generic/315 generic/316 generic/317 generic/319 generic/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/330 generic/331 generic/332 generic/333 generic/334 generic/335 generic/336 generic/337 generic/338 generic/340 generic/341 generic/342 generic/343 generic/344 generic/345 generic/346 generic/347 generic/348 generic/352 generic/353 generic/354 generic/355 generic/356 generic/358 generic/359 generic/360 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/373 generic/374 generic/375 generic/376 generic/377 generic/378 > >>> generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/391 generic/392 generic/393 generic/394 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/401 generic/402 generic/404 generic/405 generic/406 generic/407 generic/408 generic/409 generic/410 generic/411 generic/412 generic/413 generic/414 generic/415 generic/416 generic/417 generic/418 generic/419 generic/420 generic/421 generic/424 generic/427 generic/428 generic/429 generic/430 generic/431 generic/432 generic/433 generic/435 generic/436 generic/437 generic/439 generic/440 generic/441 generic/443 generic/444 generic/445 generic/447 generic/448 generic/449 generic/450 generic/451 generic/452 generic/453 generic/454 generic/455 generic/456 generic/457 generic/458 generic/459 generic/460 generic/461 generic/462 generic/463 generic/464 generic/466 generic/467 generic/468 generic/470 generic/471 generic/472 g > >>> eneric/474 generic/475 generic/477 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/490 generic/492 generic/493 generic/494 generic/495 generic/496 generic/497 generic/498 generic/500 generic/501 generic/502 generic/504 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/518 generic/520 generic/523 generic/524 generic/525 generic/526 generic/527 generic/528 generic/529 generic/530 generic/532 generic/533 generic/534 generic/535 generic/536 generic/537 generic/538 generic/539 generic/540 generic/541 generic/542 generic/543 generic/544 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/554 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/564 generic/566 generic/567 generic/568 generic/569 generic/570 generic/572 ge > >>> neric/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/586 generic/587 generic/588 generic/589 generic/590 generic/591 generic/592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/604 generic/605 generic/606 generic/608 generic/609 generic/611 nfs/001 shared/002 shared/032 shared/298 > >>>Not run: generic/003 generic/004 generic/008 generic/009 generic/010 generic/012 generic/015 generic/016 generic/018 generic/021 generic/022 generic/024 generic/025 generic/026 generic/027 generic/034 generic/038 generic/039 generic/040 generic/041 generic/043 generic/044 generic/045 generic/046 generic/047 generic/048 generic/049 generic/050 generic/051 generic/052 generic/054 generic/055 generic/056 generic/057 generic/058 generic/059 generic/060 generic/061 generic/063 generic/065 generic/066 generic/067 generic/072 generic/073 generic/076 generic/077 generic/078 generic/079 generic/081 generic/082 generic/083 generic/085 generic/090 generic/092 generic/093 generic/095 generic/096 generic/097 generic/099 generic/101 generic/102 generic/104 generic/106 generic/107 generic/108 generic/110 generic/111 generic/114 generic/115 generic/120 generic/121 generic/122 generic/123 generic/128 generic/136 generic/137 generic/145 generic/147 generic/149 generic/153 generic/155 generic/156 gener > >>> ic/158 generic/159 generic/160 generic/162 generic/163 generic/171 generic/172 generic/173 generic/174 generic/176 generic/177 generic/180 generic/182 generic/192 generic/193 generic/204 generic/205 generic/206 generic/216 generic/217 generic/218 generic/219 generic/220 generic/222 generic/223 generic/224 generic/226 generic/227 generic/229 generic/230 generic/231 generic/232 generic/233 generic/234 generic/235 generic/237 generic/238 generic/241 generic/244 generic/250 generic/252 generic/255 generic/256 generic/259 generic/260 generic/261 generic/262 generic/264 generic/265 generic/266 generic/267 generic/268 generic/269 generic/270 generic/271 generic/272 generic/273 generic/274 generic/275 generic/276 generic/278 generic/279 generic/280 generic/281 generic/282 generic/283 generic/288 generic/297 generic/298 generic/299 generic/300 generic/301 generic/302 generic/304 generic/305 generic/307 generic/311 generic/312 generic/314 generic/315 generic/316 generic/317 generic/319 generi > >>> c/320 generic/321 generic/322 generic/324 generic/325 generic/326 generic/327 generic/328 generic/329 generic/331 generic/333 generic/334 generic/335 generic/336 generic/338 generic/341 generic/342 generic/343 generic/347 generic/348 generic/352 generic/353 generic/355 generic/361 generic/362 generic/363 generic/364 generic/365 generic/366 generic/367 generic/368 generic/369 generic/370 generic/371 generic/372 generic/374 generic/375 generic/376 generic/378 generic/379 generic/380 generic/381 generic/382 generic/383 generic/384 generic/385 generic/386 generic/387 generic/388 generic/389 generic/390 generic/392 generic/395 generic/396 generic/397 generic/398 generic/399 generic/400 generic/402 generic/404 generic/405 generic/408 generic/409 generic/410 generic/411 generic/413 generic/414 generic/416 generic/417 generic/418 generic/419 generic/421 generic/424 generic/427 generic/429 generic/435 generic/440 generic/441 generic/444 generic/447 generic/449 generic/455 generic/456 generic > >>> /457 generic/458 generic/459 generic/461 generic/462 generic/466 generic/468 generic/470 generic/471 generic/474 generic/475 generic/479 generic/480 generic/481 generic/482 generic/483 generic/487 generic/488 generic/489 generic/492 generic/493 generic/497 generic/498 generic/500 generic/501 generic/502 generic/505 generic/506 generic/507 generic/508 generic/509 generic/510 generic/511 generic/512 generic/514 generic/515 generic/516 generic/517 generic/520 generic/526 generic/527 generic/528 generic/529 generic/530 generic/534 generic/535 generic/536 generic/537 generic/545 generic/546 generic/547 generic/548 generic/549 generic/550 generic/552 generic/553 generic/555 generic/556 generic/557 generic/558 generic/559 generic/560 generic/561 generic/562 generic/563 generic/566 generic/570 generic/572 generic/573 generic/574 generic/575 generic/576 generic/577 generic/579 generic/580 generic/581 generic/582 generic/583 generic/584 generic/585 generic/587 generic/588 generic/589 generic/ > >>> 592 generic/593 generic/594 generic/595 generic/596 generic/597 generic/598 generic/599 generic/600 generic/601 generic/602 generic/603 generic/605 generic/606 generic/608 shared/002 shared/032 shared/298 > >>>Passed all 538 tests > >>> > >>>[ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > >>>[ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 > >>>[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' > >>>[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' > >>>[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' > >>>[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > >>>[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. > >>>[ 0.000000] signal: max sigframe size: 1776 > >>>[ 0.000000] BIOS-provided physical RAM map: > >>>[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable > >>>[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdbfff] usable > >>>[ 0.000000] BIOS-e820: [mem 0x000000007ffdc000-0x000000007fffffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved > >>>[ 0.000000] NX (Execute Disable) protection: active > >>>[ 0.000000] SMBIOS 2.8 present. > >>>[ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.14.0-6.fc35 04/01/2014 > >>>[ 0.000000] tsc: Fast TSC calibration using PIT > >>>[ 0.000000] tsc: Detected 3591.787 MHz processor > >>>[ 0.000930] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved > >>>[ 0.000938] e820: remove [mem 0x000a0000-0x000fffff] usable > >>>[ 0.000946] last_pfn = 0x7ffdc max_arch_pfn = 0x400000000 > >>>[ 0.000979] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT > >>>[ 0.004415] found SMP MP-table at [mem 0x000f5c10-0x000f5c1f] > >>>[ 0.004436] Using GB pages for direct mapping > >>>[ 0.004911] RAMDISK: [mem 0x34784000-0x363b9fff] > >>>[ 0.004919] ACPI: Early table checksum verification disabled > >>>[ 0.004924] ACPI: RSDP 0x00000000000F5A20 000014 (v00 BOCHS ) > >>>[ 0.004934] ACPI: RSDT 0x000000007FFE2066 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004943] ACPI: FACP 0x000000007FFE1E8E 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004953] ACPI: DSDT 0x000000007FFE0040 001E4E (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004960] ACPI: FACS 0x000000007FFE0000 000040 > >>>[ 0.004966] ACPI: APIC 0x000000007FFE1F82 000080 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004972] ACPI: MCFG 0x000000007FFE2002 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004978] ACPI: WAET 0x000000007FFE203E 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004984] ACPI: Reserving FACP table memory at [mem 0x7ffe1e8e-0x7ffe1f81] > >>>[ 0.004988] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe1e8d] > >>>[ 0.004991] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] > >>>[ 0.004993] ACPI: Reserving APIC table memory at [mem 0x7ffe1f82-0x7ffe2001] > >>>[ 0.004996] ACPI: Reserving MCFG table memory at [mem 0x7ffe2002-0x7ffe203d] > >>>[ 0.004999] ACPI: Reserving WAET table memory at [mem 0x7ffe203e-0x7ffe2065] > >>>[ 0.008477] Zone ranges: > >>>[ 0.008484] DMA [mem 0x0000000000001000-0x0000000000ffffff] > >>>[ 0.008491] DMA32 [mem 0x0000000001000000-0x000000007ffdbfff] > >>>[ 0.008495] Normal empty > >>>[ 0.008499] Movable zone start for each node > >>>[ 0.008518] Early memory node ranges > >>>[ 0.008521] node 0: [mem 0x0000000000001000-0x000000000009efff] > >>>[ 0.008535] node 0: [mem 0x0000000000100000-0x000000007ffdbfff] > >>>[ 0.008538] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdbfff] > >>>[ 0.008548] On node 0, zone DMA: 1 pages in unavailable ranges > >>>[ 0.008622] On node 0, zone DMA: 97 pages in unavailable ranges > >>>[ 0.016858] On node 0, zone DMA32: 36 pages in unavailable ranges > >>>[ 0.048098] kasan: KernelAddressSanitizer initialized > >>>[ 0.048939] ACPI: PM-Timer IO Port: 0x608 > >>>[ 0.048950] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) > >>>[ 0.048993] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 > >>>[ 0.049002] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > >>>[ 0.049006] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) > >>>[ 0.049009] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > >>>[ 0.049012] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) > >>>[ 0.049015] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) > >>>[ 0.049021] ACPI: Using ACPI (MADT) for SMP configuration information > >>>[ 0.049024] TSC deadline timer available > >>>[ 0.049030] smpboot: Allowing 2 CPUs, 0 hotplug CPUs > >>>[ 0.049050] [mem 0xc0000000-0xfed1bfff] available for PCI devices > >>>[ 0.049055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns > >>>[ 0.064532] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 > >>>[ 0.064789] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u1048576 > >>>[ 0.064798] pcpu-alloc: s231440 r8192 d30704 u1048576 alloc=1*2097152 > >>>[ 0.064802] pcpu-alloc: [0] 0 1 > >>>[ 0.064836] Built 1 zonelists, mobility grouping on. Total pages: 516828 > >>>[ 0.064886] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=tty0 console=ttyS0,38400n8 consoleblank=0 > >>>[ 0.064998] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. > >>>[ 0.065286] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) > >>>[ 0.065405] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) > >>>[ 0.065443] mem auto-init: stack:off, heap alloc:off, heap free:off > >>>[ 0.217018] Memory: 1653208K/2096616K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 443152K reserved, 0K cma-reserved) > >>>[ 0.218927] Kernel/User page tables isolation: enabled > >>>[ 0.219010] ftrace: allocating 48466 entries in 190 pages > >>>[ 0.236213] ftrace: allocated 190 pages with 6 groups > >>>[ 0.236405] Dynamic Preempt: full > >>>[ 0.236588] Running RCU self tests > >>>[ 0.236599] rcu: Preemptible hierarchical RCU implementation. > >>>[ 0.236602] rcu: RCU lockdep checking is enabled. > >>>[ 0.236604] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2. > >>>[ 0.236608] Trampoline variant of Tasks RCU enabled. > >>>[ 0.236610] Rude variant of Tasks RCU enabled. > >>>[ 0.236612] Tracing variant of Tasks RCU enabled. > >>>[ 0.236614] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. > >>>[ 0.236617] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 > >>>[ 0.246098] NR_IRQS: 4352, nr_irqs: 56, preallocated irqs: 16 > >>>[ 0.246516] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 > >>>[ 0.252863] Console: colour VGA+ 80x25 > >>>[ 0.285411] printk: console [tty0] enabled > >>>[ 0.341424] printk: console [ttyS0] enabled > >>>[ 0.342010] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar > >>>[ 0.343034] ... MAX_LOCKDEP_SUBCLASSES: 8 > >>>[ 0.343564] ... MAX_LOCK_DEPTH: 48 > >>>[ 0.344099] ... MAX_LOCKDEP_KEYS: 8192 > >>>[ 0.344657] ... CLASSHASH_SIZE: 4096 > >>>[ 0.345239] ... MAX_LOCKDEP_ENTRIES: 32768 > >>>[ 0.345872] ... MAX_LOCKDEP_CHAINS: 65536 > >>>[ 0.346470] ... CHAINHASH_SIZE: 32768 > >>>[ 0.347042] memory used by lock dependency info: 6365 kB > >>>[ 0.347732] memory used for stack traces: 4224 kB > >>>[ 0.349158] per task-struct memory footprint: 1920 bytes > >>>[ 0.350184] ACPI: Core revision 20210930 > >>>[ 0.351362] APIC: Switch to symmetric I/O mode setup > >>>[ 0.353278] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c604d3dd7, max_idle_ns: 440795267083 ns > >>>[ 0.354743] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.57 BogoMIPS (lpj=14367148) > >>>[ 0.356135] pid_max: default: 32768 minimum: 301 > >>>[ 0.356866] LSM: Security Framework initializing > >>>[ 0.357606] SELinux: Initializing. > >>>[ 0.358214] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >>>[ 0.358743] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >>>[ 0.358743] x86/cpu: User Mode Instruction Prevention (UMIP) activated > >>>[ 0.358743] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 > >>>[ 0.358743] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 > >>>[ 0.358743] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization > >>>[ 0.358743] Spectre V2 : Mitigation: Full generic retpoline > >>>[ 0.358743] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch > >>>[ 0.358743] Spectre V2 : Enabling Restricted Speculation for firmware calls > >>>[ 0.358743] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier > >>>[ 0.358743] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl > >>>[ 0.358743] SRBDS: Unknown: Dependent on hypervisor status > >>>[ 0.358743] MDS: Mitigation: Clear CPU buffers > >>>[ 0.358743] Freeing SMP alternatives memory: 44K > >>>[ 0.358743] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) > >>>[ 0.358743] Running RCU-tasks wait API self tests > >>>[ 0.458995] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. > >>>[ 0.460503] rcu: Hierarchical SRCU implementation. > >>>[ 0.462157] NMI watchdog: Perf NMI watchdog permanently disabled > >>>[ 0.463002] smp: Bringing up secondary CPUs ... > >>>[ 0.464950] x86: Booting SMP configuration: > >>>[ 0.465537] .... node #0, CPUs: #1 > >>>[ 0.112317] smpboot: CPU 1 Converting physical 0 to logical die 1 > >>>[ 0.547215] smp: Brought up 1 node, 2 CPUs > >>>[ 0.547814] smpboot: Max logical packages: 2 > >>>[ 0.548434] smpboot: Total of 2 processors activated (14386.42 BogoMIPS) > >>>[ 0.550634] devtmpfs: initialized > >>>[ 0.554801] Callback from call_rcu_tasks_trace() invoked. > >>>[ 0.556772] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns > >>>[ 0.558148] futex hash table entries: 512 (order: 4, 65536 bytes, linear) > >>>[ 0.560130] NET: Registered PF_NETLINK/PF_ROUTE protocol family > >>>[ 0.561904] audit: initializing netlink subsys (disabled) > >>>[ 0.562980] Callback from call_rcu_tasks_rude() invoked. > >>>[ 0.562980] audit: type=2000 audit(1642005631.208:1): state=initialized audit_enabled=0 res=1 > >>>[ 0.564434] thermal_sys: Registered thermal governor 'step_wise' > >>>[ 0.564897] thermal_sys: Registered thermal governor 'user_space' > >>>[ 0.565807] cpuidle: using governor ladder > >>>[ 0.567202] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) > >>>[ 0.568443] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 > >>>[ 0.569384] PCI: Using configuration type 1 for base access > >>>[ 0.595171] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. > >>>[ 0.597094] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages > >>>[ 0.598409] cryptd: max_cpu_qlen set to 1000 > >>>[ 0.666772] raid6: avx2x4 gen() 33460 MB/s > >>>[ 0.670759] Callback from call_rcu_tasks() invoked. > >>>[ 0.738747] raid6: avx2x4 xor() 12834 MB/s > >>>[ 0.806748] raid6: avx2x2 gen() 31395 MB/s > >>>[ 0.874753] raid6: avx2x2 xor() 16250 MB/s > >>>[ 0.942748] raid6: avx2x1 gen() 21106 MB/s > >>>[ 1.010748] raid6: avx2x1 xor() 13944 MB/s > >>>[ 1.078749] raid6: sse2x4 gen() 15737 MB/s > >>>[ 1.146749] raid6: sse2x4 xor() 8765 MB/s > >>>[ 1.214864] raid6: sse2x2 gen() 15874 MB/s > >>>[ 1.282747] raid6: sse2x2 xor() 9860 MB/s > >>>[ 1.350748] raid6: sse2x1 gen() 12302 MB/s > >>>[ 1.418748] raid6: sse2x1 xor() 8642 MB/s > >>>[ 1.419372] raid6: using algorithm avx2x4 gen() 33460 MB/s > >>>[ 1.420108] raid6: .... xor() 12834 MB/s, rmw enabled > >>>[ 1.420790] raid6: using avx2x2 recovery algorithm > >>>[ 1.421810] ACPI: Added _OSI(Module Device) > >>>[ 1.422358] ACPI: Added _OSI(Processor Device) > >>>[ 1.422750] ACPI: Added _OSI(3.0 _SCP Extensions) > >>>[ 1.423428] ACPI: Added _OSI(Processor Aggregator Device) > >>>[ 1.424154] ACPI: Added _OSI(Linux-Dell-Video) > >>>[ 1.424733] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) > >>>[ 1.425493] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) > >>>[ 1.457880] ACPI: 1 ACPI AML tables successfully acquired and loaded > >>>[ 1.482752] ACPI: Interpreter enabled > >>>[ 1.482752] ACPI: PM: (supports S0 S5) > >>>[ 1.482761] ACPI: Using IOAPIC for interrupt routing > >>>[ 1.483660] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug > >>>[ 1.486749] ACPI: Enabled 1 GPEs in block 00 to 3F > >>>[ 1.519179] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) > >>>[ 1.520193] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments HPX-Type3] > >>>[ 1.521406] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control > >>>[ 1.524178] PCI host bridge to bus 0000:00 > >>>[ 1.525561] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] > >>>[ 1.526771] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] > >>>[ 1.527754] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] > >>>[ 1.528814] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window] > >>>[ 1.529801] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] > >>>[ 1.530753] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] > >>>[ 1.531784] pci_bus 0000:00: root bus resource [bus 00-ff] > >>>[ 1.532720] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 > >>>[ 1.535064] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000 > >>>[ 1.538691] pci 0000:00:01.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] > >>>[ 1.541347] pci 0000:00:01.0: reg 0x14: [mem 0xf8000000-0xfbffffff] > >>>[ 1.548136] pci 0000:00:01.0: reg 0x18: [mem 0xfce14000-0xfce15fff] > >>>[ 1.551749] pci 0000:00:01.0: reg 0x1c: [io 0xc040-0xc05f] > >>>[ 1.562234] pci 0000:00:01.0: reg 0x30: [mem 0xfce00000-0xfce0ffff pref] > >>>[ 1.564193] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400 > >>>[ 1.566392] pci 0000:00:02.0: reg 0x10: [mem 0xfce16000-0xfce16fff] > >>>[ 1.570855] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 > >>>[ 1.572957] pci 0000:00:02.1: reg 0x10: [mem 0xfce17000-0xfce17fff] > >>>[ 1.576544] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 > >>>[ 1.578655] pci 0000:00:02.2: reg 0x10: [mem 0xfce18000-0xfce18fff] > >>>[ 1.584327] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 > >>>[ 1.587400] pci 0000:00:02.3: reg 0x10: [mem 0xfce19000-0xfce19fff] > >>>[ 1.591318] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 > >>>[ 1.594121] pci 0000:00:02.4: reg 0x10: [mem 0xfce1a000-0xfce1afff] > >>>[ 1.601524] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 > >>>[ 1.603552] pci 0000:00:02.5: reg 0x10: [mem 0xfce1b000-0xfce1bfff] > >>>[ 1.609104] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 > >>>[ 1.611147] pci 0000:00:02.6: reg 0x10: [mem 0xfce1c000-0xfce1cfff] > >>>[ 1.615049] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 > >>>[ 1.616318] pci 0000:00:1b.0: reg 0x10: [mem 0xfce10000-0xfce13fff] > >>>[ 1.622859] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 > >>>[ 1.624201] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO > >>>[ 1.626532] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 > >>>[ 1.631433] pci 0000:00:1f.2: reg 0x20: [io 0xc060-0xc07f] > >>>[ 1.633066] pci 0000:00:1f.2: reg 0x24: [mem 0xfce1d000-0xfce1dfff] > >>>[ 1.635263] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 > >>>[ 1.638672] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] > >>>[ 1.646276] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000 > >>>[ 1.648447] pci 0000:01:00.0: reg 0x14: [mem 0xfcc40000-0xfcc40fff] > >>>[ 1.651541] pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref] > >>>[ 1.654708] pci 0000:01:00.0: reg 0x30: [mem 0xfcc00000-0xfcc3ffff pref] > >>>[ 1.656245] pci 0000:00:02.0: PCI bridge to [bus 01] > >>>[ 1.657166] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] > >>>[ 1.658560] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] > >>>[ 1.665128] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330 > >>>[ 1.666639] pci 0000:02:00.0: reg 0x10: [mem 0xfca00000-0xfca03fff 64bit] > >>>[ 1.669547] pci 0000:00:02.1: PCI bridge to [bus 02] > >>>[ 1.670253] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] > >>>[ 1.670778] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] > >>>[ 1.672750] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000 > >>>[ 1.676211] pci 0000:03:00.0: reg 0x14: [mem 0xfc800000-0xfc800fff] > >>>[ 1.679169] pci 0000:03:00.0: reg 0x20: [mem 0xfe600000-0xfe603fff 64bit pref] > >>>[ 1.682558] pci 0000:00:02.2: PCI bridge to [bus 03] > >>>[ 1.682793] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] > >>>[ 1.685144] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] > >>>[ 1.687495] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000 > >>>[ 1.689946] pci 0000:04:00.0: reg 0x14: [mem 0xfc600000-0xfc600fff] > >>>[ 1.693151] pci 0000:04:00.0: reg 0x20: [mem 0xfe400000-0xfe403fff 64bit pref] > >>>[ 1.700473] pci 0000:00:02.3: PCI bridge to [bus 04] > >>>[ 1.701209] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] > >>>[ 1.702128] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] > >>>[ 1.703714] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00 > >>>[ 1.707200] pci 0000:05:00.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref] > >>>[ 1.711310] pci 0000:00:02.4: PCI bridge to [bus 05] > >>>[ 1.712069] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] > >>>[ 1.713336] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] > >>>[ 1.716482] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00 > >>>[ 1.722542] pci 0000:06:00.0: reg 0x20: [mem 0xfe000000-0xfe003fff 64bit pref] > >>>[ 1.725211] pci 0000:00:02.5: PCI bridge to [bus 06] > >>>[ 1.726212] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] > >>>[ 1.726791] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] > >>>[ 1.729879] pci 0000:00:02.6: PCI bridge to [bus 07] > >>>[ 1.730651] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] > >>>[ 1.730778] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] > >>>[ 1.736005] pci_bus 0000:00: on NUMA node 0 > >>>[ 1.741503] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 > >>>[ 1.744737] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 > >>>[ 1.746758] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 > >>>[ 1.748846] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 > >>>[ 1.750851] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 > >>>[ 1.752940] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 > >>>[ 1.754949] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 > >>>[ 1.757050] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 > >>>[ 1.758160] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 > >>>[ 1.758938] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 > >>>[ 1.759889] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 > >>>[ 1.760914] ACPI: PCI: Interrupt link GSID configured for IRQ 19 > >>>[ 1.761939] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 > >>>[ 1.766937] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 > >>>[ 1.767962] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 > >>>[ 1.768958] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 > >>>[ 1.773089] pci 0000:00:01.0: vgaarb: setting as boot VGA device > >>>[ 1.773978] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none > >>>[ 1.774767] pci 0000:00:01.0: vgaarb: bridge control possible > >>>[ 1.775580] vgaarb: loaded > >>>[ 1.776770] SCSI subsystem initialized > >>>[ 1.778193] libata version 3.00 loaded. > >>>[ 1.778193] ACPI: bus type USB registered > >>>[ 1.778750] usbcore: registered new interface driver usbfs > >>>[ 1.778857] usbcore: registered new interface driver hub > >>>[ 1.779636] usbcore: registered new device driver usb > >>>[ 1.780451] pps_core: LinuxPPS API ver. 1 registered > >>>[ 1.781112] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> > >>>[ 1.782493] PTP clock support registered > >>>[ 1.784500] EDAC MC: Ver: 3.0.0 > >>>[ 1.785785] Advanced Linux Sound Architecture Driver Initialized. > >>>[ 1.786798] PCI: Using ACPI for IRQ routing > >>>[ 1.842255] PCI: pci_cache_line_size set to 64 bytes > >>>[ 1.842540] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] > >>>[ 1.842577] e820: reserve RAM buffer [mem 0x7ffdc000-0x7fffffff] > >>>[ 1.842970] clocksource: Switched to clocksource tsc-early > >>>[ 2.035298] VFS: Disk quotas dquot_6.6.0 > >>>[ 2.035981] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) > >>>[ 2.037121] FS-Cache: Loaded > >>>[ 2.037960] CacheFiles: Loaded > >>>[ 2.038518] pnp: PnP ACPI init > >>>[ 2.040511] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved > >>>[ 2.044352] pnp: PnP ACPI: found 5 devices > >>>[ 2.064254] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns > >>>[ 2.065958] NET: Registered PF_INET protocol family > >>>[ 2.066945] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) > >>>[ 2.069039] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) > >>>[ 2.070326] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) > >>>[ 2.071828] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) > >>>[ 2.073288] TCP: Hash tables configured (established 16384 bind 16384) > >>>[ 2.074354] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) > >>>[ 2.075383] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) > >>>[ 2.076613] NET: Registered PF_UNIX/PF_LOCAL protocol family > >>>[ 2.077413] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 > >>>[ 2.078529] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 > >>>[ 2.079641] pci 0000:00:02.2: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 > >>>[ 2.080719] pci 0000:00:02.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000 > >>>[ 2.081811] pci 0000:00:02.4: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000 > >>>[ 2.082948] pci 0000:00:02.5: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 > >>>[ 2.084025] pci 0000:00:02.6: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 > >>>[ 2.085111] pci 0000:00:02.0: BAR 7: assigned [io 0x1000-0x1fff] > >>>[ 2.085981] pci 0000:00:02.1: BAR 7: assigned [io 0x2000-0x2fff] > >>>[ 2.086810] pci 0000:00:02.2: BAR 7: assigned [io 0x3000-0x3fff] > >>>[ 2.087614] pci 0000:00:02.3: BAR 7: assigned [io 0x4000-0x4fff] > >>>[ 2.088415] pci 0000:00:02.4: BAR 7: assigned [io 0x5000-0x5fff] > >>>[ 2.089201] pci 0000:00:02.5: BAR 7: assigned [io 0x6000-0x6fff] > >>>[ 2.090032] pci 0000:00:02.6: BAR 7: assigned [io 0x7000-0x7fff] > >>>[ 2.091014] pci 0000:00:02.0: PCI bridge to [bus 01] > >>>[ 2.091666] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff] > >>>[ 2.093625] pci 0000:00:02.0: bridge window [mem 0xfcc00000-0xfcdfffff] > >>>[ 2.096206] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfebfffff 64bit pref] > >>>[ 2.098607] pci 0000:00:02.1: PCI bridge to [bus 02] > >>>[ 2.107557] pci 0000:00:02.1: bridge window [io 0x2000-0x2fff] > >>>[ 2.109321] pci 0000:00:02.1: bridge window [mem 0xfca00000-0xfcbfffff] > >>>[ 2.111058] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff 64bit pref] > >>>[ 2.113315] pci 0000:00:02.2: PCI bridge to [bus 03] > >>>[ 2.114828] pci 0000:00:02.2: bridge window [io 0x3000-0x3fff] > >>>[ 2.116339] pci 0000:00:02.2: bridge window [mem 0xfc800000-0xfc9fffff] > >>>[ 2.117673] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff 64bit pref] > >>>[ 2.119702] pci 0000:00:02.3: PCI bridge to [bus 04] > >>>[ 2.120377] pci 0000:00:02.3: bridge window [io 0x4000-0x4fff] > >>>[ 2.122070] pci 0000:00:02.3: bridge window [mem 0xfc600000-0xfc7fffff] > >>>[ 2.123621] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff 64bit pref] > >>>[ 2.127750] pci 0000:00:02.4: PCI bridge to [bus 05] > >>>[ 2.128452] pci 0000:00:02.4: bridge window [io 0x5000-0x5fff] > >>>[ 2.129948] pci 0000:00:02.4: bridge window [mem 0xfc400000-0xfc5fffff] > >>>[ 2.131293] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff 64bit pref] > >>>[ 2.133183] pci 0000:00:02.5: PCI bridge to [bus 06] > >>>[ 2.133884] pci 0000:00:02.5: bridge window [io 0x6000-0x6fff] > >>>[ 2.135463] pci 0000:00:02.5: bridge window [mem 0xfc200000-0xfc3fffff] > >>>[ 2.137987] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff 64bit pref] > >>>[ 2.139814] pci 0000:00:02.6: PCI bridge to [bus 07] > >>>[ 2.140490] pci 0000:00:02.6: bridge window [io 0x7000-0x7fff] > >>>[ 2.141949] pci 0000:00:02.6: bridge window [mem 0xfc000000-0xfc1fffff] > >>>[ 2.143311] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff 64bit pref] > >>>[ 2.145174] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > >>>[ 2.146052] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > >>>[ 2.148019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] > >>>[ 2.148914] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window] > >>>[ 2.149845] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] > >>>[ 2.150799] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] > >>>[ 2.151720] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] > >>>[ 2.152452] pci_bus 0000:01: resource 1 [mem 0xfcc00000-0xfcdfffff] > >>>[ 2.153255] pci_bus 0000:01: resource 2 [mem 0xfea00000-0xfebfffff 64bit pref] > >>>[ 2.154240] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] > >>>[ 2.155046] pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff] > >>>[ 2.156636] pci_bus 0000:02: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref] > >>>[ 2.157602] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] > >>>[ 2.158387] pci_bus 0000:03: resource 1 [mem 0xfc800000-0xfc9fffff] > >>>[ 2.159282] pci_bus 0000:03: resource 2 [mem 0xfe600000-0xfe7fffff 64bit pref] > >>>[ 2.160251] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff] > >>>[ 2.161035] pci_bus 0000:04: resource 1 [mem 0xfc600000-0xfc7fffff] > >>>[ 2.161909] pci_bus 0000:04: resource 2 [mem 0xfe400000-0xfe5fffff 64bit pref] > >>>[ 2.162902] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] > >>>[ 2.163619] pci_bus 0000:05: resource 1 [mem 0xfc400000-0xfc5fffff] > >>>[ 2.164420] pci_bus 0000:05: resource 2 [mem 0xfe200000-0xfe3fffff 64bit pref] > >>>[ 2.165342] pci_bus 0000:06: resource 0 [io 0x6000-0x6fff] > >>>[ 2.166091] pci_bus 0000:06: resource 1 [mem 0xfc200000-0xfc3fffff] > >>>[ 2.166960] pci_bus 0000:06: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref] > >>>[ 2.167884] pci_bus 0000:07: resource 0 [io 0x7000-0x7fff] > >>>[ 2.168599] pci_bus 0000:07: resource 1 [mem 0xfc000000-0xfc1fffff] > >>>[ 2.169400] pci_bus 0000:07: resource 2 [mem 0xfde00000-0xfdffffff 64bit pref] > >>>[ 2.170541] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] > >>>[ 2.180949] ACPI: \_SB_.GSIG: Enabled at IRQ 22 > >>>[ 2.199686] pci 0000:02:00.0: quirk_usb_early_handoff+0x0/0xa70 took 27224 usecs > >>>[ 2.200800] PCI: CLS 0 bytes, default 64 > >>>[ 2.202085] Trying to unpack rootfs image as initramfs... > >>>[ 2.203583] Initialise system trusted keyrings > >>>[ 2.204372] workingset: timestamp_bits=62 max_order=19 bucket_order=0 > >>>[ 2.206592] DLM installed > >>>[ 2.210086] Key type cifs.idmap registered > >>>[ 2.210915] fuse: init (API version 7.35) > >>>[ 2.211730] SGI XFS with ACLs, security attributes, no debug enabled > >>>[ 2.213541] ocfs2: Registered cluster interface o2cb > >>>[ 2.214457] ocfs2: Registered cluster interface user > >>>[ 2.215320] OCFS2 User DLM kernel interface loaded > >>>[ 2.223471] gfs2: GFS2 installed > >>>[ 2.232573] xor: automatically using best checksumming function avx > >>>[ 2.233488] Key type asymmetric registered > >>>[ 2.234109] Asymmetric key parser 'x509' registered > >>>[ 2.235034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) > >>>[ 2.236044] io scheduler mq-deadline registered > >>>[ 2.236631] io scheduler kyber registered > >>>[ 2.237151] test_string_helpers: Running tests... > >>>[ 2.251590] cryptomgr_test (80) used greatest stack depth: 30192 bytes left > >>>[ 2.253812] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 > >>>[ 2.255322] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 > >>>[ 2.263630] ACPI: button: Power Button [PWRF] > >>>[ 2.503777] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled > >>>[ 2.505227] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A > >>>[ 2.512214] Non-volatile memory driver v1.3 > >>>[ 2.513012] Linux agpgart interface v0.103 > >>>[ 2.515374] ACPI: bus type drm_connector registered > >>>[ 2.536836] brd: module loaded > >>>[ 2.553358] loop: module loaded > >>>[ 2.554597] virtio_blk virtio2: [vda] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) > >>>[ 2.560013] vda: vda1 vda2 > >>>[ 2.563947] zram: Added device: zram0 > >>>[ 2.565170] ahci 0000:00:1f.2: version 3.0 > >>>[ 2.577984] ACPI: \_SB_.GSIA: Enabled at IRQ 16 > >>>[ 2.581236] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode > >>>[ 2.582629] ahci 0000:00:1f.2: flags: 64bit ncq only > >>>[ 2.591294] scsi host0: ahci > >>>[ 2.593071] scsi host1: ahci > >>>[ 2.594746] scsi host2: ahci > >>>[ 2.596433] scsi host3: ahci > >>>[ 2.598107] scsi host4: ahci > >>>[ 2.599711] scsi host5: ahci > >>>[ 2.600666] ata1: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d100 irq 16 > >>>[ 2.601704] ata2: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d180 irq 16 > >>>[ 2.602728] ata3: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d200 irq 16 > >>>[ 2.603965] ata4: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d280 irq 16 > >>>[ 2.604966] ata5: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d300 irq 16 > >>>[ 2.606025] ata6: SATA max UDMA/133 abar m4096@0xfce1d000 port 0xfce1d380 irq 16 > >>>[ 2.608967] tun: Universal TUN/TAP device driver, 1.6 > >>>[ 2.615031] e1000: Intel(R) PRO/1000 Network Driver > >>>[ 2.615697] e1000: Copyright (c) 1999-2006 Intel Corporation. > >>>[ 2.616600] e1000e: Intel(R) PRO/1000 Network Driver > >>>[ 2.617285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. > >>>[ 2.618418] PPP generic driver version 2.4.2 > >>>[ 2.621200] aoe: AoE v85 initialised. > >>>[ 2.622145] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver > >>>[ 2.623064] ehci-pci: EHCI PCI platform driver > >>>[ 2.623725] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > >>>[ 2.624583] ohci-pci: OHCI PCI platform driver > >>>[ 2.625273] uhci_hcd: USB Universal Host Controller Interface driver > >>>[ 2.626383] usbcore: registered new interface driver usblp > >>>[ 2.627485] usbcore: registered new interface driver usb-storage > >>>[ 2.628515] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 > >>>[ 2.630612] serio: i8042 KBD port at 0x60,0x64 irq 1 > >>>[ 2.632241] serio: i8042 AUX port at 0x60,0x64 irq 12 > >>>[ 2.633725] mousedev: PS/2 mouse device common for all mice > >>>[ 2.635967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 > >>>[ 2.641790] input: PC Speaker as /devices/platform/pcspkr/input/input4 > >>>[ 2.665764] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt > >>>[ 2.667260] i2c i2c-0: 1/1 memory slots populated (from DMI) > >>>[ 2.668024] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD > >>>[ 2.675052] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. > >>>[ 2.676742] device-mapper: uevent: version 1.0.3 > >>>[ 2.678918] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com > >>>[ 2.683257] device-mapper: multipath round-robin: version 1.2.0 loaded > >>>[ 2.684241] intel_pstate: CPU model not supported > >>>[ 2.688823] usbcore: registered new interface driver usbhid > >>>[ 2.689598] usbhid: USB HID core driver > >>>[ 2.705474] netem: version 1.3 > >>>[ 2.706277] NET: Registered PF_INET6 protocol family > >>>[ 2.712188] Segment Routing with IPv6 > >>>[ 2.712717] In-situ OAM (IOAM) with IPv6 > >>>[ 2.713285] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver > >>>[ 2.715480] NET: Registered PF_PACKET protocol family > >>>[ 2.716182] NET: Registered PF_KEY protocol family > >>>[ 2.716862] sctp: Hash tables configured (bind 32/56) > >>>[ 2.717728] Key type dns_resolver registered > >>>[ 2.726933] IPI shorthand broadcast: enabled > >>>[ 2.727537] AVX2 version of gcm_enc/dec engaged. > >>>[ 2.728259] AES CTR mode by8 optimization enabled > >>>[ 2.730257] sched_clock: Marking stable (2618472228, 108317297)->(2782282047, -55492522) > >>>[ 2.735020] Loading compiled-in X.509 certificates > >>>[ 2.736126] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers > >>>[ 2.738851] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no > >>>[ 2.739983] ima: No TPM chip found, activating TPM-bypass! > >>>[ 2.746925] ima: Allocated hash algorithm: sha1 > >>>[ 2.747568] ima: No architecture policies found > >>>[ 2.760119] cryptomgr_test (960) used greatest stack depth: 29896 bytes left > >>>[ 2.774263] ALSA device list: > >>>[ 2.774801] #0: Virtual MIDI Card 1 > >>>[ 2.927000] ata2: SATA link down (SStatus 0 SControl 300) > >>>[ 2.928006] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) > >>>[ 2.929043] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 > >>>[ 2.929850] ata1.00: applying bridge limits > >>>[ 2.930655] ata1.00: configured for UDMA/100 > >>>[ 2.943534] ata3: SATA link down (SStatus 0 SControl 300) > >>>[ 2.944410] ata5: SATA link down (SStatus 0 SControl 300) > >>>[ 2.945288] ata4: SATA link down (SStatus 0 SControl 300) > >>>[ 2.947488] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 > >>>[ 2.950893] ata6: SATA link down (SStatus 0 SControl 300) > >>>[ 2.983329] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray > >>>[ 2.984315] cdrom: Uniform CD-ROM driver Revision: 3.20 > >>>[ 3.002413] Freeing initrd memory: 28888K > >>>[ 3.003747] kworker/u4:10 (919) used greatest stack depth: 28568 bytes left > >>>[ 3.007194] kworker/u4:2 (706) used greatest stack depth: 28384 bytes left > >>>[ 3.083826] sr 0:0:0:0: Attached scsi CD-ROM sr0 > >>>[ 3.085147] sr 0:0:0:0: Attached scsi generic sg0 type 5 > >>>[ 3.103164] Freeing unused kernel image (initmem) memory: 2076K > >>>[ 3.117192] Write protecting the kernel read-only data: 61440k > >>>[ 3.120374] Freeing unused kernel image (text/rodata gap) memory: 2028K > >>>[ 3.122810] Freeing unused kernel image (rodata/data gap) memory: 948K > >>>[ 3.126083] Run /init as init process > >>>[ 3.127909] with arguments: > >>>[ 3.127914] /init > >>>[ 3.127917] with environment: > >>>[ 3.127920] HOME=/ > >>>[ 3.127923] TERM=linux > >>>[ 3.127926] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 > >>>[ 3.127929] resume=/dev/mapper/fedora-swap > >>>[ 3.177129] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >>>[ 3.191635] systemd[1]: Detected virtualization kvm. > >>>[ 3.192554] systemd[1]: Detected architecture x86-64. > >>>[ 3.193497] systemd[1]: Running in initial RAM disk. > >>>[ 3.200495] systemd[1]: Set hostname to <test3.fieldses.org>. > >>>[ 3.206888] tsc: Refined TSC clocksource calibration: 3591.601 MHz > >>>[ 3.207931] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55573deb, max_idle_ns: 440795385523 ns > >>>[ 3.209808] clocksource: Switched to clocksource tsc > >>>[ 3.276323] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 > >>>[ 3.410362] dracut-rootfs-g (994) used greatest stack depth: 28168 bytes left > >>>[ 3.459425] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >>>[ 3.483169] systemd[1]: Queued start job for default target Initrd Default Target. > >>>[ 3.486365] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. > >>>[ 3.490492] systemd[1]: Reached target Slices. > >>>[ 3.492032] systemd[1]: Reached target Swap. > >>>[ 3.493442] systemd[1]: Reached target Timers. > >>>[ 3.496270] systemd[1]: Listening on Journal Audit Socket. > >>>[ 3.499878] systemd[1]: Listening on Journal Socket (/dev/log). > >>>[ 3.503436] systemd[1]: Listening on Journal Socket. > >>>[ 3.506420] systemd[1]: Listening on udev Control Socket. > >>>[ 3.509264] systemd[1]: Listening on udev Kernel Socket. > >>>[ 3.511877] systemd[1]: Reached target Sockets. > >>>[ 3.513442] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >>>[ 3.520259] systemd[1]: Started Memstrack Anylazing Service. > >>>[ 3.527783] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. > >>>[ 3.530307] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. > >>>[ 3.532742] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) > >>>[ 3.540109] systemd[1]: Starting Journal Service... > >>>[ 3.550015] systemd[1]: Starting Load Kernel Modules... > >>>[ 3.559017] systemd[1]: Starting Create Static Device Nodes in /dev... > >>>[ 3.565890] random: rngd: uninitialized urandom read (16 bytes read) > >>>[ 3.579371] systemd[1]: Starting Setup Virtual Console... > >>>[ 3.611362] systemd[1]: memstrack.service: Succeeded. > >>>[ 3.627660] systemd[1]: Finished Create Static Device Nodes in /dev. > >>>[ 3.668283] systemd[1]: Finished Load Kernel Modules. > >>>[ 3.683342] systemd[1]: Starting Apply Kernel Variables... > >>>[ 3.793704] systemd[1]: Finished Apply Kernel Variables. > >>>[ 3.852545] audit: type=1130 audit(1642005634.495:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 4.017096] systemd[1]: Started Journal Service. > >>>[ 4.019152] audit: type=1130 audit(1642005634.663:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 4.367941] audit: type=1130 audit(1642005635.011:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 5.158530] audit: type=1130 audit(1642005635.799:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 5.240723] random: crng init done > >>>[ 5.428343] audit: type=1130 audit(1642005636.071:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 5.562117] audit: type=1130 audit(1642005636.203:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 5.826193] kworker/u4:0 (1195) used greatest stack depth: 27960 bytes left > >>>[ 7.667205] virtio_net virtio0 enp1s0: renamed from eth0 > >>>[ 8.061253] ata_id (1566) used greatest stack depth: 27648 bytes left > >>>[ 8.873062] audit: type=1130 audit(1642005639.515:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 9.126782] audit: type=1130 audit(1642005639.767:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 9.898584] lvm (2335) used greatest stack depth: 27600 bytes left > >>>[ 10.171243] lvm (2337) used greatest stack depth: 27504 bytes left > >>>[ 10.389632] audit: type=1130 audit(1642005641.031:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' > >>>[ 10.456068] audit: type=1130 audit(1642005641.099:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 10.477828] dracut-initqueu (2286) used greatest stack depth: 27416 bytes left > >>>[ 10.481902] audit: type=1130 audit(1642005641.123:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 10.545851] fsck (2364) used greatest stack depth: 26560 bytes left > >>>[ 10.555806] audit: type=1130 audit(1642005641.195:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 10.584297] XFS (dm-0): Mounting V5 Filesystem > >>>[ 10.767936] XFS (dm-0): Ending clean mount > >>>[ 10.840832] mount (2366) used greatest stack depth: 25344 bytes left > >>>[ 10.996402] systemd-fstab-g (2379) used greatest stack depth: 24872 bytes left > >>>[ 11.699148] audit: type=1130 audit(1642005642.339:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 11.702004] audit: type=1131 audit(1642005642.339:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 11.858512] audit: type=1130 audit(1642005642.499:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 11.895749] audit: type=1131 audit(1642005642.535:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 14.895253] SELinux: Permission watch in class filesystem not defined in policy. > >>>[ 14.896380] SELinux: Permission watch in class file not defined in policy. > >>>[ 14.898184] SELinux: Permission watch_mount in class file not defined in policy. > >>>[ 14.899597] SELinux: Permission watch_sb in class file not defined in policy. > >>>[ 14.900888] SELinux: Permission watch_with_perm in class file not defined in policy. > >>>[ 14.902011] SELinux: Permission watch_reads in class file not defined in policy. > >>>[ 14.903080] SELinux: Permission watch in class dir not defined in policy. > >>>[ 14.915479] SELinux: Permission watch_mount in class dir not defined in policy. > >>>[ 14.916793] SELinux: Permission watch_sb in class dir not defined in policy. > >>>[ 14.918117] SELinux: Permission watch_with_perm in class dir not defined in policy. > >>>[ 14.919521] SELinux: Permission watch_reads in class dir not defined in policy. > >>>[ 14.920832] SELinux: Permission watch in class lnk_file not defined in policy. > >>>[ 14.922158] SELinux: Permission watch_mount in class lnk_file not defined in policy. > >>>[ 14.923410] SELinux: Permission watch_sb in class lnk_file not defined in policy. > >>>[ 14.924406] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. > >>>[ 14.925567] SELinux: Permission watch_reads in class lnk_file not defined in policy. > >>>[ 14.927302] SELinux: Permission watch in class chr_file not defined in policy. > >>>[ 14.928363] SELinux: Permission watch_mount in class chr_file not defined in policy. > >>>[ 14.929448] SELinux: Permission watch_sb in class chr_file not defined in policy. > >>>[ 14.930486] SELinux: Permission watch_with_perm in class chr_file not defined in policy. > >>>[ 14.931631] SELinux: Permission watch_reads in class chr_file not defined in policy. > >>>[ 14.932702] SELinux: Permission watch in class blk_file not defined in policy. > >>>[ 14.933695] SELinux: Permission watch_mount in class blk_file not defined in policy. > >>>[ 14.934779] SELinux: Permission watch_sb in class blk_file not defined in policy. > >>>[ 14.935782] SELinux: Permission watch_with_perm in class blk_file not defined in policy. > >>>[ 14.936834] SELinux: Permission watch_reads in class blk_file not defined in policy. > >>>[ 14.937933] SELinux: Permission watch in class sock_file not defined in policy. > >>>[ 14.938979] SELinux: Permission watch_mount in class sock_file not defined in policy. > >>>[ 14.940022] SELinux: Permission watch_sb in class sock_file not defined in policy. > >>>[ 14.941043] SELinux: Permission watch_with_perm in class sock_file not defined in policy. > >>>[ 14.942178] SELinux: Permission watch_reads in class sock_file not defined in policy. > >>>[ 14.943287] SELinux: Permission watch in class fifo_file not defined in policy. > >>>[ 14.944263] SELinux: Permission watch_mount in class fifo_file not defined in policy. > >>>[ 14.945325] SELinux: Permission watch_sb in class fifo_file not defined in policy. > >>>[ 14.946386] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. > >>>[ 14.947525] SELinux: Permission watch_reads in class fifo_file not defined in policy. > >>>[ 14.948611] SELinux: Permission perfmon in class capability2 not defined in policy. > >>>[ 14.949662] SELinux: Permission bpf in class capability2 not defined in policy. > >>>[ 14.950682] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. > >>>[ 14.951921] SELinux: Permission perfmon in class cap2_userns not defined in policy. > >>>[ 14.952939] SELinux: Permission bpf in class cap2_userns not defined in policy. > >>>[ 14.953970] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. > >>>[ 14.955277] SELinux: Class mctp_socket not defined in policy. > >>>[ 14.956110] SELinux: Class perf_event not defined in policy. > >>>[ 14.957746] SELinux: Class anon_inode not defined in policy. > >>>[ 14.958536] SELinux: Class io_uring not defined in policy. > >>>[ 14.959313] SELinux: the above unknown classes and permissions will be allowed > >>>[ 15.013559] SELinux: policy capability network_peer_controls=1 > >>>[ 15.014417] SELinux: policy capability open_perms=1 > >>>[ 15.015183] SELinux: policy capability extended_socket_class=1 > >>>[ 15.015968] SELinux: policy capability always_check_network=0 > >>>[ 15.017534] SELinux: policy capability cgroup_seclabel=1 > >>>[ 15.018305] SELinux: policy capability nnp_nosuid_transition=1 > >>>[ 15.019126] SELinux: policy capability genfs_seclabel_symlinks=0 > >>>[ 15.244501] kauditd_printk_skb: 16 callbacks suppressed > >>>[ 15.244506] audit: type=1403 audit(1642005645.887:34): auid=4294967295 ses=4294967295 lsm=selinux res=1 > >>>[ 15.255513] systemd[1]: Successfully loaded SELinux policy in 2.766323s. > >>>[ 15.619234] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 261.945ms. > >>>[ 15.628383] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >>>[ 15.632666] systemd[1]: Detected virtualization kvm. > >>>[ 15.633353] systemd[1]: Detected architecture x86-64. > >>>[ 15.639738] systemd[1]: Set hostname to <test3.fieldses.org>. > >>>[ 15.905148] lvmconfig (2442) used greatest stack depth: 24544 bytes left > >>>[ 15.941811] kdump-dep-gener (2432) used greatest stack depth: 24464 bytes left > >>>[ 15.942995] grep (2450) used greatest stack depth: 24448 bytes left > >>>[ 16.222623] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >>>[ 16.548178] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. > >>>[ 17.024523] audit: type=1131 audit(1642005647.667:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.032331] systemd[1]: initrd-switch-root.service: Succeeded. > >>>[ 17.034511] systemd[1]: Stopped Switch Root. > >>>[ 17.037797] audit: type=1130 audit(1642005647.679:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.039820] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. > >>>[ 17.040822] audit: type=1131 audit(1642005647.679:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.044319] systemd[1]: Created slice system-getty.slice. > >>>[ 17.048401] systemd[1]: Created slice system-modprobe.slice. > >>>[ 17.052765] systemd[1]: Created slice system-serial\x2dgetty.slice. > >>>[ 17.055258] systemd[1]: Created slice system-sshd\x2dkeygen.slice. > >>>[ 17.058406] systemd[1]: Created slice User and Session Slice. > >>>[ 17.060191] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. > >>>[ 17.063067] systemd[1]: Started Forward Password Requests to Wall Directory Watch. > >>>[ 17.066845] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. > >>>[ 17.068244] systemd[1]: Reached target Local Encrypted Volumes. > >>>[ 17.070271] systemd[1]: Stopped target Switch Root. > >>>[ 17.071236] systemd[1]: Stopped target Initrd File Systems. > >>>[ 17.072219] systemd[1]: Stopped target Initrd Root File System. > >>>[ 17.075495] systemd[1]: Reached target Paths. > >>>[ 17.076283] systemd[1]: Reached target Slices. > >>>[ 17.080904] systemd[1]: Listening on Device-mapper event daemon FIFOs. > >>>[ 17.084889] systemd[1]: Listening on LVM2 poll daemon socket. > >>>[ 17.087729] systemd[1]: Listening on multipathd control socket. > >>>[ 17.093018] systemd[1]: Listening on Process Core Dump Socket. > >>>[ 17.095415] systemd[1]: Listening on initctl Compatibility Named Pipe. > >>>[ 17.099466] systemd[1]: Listening on udev Control Socket. > >>>[ 17.102467] systemd[1]: Listening on udev Kernel Socket. > >>>[ 17.109715] systemd[1]: Activating swap /dev/mapper/fedora-swap... > >>>[ 17.117743] systemd[1]: Mounting Huge Pages File System... > >>>[ 17.125890] systemd[1]: Mounting POSIX Message Queue File System... > >>>[ 17.130492] Adding 2097148k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:2097148k > >>>[ 17.140236] systemd[1]: Mounting Kernel Debug File System... > >>>[ 17.149754] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... > >>>[ 17.151753] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >>>[ 17.159082] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... > >>>[ 17.166647] systemd[1]: Starting Load Kernel Module configfs... > >>>[ 17.173097] systemd[1]: Starting Load Kernel Module drm... > >>>[ 17.181757] systemd[1]: Starting Load Kernel Module fuse... > >>>[ 17.199195] systemd[1]: Starting Preprocess NFS configuration convertion... > >>>[ 17.203114] systemd[1]: plymouth-switch-root.service: Succeeded. > >>>[ 17.217307] systemd[1]: Stopped Plymouth switch root service. > >>>[ 17.220790] audit: type=1131 audit(1642005647.863:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.222477] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. > >>>[ 17.235950] systemd[1]: systemd-fsck-root.service: Succeeded. > >>>[ 17.239114] systemd[1]: Stopped File System Check on Root Device. > >>>[ 17.241914] systemd[1]: Stopped Journal Service. > >>>[ 17.246822] audit: type=1131 audit(1642005647.883:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.248647] systemd[1]: Starting Journal Service... > >>>[ 17.250212] audit: type=1130 audit(1642005647.883:40): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.263202] audit: type=1131 audit(1642005647.887:41): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.276489] systemd[1]: Starting Load Kernel Modules... > >>>[ 17.295377] systemd[1]: Starting Remount Root and Kernel File Systems... > >>>[ 17.297774] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. > >>>[ 17.324773] systemd[1]: Starting Coldplug All udev Devices... > >>>[ 17.328304] systemd[1]: sysroot.mount: Succeeded. > >>>[ 17.374101] systemd[1]: Activated swap /dev/mapper/fedora-swap. > >>>[ 17.401071] systemd[1]: Mounted Huge Pages File System. > >>>[ 17.410741] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) > >>>[ 17.425620] systemd[1]: Mounted POSIX Message Queue File System. > >>>[ 17.440432] systemd[1]: Mounted Kernel Debug File System. > >>>[ 17.447566] RPC: Registered named UNIX socket transport module. > >>>[ 17.448425] RPC: Registered udp transport module. > >>>[ 17.449052] RPC: Registered tcp transport module. > >>>[ 17.449719] RPC: Registered tcp NFSv4.1 backchannel transport module. > >>>[ 17.457211] systemd[1]: modprobe@configfs.service: Succeeded. > >>>[ 17.459723] systemd[1]: Finished Load Kernel Module configfs. > >>>[ 17.461450] audit: type=1130 audit(1642005648.103:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.464558] audit: type=1131 audit(1642005648.103:43): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 17.476290] systemd[1]: modprobe@drm.service: Succeeded. > >>>[ 17.491863] systemd[1]: Finished Load Kernel Module drm. > >>>[ 17.496010] systemd[1]: Finished Kernel Module supporting RPCSEC_GSS. > >>>[ 17.501497] systemd[1]: modprobe@fuse.service: Succeeded. > >>>[ 17.504499] systemd[1]: Finished Load Kernel Module fuse. > >>>[ 17.517872] systemd[1]: Started Journal Service. > >>>[ 20.438290] kauditd_printk_skb: 22 callbacks suppressed > >>>[ 20.438294] audit: type=1130 audit(1642005651.079:64): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 20.725931] audit: type=1130 audit(1642005651.367:65): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-pvscan@253:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 20.998904] audit: type=1130 audit(1642005651.639:66): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 22.158644] audit: type=1130 audit(1642005652.799:67): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 22.183237] XFS (vda1): Mounting V5 Filesystem > >>>[ 22.329168] XFS (vda1): Ending clean mount > >>>[ 22.344447] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) > >>>[ 22.381960] audit: type=1130 audit(1642005653.023:68): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 22.430820] audit: type=1130 audit(1642005653.071:69): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 22.485659] audit: type=1130 audit(1642005653.127:70): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=import-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 22.749894] audit: type=1130 audit(1642005653.391:71): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 22.857336] audit: type=1400 audit(1642005653.499:72): avc: denied { fowner } for pid=3657 comm="auditd" capability=3 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:system_r:auditd_t:s0 tclass=capability permissive=0 > >>>[ 22.861281] audit: type=1300 audit(1642005653.499:72): arch=c000003e syscall=90 success=yes exit=0 a0=56090a1699e0 a1=1c0 a2=19 a3=56090a169c40 items=0 ppid=3655 pid=3657 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > >>>[ 121.479732] rpm (3866) used greatest stack depth: 23336 bytes left > >>>[ 160.313750] FS-Cache: Netfs 'nfs' registered for caching > >>>[ 267.826493] NFS: Registering the id_resolver key type > >>>[ 267.827159] Key type id_resolver registered > >>>[ 267.827643] Key type id_legacy registered > >>>[ 268.393694] mount.nfs (5859) used greatest stack depth: 22896 bytes left > >>>[ 523.352374] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >>>[ 938.809224] kworker/dying (2523) used greatest stack depth: 21832 bytes left > >>>[ 1827.841420] run fstests generic/001 at 2022-01-12 12:10:59 > >>>[ 1867.998292] run fstests generic/002 at 2022-01-12 12:11:39 > >>>[ 1869.297577] run fstests generic/003 at 2022-01-12 12:11:40 > >>>[ 1869.823503] run fstests generic/004 at 2022-01-12 12:11:40 > >>>[ 1870.357158] run fstests generic/005 at 2022-01-12 12:11:41 > >>>[ 1872.033166] run fstests generic/008 at 2022-01-12 12:11:43 > >>>[ 1872.682257] run fstests generic/009 at 2022-01-12 12:11:43 > >>>[ 1873.300870] run fstests generic/010 at 2022-01-12 12:11:44 > >>>[ 1873.867023] run fstests generic/011 at 2022-01-12 12:11:45 > >>>[ 1939.414212] run fstests generic/012 at 2022-01-12 12:12:50 > >>>[ 1940.257756] run fstests generic/013 at 2022-01-12 12:12:51 > >>>[ 2006.667055] run fstests generic/015 at 2022-01-12 12:13:57 > >>>[ 2007.186484] run fstests generic/016 at 2022-01-12 12:13:58 > >>>[ 2008.063569] run fstests generic/018 at 2022-01-12 12:13:59 > >>>[ 2008.831790] run fstests generic/020 at 2022-01-12 12:14:00 > >>>[ 2020.997738] run fstests generic/021 at 2022-01-12 12:14:12 > >>>[ 2021.774590] run fstests generic/022 at 2022-01-12 12:14:12 > >>>[ 2022.542934] run fstests generic/023 at 2022-01-12 12:14:13 > >>>[ 2025.824308] run fstests generic/024 at 2022-01-12 12:14:16 > >>>[ 2026.390736] run fstests generic/025 at 2022-01-12 12:14:17 > >>>[ 2026.963217] run fstests generic/026 at 2022-01-12 12:14:18 > >>>[ 2027.592530] run fstests generic/027 at 2022-01-12 12:14:18 > >>>[ 2028.101801] run fstests generic/028 at 2022-01-12 12:14:19 > >>>[ 2033.709852] run fstests generic/029 at 2022-01-12 12:14:24 > >>>[ 2035.495458] run fstests generic/030 at 2022-01-12 12:14:26 > >>>[ 2038.537954] run fstests generic/034 at 2022-01-12 12:14:29 > >>>[ 2039.329741] run fstests generic/036 at 2022-01-12 12:14:30 > >>>[ 2050.072609] run fstests generic/037 at 2022-01-12 12:14:41 > >>>[ 2071.336677] run fstests generic/038 at 2022-01-12 12:15:02 > >>>[ 2072.411721] run fstests generic/039 at 2022-01-12 12:15:03 > >>>[ 2073.123576] run fstests generic/040 at 2022-01-12 12:15:04 > >>>[ 2073.748265] run fstests generic/041 at 2022-01-12 12:15:04 > >>>[ 2074.344951] run fstests generic/043 at 2022-01-12 12:15:05 > >>>[ 2075.114885] run fstests generic/044 at 2022-01-12 12:15:06 > >>>[ 2075.977059] run fstests generic/045 at 2022-01-12 12:15:07 > >>>[ 2076.855028] run fstests generic/046 at 2022-01-12 12:15:08 > >>>[ 2077.696747] run fstests generic/047 at 2022-01-12 12:15:08 > >>>[ 2078.533668] run fstests generic/048 at 2022-01-12 12:15:09 > >>>[ 2079.397374] run fstests generic/049 at 2022-01-12 12:15:10 > >>>[ 2080.261339] run fstests generic/050 at 2022-01-12 12:15:11 > >>>[ 2081.107141] run fstests generic/051 at 2022-01-12 12:15:12 > >>>[ 2082.008096] run fstests generic/052 at 2022-01-12 12:15:13 > >>>[ 2082.858320] run fstests generic/054 at 2022-01-12 12:15:14 > >>>[ 2083.731997] run fstests generic/055 at 2022-01-12 12:15:14 > >>>[ 2084.590242] run fstests generic/056 at 2022-01-12 12:15:15 > >>>[ 2085.303754] run fstests generic/057 at 2022-01-12 12:15:16 > >>>[ 2085.908458] run fstests generic/058 at 2022-01-12 12:15:17 > >>>[ 2086.640354] run fstests generic/059 at 2022-01-12 12:15:17 > >>>[ 2087.217469] run fstests generic/060 at 2022-01-12 12:15:18 > >>>[ 2087.944489] run fstests generic/061 at 2022-01-12 12:15:19 > >>>[ 2088.749344] run fstests generic/063 at 2022-01-12 12:15:19 > >>>[ 2089.524340] run fstests generic/065 at 2022-01-12 12:15:20 > >>>[ 2090.121276] run fstests generic/066 at 2022-01-12 12:15:21 > >>>[ 2090.702873] run fstests generic/067 at 2022-01-12 12:15:21 > >>>[ 2091.333532] run fstests generic/069 at 2022-01-12 12:15:22 > >>>[ 2121.140927] run fstests generic/070 at 2022-01-12 12:15:52 > >>>[ 2168.861297] run fstests generic/072 at 2022-01-12 12:16:40 > >>>[ 2169.690898] run fstests generic/073 at 2022-01-12 12:16:40 > >>>[ 2170.302749] run fstests generic/075 at 2022-01-12 12:16:41 > >>>[ 2226.187399] run fstests generic/076 at 2022-01-12 12:17:37 > >>>[ 2226.692121] run fstests generic/077 at 2022-01-12 12:17:37 > >>>[ 2230.646484] run fstests generic/078 at 2022-01-12 12:17:41 > >>>[ 2231.233467] run fstests generic/079 at 2022-01-12 12:17:42 > >>>[ 2231.792759] run fstests generic/080 at 2022-01-12 12:17:42 > >>>[ 2234.478551] run fstests generic/081 at 2022-01-12 12:17:45 > >>>[ 2235.016264] run fstests generic/082 at 2022-01-12 12:17:46 > >>>[ 2235.544754] run fstests generic/083 at 2022-01-12 12:17:46 > >>>[ 2236.070354] run fstests generic/084 at 2022-01-12 12:17:47 > >>>[ 2242.089643] run fstests generic/085 at 2022-01-12 12:17:53 > >>>[ 2242.829424] run fstests generic/086 at 2022-01-12 12:17:54 > >>>[ 2244.627985] 086 (63919): drop_caches: 3 > >>>[ 2245.004053] run fstests generic/090 at 2022-01-12 12:17:56 > >>>[ 2245.726297] run fstests generic/092 at 2022-01-12 12:17:56 > >>>[ 2246.386331] run fstests generic/093 at 2022-01-12 12:17:57 > >>>[ 2246.989287] run fstests generic/095 at 2022-01-12 12:17:58 > >>>[ 2247.568818] run fstests generic/096 at 2022-01-12 12:17:58 > >>>[ 2248.194588] run fstests generic/097 at 2022-01-12 12:17:59 > >>>[ 2248.808142] run fstests generic/098 at 2022-01-12 12:17:59 > >>>[ 2250.531860] run fstests generic/099 at 2022-01-12 12:18:01 > >>>[ 2251.371697] run fstests generic/101 at 2022-01-12 12:18:02 > >>>[ 2251.916640] run fstests generic/102 at 2022-01-12 12:18:03 > >>>[ 2252.419409] run fstests generic/103 at 2022-01-12 12:18:03 > >>>[ 2255.825340] run fstests generic/104 at 2022-01-12 12:18:06 > >>>[ 2256.640587] run fstests generic/106 at 2022-01-12 12:18:07 > >>>[ 2257.275429] run fstests generic/107 at 2022-01-12 12:18:08 > >>>[ 2257.871596] run fstests generic/108 at 2022-01-12 12:18:09 > >>>[ 2258.649789] run fstests generic/109 at 2022-01-12 12:18:09 > >>>[ 2314.619077] run fstests generic/110 at 2022-01-12 12:19:05 > >>>[ 2315.511518] run fstests generic/111 at 2022-01-12 12:19:06 > >>>[ 2316.200429] run fstests generic/112 at 2022-01-12 12:19:07 > >>>[ 2375.093348] run fstests generic/114 at 2022-01-12 12:20:06 > >>>[ 2375.726022] run fstests generic/115 at 2022-01-12 12:20:06 > >>>[ 2376.417534] run fstests generic/116 at 2022-01-12 12:20:07 > >>>[ 2378.207570] run fstests generic/118 at 2022-01-12 12:20:09 > >>>[ 2379.767855] run fstests generic/119 at 2022-01-12 12:20:10 > >>>[ 2382.596453] run fstests generic/120 at 2022-01-12 12:20:13 > >>>[ 2383.118291] run fstests generic/121 at 2022-01-12 12:20:14 > >>>[ 2383.763385] run fstests generic/122 at 2022-01-12 12:20:14 > >>>[ 2384.417857] run fstests generic/123 at 2022-01-12 12:20:15 > >>>[ 2384.952387] run fstests generic/124 at 2022-01-12 12:20:16 > >>>[ 2439.979901] run fstests generic/128 at 2022-01-12 12:21:11 > >>>[ 2440.534640] run fstests generic/130 at 2022-01-12 12:21:11 > >>>[ 2458.532247] run fstests generic/131 at 2022-01-12 12:21:29 > >>>[ 2460.624455] run fstests generic/132 at 2022-01-12 12:21:31 > >>>[ 2479.380043] run fstests generic/134 at 2022-01-12 12:21:50 > >>>[ 2481.259289] run fstests generic/135 at 2022-01-12 12:21:52 > >>>[ 2482.602837] run fstests generic/136 at 2022-01-12 12:21:53 > >>>[ 2483.422863] run fstests generic/137 at 2022-01-12 12:21:54 > >>>[ 2484.225794] run fstests generic/138 at 2022-01-12 12:21:55 > >>>[ 2486.911951] run fstests generic/139 at 2022-01-12 12:21:58 > >>>[ 2490.247175] run fstests generic/140 at 2022-01-12 12:22:01 > >>>[ 2492.960214] run fstests generic/141 at 2022-01-12 12:22:04 > >>>[ 2493.949160] run fstests generic/142 at 2022-01-12 12:22:05 > >>>[ 2502.811792] run fstests generic/143 at 2022-01-12 12:22:13 > >>>[ 2744.562632] run fstests generic/144 at 2022-01-12 12:26:15 > >>>[ 2746.679337] run fstests generic/145 at 2022-01-12 12:26:17 > >>>[ 2747.559239] run fstests generic/146 at 2022-01-12 12:26:18 > >>>[ 2749.654314] run fstests generic/147 at 2022-01-12 12:26:20 > >>>[ 2750.441774] run fstests generic/148 at 2022-01-12 12:26:21 > >>>[ 2752.169829] run fstests generic/149 at 2022-01-12 12:26:23 > >>>[ 2752.935800] run fstests generic/150 at 2022-01-12 12:26:24 > >>>[ 2770.733819] run fstests generic/151 at 2022-01-12 12:26:41 > >>>[ 2790.154829] run fstests generic/152 at 2022-01-12 12:27:01 > >>>[ 2810.016846] run fstests generic/153 at 2022-01-12 12:27:21 > >>>[ 2810.829252] run fstests generic/155 at 2022-01-12 12:27:22 > >>>[ 2811.642982] run fstests generic/156 at 2022-01-12 12:27:22 > >>>[ 2812.435476] run fstests generic/157 at 2022-01-12 12:27:23 > >>>[ 2898.516142] run fstests generic/158 at 2022-01-12 12:28:49 > >>>[ 2899.169820] run fstests generic/159 at 2022-01-12 12:28:50 > >>>[ 2899.707414] run fstests generic/160 at 2022-01-12 12:28:50 > >>>[ 2900.240792] run fstests generic/161 at 2022-01-12 12:28:51 > >>>[ 2920.346459] run fstests generic/162 at 2022-01-12 12:29:11 > >>>[ 2921.465497] run fstests generic/163 at 2022-01-12 12:29:12 > >>>[ 2922.457235] run fstests generic/164 at 2022-01-12 12:29:13 > >>>[ 2992.429168] run fstests generic/165 at 2022-01-12 12:30:23 > >>>[ 3052.173968] run fstests generic/166 at 2022-01-12 12:31:23 > >>>[ 3234.652685] run fstests generic/167 at 2022-01-12 12:34:25 > >>>[ 3276.304549] run fstests generic/168 at 2022-01-12 12:35:07 > >>>[ 3556.737914] run fstests generic/169 at 2022-01-12 12:39:47 > >>>[ 3558.300604] run fstests generic/170 at 2022-01-12 12:39:49 > >>>[ 3919.058972] run fstests generic/171 at 2022-01-12 12:45:50 > >>>[ 3920.624329] run fstests generic/172 at 2022-01-12 12:45:51 > >>>[ 3921.953882] run fstests generic/173 at 2022-01-12 12:45:53 > >>>[ 3923.239526] run fstests generic/174 at 2022-01-12 12:45:54 > >>>[ 3924.575586] run fstests generic/175 at 2022-01-12 12:45:55 > >>>[ 4159.652128] run fstests generic/176 at 2022-01-12 12:49:50 > >>>[ 4231.459928] run fstests generic/177 at 2022-01-12 12:51:02 > >>>[ 4232.370516] run fstests generic/178 at 2022-01-12 12:51:03 > >>>[ 4237.868525] run fstests generic/179 at 2022-01-12 12:51:09 > >>>[ 4239.533836] run fstests generic/180 at 2022-01-12 12:51:10 > >>>[ 4240.307772] run fstests generic/181 at 2022-01-12 12:51:11 > >>>[ 4244.757968] run fstests generic/182 at 2022-01-12 12:51:15 > >>>[ 4245.418557] run fstests generic/183 at 2022-01-12 12:51:16 > >>>[ 4251.302820] run fstests generic/185 at 2022-01-12 12:51:22 > >>>[ 4257.418284] run fstests generic/186 at 2022-01-12 12:51:28 > >>>[ 5070.488206] run fstests generic/187 at 2022-01-12 13:05:01 > >>>[ 5885.066194] run fstests generic/188 at 2022-01-12 13:18:36 > >>>[ 5891.287909] run fstests generic/189 at 2022-01-12 13:18:42 > >>>[ 5895.605867] run fstests generic/190 at 2022-01-12 13:18:46 > >>>[ 5900.073040] run fstests generic/191 at 2022-01-12 13:18:51 > >>>[ 5904.614273] run fstests generic/192 at 2022-01-12 13:18:55 > >>>[ 5905.308580] run fstests generic/193 at 2022-01-12 13:18:56 > >>>[ 5905.844031] run fstests generic/194 at 2022-01-12 13:18:57 > >>>[ 5912.087984] run fstests generic/195 at 2022-01-12 13:19:03 > >>>[ 5918.021826] run fstests generic/196 at 2022-01-12 13:19:09 > >>>[ 5922.532326] run fstests generic/197 at 2022-01-12 13:19:13 > >>>[ 5927.467154] run fstests generic/198 at 2022-01-12 13:19:18 > >>>[ 5933.061489] run fstests generic/199 at 2022-01-12 13:19:24 > >>>[ 5938.925983] run fstests generic/200 at 2022-01-12 13:19:30 > >>>[ 5944.827402] run fstests generic/201 at 2022-01-12 13:19:36 > >>>[ 5948.708601] run fstests generic/202 at 2022-01-12 13:19:39 > >>>[ 5950.790927] run fstests generic/203 at 2022-01-12 13:19:41 > >>>[ 5953.029748] run fstests generic/204 at 2022-01-12 13:19:44 > >>>[ 5954.153740] run fstests generic/205 at 2022-01-12 13:19:45 > >>>[ 5955.124318] run fstests generic/206 at 2022-01-12 13:19:46 > >>>[ 5956.139535] run fstests generic/207 at 2022-01-12 13:19:47 > >>>[ 5976.917435] run fstests generic/209 at 2022-01-12 13:20:08 > >>>[ 6022.149019] run fstests generic/210 at 2022-01-12 13:20:53 > >>>[ 6022.898911] run fstests generic/211 at 2022-01-12 13:20:54 > >>>[ 6024.148505] run fstests generic/212 at 2022-01-12 13:20:55 > >>>[ 6024.829471] run fstests generic/213 at 2022-01-12 13:20:56 > >>>[ 6025.661954] run fstests generic/214 at 2022-01-12 13:20:56 > >>>[ 6026.799438] run fstests generic/215 at 2022-01-12 13:20:57 > >>>[ 6029.680826] run fstests generic/216 at 2022-01-12 13:21:00 > >>>[ 6030.690346] run fstests generic/217 at 2022-01-12 13:21:01 > >>>[ 6031.755530] run fstests generic/218 at 2022-01-12 13:21:02 > >>>[ 6032.778991] run fstests generic/219 at 2022-01-12 13:21:03 > >>>[ 6033.283631] run fstests generic/220 at 2022-01-12 13:21:04 > >>>[ 6034.360789] run fstests generic/221 at 2022-01-12 13:21:05 > >>>[ 6035.998554] run fstests generic/222 at 2022-01-12 13:21:07 > >>>[ 6036.984890] run fstests generic/223 at 2022-01-12 13:21:08 > >>>[ 6037.549093] run fstests generic/224 at 2022-01-12 13:21:08 > >>>[ 6038.116815] run fstests generic/226 at 2022-01-12 13:21:09 > >>>[ 6038.692541] run fstests generic/227 at 2022-01-12 13:21:09 > >>>[ 6039.755092] run fstests generic/228 at 2022-01-12 13:21:10 > >>>[ 6040.281881] Unsafe core_pattern used with fs.suid_dumpable=2. > >>> Pipe handler or fully qualified core dump path required. > >>> Set kernel.core_pattern before fs.suid_dumpable. > >>>[ 6040.553574] run fstests generic/229 at 2022-01-12 13:21:11 > >>>[ 6041.551145] run fstests generic/230 at 2022-01-12 13:21:12 > >>>[ 6042.058550] run fstests generic/231 at 2022-01-12 13:21:13 > >>>[ 6042.559297] run fstests generic/232 at 2022-01-12 13:21:13 > >>>[ 6043.063531] run fstests generic/233 at 2022-01-12 13:21:14 > >>>[ 6043.572898] run fstests generic/234 at 2022-01-12 13:21:14 > >>>[ 6044.083619] run fstests generic/235 at 2022-01-12 13:21:15 > >>>[ 6044.595386] run fstests generic/236 at 2022-01-12 13:21:15 > >>>[ 6046.330897] run fstests generic/237 at 2022-01-12 13:21:17 > >>>[ 6046.995456] run fstests generic/238 at 2022-01-12 13:21:18 > >>>[ 6048.062920] run fstests generic/239 at 2022-01-12 13:21:19 > >>>[ 6079.167087] run fstests generic/240 at 2022-01-12 13:21:50 > >>>[ 6080.262050] run fstests generic/241 at 2022-01-12 13:21:51 > >>>[ 6080.777265] run fstests generic/242 at 2022-01-12 13:21:51 > >>>[ 6165.131825] run fstests generic/243 at 2022-01-12 13:23:16 > >>>[ 6246.858636] run fstests generic/244 at 2022-01-12 13:24:38 > >>>[ 6247.538623] run fstests generic/245 at 2022-01-12 13:24:38 > >>>[ 6248.262918] run fstests generic/246 at 2022-01-12 13:24:39 > >>>[ 6248.891286] run fstests generic/247 at 2022-01-12 13:24:40 > >>>[ 6330.034484] run fstests generic/248 at 2022-01-12 13:26:01 > >>>[ 6330.856382] run fstests generic/249 at 2022-01-12 13:26:02 > >>>[ 6334.074505] run fstests generic/250 at 2022-01-12 13:26:05 > >>>[ 6334.909446] run fstests generic/252 at 2022-01-12 13:26:06 > >>>[ 6335.473954] run fstests generic/253 at 2022-01-12 13:26:06 > >>>[ 6337.650997] run fstests generic/254 at 2022-01-12 13:26:08 > >>>[ 6340.130137] run fstests generic/255 at 2022-01-12 13:26:11 > >>>[ 6341.103237] run fstests generic/256 at 2022-01-12 13:26:12 > >>>[ 6341.796869] run fstests generic/257 at 2022-01-12 13:26:12 > >>>[ 6345.943041] run fstests generic/258 at 2022-01-12 13:26:17 > >>>[ 6346.813066] run fstests generic/259 at 2022-01-12 13:26:18 > >>>[ 6347.896367] run fstests generic/260 at 2022-01-12 13:26:19 > >>>[ 6348.746022] run fstests generic/261 at 2022-01-12 13:26:19 > >>>[ 6349.851327] run fstests generic/262 at 2022-01-12 13:26:21 > >>>[ 6350.974652] run fstests generic/264 at 2022-01-12 13:26:22 > >>>[ 6352.017430] run fstests generic/265 at 2022-01-12 13:26:23 > >>>[ 6353.016731] run fstests generic/266 at 2022-01-12 13:26:24 > >>>[ 6353.983465] run fstests generic/267 at 2022-01-12 13:26:25 > >>>[ 6354.953896] run fstests generic/268 at 2022-01-12 13:26:26 > >>>[ 6355.951768] run fstests generic/269 at 2022-01-12 13:26:27 > >>>[ 6356.458572] run fstests generic/270 at 2022-01-12 13:26:27 > >>>[ 6356.938338] run fstests generic/271 at 2022-01-12 13:26:28 > >>>[ 6357.892032] run fstests generic/272 at 2022-01-12 13:26:29 > >>>[ 6358.849363] run fstests generic/273 at 2022-01-12 13:26:30 > >>>[ 6359.360457] run fstests generic/274 at 2022-01-12 13:26:30 > >>>[ 6359.918582] run fstests generic/275 at 2022-01-12 13:26:31 > >>>[ 6360.433874] run fstests generic/276 at 2022-01-12 13:26:31 > >>>[ 6361.462929] run fstests generic/278 at 2022-01-12 13:26:32 > >>>[ 6362.446136] run fstests generic/279 at 2022-01-12 13:26:33 > >>>[ 6363.428985] run fstests generic/280 at 2022-01-12 13:26:34 > >>>[ 6363.934111] run fstests generic/281 at 2022-01-12 13:26:35 > >>>[ 6364.932675] run fstests generic/282 at 2022-01-12 13:26:36 > >>>[ 6365.931183] run fstests generic/283 at 2022-01-12 13:26:37 > >>>[ 6366.950101] run fstests generic/284 at 2022-01-12 13:26:38 > >>>[ 6370.483205] run fstests generic/285 at 2022-01-12 13:26:41 > >>>[ 6372.532605] run fstests generic/286 at 2022-01-12 13:26:43 > >>>[ 6391.552588] run fstests generic/287 at 2022-01-12 13:27:02 > >>>[ 6395.221066] run fstests generic/288 at 2022-01-12 13:27:06 > >>>[ 6396.199239] run fstests generic/289 at 2022-01-12 13:27:07 > >>>[ 6401.494200] run fstests generic/290 at 2022-01-12 13:27:12 > >>>[ 6406.705872] run fstests generic/291 at 2022-01-12 13:27:17 > >>>[ 6411.919310] run fstests generic/292 at 2022-01-12 13:27:23 > >>>[ 6417.313613] run fstests generic/293 at 2022-01-12 13:27:28 > >>>[ 6424.177254] run fstests generic/295 at 2022-01-12 13:27:35 > >>>[ 6430.984886] run fstests generic/296 at 2022-01-12 13:27:42 > >>>[ 6434.891933] run fstests generic/297 at 2022-01-12 13:27:46 > >>>[ 6435.979562] run fstests generic/298 at 2022-01-12 13:27:47 > >>>[ 6436.941076] run fstests generic/299 at 2022-01-12 13:27:48 > >>>[ 6437.539615] run fstests generic/300 at 2022-01-12 13:27:48 > >>>[ 6438.104575] run fstests generic/301 at 2022-01-12 13:27:49 > >>>[ 6439.145713] run fstests generic/302 at 2022-01-12 13:27:50 > >>>[ 6440.109454] run fstests generic/303 at 2022-01-12 13:27:51 > >>>[ 6441.507025] run fstests generic/304 at 2022-01-12 13:27:52 > >>>[ 6442.163632] run fstests generic/305 at 2022-01-12 13:27:53 > >>>[ 6443.161513] run fstests generic/306 at 2022-01-12 13:27:54 > >>>[ 6444.462375] run fstests generic/307 at 2022-01-12 13:27:55 > >>>[ 6445.026925] run fstests generic/308 at 2022-01-12 13:27:56 > >>>[ 6445.694065] run fstests generic/309 at 2022-01-12 13:27:56 > >>>[ 6447.429347] run fstests generic/311 at 2022-01-12 13:27:58 > >>>[ 6448.065661] run fstests generic/312 at 2022-01-12 13:27:59 > >>>[ 6448.641786] run fstests generic/313 at 2022-01-12 13:27:59 > >>>[ 6453.330380] run fstests generic/314 at 2022-01-12 13:28:04 > >>>[ 6453.869735] run fstests generic/315 at 2022-01-12 13:28:05 > >>>[ 6454.432871] run fstests generic/316 at 2022-01-12 13:28:05 > >>>[ 6455.179812] run fstests generic/317 at 2022-01-12 13:28:06 > >>>[ 6455.744870] run fstests generic/319 at 2022-01-12 13:28:06 > >>>[ 6456.295368] run fstests generic/320 at 2022-01-12 13:28:07 > >>>[ 6456.823414] run fstests generic/321 at 2022-01-12 13:28:08 > >>>[ 6457.398078] run fstests generic/322 at 2022-01-12 13:28:08 > >>>[ 6457.986300] run fstests generic/324 at 2022-01-12 13:28:09 > >>>[ 6458.486502] run fstests generic/325 at 2022-01-12 13:28:09 > >>>[ 6459.043391] run fstests generic/326 at 2022-01-12 13:28:10 > >>>[ 6460.040241] run fstests generic/327 at 2022-01-12 13:28:11 > >>>[ 6461.054872] run fstests generic/328 at 2022-01-12 13:28:12 > >>>[ 6462.066528] run fstests generic/329 at 2022-01-12 13:28:13 > >>>[ 6463.065254] run fstests generic/330 at 2022-01-12 13:28:14 > >>>[ 6471.961534] run fstests generic/331 at 2022-01-12 13:28:23 > >>>[ 6473.162639] run fstests generic/332 at 2022-01-12 13:28:24 > >>>[ 6481.558320] run fstests generic/333 at 2022-01-12 13:28:32 > >>>[ 6482.970708] run fstests generic/334 at 2022-01-12 13:28:34 > >>>[ 6483.883159] run fstests generic/335 at 2022-01-12 13:28:35 > >>>[ 6484.424615] run fstests generic/336 at 2022-01-12 13:28:35 > >>>[ 6485.026317] run fstests generic/337 at 2022-01-12 13:28:36 > >>>[ 6486.087022] run fstests generic/338 at 2022-01-12 13:28:37 > >>>[ 6486.853279] run fstests generic/340 at 2022-01-12 13:28:38 > >>>[ 6529.018625] run fstests generic/341 at 2022-01-12 13:29:20 > >>>[ 6529.743485] run fstests generic/342 at 2022-01-12 13:29:20 > >>>[ 6530.324586] run fstests generic/343 at 2022-01-12 13:29:21 > >>>[ 6530.920079] run fstests generic/344 at 2022-01-12 13:29:22 > >>>[ 6615.377472] run fstests generic/345 at 2022-01-12 13:30:46 > >>>[ 6699.843608] run fstests generic/346 at 2022-01-12 13:32:11 > >>>[ 6738.437542] run fstests generic/347 at 2022-01-12 13:32:49 > >>>[ 6739.294108] run fstests generic/348 at 2022-01-12 13:32:50 > >>>[ 6739.898344] run fstests generic/352 at 2022-01-12 13:32:51 > >>>[ 6741.077399] run fstests generic/353 at 2022-01-12 13:32:52 > >>>[ 6742.043936] run fstests generic/354 at 2022-01-12 13:32:53 > >>>[ 6762.336256] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >>>[ 6771.148344] run fstests generic/355 at 2022-01-12 13:33:22 > >>>[ 6771.867718] run fstests generic/356 at 2022-01-12 13:33:23 > >>>[ 6772.723288] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 6774.212765] Adding 10236k swap on /mnt2/test-356/file1. Priority:-3 extents:1 across:10236k > >>>[ 6774.563473] run fstests generic/358 at 2022-01-12 13:33:25 > >>>[ 6829.824103] run fstests generic/359 at 2022-01-12 13:34:21 > >>>[ 6844.529776] run fstests generic/360 at 2022-01-12 13:34:35 > >>>[ 6845.353612] run fstests generic/361 at 2022-01-12 13:34:36 > >>>[ 6845.922540] run fstests generic/362 at 2022-01-12 13:34:37 > >>>[ 6846.514415] run fstests generic/363 at 2022-01-12 13:34:37 > >>>[ 6847.212681] run fstests generic/364 at 2022-01-12 13:34:38 > >>>[ 6847.905685] run fstests generic/365 at 2022-01-12 13:34:39 > >>>[ 6848.597706] run fstests generic/366 at 2022-01-12 13:34:39 > >>>[ 6849.301636] run fstests generic/367 at 2022-01-12 13:34:40 > >>>[ 6849.993675] run fstests generic/368 at 2022-01-12 13:34:41 > >>>[ 6850.694262] run fstests generic/369 at 2022-01-12 13:34:41 > >>>[ 6851.389744] run fstests generic/370 at 2022-01-12 13:34:42 > >>>[ 6852.089253] run fstests generic/371 at 2022-01-12 13:34:43 > >>>[ 6852.772792] run fstests generic/372 at 2022-01-12 13:34:43 > >>>[ 6853.867908] run fstests generic/373 at 2022-01-12 13:34:45 > >>>[ 6855.370332] run fstests generic/374 at 2022-01-12 13:34:46 > >>>[ 6856.417262] run fstests generic/375 at 2022-01-12 13:34:47 > >>>[ 6857.021504] run fstests generic/376 at 2022-01-12 13:34:48 > >>>[ 6857.662821] run fstests generic/377 at 2022-01-12 13:34:48 > >>>[ 6858.728302] run fstests generic/378 at 2022-01-12 13:34:49 > >>>[ 6859.437621] run fstests generic/379 at 2022-01-12 13:34:50 > >>>[ 6859.958758] run fstests generic/380 at 2022-01-12 13:34:51 > >>>[ 6860.467861] run fstests generic/381 at 2022-01-12 13:34:51 > >>>[ 6860.979217] run fstests generic/382 at 2022-01-12 13:34:52 > >>>[ 6861.490673] run fstests generic/383 at 2022-01-12 13:34:52 > >>>[ 6862.007029] run fstests generic/384 at 2022-01-12 13:34:53 > >>>[ 6862.539285] run fstests generic/385 at 2022-01-12 13:34:53 > >>>[ 6863.056895] run fstests generic/386 at 2022-01-12 13:34:54 > >>>[ 6863.540959] run fstests generic/387 at 2022-01-12 13:34:54 > >>>[ 6864.451640] run fstests generic/388 at 2022-01-12 13:34:55 > >>>[ 6865.020938] run fstests generic/389 at 2022-01-12 13:34:56 > >>>[ 6865.578808] run fstests generic/390 at 2022-01-12 13:34:56 > >>>[ 6866.159617] run fstests generic/391 at 2022-01-12 13:34:57 > >>>[ 6886.115735] 391 (267517): drop_caches: 3 > >>>[ 6889.286981] run fstests generic/392 at 2022-01-12 13:35:20 > >>>[ 6891.203337] run fstests generic/393 at 2022-01-12 13:35:22 > >>>[ 6893.177969] run fstests generic/394 at 2022-01-12 13:35:24 > >>>[ 6894.586568] run fstests generic/395 at 2022-01-12 13:35:25 > >>>[ 6895.341072] run fstests generic/396 at 2022-01-12 13:35:26 > >>>[ 6896.026789] run fstests generic/397 at 2022-01-12 13:35:27 > >>>[ 6896.798172] run fstests generic/398 at 2022-01-12 13:35:27 > >>>[ 6897.556444] run fstests generic/399 at 2022-01-12 13:35:28 > >>>[ 6898.303641] run fstests generic/400 at 2022-01-12 13:35:29 > >>>[ 6898.815244] run fstests generic/401 at 2022-01-12 13:35:30 > >>>[ 6899.937180] run fstests generic/402 at 2022-01-12 13:35:31 > >>>[ 6901.017461] run fstests generic/404 at 2022-01-12 13:35:32 > >>>[ 6901.789100] run fstests generic/405 at 2022-01-12 13:35:32 > >>>[ 6902.645105] run fstests generic/406 at 2022-01-12 13:35:33 > >>>[ 6910.841871] run fstests generic/407 at 2022-01-12 13:35:42 > >>>[ 6912.903774] run fstests generic/408 at 2022-01-12 13:35:44 > >>>[ 6913.608890] run fstests generic/409 at 2022-01-12 13:35:44 > >>>[ 6914.156131] run fstests generic/410 at 2022-01-12 13:35:45 > >>>[ 6914.704550] run fstests generic/411 at 2022-01-12 13:35:45 > >>>[ 6915.251230] run fstests generic/412 at 2022-01-12 13:35:46 > >>>[ 6916.526789] run fstests generic/413 at 2022-01-12 13:35:47 > >>>[ 6917.304149] nfs: Unknown parameter 'dax' > >>>[ 6917.410347] run fstests generic/414 at 2022-01-12 13:35:48 > >>>[ 6918.634861] run fstests generic/415 at 2022-01-12 13:35:49 > >>>[ 6933.976957] run fstests generic/416 at 2022-01-12 13:36:05 > >>>[ 6934.691603] run fstests generic/417 at 2022-01-12 13:36:05 > >>>[ 6935.629054] run fstests generic/418 at 2022-01-12 13:36:06 > >>>[ 6936.242138] run fstests generic/419 at 2022-01-12 13:36:07 > >>>[ 6937.045544] run fstests generic/420 at 2022-01-12 13:36:08 > >>>[ 6937.839373] run fstests generic/421 at 2022-01-12 13:36:09 > >>>[ 6938.636575] run fstests generic/424 at 2022-01-12 13:36:09 > >>>[ 6939.351034] run fstests generic/427 at 2022-01-12 13:36:10 > >>>[ 6939.996982] run fstests generic/428 at 2022-01-12 13:36:11 > >>>[ 6940.637416] run fstests generic/429 at 2022-01-12 13:36:11 > >>>[ 6941.362410] run fstests generic/430 at 2022-01-12 13:36:12 > >>>[ 6942.506724] run fstests generic/431 at 2022-01-12 13:36:13 > >>>[ 6943.556512] run fstests generic/432 at 2022-01-12 13:36:14 > >>>[ 6944.645630] run fstests generic/433 at 2022-01-12 13:36:15 > >>>[ 6945.677486] run fstests generic/435 at 2022-01-12 13:36:16 > >>>[ 6946.409026] run fstests generic/436 at 2022-01-12 13:36:17 > >>>[ 6947.992848] run fstests generic/437 at 2022-01-12 13:36:19 > >>>[ 6968.653759] run fstests generic/439 at 2022-01-12 13:36:39 > >>>[ 6970.194179] run fstests generic/440 at 2022-01-12 13:36:41 > >>>[ 6970.921973] run fstests generic/441 at 2022-01-12 13:36:42 > >>>[ 6971.489914] run fstests generic/443 at 2022-01-12 13:36:42 > >>>[ 6972.110321] run fstests generic/444 at 2022-01-12 13:36:43 > >>>[ 6972.734069] run fstests generic/445 at 2022-01-12 13:36:43 > >>>[ 6974.220817] run fstests generic/447 at 2022-01-12 13:36:45 > >>>[ 6975.531450] run fstests generic/448 at 2022-01-12 13:36:46 > >>>[ 6976.914815] run fstests generic/449 at 2022-01-12 13:36:48 > >>>[ 6977.512944] run fstests generic/450 at 2022-01-12 13:36:48 > >>>[ 6978.444175] run fstests generic/451 at 2022-01-12 13:36:49 > >>>[ 7009.200274] run fstests generic/452 at 2022-01-12 13:37:20 > >>>[ 7010.248330] run fstests generic/453 at 2022-01-12 13:37:21 > >>>[ 7012.836935] run fstests generic/454 at 2022-01-12 13:37:24 > >>>[ 7015.394697] run fstests generic/455 at 2022-01-12 13:37:26 > >>>[ 7016.318699] run fstests generic/456 at 2022-01-12 13:37:27 > >>>[ 7016.892196] run fstests generic/457 at 2022-01-12 13:37:28 > >>>[ 7018.100645] run fstests generic/458 at 2022-01-12 13:37:29 > >>>[ 7019.153106] run fstests generic/459 at 2022-01-12 13:37:30 > >>>[ 7020.261614] run fstests generic/460 at 2022-01-12 13:37:31 > >>>[ 7057.684200] run fstests generic/461 at 2022-01-12 13:38:08 > >>>[ 7058.928713] run fstests generic/462 at 2022-01-12 13:38:10 > >>>[ 7059.578267] nfs: Unknown parameter 'dax' > >>>[ 7059.685070] run fstests generic/463 at 2022-01-12 13:38:10 > >>>[ 7060.682186] run fstests generic/464 at 2022-01-12 13:38:11 > >>>[ 7133.376125] run fstests generic/466 at 2022-01-12 13:39:24 > >>>[ 7134.033001] run fstests generic/467 at 2022-01-12 13:39:25 > >>>[ 7134.958056] sh (300657): drop_caches: 3 > >>>[ 7135.273575] sh (300664): drop_caches: 3 > >>>[ 7135.779078] sh (300671): drop_caches: 3 > >>>[ 7136.171387] sh (300678): drop_caches: 3 > >>>[ 7136.372701] sh (300683): drop_caches: 3 > >>>[ 7136.858710] sh (300690): drop_caches: 3 > >>>[ 7137.390146] sh (300699): drop_caches: 3 > >>>[ 7137.986292] sh (300709): drop_caches: 3 > >>>[ 7138.252495] run fstests generic/468 at 2022-01-12 13:39:29 > >>>[ 7140.487581] run fstests generic/470 at 2022-01-12 13:39:31 > >>>[ 7141.285153] run fstests generic/471 at 2022-01-12 13:39:32 > >>>[ 7141.971971] run fstests generic/472 at 2022-01-12 13:39:33 > >>>[ 7142.757677] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7143.294807] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >>>[ 7143.500315] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >>>[ 7143.621722] Adding 8k swap on /mnt2/swap. Priority:-3 extents:1 across:8k > >>>[ 7144.046333] run fstests generic/474 at 2022-01-12 13:39:35 > >>>[ 7144.988579] run fstests generic/475 at 2022-01-12 13:39:36 > >>>[ 7145.710624] run fstests generic/477 at 2022-01-12 13:39:36 > >>>[ 7146.845233] sh (302346): drop_caches: 3 > >>>[ 7147.640367] sh (302387): drop_caches: 3 > >>>[ 7148.536961] sh (302428): drop_caches: 3 > >>>[ 7149.466709] sh (302470): drop_caches: 3 > >>>[ 7149.738194] run fstests generic/479 at 2022-01-12 13:39:40 > >>>[ 7150.443204] run fstests generic/480 at 2022-01-12 13:39:41 > >>>[ 7151.048938] run fstests generic/481 at 2022-01-12 13:39:42 > >>>[ 7151.619524] run fstests generic/482 at 2022-01-12 13:39:42 > >>>[ 7152.348315] run fstests generic/483 at 2022-01-12 13:39:43 > >>>[ 7153.020108] run fstests generic/487 at 2022-01-12 13:39:44 > >>>[ 7153.578129] run fstests generic/488 at 2022-01-12 13:39:44 > >>>[ 7154.092708] run fstests generic/489 at 2022-01-12 13:39:45 > >>>[ 7154.645766] run fstests generic/490 at 2022-01-12 13:39:45 > >>>[ 7156.152532] run fstests generic/492 at 2022-01-12 13:39:47 > >>>[ 7156.687978] run fstests generic/493 at 2022-01-12 13:39:47 > >>>[ 7157.440775] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7158.071570] run fstests generic/494 at 2022-01-12 13:39:49 > >>>[ 7158.945655] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7159.987483] Adding 10236k swap on /mnt2/test-494/file1. Priority:-3 extents:1 across:10236k > >>>[ 7160.426306] run fstests generic/495 at 2022-01-12 13:39:51 > >>>[ 7161.398950] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7161.828770] swap activate: swapfile has holes > >>>[ 7161.924587] Empty swap-file > >>>[ 7162.186835] run fstests generic/496 at 2022-01-12 13:39:53 > >>>[ 7163.145304] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7163.664228] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >>>[ 7169.433211] Adding 2044k swap on /mnt2/swap. Priority:-3 extents:1 across:2044k > >>>[ 7169.727608] run fstests generic/497 at 2022-01-12 13:40:00 > >>>[ 7170.735141] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7171.069079] run fstests generic/498 at 2022-01-12 13:40:02 > >>>[ 7171.732186] run fstests generic/500 at 2022-01-12 13:40:02 > >>>[ 7172.402636] run fstests generic/501 at 2022-01-12 13:40:03 > >>>[ 7173.367894] run fstests generic/502 at 2022-01-12 13:40:04 > >>>[ 7174.036468] run fstests generic/504 at 2022-01-12 13:40:05 > >>>[ 7174.679080] run fstests generic/505 at 2022-01-12 13:40:05 > >>>[ 7175.476364] run fstests generic/506 at 2022-01-12 13:40:06 > >>>[ 7176.336327] run fstests generic/507 at 2022-01-12 13:40:07 > >>>[ 7176.906752] run fstests generic/508 at 2022-01-12 13:40:08 > >>>[ 7177.443466] run fstests generic/509 at 2022-01-12 13:40:08 > >>>[ 7178.113899] run fstests generic/510 at 2022-01-12 13:40:09 > >>>[ 7178.665874] run fstests generic/511 at 2022-01-12 13:40:09 > >>>[ 7179.212399] run fstests generic/512 at 2022-01-12 13:40:10 > >>>[ 7179.863716] run fstests generic/514 at 2022-01-12 13:40:11 > >>>[ 7180.815618] run fstests generic/515 at 2022-01-12 13:40:12 > >>>[ 7181.850294] run fstests generic/516 at 2022-01-12 13:40:13 > >>>[ 7182.497964] run fstests generic/517 at 2022-01-12 13:40:13 > >>>[ 7183.397705] run fstests generic/518 at 2022-01-12 13:40:14 > >>>[ 7185.260858] run fstests generic/520 at 2022-01-12 13:40:16 > >>>[ 7185.995518] run fstests generic/523 at 2022-01-12 13:40:17 > >>>[ 7187.015108] run fstests generic/524 at 2022-01-12 13:40:18 > >>>[ 7214.588812] run fstests generic/525 at 2022-01-12 13:40:45 > >>>[ 7215.945729] run fstests generic/526 at 2022-01-12 13:40:47 > >>>[ 7216.731432] run fstests generic/527 at 2022-01-12 13:40:47 > >>>[ 7217.332036] run fstests generic/528 at 2022-01-12 13:40:48 > >>>[ 7217.928387] run fstests generic/529 at 2022-01-12 13:40:49 > >>>[ 7218.474947] run fstests generic/530 at 2022-01-12 13:40:49 > >>>[ 7219.289577] run fstests generic/532 at 2022-01-12 13:40:50 > >>>[ 7219.984287] run fstests generic/533 at 2022-01-12 13:40:51 > >>>[ 7221.588573] run fstests generic/534 at 2022-01-12 13:40:52 > >>>[ 7222.205596] run fstests generic/535 at 2022-01-12 13:40:53 > >>>[ 7222.829546] run fstests generic/536 at 2022-01-12 13:40:54 > >>>[ 7223.590202] run fstests generic/537 at 2022-01-12 13:40:54 > >>>[ 7224.466640] run fstests generic/538 at 2022-01-12 13:40:55 > >>>[ 7250.048839] run fstests generic/539 at 2022-01-12 13:41:21 > >>>[ 7251.550550] run fstests generic/540 at 2022-01-12 13:41:22 > >>>[ 7257.243669] run fstests generic/541 at 2022-01-12 13:41:28 > >>>[ 7263.478824] run fstests generic/542 at 2022-01-12 13:41:34 > >>>[ 7269.624181] run fstests generic/543 at 2022-01-12 13:41:40 > >>>[ 7275.817103] run fstests generic/544 at 2022-01-12 13:41:47 > >>>[ 7282.092977] run fstests generic/545 at 2022-01-12 13:41:53 > >>>[ 7282.904252] run fstests generic/546 at 2022-01-12 13:41:54 > >>>[ 7283.957773] run fstests generic/547 at 2022-01-12 13:41:55 > >>>[ 7284.580048] run fstests generic/548 at 2022-01-12 13:41:55 > >>>[ 7285.326032] run fstests generic/549 at 2022-01-12 13:41:56 > >>>[ 7286.075114] run fstests generic/550 at 2022-01-12 13:41:57 > >>>[ 7286.842980] run fstests generic/552 at 2022-01-12 13:41:58 > >>>[ 7287.485856] run fstests generic/553 at 2022-01-12 13:41:58 > >>>[ 7288.214457] run fstests generic/554 at 2022-01-12 13:41:59 > >>>[ 7289.123966] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7290.370393] Adding 16380k swap on /mnt2/swapfile. Priority:-3 extents:1 across:16380k > >>>[ 7290.687659] run fstests generic/555 at 2022-01-12 13:42:01 > >>>[ 7291.521126] run fstests generic/556 at 2022-01-12 13:42:02 > >>>[ 7292.049123] run fstests generic/557 at 2022-01-12 13:42:03 > >>>[ 7292.594633] run fstests generic/558 at 2022-01-12 13:42:03 > >>>[ 7293.116986] run fstests generic/559 at 2022-01-12 13:42:04 > >>>[ 7293.625068] run fstests generic/560 at 2022-01-12 13:42:04 > >>>[ 7294.150767] run fstests generic/561 at 2022-01-12 13:42:05 > >>>[ 7294.672595] run fstests generic/562 at 2022-01-12 13:42:05 > >>>[ 7295.755050] run fstests generic/563 at 2022-01-12 13:42:06 > >>>[ 7296.284954] run fstests generic/564 at 2022-01-12 13:42:07 > >>>[ 7297.286052] loop0: detected capacity change from 0 to 256 > >>>[ 7298.231618] run fstests generic/566 at 2022-01-12 13:42:09 > >>>[ 7298.730755] run fstests generic/567 at 2022-01-12 13:42:09 > >>>[ 7300.222707] run fstests generic/568 at 2022-01-12 13:42:11 > >>>[ 7301.134560] run fstests generic/569 at 2022-01-12 13:42:12 > >>>[ 7302.142643] Adding 36k swap on /mnt2/swap. Priority:-3 extents:1 across:36k > >>>[ 7303.448133] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >>>[ 7303.452275] NFS: attempt to write to active swap file! > >>>[ 7303.487542] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >>>[ 7303.530750] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >>>[ 7303.587615] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >>>[ 7303.629119] Adding 20476k swap on /mnt2/569.swap. Priority:-3 extents:1 across:20476k > >>>[ 7303.646860] NFS: attempt to write to active swap file! > >>>[ 7303.979451] run fstests generic/570 at 2022-01-12 13:42:15 > >>>[ 7304.692420] run fstests generic/572 at 2022-01-12 13:42:15 > >>>[ 7305.210036] run fstests generic/573 at 2022-01-12 13:42:16 > >>>[ 7305.731408] run fstests generic/574 at 2022-01-12 13:42:16 > >>>[ 7306.245226] run fstests generic/575 at 2022-01-12 13:42:17 > >>>[ 7306.755327] run fstests generic/576 at 2022-01-12 13:42:17 > >>>[ 7307.415264] run fstests generic/577 at 2022-01-12 13:42:18 > >>>[ 7307.966901] run fstests generic/579 at 2022-01-12 13:42:19 > >>>[ 7308.532284] run fstests generic/580 at 2022-01-12 13:42:19 > >>>[ 7309.267749] run fstests generic/581 at 2022-01-12 13:42:20 > >>>[ 7309.916075] run fstests generic/582 at 2022-01-12 13:42:21 > >>>[ 7310.643888] run fstests generic/583 at 2022-01-12 13:42:21 > >>>[ 7311.371543] run fstests generic/584 at 2022-01-12 13:42:22 > >>>[ 7312.108260] run fstests generic/585 at 2022-01-12 13:42:23 > >>>[ 7312.708730] run fstests generic/586 at 2022-01-12 13:42:23 > >>>[ 7321.372427] run fstests generic/587 at 2022-01-12 13:42:32 > >>>[ 7321.882959] run fstests generic/588 at 2022-01-12 13:42:33 > >>>[ 7322.869048] run fstests generic/589 at 2022-01-12 13:42:34 > >>>[ 7323.420928] run fstests generic/590 at 2022-01-12 13:42:34 > >>>[ 7599.522683] run fstests generic/591 at 2022-01-12 13:47:10 > >>>[ 7600.469219] run fstests generic/592 at 2022-01-12 13:47:11 > >>>[ 7601.209667] run fstests generic/593 at 2022-01-12 13:47:12 > >>>[ 7601.925298] run fstests generic/594 at 2022-01-12 13:47:13 > >>>[ 7602.455466] run fstests generic/595 at 2022-01-12 13:47:13 > >>>[ 7603.181000] run fstests generic/596 at 2022-01-12 13:47:14 > >>>[ 7603.583124] Process accounting resumed > >>>[ 7603.780139] run fstests generic/597 at 2022-01-12 13:47:14 > >>>[ 7604.359127] run fstests generic/598 at 2022-01-12 13:47:15 > >>>[ 7604.907400] run fstests generic/599 at 2022-01-12 13:47:16 > >>>[ 7605.710364] run fstests generic/600 at 2022-01-12 13:47:16 > >>>[ 7606.295426] run fstests generic/601 at 2022-01-12 13:47:17 > >>>[ 7606.813031] run fstests generic/602 at 2022-01-12 13:47:18 > >>>[ 7607.566587] run fstests generic/603 at 2022-01-12 13:47:18 > >>>[ 7608.093235] run fstests generic/604 at 2022-01-12 13:47:19 > >>>[ 7613.505790] run fstests generic/605 at 2022-01-12 13:47:24 > >>>[ 7614.268456] nfs: Unknown parameter 'dax' > >>>[ 7614.378027] run fstests generic/606 at 2022-01-12 13:47:25 > >>>[ 7614.970728] nfs: Unknown parameter 'dax' > >>>[ 7615.132524] run fstests generic/608 at 2022-01-12 13:47:26 > >>>[ 7615.730417] nfs: Unknown parameter 'dax' > >>>[ 7615.838044] run fstests generic/609 at 2022-01-12 13:47:27 > >>>[ 7616.725570] run fstests generic/611 at 2022-01-12 13:47:27 > >>>[ 7617.915374] run fstests nfs/001 at 2022-01-12 13:47:29 > >>>[ 7620.841996] run fstests shared/002 at 2022-01-12 13:47:32 > >>>[ 7621.379231] run fstests shared/032 at 2022-01-12 13:47:32 > >>>[ 7621.870631] run fstests shared/298 at 2022-01-12 13:47:33 > >>>[ 0.000000] Linux version 5.16.0-00002-g616758bf6583 (bfields@patate.fieldses.org) (gcc (GCC) 11.2.1 20211203 (Red Hat 11.2.1-7), GNU ld version 2.37-10.fc35) #1278 SMP PREEMPT Wed Jan 12 11:37:28 EST 2022 > >>>[ 0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 > >>>[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' > >>>[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' > >>>[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' > >>>[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > >>>[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. > >>>[ 0.000000] signal: max sigframe size: 1776 > >>>[ 0.000000] BIOS-provided physical RAM map: > >>>[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable > >>>[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffd7fff] usable > >>>[ 0.000000] BIOS-e820: [mem 0x000000007ffd8000-0x000000007fffffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved > >>>[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved > >>>[ 0.000000] NX (Execute Disable) protection: active > >>>[ 0.000000] SMBIOS 2.8 present. > >>>[ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > >>>[ 0.000000] tsc: Fast TSC calibration using PIT > >>>[ 0.000000] tsc: Detected 3591.667 MHz processor > >>>[ 0.000880] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved > >>>[ 0.000887] e820: remove [mem 0x000a0000-0x000fffff] usable > >>>[ 0.000894] last_pfn = 0x7ffd8 max_arch_pfn = 0x400000000 > >>>[ 0.000926] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT > >>>[ 0.004010] found SMP MP-table at [mem 0x000f5b80-0x000f5b8f] > >>>[ 0.004443] RAMDISK: [mem 0x346ce000-0x3635efff] > >>>[ 0.004450] ACPI: Early table checksum verification disabled > >>>[ 0.004455] ACPI: RSDP 0x00000000000F58F0 000014 (v00 BOCHS ) > >>>[ 0.004464] ACPI: RSDT 0x000000007FFE1902 000030 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004473] ACPI: FACP 0x000000007FFE17D6 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004482] ACPI: DSDT 0x000000007FFE0040 001796 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004489] ACPI: FACS 0x000000007FFE0000 000040 > >>>[ 0.004494] ACPI: APIC 0x000000007FFE184A 000090 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004501] ACPI: WAET 0x000000007FFE18DA 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) > >>>[ 0.004506] ACPI: Reserving FACP table memory at [mem 0x7ffe17d6-0x7ffe1849] > >>>[ 0.004510] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe17d5] > >>>[ 0.004513] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] > >>>[ 0.004515] ACPI: Reserving APIC table memory at [mem 0x7ffe184a-0x7ffe18d9] > >>>[ 0.004518] ACPI: Reserving WAET table memory at [mem 0x7ffe18da-0x7ffe1901] > >>>[ 0.007926] Zone ranges: > >>>[ 0.007934] DMA [mem 0x0000000000001000-0x0000000000ffffff] > >>>[ 0.007940] DMA32 [mem 0x0000000001000000-0x000000007ffd7fff] > >>>[ 0.007944] Normal empty > >>>[ 0.007947] Movable zone start for each node > >>>[ 0.007949] Early memory node ranges > >>>[ 0.007952] node 0: [mem 0x0000000000001000-0x000000000009efff] > >>>[ 0.007955] node 0: [mem 0x0000000000100000-0x000000007ffd7fff] > >>>[ 0.007959] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffd7fff] > >>>[ 0.007968] On node 0, zone DMA: 1 pages in unavailable ranges > >>>[ 0.008031] On node 0, zone DMA: 97 pages in unavailable ranges > >>>[ 0.015752] On node 0, zone DMA32: 40 pages in unavailable ranges > >>>[ 0.043852] kasan: KernelAddressSanitizer initialized > >>>[ 0.044423] ACPI: PM-Timer IO Port: 0x608 > >>>[ 0.044432] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) > >>>[ 0.044477] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 > >>>[ 0.044486] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > >>>[ 0.044490] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) > >>>[ 0.044494] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > >>>[ 0.044497] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) > >>>[ 0.044500] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) > >>>[ 0.044505] ACPI: Using ACPI (MADT) for SMP configuration information > >>>[ 0.044508] TSC deadline timer available > >>>[ 0.044514] smpboot: Allowing 4 CPUs, 0 hotplug CPUs > >>>[ 0.044531] [mem 0x80000000-0xfeffbfff] available for PCI devices > >>>[ 0.044536] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns > >>>[ 0.059178] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 > >>>[ 0.059473] percpu: Embedded 66 pages/cpu s231440 r8192 d30704 u524288 > >>>[ 0.059481] pcpu-alloc: s231440 r8192 d30704 u524288 alloc=1*2097152 > >>>[ 0.059486] pcpu-alloc: [0] 0 1 2 3 > >>>[ 0.059518] Built 1 zonelists, mobility grouping on. Total pages: 516824 > >>>[ 0.059528] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap console=ttyS0,38400n8 consoleblank=0 > >>>[ 0.059605] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 resume=/dev/mapper/fedora-swap", will be passed to user space. > >>>[ 0.059829] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) > >>>[ 0.059938] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) > >>>[ 0.059987] mem auto-init: stack:off, heap alloc:off, heap free:off > >>>[ 0.189829] Memory: 1652304K/2096600K available (49170K kernel code, 11662K rwdata, 9292K rodata, 2076K init, 15268K bss, 444040K reserved, 0K cma-reserved) > >>>[ 0.191638] Kernel/User page tables isolation: enabled > >>>[ 0.191721] ftrace: allocating 48466 entries in 190 pages > >>>[ 0.208382] ftrace: allocated 190 pages with 6 groups > >>>[ 0.208563] Dynamic Preempt: full > >>>[ 0.208737] Running RCU self tests > >>>[ 0.208749] rcu: Preemptible hierarchical RCU implementation. > >>>[ 0.208751] rcu: RCU lockdep checking is enabled. > >>>[ 0.208754] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. > >>>[ 0.208758] Trampoline variant of Tasks RCU enabled. > >>>[ 0.208760] Rude variant of Tasks RCU enabled. > >>>[ 0.208762] Tracing variant of Tasks RCU enabled. > >>>[ 0.208765] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. > >>>[ 0.208767] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 > >>>[ 0.218069] NR_IRQS: 4352, nr_irqs: 72, preallocated irqs: 16 > >>>[ 0.218411] random: get_random_bytes called from start_kernel+0x1ef/0x384 with crng_init=0 > >>>[ 0.224704] Console: colour VGA+ 80x25 > >>>[ 0.273917] printk: console [ttyS0] enabled > >>>[ 0.274215] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar > >>>[ 0.274876] ... MAX_LOCKDEP_SUBCLASSES: 8 > >>>[ 0.275165] ... MAX_LOCK_DEPTH: 48 > >>>[ 0.275459] ... MAX_LOCKDEP_KEYS: 8192 > >>>[ 0.275790] ... CLASSHASH_SIZE: 4096 > >>>[ 0.276100] ... MAX_LOCKDEP_ENTRIES: 32768 > >>>[ 0.276423] ... MAX_LOCKDEP_CHAINS: 65536 > >>>[ 0.276742] ... CHAINHASH_SIZE: 32768 > >>>[ 0.277061] memory used by lock dependency info: 6365 kB > >>>[ 0.277476] memory used for stack traces: 4224 kB > >>>[ 0.277830] per task-struct memory footprint: 1920 bytes > >>>[ 0.278254] ACPI: Core revision 20210930 > >>>[ 0.278762] APIC: Switch to symmetric I/O mode setup > >>>[ 0.280353] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c5939df6d, max_idle_ns: 440795297647 ns > >>>[ 0.281280] Calibrating delay loop (skipped), value calculated using timer frequency.. 7183.33 BogoMIPS (lpj=14366668) > >>>[ 0.282204] pid_max: default: 32768 minimum: 301 > >>>[ 0.282676] LSM: Security Framework initializing > >>>[ 0.283076] SELinux: Initializing. > >>>[ 0.283465] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >>>[ 0.284092] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) > >>>[ 0.285279] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 > >>>[ 0.285279] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 > >>>[ 0.285279] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization > >>>[ 0.285279] Spectre V2 : Mitigation: Full generic retpoline > >>>[ 0.285279] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch > >>>[ 0.285279] Spectre V2 : Enabling Restricted Speculation for firmware calls > >>>[ 0.285279] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier > >>>[ 0.285279] Speculative Store Bypass: Vulnerable > >>>[ 0.285279] SRBDS: Unknown: Dependent on hypervisor status > >>>[ 0.285279] MDS: Vulnerable: Clear CPU buffers attempted, no microcode > >>>[ 0.285279] Freeing SMP alternatives memory: 44K > >>>[ 0.285279] smpboot: CPU0: Intel Core Processor (Haswell, no TSX, IBRS) (family: 0x6, model: 0x3c, stepping: 0x1) > >>>[ 0.285279] Running RCU-tasks wait API self tests > >>>[ 0.386107] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only. > >>>[ 0.389599] rcu: Hierarchical SRCU implementation. > >>>[ 0.392441] NMI watchdog: Perf NMI watchdog permanently disabled > >>>[ 0.393385] Callback from call_rcu_tasks_trace() invoked. > >>>[ 0.394170] smp: Bringing up secondary CPUs ... > >>>[ 0.396370] x86: Booting SMP configuration: > >>>[ 0.396786] .... node #0, CPUs: #1 > >>>[ 0.066931] smpboot: CPU 1 Converting physical 0 to logical die 1 > >>>[ 0.482790] #2 > >>>[ 0.066931] smpboot: CPU 2 Converting physical 0 to logical die 2 > >>>[ 0.565821] Callback from call_rcu_tasks_rude() invoked. > >>>[ 0.567462] #3 > >>>[ 0.066931] smpboot: CPU 3 Converting physical 0 to logical die 3 > >>>[ 0.649444] smp: Brought up 1 node, 4 CPUs > >>>[ 0.649755] smpboot: Max logical packages: 4 > >>>[ 0.650109] smpboot: Total of 4 processors activated (28813.78 BogoMIPS) > >>>[ 0.652111] devtmpfs: initialized > >>>[ 0.656548] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns > >>>[ 0.657296] futex hash table entries: 1024 (order: 5, 131072 bytes, linear) > >>>[ 0.659317] NET: Registered PF_NETLINK/PF_ROUTE protocol family > >>>[ 0.660716] audit: initializing netlink subsys (disabled) > >>>[ 0.661311] audit: type=2000 audit(1642005696.380:1): state=initialized audit_enabled=0 res=1 > >>>[ 0.662148] thermal_sys: Registered thermal governor 'step_wise' > >>>[ 0.662161] thermal_sys: Registered thermal governor 'user_space' > >>>[ 0.662741] cpuidle: using governor ladder > >>>[ 0.663957] PCI: Using configuration type 1 for base access > >>>[ 0.673336] Callback from call_rcu_tasks() invoked. > >>>[ 0.688468] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. > >>>[ 0.689933] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages > >>>[ 0.690902] cryptd: max_cpu_qlen set to 1000 > >>>[ 0.757333] raid6: avx2x4 gen() 34683 MB/s > >>>[ 0.825285] raid6: avx2x4 xor() 13341 MB/s > >>>[ 0.893285] raid6: avx2x2 gen() 32969 MB/s > >>>[ 0.961293] raid6: avx2x2 xor() 18290 MB/s > >>>[ 1.029283] raid6: avx2x1 gen() 25495 MB/s > >>>[ 1.097283] raid6: avx2x1 xor() 16599 MB/s > >>>[ 1.165417] raid6: sse2x4 gen() 18858 MB/s > >>>[ 1.233284] raid6: sse2x4 xor() 9882 MB/s > >>>[ 1.301284] raid6: sse2x2 gen() 17529 MB/s > >>>[ 1.369284] raid6: sse2x2 xor() 10528 MB/s > >>>[ 1.437284] raid6: sse2x1 gen() 12868 MB/s > >>>[ 1.505284] raid6: sse2x1 xor() 9047 MB/s > >>>[ 1.505592] raid6: using algorithm avx2x4 gen() 34683 MB/s > >>>[ 1.506016] raid6: .... xor() 13341 MB/s, rmw enabled > >>>[ 1.506395] raid6: using avx2x2 recovery algorithm > >>>[ 1.507187] ACPI: Added _OSI(Module Device) > >>>[ 1.507507] ACPI: Added _OSI(Processor Device) > >>>[ 1.507827] ACPI: Added _OSI(3.0 _SCP Extensions) > >>>[ 1.508176] ACPI: Added _OSI(Processor Aggregator Device) > >>>[ 1.508594] ACPI: Added _OSI(Linux-Dell-Video) > >>>[ 1.508918] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) > >>>[ 1.509291] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) > >>>[ 1.529597] ACPI: 1 ACPI AML tables successfully acquired and loaded > >>>[ 1.536937] ACPI: Interpreter enabled > >>>[ 1.537121] ACPI: PM: (supports S0 S5) > >>>[ 1.537300] ACPI: Using IOAPIC for interrupt routing > >>>[ 1.537790] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug > >>>[ 1.539878] ACPI: Enabled 2 GPEs in block 00 to 0F > >>>[ 1.582821] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) > >>>[ 1.583389] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments HPX-Type3] > >>>[ 1.584011] acpi PNP0A03:00: PCIe port services disabled; not requesting _OSC control > >>>[ 1.584761] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. > >>>[ 1.585813] PCI host bridge to bus 0000:00 > >>>[ 1.586147] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] > >>>[ 1.586722] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] > >>>[ 1.587293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] > >>>[ 1.587921] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] > >>>[ 1.588545] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] > >>>[ 1.589183] pci_bus 0000:00: root bus resource [bus 00-ff] > >>>[ 1.593451] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 > >>>[ 1.604897] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 > >>>[ 1.606756] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 > >>>[ 1.609820] pci 0000:00:01.1: reg 0x20: [io 0xc2e0-0xc2ef] > >>>[ 1.611254] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] > >>>[ 1.611843] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] > >>>[ 1.612367] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] > >>>[ 1.612952] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] > >>>[ 1.613748] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 > >>>[ 1.614670] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI > >>>[ 1.615271] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB > >>>[ 1.616279] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 > >>>[ 1.618571] pci 0000:00:02.0: reg 0x10: [mem 0xf4000000-0xf7ffffff] > >>>[ 1.621026] pci 0000:00:02.0: reg 0x14: [mem 0xf8000000-0xfbffffff] > >>>[ 1.623401] pci 0000:00:02.0: reg 0x18: [mem 0xfc054000-0xfc055fff] > >>>[ 1.625293] pci 0000:00:02.0: reg 0x1c: [io 0xc200-0xc21f] > >>>[ 1.632521] pci 0000:00:02.0: reg 0x30: [mem 0xfc040000-0xfc04ffff pref] > >>>[ 1.643746] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 > >>>[ 1.645084] pci 0000:00:03.0: reg 0x10: [io 0xc220-0xc23f] > >>>[ 1.646115] pci 0000:00:03.0: reg 0x14: [mem 0xfc056000-0xfc056fff] > >>>[ 1.650262] pci 0000:00:03.0: reg 0x20: [mem 0xfebd4000-0xfebd7fff 64bit pref] > >>>[ 1.651726] pci 0000:00:03.0: reg 0x30: [mem 0xfc000000-0xfc03ffff pref] > >>>[ 1.663001] pci 0000:00:04.0: [8086:2668] type 00 class 0x040300 > >>>[ 1.663848] pci 0000:00:04.0: reg 0x10: [mem 0xfc050000-0xfc053fff] > >>>[ 1.676622] pci 0000:00:05.0: [8086:2934] type 00 class 0x0c0300 > >>>[ 1.678734] pci 0000:00:05.0: reg 0x20: [io 0xc240-0xc25f] > >>>[ 1.690560] pci 0000:00:05.1: [8086:2935] type 00 class 0x0c0300 > >>>[ 1.692610] pci 0000:00:05.1: reg 0x20: [io 0xc260-0xc27f] > >>>[ 1.694089] pci 0000:00:05.2: [8086:2936] type 00 class 0x0c0300 > >>>[ 1.696372] pci 0000:00:05.2: reg 0x20: [io 0xc280-0xc29f] > >>>[ 1.697989] pci 0000:00:05.7: [8086:293a] type 00 class 0x0c0320 > >>>[ 1.698889] pci 0000:00:05.7: reg 0x10: [mem 0xfc057000-0xfc057fff] > >>>[ 1.707037] pci 0000:00:06.0: [1af4:1003] type 00 class 0x078000 > >>>[ 1.708590] pci 0000:00:06.0: reg 0x10: [io 0xc000-0xc03f] > >>>[ 1.709714] pci 0000:00:06.0: reg 0x14: [mem 0xfc058000-0xfc058fff] > >>>[ 1.712836] pci 0000:00:06.0: reg 0x20: [mem 0xfebd8000-0xfebdbfff 64bit pref] > >>>[ 1.726059] pci 0000:00:07.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.727542] pci 0000:00:07.0: reg 0x10: [io 0xc040-0xc07f] > >>>[ 1.728892] pci 0000:00:07.0: reg 0x14: [mem 0xfc059000-0xfc059fff] > >>>[ 1.731824] pci 0000:00:07.0: reg 0x20: [mem 0xfebdc000-0xfebdffff 64bit pref] > >>>[ 1.744361] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 > >>>[ 1.745286] pci 0000:00:08.0: reg 0x10: [io 0xc2a0-0xc2bf] > >>>[ 1.748005] pci 0000:00:08.0: reg 0x20: [mem 0xfebe0000-0xfebe3fff 64bit pref] > >>>[ 1.760699] pci 0000:00:09.0: [1af4:1005] type 00 class 0x00ff00 > >>>[ 1.761568] pci 0000:00:09.0: reg 0x10: [io 0xc2c0-0xc2df] > >>>[ 1.764291] pci 0000:00:09.0: reg 0x20: [mem 0xfebe4000-0xfebe7fff 64bit pref] > >>>[ 1.775904] pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.777237] pci 0000:00:0a.0: reg 0x10: [io 0xc080-0xc0bf] > >>>[ 1.778068] pci 0000:00:0a.0: reg 0x14: [mem 0xfc05a000-0xfc05afff] > >>>[ 1.781719] pci 0000:00:0a.0: reg 0x20: [mem 0xfebe8000-0xfebebfff 64bit pref] > >>>[ 1.794394] pci 0000:00:0b.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.795745] pci 0000:00:0b.0: reg 0x10: [io 0xc0c0-0xc0ff] > >>>[ 1.796982] pci 0000:00:0b.0: reg 0x14: [mem 0xfc05b000-0xfc05bfff] > >>>[ 1.799779] pci 0000:00:0b.0: reg 0x20: [mem 0xfebec000-0xfebeffff 64bit pref] > >>>[ 1.812867] pci 0000:00:0c.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.814289] pci 0000:00:0c.0: reg 0x10: [io 0xc100-0xc13f] > >>>[ 1.815517] pci 0000:00:0c.0: reg 0x14: [mem 0xfc05c000-0xfc05cfff] > >>>[ 1.818535] pci 0000:00:0c.0: reg 0x20: [mem 0xfebf0000-0xfebf3fff 64bit pref] > >>>[ 1.830979] pci 0000:00:0d.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.832321] pci 0000:00:0d.0: reg 0x10: [io 0xc140-0xc17f] > >>>[ 1.833286] pci 0000:00:0d.0: reg 0x14: [mem 0xfc05d000-0xfc05dfff] > >>>[ 1.836445] pci 0000:00:0d.0: reg 0x20: [mem 0xfebf4000-0xfebf7fff 64bit pref] > >>>[ 1.848403] pci 0000:00:0e.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.849691] pci 0000:00:0e.0: reg 0x10: [io 0xc180-0xc1bf] > >>>[ 1.850908] pci 0000:00:0e.0: reg 0x14: [mem 0xfc05e000-0xfc05efff] > >>>[ 1.853728] pci 0000:00:0e.0: reg 0x20: [mem 0xfebf8000-0xfebfbfff 64bit pref] > >>>[ 1.867912] pci 0000:00:0f.0: [1af4:1001] type 00 class 0x010000 > >>>[ 1.869286] pci 0000:00:0f.0: reg 0x10: [io 0xc1c0-0xc1ff] > >>>[ 1.870507] pci 0000:00:0f.0: reg 0x14: [mem 0xfc05f000-0xfc05ffff] > >>>[ 1.873286] pci 0000:00:0f.0: reg 0x20: [mem 0xfebfc000-0xfebfffff 64bit pref] > >>>[ 1.886571] pci_bus 0000:00: on NUMA node 0 > >>>[ 1.890389] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 > >>>[ 1.892145] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 > >>>[ 1.893842] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 > >>>[ 1.895486] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 > >>>[ 1.896509] ACPI: PCI: Interrupt link LNKS configured for IRQ 9 > >>>[ 1.904775] pci 0000:00:02.0: vgaarb: setting as boot VGA device > >>>[ 1.904775] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none > >>>[ 1.904775] pci 0000:00:02.0: vgaarb: bridge control possible > >>>[ 1.904775] vgaarb: loaded > >>>[ 1.904775] SCSI subsystem initialized > >>>[ 1.904775] libata version 3.00 loaded. > >>>[ 1.904775] ACPI: bus type USB registered > >>>[ 1.905259] usbcore: registered new interface driver usbfs > >>>[ 1.909389] usbcore: registered new interface driver hub > >>>[ 1.909860] usbcore: registered new device driver usb > >>>[ 1.910380] pps_core: LinuxPPS API ver. 1 registered > >>>[ 1.910754] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> > >>>[ 1.911613] PTP clock support registered > >>>[ 1.912179] EDAC MC: Ver: 3.0.0 > >>>[ 1.913040] Advanced Linux Sound Architecture Driver Initialized. > >>>[ 1.913040] PCI: Using ACPI for IRQ routing > >>>[ 1.913040] PCI: pci_cache_line_size set to 64 bytes > >>>[ 1.913040] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] > >>>[ 1.913040] e820: reserve RAM buffer [mem 0x7ffd8000-0x7fffffff] > >>>[ 1.913283] clocksource: Switched to clocksource tsc-early > >>>[ 2.100358] VFS: Disk quotas dquot_6.6.0 > >>>[ 2.100783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) > >>>[ 2.101643] FS-Cache: Loaded > >>>[ 2.102237] CacheFiles: Loaded > >>>[ 2.102534] pnp: PnP ACPI init > >>>[ 2.103635] pnp 00:03: [dma 2] > >>>[ 2.106017] pnp: PnP ACPI: found 5 devices > >>>[ 2.127076] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns > >>>[ 2.127982] NET: Registered PF_INET protocol family > >>>[ 2.128550] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) > >>>[ 2.130129] tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 81920 bytes, linear) > >>>[ 2.130900] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) > >>>[ 2.131794] TCP bind hash table entries: 16384 (order: 8, 1179648 bytes, linear) > >>>[ 2.132819] TCP: Hash tables configured (established 16384 bind 16384) > >>>[ 2.133780] UDP hash table entries: 1024 (order: 5, 163840 bytes, linear) > >>>[ 2.134414] UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear) > >>>[ 2.135294] NET: Registered PF_UNIX/PF_LOCAL protocol family > >>>[ 2.135777] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > >>>[ 2.136308] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > >>>[ 2.136806] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] > >>>[ 2.137427] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] > >>>[ 2.137992] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] > >>>[ 2.138908] pci 0000:00:01.0: PIIX3: Enabling Passive Release > >>>[ 2.139376] pci 0000:00:00.0: Limiting direct PCI/PCI transfers > >>>[ 2.139854] pci 0000:00:01.0: Activating ISA DMA hang workarounds > >>>[ 2.140425] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] > >>>[ 3.202115] ACPI: \_SB_.LNKA: Enabled at IRQ 10 > >>>[ 4.239171] pci 0000:00:05.0: quirk_usb_early_handoff+0x0/0xa70 took 2048819 usecs > >>>[ 5.300725] ACPI: \_SB_.LNKB: Enabled at IRQ 11 > >>>[ 6.347387] pci 0000:00:05.1: quirk_usb_early_handoff+0x0/0xa70 took 2058145 usecs > >>>[ 7.421229] ACPI: \_SB_.LNKC: Enabled at IRQ 11 > >>>[ 8.471039] pci 0000:00:05.2: quirk_usb_early_handoff+0x0/0xa70 took 2073223 usecs > >>>[ 9.544718] ACPI: \_SB_.LNKD: Enabled at IRQ 10 > >>>[ 10.599331] pci 0000:00:05.7: quirk_usb_early_handoff+0x0/0xa70 took 2077756 usecs > >>>[ 10.600123] PCI: CLS 0 bytes, default 64 > >>>[ 10.601188] Trying to unpack rootfs image as initramfs... > >>>[ 10.604786] Initialise system trusted keyrings > >>>[ 10.605377] workingset: timestamp_bits=62 max_order=19 bucket_order=0 > >>>[ 10.607827] DLM installed > >>>[ 10.610089] Key type cifs.idmap registered > >>>[ 10.610742] fuse: init (API version 7.35) > >>>[ 10.611401] SGI XFS with ACLs, security attributes, no debug enabled > >>>[ 10.612942] ocfs2: Registered cluster interface o2cb > >>>[ 10.613684] ocfs2: Registered cluster interface user > >>>[ 10.614265] OCFS2 User DLM kernel interface loaded > >>>[ 10.617912] gfs2: GFS2 installed > >>>[ 10.626466] xor: automatically using best checksumming function avx > >>>[ 10.627049] Key type asymmetric registered > >>>[ 10.627348] Asymmetric key parser 'x509' registered > >>>[ 10.627936] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) > >>>[ 10.628640] io scheduler mq-deadline registered > >>>[ 10.628991] io scheduler kyber registered > >>>[ 10.629268] test_string_helpers: Running tests... > >>>[ 10.646349] cryptomgr_test (94) used greatest stack depth: 30192 bytes left > >>>[ 10.647783] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 > >>>[ 10.649320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 > >>>[ 10.661911] ACPI: button: Power Button [PWRF] > >>>[ 11.308291] Freeing initrd memory: 29252K > >>>[ 11.309219] kworker/u8:1 (116) used greatest stack depth: 28384 bytes left > >>>[ 11.613446] tsc: Refined TSC clocksource calibration: 3591.600 MHz > >>>[ 11.614007] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c55424d7b, max_idle_ns: 440795215499 ns > >>>[ 11.615017] clocksource: Switched to clocksource tsc > >>>[ 24.416686] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled > >>>[ 24.417569] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A > >>>[ 24.421615] Non-volatile memory driver v1.3 > >>>[ 24.421936] Linux agpgart interface v0.103 > >>>[ 24.423208] ACPI: bus type drm_connector registered > >>>[ 24.444467] brd: module loaded > >>>[ 24.457220] loop: module loaded > >>>[ 24.458122] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 GB/8.00 GiB) > >>>[ 24.462053] vda: vda1 vda2 > >>>[ 24.465619] virtio_blk virtio5: [vdb] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >>>[ 24.469543] virtio_blk virtio6: [vdc] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >>>[ 24.473451] virtio_blk virtio7: [vdd] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >>>[ 24.477416] virtio_blk virtio8: [vde] 10485760 512-byte logical blocks (5.37 GB/5.00 GiB) > >>>[ 24.481188] virtio_blk virtio9: [vdf] 41943040 512-byte logical blocks (21.5 GB/20.0 GiB) > >>>[ 24.484978] virtio_blk virtio10: [vdg] 20971520 512-byte logical blocks (10.7 GB/10.0 GiB) > >>>[ 24.488125] vdg: > >>>[ 24.489758] zram: Added device: zram0 > >>>[ 24.492368] ata_piix 0000:00:01.1: version 2.13 > >>>[ 24.496603] scsi host0: ata_piix > >>>[ 24.498008] scsi host1: ata_piix > >>>[ 24.498675] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc2e0 irq 14 > >>>[ 24.499256] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc2e8 irq 15 > >>>[ 24.501218] tun: Universal TUN/TAP device driver, 1.6 > >>>[ 24.504829] e1000: Intel(R) PRO/1000 Network Driver > >>>[ 24.505219] e1000: Copyright (c) 1999-2006 Intel Corporation. > >>>[ 24.505862] e1000e: Intel(R) PRO/1000 Network Driver > >>>[ 24.506254] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. > >>>[ 24.507072] PPP generic driver version 2.4.2 > >>>[ 24.509436] aoe: AoE v85 initialised. > >>>[ 24.510102] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver > >>>[ 24.510679] ehci-pci: EHCI PCI platform driver > >>>[ 24.657958] ata1.01: NODEV after polling detection > >>>[ 24.658233] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 > >>>[ 24.660230] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 > >>>[ 24.714138] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray > >>>[ 24.714722] cdrom: Uniform CD-ROM driver Revision: 3.20 > >>>[ 24.749225] sr 0:0:0:0: Attached scsi CD-ROM sr0 > >>>[ 24.750199] sr 0:0:0:0: Attached scsi generic sg0 type 5 > >>>[ 25.753762] ehci-pci 0000:00:05.7: EHCI Host Controller > >>>[ 25.755008] ehci-pci 0000:00:05.7: new USB bus registered, assigned bus number 1 > >>>[ 25.755944] ehci-pci 0000:00:05.7: irq 10, io mem 0xfc057000 > >>>[ 25.769490] ehci-pci 0000:00:05.7: USB 2.0 started, EHCI 1.00 > >>>[ 25.773616] hub 1-0:1.0: USB hub found > >>>[ 25.774306] hub 1-0:1.0: 6 ports detected > >>>[ 25.779054] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > >>>[ 25.779761] ohci-pci: OHCI PCI platform driver > >>>[ 25.780223] uhci_hcd: USB Universal Host Controller Interface driver > >>>[ 26.041366] usb 1-1: new high-speed USB device number 2 using ehci-pci > >>>[ 27.054250] uhci_hcd 0000:00:05.0: UHCI Host Controller > >>>[ 27.055419] uhci_hcd 0000:00:05.0: new USB bus registered, assigned bus number 2 > >>>[ 27.056446] uhci_hcd 0000:00:05.0: irq 10, io port 0x0000c240 > >>>[ 27.058858] hub 2-0:1.0: USB hub found > >>>[ 27.059323] hub 2-0:1.0: 2 ports detected > >>>[ 28.319755] uhci_hcd 0000:00:05.1: UHCI Host Controller > >>>[ 28.320738] uhci_hcd 0000:00:05.1: new USB bus registered, assigned bus number 3 > >>>[ 28.321673] uhci_hcd 0000:00:05.1: irq 11, io port 0x0000c260 > >>>[ 28.323716] hub 3-0:1.0: USB hub found > >>>[ 28.324067] hub 3-0:1.0: 2 ports detected > >>>[ 29.592163] uhci_hcd 0000:00:05.2: UHCI Host Controller > >>>[ 29.593127] uhci_hcd 0000:00:05.2: new USB bus registered, assigned bus number 4 > >>>[ 29.594072] uhci_hcd 0000:00:05.2: irq 11, io port 0x0000c280 > >>>[ 29.596130] hub 4-0:1.0: USB hub found > >>>[ 29.596496] hub 4-0:1.0: 2 ports detected > >>>[ 29.598855] usbcore: registered new interface driver usblp > >>>[ 29.599462] usbcore: registered new interface driver usb-storage > >>>[ 29.600541] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 > >>>[ 29.602527] serio: i8042 KBD port at 0x60,0x64 irq 1 > >>>[ 29.603702] serio: i8042 AUX port at 0x60,0x64 irq 12 > >>>[ 29.605764] mousedev: PS/2 mouse device common for all mice > >>>[ 29.607846] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 > >>>[ 29.609776] input: PC Speaker as /devices/platform/pcspkr/input/input3 > >>>[ 29.611498] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. > >>>[ 29.613021] device-mapper: uevent: version 1.0.3 > >>>[ 29.614146] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com > >>>[ 29.615545] device-mapper: multipath round-robin: version 1.2.0 loaded > >>>[ 29.616195] intel_pstate: CPU model not supported > >>>[ 29.627242] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.7/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5 > >>>[ 29.629270] hid-generic 0003:0627:0001.0001: input: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.7-1/input0 > >>>[ 29.631016] usbcore: registered new interface driver usbhid > >>>[ 29.631500] usbhid: USB HID core driver > >>>[ 29.640019] netem: version 1.3 > >>>[ 29.640848] NET: Registered PF_INET6 protocol family > >>>[ 29.643109] Segment Routing with IPv6 > >>>[ 29.643405] In-situ OAM (IOAM) with IPv6 > >>>[ 29.643760] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver > >>>[ 29.645948] NET: Registered PF_PACKET protocol family > >>>[ 29.646371] NET: Registered PF_KEY protocol family > >>>[ 29.646805] sctp: Hash tables configured (bind 32/56) > >>>[ 29.647357] Key type dns_resolver registered > >>>[ 29.649453] IPI shorthand broadcast: enabled > >>>[ 29.649838] AVX2 version of gcm_enc/dec engaged. > >>>[ 29.650351] AES CTR mode by8 optimization enabled > >>>[ 29.651971] sched_clock: Marking stable (29586356484, 62931318)->(29723854493, -74566691) > >>>[ 29.654238] Loading compiled-in X.509 certificates > >>>[ 29.655218] debug_vm_pgtable: [debug_vm_pgtable ]: Validating architecture page table helpers > >>>[ 29.657030] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no > >>>[ 29.659515] ima: No TPM chip found, activating TPM-bypass! > >>>[ 29.660173] ima: Allocated hash algorithm: sha1 > >>>[ 29.660593] ima: No architecture policies found > >>>[ 29.673045] ALSA device list: > >>>[ 29.673234] #0: Virtual MIDI Card 1 > >>>[ 29.682863] Freeing unused kernel image (initmem) memory: 2076K > >>>[ 29.717568] Write protecting the kernel read-only data: 61440k > >>>[ 29.721990] Freeing unused kernel image (text/rodata gap) memory: 2028K > >>>[ 29.724251] Freeing unused kernel image (rodata/data gap) memory: 948K > >>>[ 29.727486] Run /init as init process > >>>[ 29.727944] with arguments: > >>>[ 29.727947] /init > >>>[ 29.727951] with environment: > >>>[ 29.727954] HOME=/ > >>>[ 29.727957] TERM=linux > >>>[ 29.727960] BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.16.0-00002-g616758bf6583 > >>>[ 29.727964] resume=/dev/mapper/fedora-swap > >>>[ 29.803093] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >>>[ 29.806218] systemd[1]: Detected virtualization kvm. > >>>[ 29.806681] systemd[1]: Detected architecture x86-64. > >>>[ 29.807140] systemd[1]: Running in initial RAM disk. > >>>[ 29.809901] systemd[1]: Set hostname to <test1.fieldses.org>. > >>>[ 29.885369] systemd-hiberna (1054) used greatest stack depth: 28256 bytes left > >>>[ 29.979654] dracut-rootfs-g (1047) used greatest stack depth: 28216 bytes left > >>>[ 30.021117] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >>>[ 30.044537] systemd[1]: Queued start job for default target Initrd Default Target. > >>>[ 30.047340] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice. > >>>[ 30.050175] systemd[1]: Reached target Slices. > >>>[ 30.051386] systemd[1]: Reached target Swap. > >>>[ 30.052613] systemd[1]: Reached target Timers. > >>>[ 30.054515] systemd[1]: Listening on Journal Audit Socket. > >>>[ 30.056550] systemd[1]: Listening on Journal Socket (/dev/log). > >>>[ 30.058686] systemd[1]: Listening on Journal Socket. > >>>[ 30.060760] systemd[1]: Listening on udev Control Socket. > >>>[ 30.063831] systemd[1]: Listening on udev Kernel Socket. > >>>[ 30.065248] systemd[1]: Reached target Sockets. > >>>[ 30.066604] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >>>[ 30.071265] systemd[1]: Started Memstrack Anylazing Service. > >>>[ 30.077532] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon. > >>>[ 30.079586] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. > >>>[ 30.080901] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) > >>>[ 30.085726] systemd[1]: Starting Journal Service... > >>>[ 30.087684] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. > >>>[ 30.089551] random: rngd: uninitialized urandom read (16 bytes read) > >>>[ 30.092470] systemd[1]: Starting Apply Kernel Variables... > >>>[ 30.098065] systemd[1]: Starting Create Static Device Nodes in /dev... > >>>[ 30.117909] systemd[1]: Starting Setup Virtual Console... > >>>[ 30.149991] systemd[1]: Finished Create Static Device Nodes in /dev. > >>>[ 30.159172] systemd[1]: memstrack.service: Succeeded. > >>>[ 30.198818] systemd[1]: Finished Apply Kernel Variables. > >>>[ 30.200519] audit: type=1130 audit(1642005725.913:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 30.227486] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4 > >>>[ 30.460095] systemd[1]: Started Journal Service. > >>>[ 30.461750] audit: type=1130 audit(1642005726.177:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 30.803462] audit: type=1130 audit(1642005726.517:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 31.357792] random: crng init done > >>>[ 31.748912] dracut-cmdline (1106) used greatest stack depth: 27968 bytes left > >>>[ 31.752614] audit: type=1130 audit(1642005727.465:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 32.032836] audit: type=1130 audit(1642005727.745:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 32.157892] audit: type=1130 audit(1642005727.873:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 34.122946] virtio_net virtio0 enp0s3: renamed from eth0 > >>>[ 34.168250] kworker/u8:4 (1729) used greatest stack depth: 27536 bytes left > >>>[ 34.330444] ata_id (1886) used greatest stack depth: 26656 bytes left > >>>[ 34.467966] audit: type=1130 audit(1642005730.181:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 34.581444] audit: type=1130 audit(1642005730.293:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 35.924826] audit: type=1130 audit(1642005731.637:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-hibernate-resume@dev-mapper-fedora\x2dswap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' > >>>[ 35.979064] audit: type=1130 audit(1642005731.693:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 36.080161] audit: type=1130 audit(1642005731.793:12): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 36.137141] fsck (2468) used greatest stack depth: 26560 bytes left > >>>[ 36.142664] audit: type=1130 audit(1642005731.857:13): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 36.170836] XFS (dm-0): Mounting V5 Filesystem > >>>[ 36.314126] XFS (dm-0): Ending clean mount > >>>[ 36.383563] mount (2470) used greatest stack depth: 25344 bytes left > >>>[ 36.491652] systemd-fstab-g (2483) used greatest stack depth: 25008 bytes left > >>>[ 37.102323] audit: type=1130 audit(1642005732.817:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 37.104426] audit: type=1131 audit(1642005732.817:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 37.254915] audit: type=1130 audit(1642005732.969:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 37.290146] audit: type=1131 audit(1642005733.005:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 37.296542] audit: type=1131 audit(1642005733.009:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 37.304265] audit: type=1131 audit(1642005733.017:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 40.558013] SELinux: Permission watch in class filesystem not defined in policy. > >>>[ 40.558745] SELinux: Permission watch in class file not defined in policy. > >>>[ 40.559313] SELinux: Permission watch_mount in class file not defined in policy. > >>>[ 40.559934] SELinux: Permission watch_sb in class file not defined in policy. > >>>[ 40.560593] SELinux: Permission watch_with_perm in class file not defined in policy. > >>>[ 40.561264] SELinux: Permission watch_reads in class file not defined in policy. > >>>[ 40.561928] SELinux: Permission watch in class dir not defined in policy. > >>>[ 40.562491] SELinux: Permission watch_mount in class dir not defined in policy. > >>>[ 40.563098] SELinux: Permission watch_sb in class dir not defined in policy. > >>>[ 40.563684] SELinux: Permission watch_with_perm in class dir not defined in policy. > >>>[ 40.564391] SELinux: Permission watch_reads in class dir not defined in policy. > >>>[ 40.565023] SELinux: Permission watch in class lnk_file not defined in policy. > >>>[ 40.565673] SELinux: Permission watch_mount in class lnk_file not defined in policy. > >>>[ 40.566349] SELinux: Permission watch_sb in class lnk_file not defined in policy. > >>>[ 40.566973] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. > >>>[ 40.567658] SELinux: Permission watch_reads in class lnk_file not defined in policy. > >>>[ 40.568356] SELinux: Permission watch in class chr_file not defined in policy. > >>>[ 40.568977] SELinux: Permission watch_mount in class chr_file not defined in policy. > >>>[ 40.569671] SELinux: Permission watch_sb in class chr_file not defined in policy. > >>>[ 40.570298] SELinux: Permission watch_with_perm in class chr_file not defined in policy. > >>>[ 40.570986] SELinux: Permission watch_reads in class chr_file not defined in policy. > >>>[ 40.571646] SELinux: Permission watch in class blk_file not defined in policy. > >>>[ 40.572293] SELinux: Permission watch_mount in class blk_file not defined in policy. > >>>[ 40.573045] SELinux: Permission watch_sb in class blk_file not defined in policy. > >>>[ 40.573722] SELinux: Permission watch_with_perm in class blk_file not defined in policy. > >>>[ 40.574413] SELinux: Permission watch_reads in class blk_file not defined in policy. > >>>[ 40.575086] SELinux: Permission watch in class sock_file not defined in policy. > >>>[ 40.575697] SELinux: Permission watch_mount in class sock_file not defined in policy. > >>>[ 40.576405] SELinux: Permission watch_sb in class sock_file not defined in policy. > >>>[ 40.577058] SELinux: Permission watch_with_perm in class sock_file not defined in policy. > >>>[ 40.577794] SELinux: Permission watch_reads in class sock_file not defined in policy. > >>>[ 40.578458] SELinux: Permission watch in class fifo_file not defined in policy. > >>>[ 40.579066] SELinux: Permission watch_mount in class fifo_file not defined in policy. > >>>[ 40.579727] SELinux: Permission watch_sb in class fifo_file not defined in policy. > >>>[ 40.580405] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. > >>>[ 40.581116] SELinux: Permission watch_reads in class fifo_file not defined in policy. > >>>[ 40.581870] SELinux: Permission perfmon in class capability2 not defined in policy. > >>>[ 40.582516] SELinux: Permission bpf in class capability2 not defined in policy. > >>>[ 40.583123] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. > >>>[ 40.583865] SELinux: Permission perfmon in class cap2_userns not defined in policy. > >>>[ 40.584574] SELinux: Permission bpf in class cap2_userns not defined in policy. > >>>[ 40.585208] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. > >>>[ 40.586020] SELinux: Class mctp_socket not defined in policy. > >>>[ 40.586482] SELinux: Class perf_event not defined in policy. > >>>[ 40.586930] SELinux: Class anon_inode not defined in policy. > >>>[ 40.587380] SELinux: Class io_uring not defined in policy. > >>>[ 40.587811] SELinux: the above unknown classes and permissions will be allowed > >>>[ 40.638612] SELinux: policy capability network_peer_controls=1 > >>>[ 40.639094] SELinux: policy capability open_perms=1 > >>>[ 40.639471] SELinux: policy capability extended_socket_class=1 > >>>[ 40.639937] SELinux: policy capability always_check_network=0 > >>>[ 40.640472] SELinux: policy capability cgroup_seclabel=1 > >>>[ 40.640907] SELinux: policy capability nnp_nosuid_transition=1 > >>>[ 40.641442] SELinux: policy capability genfs_seclabel_symlinks=0 > >>>[ 40.858863] systemd[1]: Successfully loaded SELinux policy in 2.430314s. > >>>[ 41.410189] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 249.521ms. > >>>[ 41.418749] systemd[1]: systemd v246.13-1.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) > >>>[ 41.421461] systemd[1]: Detected virtualization kvm. > >>>[ 41.421851] systemd[1]: Detected architecture x86-64. > >>>[ 41.439136] systemd[1]: Set hostname to <test1.fieldses.org>. > >>>[ 41.753375] lvmconfig (2543) used greatest stack depth: 24544 bytes left > >>>[ 41.774174] grep (2557) used greatest stack depth: 24448 bytes left > >>>[ 41.800082] zram_generator::generator[2554]: Creating dev-zram0.swap for /dev/zram0 (823MB) > >>>[ 41.850246] systemd-sysv-generator[2552]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust. > >>>[ 42.699764] systemd[1]: /usr/lib/systemd/system/plymouth-start.service:15: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. > >>>[ 42.961005] systemd[1]: /usr/lib/systemd/system/mcelog.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. > >>>[ 43.550746] kauditd_printk_skb: 13 callbacks suppressed > >>>[ 43.550750] audit: type=1131 audit(1642005739.265:33): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.557309] systemd[1]: initrd-switch-root.service: Succeeded. > >>>[ 43.559018] systemd[1]: Stopped Switch Root. > >>>[ 43.559933] audit: type=1130 audit(1642005739.273:34): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.562887] audit: type=1131 audit(1642005739.277:35): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.563870] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. > >>>[ 43.566772] systemd[1]: Created slice system-getty.slice. > >>>[ 43.568626] systemd[1]: Created slice system-modprobe.slice. > >>>[ 43.570533] systemd[1]: Created slice system-serial\x2dgetty.slice. > >>>[ 43.572518] systemd[1]: Created slice system-sshd\x2dkeygen.slice. > >>>[ 43.575249] systemd[1]: Created slice system-swap\x2dcreate.slice. > >>>[ 43.577790] systemd[1]: Created slice system-systemd\x2dfsck.slice. > >>>[ 43.580470] systemd[1]: Created slice User and Session Slice. > >>>[ 43.581081] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped. > >>>[ 43.583848] systemd[1]: Started Forward Password Requests to Wall Directory Watch. > >>>[ 43.587144] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. > >>>[ 43.588834] systemd[1]: Reached target Local Encrypted Volumes. > >>>[ 43.589488] systemd[1]: Stopped target Switch Root. > >>>[ 43.590478] systemd[1]: Stopped target Initrd File Systems. > >>>[ 43.591448] systemd[1]: Stopped target Initrd Root File System. > >>>[ 43.592607] systemd[1]: Reached target Paths. > >>>[ 43.593681] systemd[1]: Reached target Slices. > >>>[ 43.595921] systemd[1]: Listening on Device-mapper event daemon FIFOs. > >>>[ 43.599288] systemd[1]: Listening on LVM2 poll daemon socket. > >>>[ 43.603589] systemd[1]: Listening on RPCbind Server Activation Socket. > >>>[ 43.604301] systemd[1]: Reached target RPC Port Mapper. > >>>[ 43.621281] systemd[1]: Listening on Process Core Dump Socket. > >>>[ 43.623666] systemd[1]: Listening on initctl Compatibility Named Pipe. > >>>[ 43.639128] systemd[1]: Listening on udev Control Socket. > >>>[ 43.641921] systemd[1]: Listening on udev Kernel Socket. > >>>[ 43.648355] systemd[1]: Activating swap /dev/mapper/fedora-swap... > >>>[ 43.654892] systemd[1]: Mounting Huge Pages File System... > >>>[ 43.661099] systemd[1]: Mounting POSIX Message Queue File System... > >>>[ 43.667262] systemd[1]: Mounting NFSD configuration filesystem... > >>>[ 43.676216] systemd[1]: Mounting Kernel Debug File System... > >>>[ 43.682222] Adding 839676k swap on /dev/mapper/fedora-swap. Priority:-2 extents:1 across:839676k > >>>[ 43.684653] systemd[1]: Starting Kernel Module supporting RPCSEC_GSS... > >>>[ 43.686822] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped. > >>>[ 43.696795] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... > >>>[ 43.703564] systemd[1]: Starting Load Kernel Module configfs... > >>>[ 43.711831] systemd[1]: Starting Load Kernel Module drm... > >>>[ 43.721843] systemd[1]: Starting Load Kernel Module fuse... > >>>[ 43.735057] systemd[1]: Starting Preprocess NFS configuration convertion... > >>>[ 43.739099] systemd[1]: plymouth-switch-root.service: Succeeded. > >>>[ 43.742433] systemd[1]: Stopped Plymouth switch root service. > >>>[ 43.744497] audit: type=1131 audit(1642005739.457:36): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.751143] systemd[1]: Starting Create swap on /dev/zram0... > >>>[ 43.752961] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. > >>>[ 43.755225] systemd[1]: systemd-fsck-root.service: Succeeded. > >>>[ 43.758291] systemd[1]: Stopped File System Check on Root Device. > >>>[ 43.759755] audit: type=1131 audit(1642005739.473:37): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.759862] systemd[1]: Stopped Journal Service. > >>>[ 43.766144] audit: type=1130 audit(1642005739.481:38): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.770089] audit: type=1131 audit(1642005739.481:39): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 43.785015] systemd[1]: Starting Journal Service... > >>>[ 43.786753] systemd[1]: Condition check resulted in Load Kernel Modules being skipped. > >>>[ 43.788967] zram0: detected capacity change from 0 to 1685504 > >>>[ 43.792217] systemd[1]: Starting Remount Root and Kernel File Systems... > >>>[ 43.793231] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. > >>>[ 43.799775] systemd[1]: Starting Apply Kernel Variables... > >>>[ 43.830240] systemd[1]: Starting Coldplug All udev Devices... > >>>[ 43.833802] systemd[1]: sysroot.mount: Succeeded. > >>>[ 43.838089] RPC: Registered named UNIX socket transport module. > >>>[ 43.838642] RPC: Registered udp transport module. > >>>[ 43.838999] RPC: Registered tcp transport module. > >>>[ 43.839369] RPC: Registered tcp NFSv4.1 backchannel transport module. > >>>[ 43.854269] systemd[1]: Activated swap /dev/mapper/fedora-swap. > >>>[ 43.871240] audit: type=1305 audit(1642005739.585:40): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:syslogd_t:s0 res=1 > >>>[ 43.872637] audit: type=1300 audit(1642005739.585:40): arch=c000003e syscall=46 success=yes exit=60 a0=5 a1=7ffd304bc550 a2=4000 a3=7ffd304bc5fc items=0 ppid=1 pid=2572 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-journal" exe="/usr/lib/systemd/systemd-journald" subj=system_u:system_r:syslogd_t:s0 key=(null) > >>>[ 43.876478] audit: type=1327 audit(1642005739.585:40): proctitle="/usr/lib/systemd/systemd-journald" > >>>[ 43.882944] systemd[1]: Mounted Huge Pages File System. > >>>[ 43.886495] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) > >>>[ 43.895767] systemd[1]: Started Journal Service. > >>>[ 43.974904] Adding 842748k swap on /dev/zram0. Priority:100 extents:1 across:842748k SS > >>>[ 43.996937] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). > >>>[ 46.194003] BTRFS: device fsid 27379e6a-3b97-45ef-bf83-dc7e8178b695 devid 1 transid 865 /dev/vde scanned by systemd-udevd (3767) > >>>[ 47.371666] FAT-fs (vdg): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. > >>>[ 47.378054] XFS (vdb): Mounting V5 Filesystem > >>>[ 47.384999] XFS (vdf): Mounting V5 Filesystem > >>>[ 47.404867] EXT4-fs (vdd): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. > >>>[ 47.576714] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. > >>>[ 48.050435] XFS (vdf): Ending clean mount > >>>[ 48.091447] XFS (vdb): Ending clean mount > >>>[ 48.100548] xfs filesystem being mounted at /exports/xfs2 supports timestamps until 2038 (0x7fffffff) > >>>[ 48.102015] xfs filesystem being mounted at /exports/xfs supports timestamps until 2038 (0x7fffffff) > >>>[ 48.600280] kauditd_printk_skb: 40 callbacks suppressed > >>>[ 48.600285] audit: type=1130 audit(1642005744.313:73): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=nfs-idmapd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' > >>>[ 48.650555] audit: type=1400 audit(1642005744.365:74): avc: denied { map } for pid=3849 comm="nfsdcld" path="/var/lib/nfs/nfsdcld/main.sqlite-shm" dev="dm-0" ino=873070 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:var_lib_nfs_t:s0 tclass=file permissive=1 > >>>[ 48.655197] audit: type=1300 audit(1642005744.365:74): arch=c000003e syscall=9 success=yes exit=140401715851264 a0=0 a1=8000 a2=3 a3=1 items=0 ppid=1 pid=3849 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nfsdcld" exe="/root/nfsdcld" subj=system_u:system_r:init_t:s0 key=(null) > >>>[ 48.659212] audit: type=1327 audit(1642005744.365:74): proctitle="/root/nfsdcld" > >>>[ 48.662263] audit: type=1305 audit(1642005744.377:75): op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 > >>>[ 48.663809] audit: type=1300 audit(1642005744.377:75): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd61589d20 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > >>>[ 48.668534] audit: type=1327 audit(1642005744.377:75): proctitle="/sbin/auditd" > >>>[ 48.669369] audit: type=1305 audit(1642005744.377:76): op=set audit_pid=3850 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 > >>>[ 48.670842] audit: type=1300 audit(1642005744.377:76): arch=c000003e syscall=44 success=yes exit=60 a0=3 a1=7ffd615879d0 a2=3c a3=0 items=0 ppid=3844 pid=3850 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditd" exe="/usr/sbin/auditd" subj=system_u:system_r:auditd_t:s0 key=(null) > >>>[ 48.673934] audit: type=1327 audit(1642005744.377:76): proctitle="/sbin/auditd" > >>>[ 51.467504] plymouthd (2385) used greatest stack depth: 24080 bytes left > >>>[ 52.964929] NFSD: Using nfsdcld client tracking operations. > >>>[ 52.965487] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000098) > >>>[ 57.672761] rpm (4068) used greatest stack depth: 22976 bytes left > >>>[ 201.516445] clocksource: timekeeping watchdog on CPU2: acpi_pm retried 2 times before success > >>> > >>>[ 335.595143] ====================================================== > >>>[ 335.596176] WARNING: possible circular locking dependency detected > >>>[ 335.597128] 5.16.0-00002-g616758bf6583 #1278 Not tainted > >>>[ 335.597903] ------------------------------------------------------ > >>>[ 335.598845] kworker/u8:0/7 is trying to acquire lock: > >>>[ 335.599582] ffff888010393b60 (&clp->cl_lock){+.+.}-{2:2}, at: laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.601111] > >>> but task is already holding lock: > >>>[ 335.601750] ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >>>[ 335.602896] > >>> which lock already depends on the new lock. > >>> > >>>[ 335.603378] > >>> the existing dependency chain (in reverse order) is: > >>>[ 335.603897] > >>> -> #2 (&clp->cl_cs_lock){+.+.}-{2:2}: > >>>[ 335.604305] _raw_spin_lock+0x2f/0x40 > >>>[ 335.604622] nfsd4_fl_expire_lock+0x7a/0x330 [nfsd] > >>>[ 335.605078] posix_lock_inode+0x9b8/0x1a50 > >>>[ 335.605442] nfsd4_lock+0xe33/0x3d20 [nfsd] > >>>[ 335.605827] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >>>[ 335.606289] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >>>[ 335.606692] svc_process_common+0xd56/0x1ac0 [sunrpc] > >>>[ 335.607188] svc_process+0x32e/0x4a0 [sunrpc] > >>>[ 335.607604] nfsd+0x306/0x530 [nfsd] > >>>[ 335.607923] kthread+0x3b1/0x490 > >>>[ 335.608199] ret_from_fork+0x22/0x30 > >>>[ 335.608512] > >>> -> #1 (&ctx->flc_lock){+.+.}-{2:2}: > >>>[ 335.608878] _raw_spin_lock+0x2f/0x40 > >>>[ 335.609187] check_for_locks+0xcf/0x200 [nfsd] > >>>[ 335.609602] nfsd4_release_lockowner+0x583/0xa20 [nfsd] > >>>[ 335.610093] nfsd4_proc_compound+0xcef/0x21e0 [nfsd] > >>>[ 335.610564] nfsd_dispatch+0x4b8/0xbd0 [nfsd] > >>>[ 335.610963] svc_process_common+0xd56/0x1ac0 [sunrpc] > >>>[ 335.611450] svc_process+0x32e/0x4a0 [sunrpc] > >>>[ 335.611863] nfsd+0x306/0x530 [nfsd] > >>>[ 335.612193] kthread+0x3b1/0x490 > >>>[ 335.612463] ret_from_fork+0x22/0x30 > >>>[ 335.612764] > >>> -> #0 (&clp->cl_lock){+.+.}-{2:2}: > >>>[ 335.613120] __lock_acquire+0x29f8/0x5b80 > >>>[ 335.613469] lock_acquire+0x1a6/0x4b0 > >>>[ 335.613763] _raw_spin_lock+0x2f/0x40 > >>>[ 335.614057] laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.614477] process_one_work+0x7ec/0x1320 > >>>[ 335.614813] worker_thread+0x59e/0xf90 > >>>[ 335.615135] kthread+0x3b1/0x490 > >>>[ 335.615409] ret_from_fork+0x22/0x30 > >>>[ 335.615695] > >>> other info that might help us debug this: > >>> > >>>[ 335.616135] Chain exists of: > >>> &clp->cl_lock --> &ctx->flc_lock --> &clp->cl_cs_lock > >>> > >>>[ 335.616806] Possible unsafe locking scenario: > >>> > >>>[ 335.617140] CPU0 CPU1 > >>>[ 335.617467] ---- ---- > >>>[ 335.617793] lock(&clp->cl_cs_lock); > >>>[ 335.618036] lock(&ctx->flc_lock); > >>>[ 335.618531] lock(&clp->cl_cs_lock); > >>>[ 335.619037] lock(&clp->cl_lock); > >>>[ 335.619256] > >>> *** DEADLOCK *** > >>> > >>>[ 335.619487] 4 locks held by kworker/u8:0/7: > >>>[ 335.619780] #0: ffff88800ca5b138 ((wq_completion)nfsd4){+.+.}-{0:0}, at: process_one_work+0x6f5/0x1320 > >>>[ 335.620619] #1: ffff88800776fdd8 ((work_completion)(&(&nn->laundromat_work)->work)){+.+.}-{0:0}, at: process_one_work+0x723/0x1320 > >>>[ 335.621657] #2: ffff888008a4c190 (&nn->client_lock){+.+.}-{2:2}, at: laundromat_main+0x2b4/0x23b0 [nfsd] > >>>[ 335.622499] #3: ffff888010393e18 (&clp->cl_cs_lock){+.+.}-{2:2}, at: laundromat_main+0x33e/0x23b0 [nfsd] > >>>[ 335.623462] > >>> stack backtrace: > >>>[ 335.623648] CPU: 2 PID: 7 Comm: kworker/u8:0 Not tainted 5.16.0-00002-g616758bf6583 #1278 > >>>[ 335.624364] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-6.fc35 04/01/2014 > >>>[ 335.625124] Workqueue: nfsd4 laundromat_main [nfsd] > >>>[ 335.625514] Call Trace: > >>>[ 335.625641] <TASK> > >>>[ 335.625734] dump_stack_lvl+0x45/0x59 > >>>[ 335.625981] check_noncircular+0x23e/0x2e0 > >>>[ 335.626268] ? print_circular_bug+0x450/0x450 > >>>[ 335.626583] ? mark_lock+0xf1/0x30c0 > >>>[ 335.626821] ? alloc_chain_hlocks+0x1e6/0x590 > >>>[ 335.627156] __lock_acquire+0x29f8/0x5b80 > >>>[ 335.627463] ? lock_chain_count+0x20/0x20 > >>>[ 335.627740] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >>>[ 335.628161] ? lockdep_hardirqs_on_prepare+0x400/0x400 > >>>[ 335.628555] lock_acquire+0x1a6/0x4b0 > >>>[ 335.628799] ? laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.629184] ? lock_release+0x6d0/0x6d0 > >>>[ 335.629449] ? laundromat_main+0x29c/0x23b0 [nfsd] > >>>[ 335.629825] ? do_raw_spin_lock+0x11e/0x240 > >>>[ 335.630120] ? rwlock_bug.part.0+0x90/0x90 > >>>[ 335.630409] _raw_spin_lock+0x2f/0x40 > >>>[ 335.630654] ? laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.631058] laundromat_main+0x177d/0x23b0 [nfsd] > >>>[ 335.631450] ? lock_release+0x6d0/0x6d0 > >>>[ 335.631712] ? client_ctl_write+0x9f0/0x9f0 [nfsd] > >>>[ 335.632110] process_one_work+0x7ec/0x1320 > >>>[ 335.632411] ? lock_release+0x6d0/0x6d0 > >>>[ 335.632672] ? pwq_dec_nr_in_flight+0x230/0x230 > >>>[ 335.633002] ? rwlock_bug.part.0+0x90/0x90 > >>>[ 335.633290] worker_thread+0x59e/0xf90 > >>>[ 335.633548] ? process_one_work+0x1320/0x1320 > >>>[ 335.633860] kthread+0x3b1/0x490 > >>>[ 335.634082] ? _raw_spin_unlock_irq+0x24/0x50 > >>>[ 335.634396] ? set_kthread_struct+0x100/0x100 > >>>[ 335.634709] ret_from_fork+0x22/0x30 > >>>[ 335.634961] </TASK> > >>>[ 751.568771] nfsd (4021) used greatest stack depth: 21792 bytes left > >>>[ 751.769042] nfsd: last server has exited, flushing export cache > >>>[ 751.957555] NFSD: Using nfsdcld client tracking operations. > >>>[ 751.958050] NFSD: starting 15-second grace period (net f0000098) > >>>[ 773.101065] nfsd: last server has exited, flushing export cache > >>>[ 773.341554] NFSD: Using nfsdcld client tracking operations. > >>>[ 773.342404] NFSD: starting 15-second grace period (net f0000098) > >>>[ 795.757041] nfsd: last server has exited, flushing export cache > >>>[ 795.881057] NFSD: Using nfsdcld client tracking operations. > >>>[ 795.881637] NFSD: starting 15-second grace period (net f0000098) > >>>[ 816.968871] nfsd: last server has exited, flushing export cache > >>>[ 817.199987] NFSD: Using nfsdcld client tracking operations. > >>>[ 817.201123] NFSD: starting 15-second grace period (net f0000098) > >>>[ 817.696746] nfsd: last server has exited, flushing export cache > >>>[ 817.925616] NFSD: Using nfsdcld client tracking operations. > >>>[ 817.926073] NFSD: starting 15-second grace period (net f0000098) > >>>[ 839.080820] nfsd: last server has exited, flushing export cache > >>>[ 839.321569] NFSD: Using nfsdcld client tracking operations. > >>>[ 839.322562] NFSD: starting 15-second grace period (net f0000098) > >>>[ 860.492782] nfsd: last server has exited, flushing export cache > >>>[ 860.749705] NFSD: Using nfsdcld client tracking operations. > >>>[ 860.751710] NFSD: starting 15-second grace period (net f0000098) > >>>[ 882.889711] nfsd: last server has exited, flushing export cache > >>>[ 883.125502] NFSD: Using nfsdcld client tracking operations. > >>>[ 883.126399] NFSD: starting 15-second grace period (net f0000098) > >>>[ 904.224662] nfsd: last server has exited, flushing export cache > >>>[ 904.342387] NFSD: Using nfsdcld client tracking operations. > >>>[ 904.342962] NFSD: starting 15-second grace period (net f0000098) > >>>[ 947.528620] nfsd: last server has exited, flushing export cache > >>>[ 947.763520] NFSD: Using nfsdcld client tracking operations. > >>>[ 947.764569] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1442.187410] nfsd: last server has exited, flushing export cache > >>>[ 1442.430496] NFSD: Using nfsdcld client tracking operations. > >>>[ 1442.430974] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1483.739309] nfsd: last server has exited, flushing export cache > >>>[ 1483.864102] NFSD: Using nfsdcld client tracking operations. > >>>[ 1483.864606] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1486.644498] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1490.023618] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >>>[ 1508.807419] nfsd: last server has exited, flushing export cache > >>>[ 1508.925396] NFSD: Using nfsdcld client tracking operations. > >>>[ 1508.925905] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1509.412224] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1530.667340] nfsd: last server has exited, flushing export cache > >>>[ 1530.803387] NFSD: Using nfsdcld client tracking operations. > >>>[ 1530.804150] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1531.185069] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1552.563368] nfsd: last server has exited, flushing export cache > >>>[ 1552.794957] NFSD: Using nfsdcld client tracking operations. > >>>[ 1552.797092] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1573.931430] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1594.943247] nfsd: last server has exited, flushing export cache > >>>[ 1595.175609] NFSD: Using nfsdcld client tracking operations. > >>>[ 1595.177610] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1595.277962] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 1618.323178] nfsd: last server has exited, flushing export cache > >>>[ 1618.553210] NFSD: Using nfsdcld client tracking operations. > >>>[ 1618.555049] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1620.455011] nfsd: last server has exited, flushing export cache > >>>[ 1620.687824] NFSD: Using nfsdcld client tracking operations. > >>>[ 1620.688329] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1660.003178] nfsd: last server has exited, flushing export cache > >>>[ 1660.236374] NFSD: Using nfsdcld client tracking operations. > >>>[ 1660.237760] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1660.842977] nfsd: last server has exited, flushing export cache > >>>[ 1661.061619] NFSD: Using nfsdcld client tracking operations. > >>>[ 1661.062070] NFSD: starting 15-second grace period (net f0000098) > >>>[ 1661.440842] NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000098) > >>>[ 2704.041055] clocksource: timekeeping watchdog on CPU3: acpi_pm retried 2 times before success > >>>[ 2712.517015] clocksource: timekeeping watchdog on CPU0: acpi_pm retried 2 times before success > >>>[ 6066.999200] clocksource: timekeeping watchdog on CPU1: acpi_pm retried 2 times before success > >>> > >>> > >>>I will update the > >>>>Documentation/filesystems/locking.rst in v10. > >>>> > >>>>>I agree with Chuck that we don't need to reschedule the laundromat, it's > >>>>>OK if it takes longer to get around to cleaning up a dead client. > >>>>Yes, it is now implemented for lock conflict and share reservation > >>>>resolution. I'm doing the same for delegation conflict. > >>>> > >>>>-Dai > >>>> > >>>>>--b. > >>>>> > >>>>>On Mon, Jan 10, 2022 at 10:50:51AM -0800, Dai Ngo wrote: > >>>>>>Hi Bruce, Chuck > >>>>>> > >>>>>>This series of patches implement the NFSv4 Courteous Server. > >>>>>> > >>>>>>A server which does not immediately expunge the state on lease expiration > >>>>>>is known as a Courteous Server. A Courteous Server continues to recognize > >>>>>>previously generated state tokens as valid until conflict arises between > >>>>>>the expired state and the requests from another client, or the server > >>>>>>reboots. > >>>>>> > >>>>>>The v2 patch includes the following: > >>>>>> > >>>>>>. add new callback, lm_expire_lock, to lock_manager_operations to > >>>>>> allow the lock manager to take appropriate action with conflict lock. > >>>>>> > >>>>>>. handle conflicts of NFSv4 locks with NFSv3/NLM and local locks. > >>>>>> > >>>>>>. expire courtesy client after 24hr if client has not reconnected. > >>>>>> > >>>>>>. do not allow expired client to become courtesy client if there are > >>>>>> waiters for client's locks. > >>>>>> > >>>>>>. modify client_info_show to show courtesy client and seconds from > >>>>>> last renew. > >>>>>> > >>>>>>. fix a problem with NFSv4.1 server where the it keeps returning > >>>>>> SEQ4_STATUS_CB_PATH_DOWN in the successful SEQUENCE reply, after > >>>>>> the courtesy client re-connects, causing the client to keep sending > >>>>>> BCTS requests to server. > >>>>>> > >>>>>>The v3 patch includes the following: > >>>>>> > >>>>>>. modified posix_test_lock to check and resolve conflict locks > >>>>>> to handle NLM TEST and NFSv4 LOCKT requests. > >>>>>> > >>>>>>. separate out fix for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > >>>>>> > >>>>>>The v4 patch includes: > >>>>>> > >>>>>>. rework nfsd_check_courtesy to avoid dead lock of fl_lock and client_lock > >>>>>> by asking the laudromat thread to destroy the courtesy client. > >>>>>> > >>>>>>. handle NFSv4 share reservation conflicts with courtesy client. This > >>>>>> includes conflicts between access mode and deny mode and vice versa. > >>>>>> > >>>>>>. drop the patch for back channel stuck in SEQ4_STATUS_CB_PATH_DOWN. > >>>>>> > >>>>>>The v5 patch includes: > >>>>>> > >>>>>>. fix recursive locking of file_rwsem from posix_lock_file. > >>>>>> > >>>>>>. retest with LOCKDEP enabled. > >>>>>> > >>>>>>The v6 patch includes: > >>>>>> > >>>>>>. merge witn 5.15-rc7 > >>>>>> > >>>>>>. fix a bug in nfs4_check_deny_bmap that did not check for matched > >>>>>> nfs4_file before checking for access/deny conflict. This bug causes > >>>>>> pynfs OPEN18 to fail since the server taking too long to release > >>>>>> lots of un-conflict clients' state. > >>>>>> > >>>>>>. enhance share reservation conflict handler to handle case where > >>>>>> a large number of conflict courtesy clients need to be expired. > >>>>>> The 1st 100 clients are expired synchronously and the rest are > >>>>>> expired in the background by the laundromat and NFS4ERR_DELAY > >>>>>> is returned to the NFS client. This is needed to prevent the > >>>>>> NFS client from timing out waiting got the reply. > >>>>>> > >>>>>>The v7 patch includes: > >>>>>> > >>>>>>. Fix race condition in posix_test_lock and posix_lock_inode after > >>>>>> dropping spinlock. > >>>>>> > >>>>>>. Enhance nfsd4_fl_expire_lock to work with with new lm_expire_lock > >>>>>> callback > >>>>>> > >>>>>>. Always resolve share reservation conflicts asynchrously. > >>>>>> > >>>>>>. Fix bug in nfs4_laundromat where spinlock is not used when > >>>>>> scanning cl_ownerstr_hashtbl. > >>>>>> > >>>>>>. Fix bug in nfs4_laundromat where idr_get_next was called > >>>>>> with incorrect 'id'. > >>>>>> > >>>>>>. Merge nfs4_destroy_courtesy_client into nfsd4_fl_expire_lock. > >>>>>> > >>>>>>The v8 patch includes: > >>>>>> > >>>>>>. Fix warning in nfsd4_fl_expire_lock reported by test robot. > >>>>>> > >>>>>>The V9 patch include: > >>>>>> > >>>>>>. Simplify lm_expire_lock API by (1) remove the 'testonly' flag > >>>>>> and (2) specifying return value as true/false to indicate > >>>>>> whether conflict was succesfully resolved. > >>>>>> > >>>>>>. Rework nfsd4_fl_expire_lock to mark client with > >>>>>> NFSD4_DESTROY_COURTESY_CLIENT then tell the laundromat to expire > >>>>>> the client in the background. > >>>>>> > >>>>>>. Add a spinlock in nfs4_client to synchronize access to the > >>>>>> NFSD4_COURTESY_CLIENT and NFSD4_DESTROY_COURTESY_CLIENT flag to > >>>>>> handle race conditions when resolving lock and share reservation > >>>>>> conflict. > >>>>>> > >>>>>>. Courtesy client that was marked as NFSD4_DESTROY_COURTESY_CLIENT > >>>>>> are now consisdered 'dead', waiting for the laundromat to expire > >>>>>> it. This client is no longer allowed to use its states if it > >>>>>> re-connects before the laundromat finishes expiring the client. > >>>>>> > >>>>>> For v4.1 client, the detection is done in the processing of the > >>>>>> SEQUENCE op and returns NFS4ERR_BAD_SESSION to force the client > >>>>>> to re-establish new clientid and session. > >>>>>> For v4.0 client, the detection is done in the processing of the > >>>>>> RENEW and state-related ops and return NFS4ERR_EXPIRE to force > >>>>>> the client to re-establish new clientid.