All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: Michael Tokarev <mjt@tls.msk.ru>, KVM list <kvm@vger.kernel.org>,
	qemu-devel <qemu-devel@nongnu.org>,
	Brian Kress <kressb@moose.net>
Subject: Re: Another SIGFPE in display code, now in cirrus
Date: Wed, 12 May 2010 15:36:28 +0300	[thread overview]
Message-ID: <4BEAA0CC.4090906@redhat.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1005121316240.11380@kaball-desktop>

On 05/12/2010 03:20 PM, Stefano Stabellini wrote:
> On Mon, 10 May 2010, Avi Kivity wrote:
>    
>> On 05/10/2010 10:41 AM, Avi Kivity wrote:
>>      
>>> On 05/06/2010 11:07 PM, Michael Tokarev wrote:
>>>        
>>>> There was a bug recently fixed in vnc code.  Apparently
>>>> there's something similar in the cirrus emulation as well.
>>>> Here it triggers _always_ (including old versions of kvm)
>>>> when running windows NT and hitting "test" button in its
>>>> display resolution dialog.  Here's what gdb is to say:
>>>>
>>>> Program received signal SIGFPE, Arithmetic exception.
>>>> [Switching to Thread 0xf76cab70 (LWP 580)]
>>>> 0x080c5e45 in cirrus_do_copy (s=0x86134dc, dst=960000, src=0, w=2, h=9)
>>>>      at hw/cirrus_vga.c:687
>>>> 687        sx = (src % ABS(s->cirrus_blt_srcpitch)) / depth;
>>>> (gdb) p depth
>>>> $1 = 2
>>>> (gdb) p s->cirrus_blt_srcpitch
>>>> $2 = 0
>>>>
>>>>
>>>> This qemu-kvm-0.12.3 - actually a debian package of it,
>>>> but there's no patches relevant to video applied.
>>>>
>>>> Anything can be done with it?
>>>>          
>>> Well, it's trivial to check for the condition, but how to handle it?
>>>
>>>        
>> That code is wrong.  It shouldn't be using the bitblt source pitch, but
>> the actual display pitch.  If the two are different, then the blt
>> doesn't actually affect a rectangular region, but instead a parallelogram.
>>
>>      
> Reading some documention about the Cirrus card we are emulating, it
> seems that the source pitch is ignored in video to video operations, so
> I think you are right here.
>    

 From what I've read I don't think it's ignored.  Rather there are two 
separate pitches, one for bitblt and one for display.

I think the code should be something like

     if bitblt destination intersects display memory:
         if bitblt pitch == display pitch
            use console_copy
        else
            invalidate entire display

> The Windows NT driver probably relies on this behaviour and doesn't set
> the source pitch properly before the bitblt.
>    

Note it's just during mode changes.  During normal operation I'm sure 
the pitches are equal.

>> 31c05501c says this breaks bitblt, but I can't see why this is true.
>> The copy should update the display.  This is probably due to a
>> miscalculation of the affected region, and now we have two invalidates
>> instead of one, reducing performance.
>>
>>      
> I agree with you: qemu_console_copy does imply that the copied portion
> of the screen changed, so there is no reason to invalidate it again if
> qemu_console_copy is called.
>    

Well, we can't just revert 31c05501c.  There's probably another bug 
involved.

-- 
Do not meddle in the internals of kernels, for they are subtle and quick to panic.


WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: Brian Kress <kressb@moose.net>, Michael Tokarev <mjt@tls.msk.ru>,
	qemu-devel <qemu-devel@nongnu.org>,
	KVM list <kvm@vger.kernel.org>
Subject: [Qemu-devel] Re: Another SIGFPE in display code, now in cirrus
Date: Wed, 12 May 2010 15:36:28 +0300	[thread overview]
Message-ID: <4BEAA0CC.4090906@redhat.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1005121316240.11380@kaball-desktop>

On 05/12/2010 03:20 PM, Stefano Stabellini wrote:
> On Mon, 10 May 2010, Avi Kivity wrote:
>    
>> On 05/10/2010 10:41 AM, Avi Kivity wrote:
>>      
>>> On 05/06/2010 11:07 PM, Michael Tokarev wrote:
>>>        
>>>> There was a bug recently fixed in vnc code.  Apparently
>>>> there's something similar in the cirrus emulation as well.
>>>> Here it triggers _always_ (including old versions of kvm)
>>>> when running windows NT and hitting "test" button in its
>>>> display resolution dialog.  Here's what gdb is to say:
>>>>
>>>> Program received signal SIGFPE, Arithmetic exception.
>>>> [Switching to Thread 0xf76cab70 (LWP 580)]
>>>> 0x080c5e45 in cirrus_do_copy (s=0x86134dc, dst=960000, src=0, w=2, h=9)
>>>>      at hw/cirrus_vga.c:687
>>>> 687        sx = (src % ABS(s->cirrus_blt_srcpitch)) / depth;
>>>> (gdb) p depth
>>>> $1 = 2
>>>> (gdb) p s->cirrus_blt_srcpitch
>>>> $2 = 0
>>>>
>>>>
>>>> This qemu-kvm-0.12.3 - actually a debian package of it,
>>>> but there's no patches relevant to video applied.
>>>>
>>>> Anything can be done with it?
>>>>          
>>> Well, it's trivial to check for the condition, but how to handle it?
>>>
>>>        
>> That code is wrong.  It shouldn't be using the bitblt source pitch, but
>> the actual display pitch.  If the two are different, then the blt
>> doesn't actually affect a rectangular region, but instead a parallelogram.
>>
>>      
> Reading some documention about the Cirrus card we are emulating, it
> seems that the source pitch is ignored in video to video operations, so
> I think you are right here.
>    

 From what I've read I don't think it's ignored.  Rather there are two 
separate pitches, one for bitblt and one for display.

I think the code should be something like

     if bitblt destination intersects display memory:
         if bitblt pitch == display pitch
            use console_copy
        else
            invalidate entire display

> The Windows NT driver probably relies on this behaviour and doesn't set
> the source pitch properly before the bitblt.
>    

Note it's just during mode changes.  During normal operation I'm sure 
the pitches are equal.

>> 31c05501c says this breaks bitblt, but I can't see why this is true.
>> The copy should update the display.  This is probably due to a
>> miscalculation of the affected region, and now we have two invalidates
>> instead of one, reducing performance.
>>
>>      
> I agree with you: qemu_console_copy does imply that the copied portion
> of the screen changed, so there is no reason to invalidate it again if
> qemu_console_copy is called.
>    

Well, we can't just revert 31c05501c.  There's probably another bug 
involved.

-- 
Do not meddle in the internals of kernels, for they are subtle and quick to panic.

  reply	other threads:[~2010-05-12 12:36 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-06 20:07 Another SIGFPE in display code, now in cirrus Michael Tokarev
2010-05-07  7:54 ` Michael Tokarev
2010-05-10  7:41 ` Avi Kivity
2010-05-10  7:41   ` [Qemu-devel] " Avi Kivity
2010-05-10  8:15   ` Avi Kivity
2010-05-10  8:15     ` [Qemu-devel] " Avi Kivity
2010-05-12 12:20     ` Stefano Stabellini
2010-05-12 12:20       ` [Qemu-devel] " Stefano Stabellini
2010-05-12 12:36       ` Avi Kivity [this message]
2010-05-12 12:36         ` Avi Kivity
2010-05-12 13:45         ` Stefano Stabellini
2010-05-12 13:45           ` [Qemu-devel] " Stefano Stabellini
2010-05-12 14:27           ` Avi Kivity
2010-05-12 14:27             ` [Qemu-devel] " Avi Kivity
2010-05-12 15:57             ` Stefano Stabellini
2010-05-12 15:57               ` [Qemu-devel] " Stefano Stabellini
2010-05-12 16:07               ` Avi Kivity
2010-05-12 16:07                 ` [Qemu-devel] " Avi Kivity
2010-05-12 16:55                 ` Stefano Stabellini
2010-05-12 16:55                   ` [Qemu-devel] " Stefano Stabellini
2010-05-12 16:57                   ` Avi Kivity
2010-05-12 16:57                     ` [Qemu-devel] " Avi Kivity
2010-05-12 17:07                   ` Jamie Lokier
2010-05-12 17:07                     ` Jamie Lokier
2010-05-12 18:11                     ` Stefano Stabellini
2010-05-12 18:11                       ` Stefano Stabellini
2010-05-12 19:12                       ` Michael Tokarev
2010-05-12 19:12                         ` Michael Tokarev
2010-05-13  6:49                       ` Avi Kivity
2010-05-13  6:49                         ` Avi Kivity
2010-05-13 13:48                         ` Stefano Stabellini
2010-05-13 13:48                           ` Stefano Stabellini
2010-05-13 14:13                           ` Michael Tokarev
2010-05-13 14:13                             ` Michael Tokarev
2010-05-13 18:03                             ` Stefano Stabellini
2010-05-13 18:03                               ` Stefano Stabellini
2010-05-13 16:04                           ` Jamie Lokier
2010-05-13 16:04                             ` Jamie Lokier
2010-05-28 20:51                       ` Michael Tokarev
2010-05-28 20:51                         ` Michael Tokarev
2010-05-30  8:24                       ` Avi Kivity
2010-05-30  8:24                         ` Avi Kivity
2010-05-13  7:36               ` Paolo Bonzini
2010-05-13  7:36                 ` [Qemu-devel] " Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4BEAA0CC.4090906@redhat.com \
    --to=avi@redhat.com \
    --cc=kressb@moose.net \
    --cc=kvm@vger.kernel.org \
    --cc=mjt@tls.msk.ru \
    --cc=qemu-devel@nongnu.org \
    --cc=stefano.stabellini@eu.citrix.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.