From: Karel Zak Date: Fri, 15 Jun 2018 10:07:10 +0000 (+0200) Subject: docs: add note about lsblk to TODO X-Git-Tag: v2.33-rc1~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be869840b1921d745a924783bf0ca8bc799d5d03;p=thirdparty%2Futil-linux.git docs: add note about lsblk to TODO Signed-off-by: Karel Zak --- diff --git a/Documentation/TODO b/Documentation/TODO index 95d3950875..78dc32a76f 100644 --- a/Documentation/TODO +++ b/Documentation/TODO @@ -54,6 +54,15 @@ lscpu lsblk ----- + - add --sysroot to read sysfs data from dumps rather than from a real sysfs + - add regression tests based on --sysroot + + - re-write the way how lsblk internally holds info about devices. Now we + compose only output (by libsmartcols). It would be better to have in memory + complete tree of the devices and generate the output from this tree. It will + make code more readable and allow to generate output in more ways -- for + example for RAIDs (https://github.com/karelzak/util-linux/issues/616) + - currently it does not show mountpoint for all devices in btrfs RAID. It's because /proc/#/mountinfo contains reference to the one device only. Maybe we can add some btrfs specific code to provide a better output for FS based stacks. Not sure.