]> git.proxmox.com Git - pve-installer.git/commitdiff
expand comment on /sys/block/$dev/size
authorStoiko Ivanov <s.ivanov@proxmox.com>
Wed, 27 Nov 2019 16:06:54 +0000 (17:06 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 27 Nov 2019 17:59:51 +0000 (18:59 +0100)
/sys/block/$dev/size is also given in 512b sectors even for 4kn disks.

Since it surprised me - mention it explicitly in the comment

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
proxinstall

index 5d02b345622a2a609f6b25c415b670267fb3d6ef..1a5acc57a4741c52f363c40a02eb91fef8c02e2b 100755 (executable)
@@ -686,7 +686,7 @@ sub hd_size {
 
     foreach my $hd (@$hds) {
        my ($disk, $devname, $size, $model) = @$hd;
-       # size is always in 512B "sectors"! convert to KB
+       # size is always (also for 4kn disks) in 512B "sectors"! convert to KB
        return int($size/2) if $devname eq $dev;
     }