]> git.baikalelectronics.ru Git - kernel.git/commit
s390/dasd: Fix capacity calculation for large volumes
authorPeter Oberparleiter <oberpar@linux.ibm.com>
Fri, 22 Mar 2019 15:01:17 +0000 (16:01 +0100)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Fri, 29 Mar 2019 06:23:44 +0000 (07:23 +0100)
commitb271b13e2ad98879d275f1e96b8a32bbdafb593f
treef50fa36ac4aa5167bce711f9f18c270cc85704c4
parent823593736095ea031361b4c95ee8c45b606142b1
s390/dasd: Fix capacity calculation for large volumes

The DASD driver incorrectly limits the maximum number of blocks of ECKD
DASD volumes to 32 bit numbers. Volumes with a capacity greater than
2^32-1 blocks are incorrectly recognized as smaller volumes.

This results in the following volume capacity limits depending on the
formatted block size:

  BLKSIZE  MAX_GB   MAX_CYL
      512    2047   88b477e
     1024    4095   8676701
     2048    8191  13634816
     4096   16383  23860929

The same problem occurs when a volume with more than 17895697 cylinders
is accessed in raw-track-access mode.

Fix this problem by adding an explicit type cast when calculating the
maximum number of blocks.

Signed-off-by: Peter Oberparleiter <oberpar@linux.ibm.com>
Reviewed-by: Stefan Haberland <sth@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/block/dasd_eckd.c