Skip to content

Instantly share code, notes, and snippets.

@niklasfi
Forked from anonymous/gist:9111899
Last active August 29, 2015 13:56
Show Gist options
  • Save niklasfi/9111967 to your computer and use it in GitHub Desktop.
Save niklasfi/9111967 to your computer and use it in GitHub Desktop.
I have three devices which I use for testing a btrfs-based backup solution on a fedora rawhide machine with the 3.14.0-0.rc3.git2.1.fc21.x86_64 kernel. I have created a d=raid1, m=raid1 array by first filling a disk and then running balance -dconvert=raid1 -mconvert=raid1. The second part of my routine is failing a drive and replacing it with the third, spare drive. For the first test, I wanted to go the simplest of all routes: the drive fails, while the btrfs partition is not mounted and I notice this before I even try to mount it again. This should be a wash
1. mount -t btrfs -o degraded /dev/sdg /data #mount btrfs
2. btrfs device add /dev/sdh /data #add new device to btrfs
3. btrfs device delete missing #delete missing device
Now the second step already fails, because btrfs device add never finishes, allthough iotop shows no activity at all. What you see in [03] and [04] is the dmesg output.
btrfs device add /dev/sdg /data
Label: none uuid: 31a65495-5798-4572-9865-2071c22b9d4f
Total devices 2 FS bytes used 59.96GiB
devid 2 size 298.09GiB used 62.03GiB path /dev/sdh
*** Some devices missing
[ 120.967448] BTRFS: device fsid 31a65495-5798-4572-9865-2071c22b9d4f devid 2 transid 641 /dev/sdh
[ 249.009315] SysRq : This sysrq operation is disabled.
[ 273.184251] BTRFS: device fsid 31a65495-5798-4572-9865-2071c22b9d4f devid 2 transid 641 /dev/sdh
[ 273.192316] BTRFS info (device sdh): allowing degraded mounts
[ 273.192323] BTRFS info (device sdh): disk space caching is enabled
[ 273.306884] SELinux: initialized (dev sdh, type btrfs), uses xattr
# this shows up every 120 seconds until 1082 after which it stops showing
[ 481.085288] INFO: task btrfs:3073 blocked for more than 120 seconds.
[ 481.085295] Not tainted 3.14.0-0.rc3.git2.1.fc21.x86_64 #1
[ 481.085299] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[ 481.085301] btrfs D ffff8804685b0000 2248 3073 2611 0x00000080
[ 481.085305] ffff8804359d97f8 0000000000000046 ffff88043ddfb2e0 ffff8804359d9fd8
[ 481.085308] 00000000001d5800 00000000001d5800 ffff88043ddfb2e0 ffff88046e9d6190
[ 481.085311] ffff88047ff412a8 0000000000000002 ffffffff811adf50 ffff8804359d9870
[ 481.085314] Call Trace:
[ 481.085320] [<ffffffff811adf50>] ? wait_on_page_read+0x60/0x60
[ 481.085323] [<ffffffff817d3e4d>] io_schedule+0x9d/0x140
[ 481.085325] [<ffffffff811adf5e>] sleep_on_page+0xe/0x20
[ 481.085327] [<ffffffff817d4232>] __wait_on_bit+0x62/0x90
[ 481.085330] [<ffffffff811aed94>] ? find_get_pages_tag+0x34/0x340
[ 481.085332] [<ffffffff811adcb9>] wait_on_page_bit+0x89/0xb0
[ 481.085334] [<ffffffff810ef300>] ? autoremove_wake_function+0x40/0x40
[ 481.085337] [<ffffffff811addf1>] filemap_fdatawait_range+0x111/0x1e0
[ 481.085354] [<ffffffffa05a427f>] btrfs_wait_ordered_range+0x6f/0x140 [btrfs]
[ 481.085365] [<ffffffffa05ce552>] __btrfs_write_out_cache+0x6a2/0x8c0 [btrfs]
[ 481.085377] [<ffffffffa05ceded>] btrfs_write_out_cache+0x8d/0xe0 [btrfs]
[ 481.085386] [<ffffffffa0578523>] btrfs_write_dirty_block_groups+0x5b3/0x6a0 [btrfs]
[ 481.085397] [<ffffffffa05fea31>] commit_cowonly_roots+0x15a/0x230 [btrfs]
[ 481.085407] [<ffffffffa05896f4>] btrfs_commit_transaction+0x454/0xaa0 [btrfs]
[ 481.085418] [<ffffffffa05b7c36>] btrfs_init_new_device+0xa46/0xed0 [btrfs]
[ 481.085422] [<ffffffff811dc3ff>] ? might_fault+0x5f/0xb0
[ 481.085424] [<ffffffff811dc448>] ? might_fault+0xa8/0xb0
[ 481.085426] [<ffffffff811dc3ff>] ? might_fault+0x5f/0xb0
[ 481.085438] [<ffffffffa05c11d5>] btrfs_ioctl+0xaf5/0x2d70 [btrfs]
[ 481.085441] [<ffffffff810246b5>] ? native_sched_clock+0x35/0xa0
[ 481.085443] [<ffffffff81024729>] ? sched_clock+0x9/0x10
[ 481.085445] [<ffffffff810dd495>] ? local_clock+0x25/0x30
[ 481.085449] [<ffffffff810f5caf>] ? lock_release_holdtime.part.29+0xf/0x190
[ 481.085452] [<ffffffff8135626d>] ? avc_has_perm+0x16d/0x360
[ 481.085453] [<ffffffff81356134>] ? avc_has_perm+0x34/0x360
[ 481.085456] [<ffffffff813589a3>] ? inode_has_perm.isra.51+0x53/0x80
[ 481.085459] [<ffffffff81248700>] do_vfs_ioctl+0x300/0x520
[ 481.085461] [<ffffffff812489c1>] SyS_ioctl+0xa1/0xc0
[ 481.085464] [<ffffffff817e37e9>] system_call_fastpath+0x16/0x1b
[ 481.085465] 4 locks held by btrfs/3073:
[ 481.085466] #0: (&fs_info->volume_mutex){+.+.+.}, at: [<ffffffffa05c11a6>] btrfs_ioctl+0xac6/0x2d70 [btrfs]
[ 481.085479] #1: (sb_internal#2){.+.+..}, at: [<ffffffffa058a02e>] start_transaction+0x2ee/0x620 [btrfs]
[ 481.085490] #2: (&fs_info->reloc_mutex){+.+...}, at: [<ffffffffa058961e>] btrfs_commit_transaction+0x37e/0xaa0 [btrfs]
[ 481.085501] #3: (&fs_info->tree_log_mutex){+.+...}, at: [<ffffffffa0589694>] btrfs_commit_transaction+0x3f4/0xaa0 [btrfs]
# after running echo 1 >/proc/sys/kernel/sysrq
# and echo w >/proc/sysrq-trigger
# this is the additional output
[ 1587.363495] task PC stack pid father
[ 1587.363565] btrfs-transacti D ffff8804685b0000 6440 2740 2 0x00000080
[ 1587.363569] ffff88043d863d28 0000000000000046 ffff88043dedcc50 ffff88043d863fd8
[ 1587.363572] 00000000001d5800 00000000001d5800 ffff88043dedcc50 ffff8804186a4000
[ 1587.363575] ffff88007a4b01e8 ffff88007a4b01e8 0000000000000000 ffff8804187acb40
[ 1587.363578] Call Trace:
[ 1587.363583] [<ffffffff817d3ad9>] schedule+0x29/0x70
[ 1587.363599] [<ffffffffa05887bf>] wait_current_trans.isra.20+0xcf/0x120 [btrfs]
[ 1587.363602] [<ffffffff810ef2c0>] ? abort_exclusive_wait+0xb0/0xb0
[ 1587.363612] [<ffffffffa0589fd0>] start_transaction+0x290/0x620 [btrfs]
[ 1587.363622] [<ffffffffa058a417>] btrfs_attach_transaction+0x17/0x20 [btrfs]
[ 1587.363632] [<ffffffffa0584e97>] transaction_kthread+0x197/0x270 [btrfs]
[ 1587.363642] [<ffffffffa0584d00>] ? btrfs_cleanup_transaction+0x620/0x620 [btrfs]
[ 1587.363645] [<ffffffff810c432f>] kthread+0xff/0x120
[ 1587.363647] [<ffffffff810c4230>] ? insert_kthread_work+0x80/0x80
[ 1587.363650] [<ffffffff817e373c>] ret_from_fork+0x7c/0xb0
[ 1587.363652] [<ffffffff810c4230>] ? insert_kthread_work+0x80/0x80
[ 1587.363654] btrfs D ffff8804685b0000 2248 3073 2611 0x00000080
[ 1587.363657] ffff8804359d97f8 0000000000000046 ffff88043ddfb2e0 ffff8804359d9fd8
[ 1587.363659] 00000000001d5800 00000000001d5800 ffff88043ddfb2e0 ffff88046e9d6190
[ 1587.363662] ffff88047ff412a8 0000000000000002 ffffffff811adf50 ffff8804359d9870
[ 1587.363665] Call Trace:
[ 1587.363667] [<ffffffff811adf50>] ? wait_on_page_read+0x60/0x60
[ 1587.363669] [<ffffffff817d3e4d>] io_schedule+0x9d/0x140
[ 1587.363671] [<ffffffff811adf5e>] sleep_on_page+0xe/0x20
[ 1587.363673] [<ffffffff817d4232>] __wait_on_bit+0x62/0x90
[ 1587.363675] [<ffffffff811aed94>] ? find_get_pages_tag+0x34/0x340
[ 1587.363677] [<ffffffff811adcb9>] wait_on_page_bit+0x89/0xb0
[ 1587.363679] [<ffffffff810ef300>] ? autoremove_wake_function+0x40/0x40
[ 1587.363681] [<ffffffff811addf1>] filemap_fdatawait_range+0x111/0x1e0
[ 1587.363693] [<ffffffffa05a427f>] btrfs_wait_ordered_range+0x6f/0x140 [btrfs]
[ 1587.363705] [<ffffffffa05ce552>] __btrfs_write_out_cache+0x6a2/0x8c0 [btrfs]
[ 1587.363716] [<ffffffffa05ceded>] btrfs_write_out_cache+0x8d/0xe0 [btrfs]
[ 1587.363725] [<ffffffffa0578523>] btrfs_write_dirty_block_groups+0x5b3/0x6a0 [btrfs]
[ 1587.363737] [<ffffffffa05fea31>] commit_cowonly_roots+0x15a/0x230 [btrfs]
[ 1587.363747] [<ffffffffa05896f4>] btrfs_commit_transaction+0x454/0xaa0 [btrfs]
[ 1587.363758] [<ffffffffa05b7c36>] btrfs_init_new_device+0xa46/0xed0 [btrfs]
[ 1587.363761] [<ffffffff811dc3ff>] ? might_fault+0x5f/0xb0
[ 1587.363764] [<ffffffff811dc448>] ? might_fault+0xa8/0xb0
[ 1587.363766] [<ffffffff811dc3ff>] ? might_fault+0x5f/0xb0
[ 1587.363777] [<ffffffffa05c11d5>] btrfs_ioctl+0xaf5/0x2d70 [btrfs]
[ 1587.363780] [<ffffffff810246b5>] ? native_sched_clock+0x35/0xa0
[ 1587.363782] [<ffffffff81024729>] ? sched_clock+0x9/0x10
[ 1587.363784] [<ffffffff810dd495>] ? local_clock+0x25/0x30
[ 1587.363787] [<ffffffff810f5caf>] ? lock_release_holdtime.part.29+0xf/0x190
[ 1587.363790] [<ffffffff8135626d>] ? avc_has_perm+0x16d/0x360
[ 1587.363792] [<ffffffff81356134>] ? avc_has_perm+0x34/0x360
[ 1587.363794] [<ffffffff813589a3>] ? inode_has_perm.isra.51+0x53/0x80
[ 1587.363797] [<ffffffff81248700>] do_vfs_ioctl+0x300/0x520
[ 1587.363799] [<ffffffff812489c1>] SyS_ioctl+0xa1/0xc0
[ 1587.363801] [<ffffffff817e37e9>] system_call_fastpath+0x16/0x1b
[ 1587.363815] Sched Debug Version: v0.11, 3.14.0-0.rc3.git2.1.fc21.x86_64 #1
[ 1587.363817] ktime : 1585113.744823
[ 1587.363818] sched_clk : 1587363.814847
[ 1587.363819] cpu_clk : 1587363.814860
[ 1587.363820] jiffies : 4296252409
[ 1587.363821] sched_clock_stable() : 1
[ 1587.363822] sysctl_sched
[ 1587.363824] .sysctl_sched_latency : 18.000000
[ 1587.363825] .sysctl_sched_min_granularity : 2.250000
[ 1587.363826] .sysctl_sched_wakeup_granularity : 3.000000
[ 1587.363827] .sysctl_sched_child_runs_first : 0
[ 1587.363828] .sysctl_sched_features : 77435
[ 1587.363829] .sysctl_sched_tunable_scaling : 1 (logaritmic)
[ 1587.363831] cpu#0, 3351.879 MHz
[ 1587.363832] .nr_running : 0
[ 1587.363833] .load : 0
[ 1587.363834] .nr_switches : 610615
[ 1587.363835] .nr_load_updates : 231495
[ 1587.363836] .nr_uninterruptible : -481
[ 1587.363837] .next_balance : 4296.252426
[ 1587.363838] .curr->pid : 0
[ 1587.363840] .clock : 1587363.042930
[ 1587.363841] .cpu_load[0] : 0
[ 1587.363842] .cpu_load[1] : 0
[ 1587.363843] .cpu_load[2] : 0
[ 1587.363843] .cpu_load[3] : 0
[ 1587.363844] .cpu_load[4] : 0
[ 1587.363903]
cfs_rq[0]:/autogroup-134
[ 1587.363905] .exec_clock : 0.000000
[ 1587.363909] .MIN_vruntime : 0.000001
[ 1587.363910] .min_vruntime : 9101.274644
[ 1587.363911] .max_vruntime : 0.000001
[ 1587.363912] .spread : 0.000000
[ 1587.363913] .spread0 : -73608.596352
[ 1587.363914] .nr_spread_over : 0
[ 1587.363915] .nr_running : 0
[ 1587.363916] .load : 0
[ 1587.363917] .runnable_load_avg : 0
[ 1587.363918] .blocked_load_avg : 0
[ 1587.363919] .tg_load_contrib : 0
[ 1587.363920] .tg_runnable_contrib : 0
[ 1587.363921] .tg_load_avg : 0
[ 1587.363922] .tg->runnable_avg : 0
[ 1587.363923] .tg->cfs_bandwidth.timer_active: 0
[ 1587.363924] .throttled : 0
[ 1587.363925] .throttle_count : 0
[ 1587.363926] .se->exec_start : 1579918.696818
[ 1587.363927] .se->vruntime : 82701.094517
[ 1587.363928] .se->sum_exec_runtime : 3765.799333
[ 1587.363929] .se->load.weight : 2
[ 1587.363930] .se->avg.runnable_avg_sum : 220
[ 1587.363931] .se->avg.runnable_avg_period : 47748
[ 1587.363932] .se->avg.load_avg_contrib : 0
[ 1587.363933] .se->avg.decay_count : 1506728
[ 1587.363935]
cfs_rq[0]:/autogroup-133
[ 1587.363936] .exec_clock : 0.000000
[ 1587.363937] .MIN_vruntime : 0.000001
[ 1587.363938] .min_vruntime : 26656.424647
[ 1587.363939] .max_vruntime : 0.000001
[ 1587.363940] .spread : 0.000000
[ 1587.363941] .spread0 : -56053.446349
[ 1587.363942] .nr_spread_over : 0
[ 1587.363943] .nr_running : 0
[ 1587.363944] .load : 0
[ 1587.363945] .runnable_load_avg : 0
[ 1587.363946] .blocked_load_avg : 8
[ 1587.363947] .tg_load_contrib : 8
[ 1587.363948] .tg_runnable_contrib : 12
[ 1587.363949] .tg_load_avg : 9
[ 1587.363950] .tg->runnable_avg : 14
[ 1587.363951] .tg->cfs_bandwidth.timer_active: 0
[ 1587.363952] .throttled : 0
[ 1587.363953] .throttle_count : 0
[ 1587.363954] .se->exec_start : 1579912.789429
[ 1587.363955] .se->vruntime : 82709.870996
[ 1587.363956] .se->sum_exec_runtime : 30874.499794
[ 1587.363957] .se->load.weight : 2
[ 1587.363959] .se->avg.runnable_avg_sum : 558
[ 1587.363960] .se->avg.runnable_avg_period : 46366
[ 1587.363961] .se->avg.load_avg_contrib : 11
[ 1587.363962] .se->avg.decay_count : 1506723
[ 1587.363963]
cfs_rq[0]:/
[ 1587.363964] .exec_clock : 0.000000
[ 1587.363966] .MIN_vruntime : 0.000001
[ 1587.363967] .min_vruntime : 82709.870996
[ 1587.363968] .max_vruntime : 0.000001
[ 1587.363969] .spread : 0.000000
[ 1587.363970] .spread0 : 0.000000
[ 1587.363971] .nr_spread_over : 0
[ 1587.363972] .nr_running : 0
[ 1587.363972] .load : 0
[ 1587.363973] .runnable_load_avg : 0
[ 1587.363974] .blocked_load_avg : 0
[ 1587.363975] .tg_load_contrib : 0
[ 1587.363976] .tg_runnable_contrib : 17
[ 1587.363977] .tg_load_avg : 9
[ 1587.363978] .tg->runnable_avg : 40
[ 1587.363979] .tg->cfs_bandwidth.timer_active: 0
[ 1587.363980] .throttled : 0
[ 1587.363981] .throttle_count : 0
[ 1587.363982] .avg->runnable_avg_sum : 803
[ 1587.363983] .avg->runnable_avg_period : 48004
[ 1587.363990]
rt_rq[0]:/
[ 1587.363991] .rt_nr_running : 0
[ 1587.363992] .rt_throttled : 0
[ 1587.363993] .rt_time : 0.000000
[ 1587.363995] .rt_runtime : 950.000000
[ 1587.363996]
runnable tasks:
task PID tree-key switches prio exec-runtime sum-exec sum-sleep
----------------------------------------------------------------------------------------------------------
[ 1587.364001] ksoftirqd/0 3 82697.702829 6420 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364006] kworker/0:0H 5 772.302087 6 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364011] rcu_bh 8 126.381415 2 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364015] migration/0 9 0.000000 1064 0 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364019] watchdog/0 10 -5.846009 400 0 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364025] kdevtmpfs 27 11554.423265 226 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364030] khugepaged 31 82696.490688 231 139 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364036] scsi_eh_2 63 756.036931 56 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364041] scsi_eh_3 65 772.449719 58 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364045] scsi_eh_4 69 755.210316 33 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364050] kworker/0:1H 81 82548.759135 13331 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364056] fw_event0 262 1277.636288 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364061] bioset 356 3762.325252 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364065] kcryptd_io 357 3771.339052 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364070] bioset 359 3780.345945 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364074] jbd2/dm-0-8 383 80106.939117 532 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364079] edac-poller 519 5203.137449 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364083] kvm-irqfd-clean 541 5538.137888 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364088] hd-audio1 657 6236.792029 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364092] hd-audio2 662 6240.417443 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364096] bioset 723 6970.814576 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364100] jbd2/sdb1-8 739 7006.803490 2 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364105] ext4-rsv-conver 740 7015.806580 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364109] kdmflush 754 7165.911973 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364114] jbd2/dm-2-8 774 82548.759092 952 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364118] auditd 780 1.858344 643 116 0 0 0.000000 0.000000 0.000000 0 /autogroup-53
[ 1587.364124] accounts-daemon 805 207.811646 330 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-62
[ 1587.364129] gmain 807 200.091347 112 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-62
[ 1587.364134] irqbalance 811 154.901605 199 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-66
[ 1587.364139] systemd-logind 823 10.615742 566 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-73
[ 1587.364143] dbus-daemon 862 0.735589 4 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-74
[ 1587.364150] gdm-simple-slav 922 111.256235 133 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364156] gdbus 977 10.139022 261 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-91
[ 1587.364160] cfg80211 951 7952.030776 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364165] Xorg 1249 8.152058 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-107
[ 1587.364169] libvirtd 982 382.272085 364 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364173] libvirtd 1030 7.989967 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364178] libvirtd 1031 16.996079 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364182] libvirtd 1032 26.001279 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364186] libvirtd 1033 35.005802 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364190] libvirtd 1034 44.009754 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364195] libvirtd 1035 53.013753 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364199] libvirtd 1036 62.017679 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364203] libvirtd 1037 71.021492 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364207] libvirtd 1038 80.025278 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364212] libvirtd 1039 89.029191 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-93
[ 1587.364216] automount 993 37.760214 5 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-96
[ 1587.364221] dhclient 1357 38.258003 13 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-90
[ 1587.364226] sendmail 1444 19.625937 311 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-119
[ 1587.364231] gdbus 1713 123.961562 105 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364236] gmain 1714 96.944366 6 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364240] (sd-pam) 1731 8.549107 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-131
[ 1587.364244] gnome-keyring-d 1734 50.218307 345 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-132
[ 1587.364249] timer 1862 18.316177 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-132
[ 1587.364253] dconf worker 1863 28.792037 7 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-132
[ 1587.364259] dconf worker 1836 13.816377 17 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364264] dbus-daemon 1839 9073.199810 427 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364269] gdbus 1844 7922.706062 31 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364274] alsa-sink-HDMI 1893 0.000000 20 94 0 0 0.000000 0.000000 0.000000 0 /autogroup-135
[ 1587.364279] alsa-sink-ALC88 1898 0.000000 1500 94 0 0 0.000000 0.000000 0.000000 0 /autogroup-135
[ 1587.364283] alsa-source-ALC 1902 0.000000 15 94 0 0 0.000000 0.000000 0.000000 0 /autogroup-135
[ 1587.364287] alsa-sink-HDMI 1905 0.000000 19 94 0 0 0.000000 0.000000 0.000000 0 /autogroup-135
[ 1587.364292] gvfsd-fuse 1889 57.226479 15 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364297] gdbus 1919 8882.024430 167 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364302] probing-thread 1925 82.326416 5 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-138
[ 1587.364306] cleanup 1927 82.548761 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-138
[ 1587.364311] pool 9730 2667.168743 22 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-138
[ 1587.364315] gvfs-goa-volume 1931 7926.705832 67 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364319] gdbus 1933 7926.937386 122 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364325] gvfs-gphoto2-vo 1945 7926.752324 65 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364331] JS Sour~ Thread 1999 350.126625 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364336] gdbus 1992 312.011240 32 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364340] ibus-daemon 2008 2075.607331 70 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364344] gdbus 2015 204.694666 28 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364349] gmain 2020 2135.280721 8 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364354] cal-client-dbus 2151 296.922506 41 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364359] gmain 2037 255.877777 5 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364364] gdbus 2103 20496.060290 250 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364368] dconf worker 2141 936.936108 34 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364373] gmain 2143 947.693486 6 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364377] pool 2172 736.909293 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364382] pool 2174 745.857632 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364386] evolution-alarm 2156 736.271569 10 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364391] dconf worker 2148 714.401201 24 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364395] gmain 2150 15076.745465 59 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364401] gmain 2263 565.730372 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364405] gnome-terminal- 2291 9101.274644 20600 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364409] gnome-pty-helpe 2374 5263.583034 8 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364414] firefox 2505 26656.424647 179724 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364421] gmain 2555 15233.963102 35 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364425] mozStorage #4 2589 21734.476234 236 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364432] btrfs-genwork-1 2723 81862.397054 14 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364436] btrfs-fixup-1 2726 78776.010787 19 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364440] btrfs-endio-1 2727 78776.012268 21 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364445] btrfs-freespace 2733 78776.014732 19 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364451] kworker/0:0 5560 82401.599839 9959 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364456] mozStorage #1 5749 15390.313964 27 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364461] mozStorage #4 5780 15365.001268 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364465] dconf worker 5781 15345.763148 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364470] thunderbird 5819 26357.313449 373 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364476] thunderbird 6209 26354.166128 266 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364481] thunderbird 6257 26358.090993 230 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364485] thunderbird 6496 26367.135018 117 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364490] gmain 7290 6347.042480 863 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-151
[ 1587.364495] gdbus 7291 6346.911628 9452 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-151
[ 1587.364499] kworker/0:2 7543 82401.685357 5169 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364503] sudo 7615 823.635876 31 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-143
[ 1587.364509] kworker/0:1 9755 82700.878909 402 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364514] cpu#1, 3351.879 MHz
[ 1587.364515] .nr_running : 0
[ 1587.364516] .load : 0
[ 1587.364517] .nr_switches : 626025
[ 1587.364518] .nr_load_updates : 246002
[ 1587.364519] .nr_uninterruptible : 105
[ 1587.364520] .next_balance : 4296.252429
[ 1587.364521] .curr->pid : 0
[ 1587.364522] .clock : 1587363.398033
[ 1587.364523] .cpu_load[0] : 0
[ 1587.364524] .cpu_load[1] : 0
[ 1587.364525] .cpu_load[2] : 0
[ 1587.364526] .cpu_load[3] : 0
[ 1587.364527] .cpu_load[4] : 0
[ 1587.364529]
cfs_rq[1]:/autogroup-133
[ 1587.364530] .exec_clock : 0.000000
[ 1587.364531] .MIN_vruntime : 0.000001
[ 1587.364532] .min_vruntime : 23279.779680
[ 1587.364533] .max_vruntime : 0.000001
[ 1587.364534] .spread : 0.000000
[ 1587.364535] .spread0 : -59430.091316
[ 1587.364536] .nr_spread_over : 0
[ 1587.364537] .nr_running : 0
[ 1587.364538] .load : 0
[ 1587.364539] .runnable_load_avg : 0
[ 1587.364540] .blocked_load_avg : 0
[ 1587.364541] .tg_load_contrib : 0
[ 1587.364542] .tg_runnable_contrib : 0
[ 1587.364543] .tg_load_avg : 9
[ 1587.364544] .tg->runnable_avg : 14
[ 1587.364545] .tg->cfs_bandwidth.timer_active: 0
[ 1587.364546] .throttled : 0
[ 1587.364547] .throttle_count : 0
[ 1587.364548] .se->exec_start : 1579735.908444
[ 1587.364549] .se->vruntime : 80898.260555
[ 1587.364550] .se->sum_exec_runtime : 24001.273186
[ 1587.364551] .se->load.weight : 2
[ 1587.364553] .se->avg.runnable_avg_sum : 6
[ 1587.364553] .se->avg.runnable_avg_period : 48095
[ 1587.364554] .se->avg.load_avg_contrib : 0
[ 1587.364555] .se->avg.decay_count : 1506554
[ 1587.364557]
cfs_rq[1]:/autogroup-107
[ 1587.364558] .exec_clock : 0.000000
[ 1587.364559] .MIN_vruntime : 0.000001
[ 1587.364560] .min_vruntime : 19805.511476
[ 1587.364561] .max_vruntime : 0.000001
[ 1587.364562] .spread : 0.000000
[ 1587.364563] .spread0 : -62904.359520
[ 1587.364564] .nr_spread_over : 0
[ 1587.364565] .nr_running : 0
[ 1587.364566] .load : 0
[ 1587.364567] .runnable_load_avg : 0
[ 1587.364568] .blocked_load_avg : 6
[ 1587.364569] .tg_load_contrib : 6
[ 1587.364570] .tg_runnable_contrib : 11
[ 1587.364571] .tg_load_avg : 6
[ 1587.364572] .tg->runnable_avg : 11
[ 1587.364573] .tg->cfs_bandwidth.timer_active: 0
[ 1587.364574] .throttled : 0
[ 1587.364575] .throttle_count : 0
[ 1587.364576] .se->exec_start : 1579823.500030
[ 1587.364577] .se->vruntime : 80907.779656
[ 1587.364578] .se->sum_exec_runtime : 19805.104641
[ 1587.364579] .se->load.weight : 2
[ 1587.364581] .se->avg.runnable_avg_sum : 547
[ 1587.364582] .se->avg.runnable_avg_period : 47137
[ 1587.364583] .se->avg.load_avg_contrib : 9
[ 1587.364584] .se->avg.decay_count : 1506638
[ 1587.364585]
cfs_rq[1]:/
[ 1587.364586] .exec_clock : 0.000000
[ 1587.364587] .MIN_vruntime : 0.000001
[ 1587.364588] .min_vruntime : 80907.779656
[ 1587.364589] .max_vruntime : 0.000001
[ 1587.364590] .spread : 0.000000
[ 1587.364591] .spread0 : -1802.091340
[ 1587.364592] .nr_spread_over : 0
[ 1587.364593] .nr_running : 0
[ 1587.364594] .load : 0
[ 1587.364595] .runnable_load_avg : 0
[ 1587.364596] .blocked_load_avg : 9
[ 1587.364597] .tg_load_contrib : 9
[ 1587.364598] .tg_runnable_contrib : 12
[ 1587.364599] .tg_load_avg : 9
[ 1587.364600] .tg->runnable_avg : 40
[ 1587.364601] .tg->cfs_bandwidth.timer_active: 0
[ 1587.364602] .throttled : 0
[ 1587.364603] .throttle_count : 0
[ 1587.364604] .avg->runnable_avg_sum : 560
[ 1587.364605] .avg->runnable_avg_period : 47390
[ 1587.364608]
rt_rq[1]:/
[ 1587.364609] .rt_nr_running : 0
[ 1587.364610] .rt_throttled : 0
[ 1587.364611] .rt_time : 0.000000
[ 1587.364612] .rt_runtime : 950.000000
[ 1587.364613]
runnable tasks:
task PID tree-key switches prio exec-runtime sum-exec sum-sleep
----------------------------------------------------------------------------------------------------------
[ 1587.364616] rcu_sched 7 80898.797934 101678 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364620] watchdog/1 11 -2.907044 401 0 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364625] migration/1 12 0.000000 1052 0 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364628] ksoftirqd/1 13 80893.477758 3161 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364633] kworker/1:0H 15 30.805292 7 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364639] kworker/1:1 39 80376.871439 19020 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364645] kworker/1:1H 84 76738.634435 133 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364649] scsi_eh_6 256 449.542935 2 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364653] scsi_tmf_6 257 456.792249 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364658] scsi_eh_8 260 980.996381 4 120 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364662] scsi_tmf_8 261 474.807732 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364666] ttm_swap 265 504.968361 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364670] poll_0_status 279 933.071368 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364676] hd-audio0 661 5770.548316 2 100 0 0 0.000000 0.000000 0.000000 0 /
[ 1587.364682] gmain 1326 2048.778938 2 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-59
[ 1587.364686] rtkit-daemon 920 9.297910 260 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-61
[ 1587.364691] cupsd 814 16.614017 76 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-68
[ 1587.364696] dbus-daemon 824 520.935114 16492 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-74
[ 1587.364700] atd 826 0.401143 6 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-76
[ 1587.364705] gdbus 863 219.911225 110 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364709] mcelog 850 1.438621 3 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-86
[ 1587.364714] gdbus 937 219.567515 174 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364718] gmain 942 217.043090 9 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364722] NetworkManager 925 93.904515 923 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-90
[ 1587.364727] Xorg 973 19805.511476 286052 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-107
[ 1587.364732] automount 1040 14.999998 20 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-96
[ 1587.364737] gmain 1515 8.351196 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-126
[ 1587.364742] gdm-session-wor 1712 235.293744 109 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-81
[ 1587.364746] gnome-keyring-d 1736 7.996492 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-132
[ 1587.364751] gnome-session 1784 22069.380651 557 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364755] gdbus 1845 19629.937948 135 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364759] gmain 1848 1184.336508 25 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364764] dbus-daemon 1801 8.006080 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364768] gmain 1840 56.508260 1 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364773] gvfsd 1850 10961.973736 122 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364777] dconf worker 1881 1054.940919 116 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364782] gmain 1888 13255.319924 56 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364786] alsa-source-USB 1908 0.000000 240 94 0 0 0.000000 0.000000 0.000000 0 /autogroup-135
[ 1587.364791] gvfsd-fuse 1877 84.970471 11 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364795] gvfs-fuse-sub 1892 725.084956 4 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364801] gdbus 1947 186.390424 25 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364805] dconf worker 1948 157.361287 5 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364809] gdbus 1954 11222.885918 112 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364814] gvfs-afc-volume 1966 11222.662322 56 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364818] gvfs-afc-volume 1970 10951.781109 8 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-134
[ 1587.364822] JS GC Helper 1998 22797.970469 23 120 0 0 0.000000 0.000000 0.000000 0 /autogroup-133
[ 1587.364827] gmain 2024 23270.707627
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment