qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl
@ 2010-01-12 15:29 Cole Robinson
  2010-01-12 17:12 ` Christoph Hellwig
  2010-01-13 23:07 ` Anthony Liguori
  0 siblings, 2 replies; 4+ messages in thread
From: Cole Robinson @ 2010-01-12 15:29 UTC (permalink / raw)
  To: qemu-devel; +Cc: hch, Cole Robinson

Current legacy floppy detection is hardcoded based on source file
name. Make this smarter by attempting a floppy specific ioctl.

v2: Give ioctl check higher priority than filename check,
    s/IDE/legacy/

Signed-off-by: Cole Robinson <crobinso@redhat.com>
---
 block/raw-posix.c |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/block/raw-posix.c b/block/raw-posix.c
index b7254d8..d67280e 100644
--- a/block/raw-posix.c
+++ b/block/raw-posix.c
@@ -1055,9 +1055,25 @@ static int floppy_open(BlockDriverState *bs, const char *filename, int flags)
 
 static int floppy_probe_device(const char *filename)
 {
+    int fd, ret, prio;
+    struct floppy_struct fdparam;
+
     if (strstart(filename, "/dev/fd", NULL))
-        return 100;
-    return 0;
+        prio = 50;
+
+    fd = open(filename, O_RDONLY | O_NONBLOCK);
+    if (fd < 0) {
+        goto out;
+    }
+
+    /* Attempt to detect via a floppy specific ioctl */
+    ret = ioctl(fd, FDGETPRM, &fdparam);
+    if (!(ret < 0 && errno == EINVAL))
+        prio = 100;
+
+    close(fd);
+out:
+    return prio;
 }
 
 
-- 
1.6.5.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl
  2010-01-12 15:29 [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl Cole Robinson
@ 2010-01-12 17:12 ` Christoph Hellwig
  2010-01-13 23:07 ` Anthony Liguori
  1 sibling, 0 replies; 4+ messages in thread
From: Christoph Hellwig @ 2010-01-12 17:12 UTC (permalink / raw)
  To: Cole Robinson; +Cc: qemu-devel, hch

Looks good,

same comment applies as to the cdrom one.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl
  2010-01-12 15:29 [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl Cole Robinson
  2010-01-12 17:12 ` Christoph Hellwig
@ 2010-01-13 23:07 ` Anthony Liguori
  2010-01-13 23:44   ` Cole Robinson
  1 sibling, 1 reply; 4+ messages in thread
From: Anthony Liguori @ 2010-01-13 23:07 UTC (permalink / raw)
  To: Cole Robinson; +Cc: qemu-devel, hch

On 01/12/2010 09:29 AM, Cole Robinson wrote:
> Current legacy floppy detection is hardcoded based on source file
> name. Make this smarter by attempting a floppy specific ioctl.
>
> v2: Give ioctl check higher priority than filename check,
>      s/IDE/legacy/
>
> Signed-off-by: Cole Robinson<crobinso@redhat.com>
> ---
>   block/raw-posix.c |   20 ++++++++++++++++++--
>   1 files changed, 18 insertions(+), 2 deletions(-)
>
> diff --git a/block/raw-posix.c b/block/raw-posix.c
> index b7254d8..d67280e 100644
> --- a/block/raw-posix.c
> +++ b/block/raw-posix.c
> @@ -1055,9 +1055,25 @@ static int floppy_open(BlockDriverState *bs, const char *filename, int flags)
>
>   static int floppy_probe_device(const char *filename)
>   {
> +    int fd, ret, prio;
> +    struct floppy_struct fdparam;
> +
>       if (strstart(filename, "/dev/fd", NULL))
> -        return 100;
> -    return 0;
> +        prio = 50;
> +
> +    fd = open(filename, O_RDONLY | O_NONBLOCK);
> +    if (fd<  0) {
> +        goto out;
> +    }
> +
> +    /* Attempt to detect via a floppy specific ioctl */
> +    ret = ioctl(fd, FDGETPRM,&fdparam);
> +    if (!(ret<  0&&  errno == EINVAL))
>    

These two patches break boot from an image file.  My suspicious is that 
it's failing because the errno is ENOSYS.

You probably want to do the opposite and check for a positive return 
result instead of checking for the absence of a positive result.

Regards,

Anthony Liguori

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl
  2010-01-13 23:07 ` Anthony Liguori
@ 2010-01-13 23:44   ` Cole Robinson
  0 siblings, 0 replies; 4+ messages in thread
From: Cole Robinson @ 2010-01-13 23:44 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, hch

On 01/13/2010 06:07 PM, Anthony Liguori wrote:
> On 01/12/2010 09:29 AM, Cole Robinson wrote:
>> Current legacy floppy detection is hardcoded based on source file
>> name. Make this smarter by attempting a floppy specific ioctl.
>>
>> v2: Give ioctl check higher priority than filename check,
>>      s/IDE/legacy/
>>
>> Signed-off-by: Cole Robinson<crobinso@redhat.com>
>> ---
>>   block/raw-posix.c |   20 ++++++++++++++++++--
>>   1 files changed, 18 insertions(+), 2 deletions(-)
>>
>> diff --git a/block/raw-posix.c b/block/raw-posix.c
>> index b7254d8..d67280e 100644
>> --- a/block/raw-posix.c
>> +++ b/block/raw-posix.c
>> @@ -1055,9 +1055,25 @@ static int floppy_open(BlockDriverState *bs,
>> const char *filename, int flags)
>>
>>   static int floppy_probe_device(const char *filename)
>>   {
>> +    int fd, ret, prio;
>> +    struct floppy_struct fdparam;
>> +
>>       if (strstart(filename, "/dev/fd", NULL))
>> -        return 100;
>> -    return 0;
>> +        prio = 50;
>> +
>> +    fd = open(filename, O_RDONLY | O_NONBLOCK);
>> +    if (fd<  0) {
>> +        goto out;
>> +    }
>> +
>> +    /* Attempt to detect via a floppy specific ioctl */
>> +    ret = ioctl(fd, FDGETPRM,&fdparam);
>> +    if (!(ret<  0&&  errno == EINVAL))
>>    
> 
> These two patches break boot from an image file.  My suspicious is that
> it's failing because the errno is ENOSYS.
> 

Ugh, sorry about that.

> You probably want to do the opposite and check for a positive return
> result instead of checking for the absence of a positive result.
> 

Sounds good.

Thanks,
Cole

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-01-13 23:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-12 15:29 [Qemu-devel] [PATCH v2] raw-posix: Detect legacy floppy via ioctl Cole Robinson
2010-01-12 17:12 ` Christoph Hellwig
2010-01-13 23:07 ` Anthony Liguori
2010-01-13 23:44   ` Cole Robinson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).