From: Boaz Harrosh <boaz@xxxxxxxxxxxxx> With current values fdisk does the wrong thing. Setting all values to 1, will make everything nice and easy. Note that current code had a BUG with anything bigger than 64G because hd_geometry->cylinders is ushort and it would overflow at this value. Any way capacity is not calculated through getgeo so it does not matter what you put here. Signed-off-by: Boaz Harrosh <boaz@xxxxxxxxxxxxx> --- drivers/block/prd.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/drivers/block/prd.c b/drivers/block/prd.c index cc0aabf..62af81e 100644 --- a/drivers/block/prd.c +++ b/drivers/block/prd.c @@ -55,10 +55,18 @@ struct prd_device { static int prd_getgeo(struct block_device *bd, struct hd_geometry *geo) { - /* some standard values */ - geo->heads = 1 << 6; - geo->sectors = 1 << 5; - geo->cylinders = get_capacity(bd->bd_disk) >> 11; + /* Just tell fdisk to get out of the way. The math here is so + * convoluted and does not make any sense at all. With all 1s + * The math just gets out of the way. + * NOTE: I was trying to get some values that will make fdisk + * Want to align first sector on 4K (like 8, 16, 20, ... sectors) but + * nothing worked, I searched the net the math is not your regular + * simple multiplication at all. If you managed to get these please + * fix here. For now we use 4k physical sectors for this + */ + geo->heads = 1; + geo->sectors = 1; + geo->cylinders = 1; return 0; } -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html