qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org, freebsd-emulation@freebsd.org
Subject: Re: [Qemu-devel] Re: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5313)
Date: Sat, 27 Sep 2008 10:33:42 -0500	[thread overview]
Message-ID: <48DE5256.5000101@codemonkey.ws> (raw)
In-Reply-To: <20080926220445.GA13099@saturn.kn-bremen.de>

Juergen Lock wrote:
> On Fri, Sep 26, 2008 at 10:04:28AM -0500, Anthony Liguori wrote:
>   
>> Matt wrote:
>>     
>>>>  Here is another experimental update that forces -lthr on 6.x, and
>>>> also updates to qemu svn r5313:
>>>>        http://people.freebsd.org/~nox/qemu/qemu-devel-20080924.patch
>>>>     
>>>>         
>>> I just built this update and it seems to have fixed the issue.  Host
>>> CPU usage again tracks with guest CPU usage and all seems well.  I'll
>>> continue to use this build to see if anything else crops up.
>>>
>>> Please let me know if there is anything other information I can provide.
>>>   
>>>       
>> If ya'll have patches to make QEMU work on FreeBSD, please submit them.  
>> I'm about to commit a patch that's what it took for me to get SVN working 
>> on FreeBSD.
>>
>> The one thing that really tripped me up with the whole aio kld-module 
>> thing.  Perhaps we should detect the presence of the module at run time and 
>> disable aio?  I assume kldload can only be run as root?
>>     
>
> Yes.  Atm the ports print a warning when aio is not loaded:
>   

Yeah, I don't think this is enough.  I'd rather see AIO be disabled when 
modfind("aio") is not available (printing a warning along with that 
would be fine).  A non-privileged user cannot load the aio module so 
it's not very useful to tell them to load it.

>  And here is another patch thats needed on amd64 hosts for tcg (which
> I had posted before:)
>
> Index: qemu/exec.c
> @@ -405,6 +405,28 @@
>              exit(1);
>          }
>      }
> +#elif defined(__FreeBSD__)
> +    {
> +        int flags;
> +        void *addr = NULL;
> +        flags = MAP_PRIVATE | MAP_ANONYMOUS;
> +#if defined(__x86_64__)
> +        /* FreeBSD doesn't have MAP_32BIT, use MAP_FIXED and assume
> +         * 0x40000000 is free */
> +        flags |= MAP_FIXED;
> +        addr = (void *)0x40000000;
> +        /* Cannot map more than that */
> +        if (code_gen_buffer_size > (800 * 1024 * 1024))
> +            code_gen_buffer_size = (800 * 1024 * 1024);
> +#endif
> +        code_gen_buffer = mmap(addr, code_gen_buffer_size,
> +                               PROT_WRITE | PROT_READ | PROT_EXEC, 
> +                               flags, -1, 0);
> +        if (code_gen_buffer == MAP_FAILED) {
> +            fprintf(stderr, "Could not allocate dynamic translator buffer\n");
> +            exit(1);
> +        }
> +    }
>  #else
>      code_gen_buffer = qemu_malloc(code_gen_buffer_size);
>      if (!code_gen_buffer) {
>
> Signed-off-by: Juergen Lock <nox@jelal.kn-bremen.de>
>   

Applied.  Thanks.

>  I'll see if I can prepare another update over the weekend and then go
> thru more of the patches that have accumulated in the port...
>   

That would be great!

Regards,

Anthony Liguori

>  Thanx,
> 	Juergen
>   

  reply	other threads:[~2008-09-27 15:34 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-21 20:40 [Qemu-devel] qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates Juergen Lock
2008-09-22 15:30 ` Anthony Liguori
2008-09-24 21:52   ` Juergen Lock
2008-09-23 13:39 ` [Qemu-devel] " Matt
2008-09-24 22:10   ` [Qemu-devel] Re: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5313) Juergen Lock
2008-09-25  2:54     ` Matt
2008-09-26 15:04       ` Anthony Liguori
2008-09-26 15:52         ` Carlos A. M. dos Santos
2008-09-26 22:04         ` Juergen Lock
2008-09-27 15:33           ` Anthony Liguori [this message]
2008-09-27 22:52             ` Juergen Lock
2008-09-30 14:51               ` Anthony Liguori
2008-09-30 22:17                 ` Juergen Lock
2008-09-27 20:47           ` [Qemu-devel] Re: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5331) Juergen Lock
2008-09-28  4:04             ` Carlos A. M. dos Santos
2008-09-30 22:33               ` Juergen Lock
2008-10-11 21:41                 ` [Qemu-devel] Re: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5457) Juergen Lock
2008-10-18 20:46                   ` [Qemu-devel] Re: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5499) Juergen Lock
2008-09-30 14:52             ` [Qemu-devel] Re: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5331) Anthony Liguori
2008-09-30 22:35               ` Juergen Lock
2008-09-25 20:17     ` [Qemu-devel] [PATCH] preprocessor issue in qemu/patch-block-raw-posix.c (was: qemu svn r5281 on FreeBSD - slow usb, vmwarevga, screen updates... (now updated to r5313)) Juergen Lock
2008-09-25 20:39       ` [Qemu-devel] [PATCH] preprocessor issue in qemu/patch-block-raw-posix.c Anthony Liguori
2008-09-26 21:29         ` Juergen Lock
2008-09-27 15:27           ` Anthony Liguori

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=48DE5256.5000101@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=freebsd-emulation@freebsd.org \
    --cc=qemu-devel@nongnu.org \
    /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 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).