| Server IP : 199.250.200.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : jasonp18 ( 1000) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/proc/self/root/proc/2/cwd/opt/imh-python/lib/python3.9/site-packages/mdstat/ |
Upload File : |
# Copyright 2015, Truveris Inc. All Rights Reserved.
from __future__ import absolute_import
def parse_device_disk(token):
"""Parse a single disk from the header line.
Each disks has at least a device name and a unique number in its array,
after that could follow a list of special flags:
(W) write-mostly
(S) spare disk
(F) faulty disk
(R) replacement disk
Some are mutually exclusive (e.g. can't be spare and faulty).
"""
name, token = token.split("[", 1)
number, flags = token.split("]", 1)
return name, {
"number": int(number),
"write_mostly": "W" in flags,
"faulty": "F" in flags,
"spare": "S" in flags,
"replacement": "R" in flags,
}
def parse_device_disks(tokens):
"""Parse the list of disks from the header line."""
return dict(parse_device_disk(token) for token in tokens)