qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/3] geometry detection: use HDIO_GETGEO


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 2/3] geometry detection: use HDIO_GETGEO
Date: Fri, 27 Apr 2012 18:12:13 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120329 Thunderbird/11.0.1

Il 26/04/2012 15:49, Christian Borntraeger ha scritto:
> +#ifdef __linux__
> +    } else if (bdrv_ioctl(bs, HDIO_GETGEO, &geo) == 0) {
> +        *pcyls = geo.cylinders;
> +        *pheads = geo.heads;
> +        *psecs = geo.sectors;
> +        bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
> +#endif

Perhaps you could instead move guess_disk_lchs to target-specific code,
adding add this code to the s390-specific implementation and under
#ifdef __s390__.  For x86 it doesn't make much sense, because a disk's
geometry most likely will be a wrong guess for the geometry that a guest
(for guests that care at all about geometries).

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]