Skip to content

Commit 76ea906

Browse files
committed
Bug 1518762 - Avoid error in psutil.disk_io_counters in resourcemonitor r=ahal
Imports giampaolo/psutil@8f99f37 to fix a bug with Linux kernel 4.18+, giampaolo/psutil#1354 (to be included in a future release of psutil, version 5.5.0) Differential Revision: https://phabricator.services.mozilla.com/D16028
1 parent 7bcbc11 commit 76ea906

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

third_party/python/psutil/psutil/_pslinux.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1051,6 +1051,8 @@ def get_partitions():
10511051
# ...unless (Linux 2.6) the line refers to a partition instead
10521052
# of a disk, in which case the line has less fields (7):
10531053
# "3 1 hda1 8 8 8 8"
1054+
# 4.18+ has 4 fields added:
1055+
# "3 0 hda 8 8 8 8 8 8 8 8 8 8 8 0 0 0 0"
10541056
# See:
10551057
# https://www.kernel.org/doc/Documentation/iostats.txt
10561058
# https://www.kernel.org/doc/Documentation/ABI/testing/procfs-diskstats
@@ -1062,7 +1064,7 @@ def get_partitions():
10621064
reads = int(fields[2])
10631065
(reads_merged, rbytes, rtime, writes, writes_merged,
10641066
wbytes, wtime, _, busy_time, _) = map(int, fields[4:14])
1065-
elif fields_len == 14:
1067+
elif fields_len == 14 or fields_len == 18:
10661068
# Linux 2.6+, line referring to a disk
10671069
name = fields[2]
10681070
(reads, reads_merged, rbytes, rtime, writes, writes_merged,

0 commit comments

Comments
 (0)