In the Linux kernel, the following vulnerability has been resolved: block: avoid possible overflow for chunksectors check in blkstacklimits() In blkstacklimits(), we check that the t->chunksectors value is a multiple of the t->physicalblocksize value. However, by finding the chunksectors value in bytes, we may overflow the unsigned int which holds chunksectors, so change the check to be based on sectors.