qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2] fdc: fix media change detection for windows


From: Kevin Wolf
Subject: Re: [Qemu-devel] [PATCH v2] fdc: fix media change detection for windows
Date: Wed, 06 Jun 2012 15:58:47 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1

Am 06.06.2012 15:43, schrieb Pavel Hrdina:
>>> I'll move the code into the end of 'fd_seek' function, where a step is 
>>> guaranteed. Internal seek should also reset the 'media_changed' bit if 
>>> there is a media in the drive. I'll create the qtest tomorrow then I'll 
>>> send another version of this patch.
>> My point is that the success of a seek has nothing to do with the DSKCHG
>> signal. Even if you move the code around, DSKCHG may start to coincide
>> with the condition you really want to check, but it's logically still
>> not what should be checked. What's wrong with !bdrv_is_inserted() in the
>> if condition?
>>
>> If something is wrong with the media_changed handling, then it's a
>> separate bug that should be dealt with in a separate patch.
>>
>> Kevin
> I don't think that is true. Please read this
> http://wiki.osdev.org/Floppy_Disk_Controller#DIR_register.2C_Disk_Change_bit
> and http://wiki.osdev.org/Floppy_Disk_Controller#Seek . Directly it has
> nothing to do with DSKCHG bit, but indirectly seek to different cylinder
> fails if there is no media in drive on real FDC. Only successful seek to
> different cylinder clears the DSKCHG bit.

If you have the choice between a direct way (bdrv_is_inserted) and an
indirect one (DSKCHG), you should always use the directly related one.
It makes the intention of the code clearer and is less likely to break,
because you actually said what you want and not just something that you
believe happens at the same time.

So your explanation confirms for me that the check should be whether a
medium is in the drive, i.e. bdrv_is_inserted().

> That's why I do it this way, because in our FDC emulation we clears the
> DSKCHG bit or not also if you seek to the same cylinder. The function
> 'fd_seek' stands for implied seek which also clears the DSKCHG bit.

That the DSKCHG bit is cleared even if the head doesn't move is a bug in
our code. I accepted Hervé's patches because they were a big
improvement, but they don't implement quite correct behaviour yet.
Relying on buggy behaviour is obviously wrong.

Anyway, I'm not arguing against clearing DSKCHG in this function. I just
say that it addresses an unrelated problem and should be posted in a
different patch. And even then the updated DSKCHG isn't directly related
to the check you're introducing in this patch, so it still would have to
stay bdrv_is_inserted() there.

Kevin



reply via email to

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