All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
To: Isaku Yamahata <yamahata@valinux.co.jp>
Cc: samuel.thibault@ens-lyon.org, xen-devel@lists.xensource.com,
	ian.jackson@eu.citrix.com, xen-ia64-devel@lists.xensource.com
Subject: Re: [PATCH 2/2] ioemu: initialize vram area to 0xff
Date: Fri, 16 Jan 2009 16:00:54 +0000	[thread overview]
Message-ID: <4970AF36.8060206@eu.citrix.com> (raw)
In-Reply-To: <20090116052211.GB1565%yamahata@valinux.co.jp>

Isaku Yamahata wrote:

> On Thu, Jan 15, 2009 at 12:49:08PM +0000, Stefano Stabellini wrote:
>> Isaku Yamahata wrote:
>>
>>> +
>>> +    xen_vga_vram_map(vram_addr, vga_ram_size);
>>> +
>>> +    /* Win2K seems to assume that the pattern buffer is at 0xff
>>> +       initially ! */
>>> +    memset(xen_vga_state->vram_ptr, 0xff, vga_ram_size);
>>
>> Are you sure that this is really needed?
>> Isn't the Bios supposed to take care of that?
> 
> To be honest I'm not very sure.
> Without those lines, on ia64 garbage remains on screen after
> the initialization by guest firmware.
> And 'git annotate' told me that the lines came from the following
> change set.
> But you eliminated them by patch 2/4. I don't know why you were able
> to safely eliminate it.
> 
> commit 78e127efdbac82f148ed4f7b42f8f4f2873b4c5b
> Author: bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
> Date:   Tue Jun 8 00:58:26 2004 +0000
> 
>     set memory size to 4MB for 5446 - fixed memory size probe (aka Win2000 bug) - fixed interlace support
>    
>    
>    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@914 c046a42c-6fe2-441c-8c8c-71466251a162
> 


I eliminated them because Windows 2000 worked fine for me even without
those lines.
In any case if you need them we can just add them back, they are
harmless (as long as they are executed after mapping the framebuffer of
course).

 
>>> +    /* If some display is already working, we need to update it now */
>>> +    ds= xen_vga_state->ds;
>>> +    if (ds)
>>> +        dpy_update(ds, 0,0, ds->width,ds->height);
>>
>> I don't think this is needed as well: xen_vga_vram_map is called either
>> during the initialization state or when loading the vm state file.
>> At both points the display shouldn't need any update.
> 
> I just supposed that it had been missed by cut and paset
> because the local variable, ds, isn't eliminated.


No it wasn't a cut and past error, it was deliberate.

> Then what you want is something like the following, isn't it?
> diff --git a/hw/vga.c b/hw/vga.c
> index 8aa61c6..9c45b1b 100644
> --- a/hw/vga.c
> +++ b/hw/vga.c
> @@ -2456,7 +2456,6 @@ void xen_vga_vram_map(uint64_t vram_addr, uint32_t vga_ram_size)
>      xen_pfn_t *pfn_list;
>      int i;
>      void *vram;
> -    DisplayState *ds;
>  
>      fprintf(logfile, "mapping video RAM from %llx\n",
>  	    (unsigned long long)vram_addr);
> 
> 
> 


Yes, I forgot to remove the local variable.

  reply	other threads:[~2009-01-16 16:00 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-15 12:24 [PATCH 2/2] ioemu: initialize vram area to 0xff Isaku Yamahata
2009-01-15 12:49 ` Stefano Stabellini
2009-01-16  5:22   ` Isaku Yamahata
2009-01-16 16:00     ` Stefano Stabellini [this message]
2009-01-16 16:09       ` Ian Jackson
2009-01-16 16:18         ` Stefano Stabellini
2009-01-16 16:27           ` Ian Jackson

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=4970AF36.8060206@eu.citrix.com \
    --to=stefano.stabellini@eu.citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=samuel.thibault@ens-lyon.org \
    --cc=xen-devel@lists.xensource.com \
    --cc=xen-ia64-devel@lists.xensource.com \
    --cc=yamahata@valinux.co.jp \
    /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.