All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Tosatti <mtosatti@redhat.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: kvm-devel@lists.sourceforge.net, Avi Kivity <avi@qumranet.com>
Subject: Re: [PATCH][RFC] Use pipe() to simulate signalfd()
Date: Tue, 29 Apr 2008 19:37:06 -0300	[thread overview]
Message-ID: <20080429223706.GA18006@dmt> (raw)
In-Reply-To: <1209479294-22325-1-git-send-email-aliguori@us.ibm.com>

Hi Anthony,

How is -no-kvm-irqchip working with the patch?

On Tue, Apr 29, 2008 at 09:28:14AM -0500, Anthony Liguori wrote:
> This patch eliminates the use of sigtimedwait() in the IO thread.  To avoid the
> signal/select race condition, we use a pipe that we write to in the signal
> handlers.  This was suggested by Rusty and seems to work well.
> 
> +static int kvm_eat_signal(CPUState *env, int timeout)
>  {
>      struct timespec ts;
>      int r, e, ret = 0;
>      siginfo_t siginfo;
> +    sigset_t waitset;
>  
> +    sigemptyset(&waitset);
> +    sigaddset(&waitset, SIG_IPI);
>      ts.tv_sec = timeout / 1000;
>      ts.tv_nsec = (timeout % 1000) * 1000000;
> -    r = sigtimedwait(&waitset->sigset, &siginfo, &ts);
> +    qemu_kvm_unlock();
> +    r = sigtimedwait(&waitset, &siginfo, &ts);
> +    qemu_kvm_lock(env);
> +    cpu_single_env = env;

This assignment seems redundant now.

>      if (r == -1 && (errno == EAGAIN || errno == EINTR) && !timeout)
>  	return 0;
>      e = errno;
> -    pthread_mutex_lock(&qemu_mutex);
>      if (env && vcpu)
>          cpu_single_env = vcpu->env;

And this one too.

>  
> @@ -263,12 +238,8 @@ static void pause_all_threads(void)
>  	vcpu_info[i].stop = 1;
>  	pthread_kill(vcpu_info[i].thread, SIG_IPI);

Make sure the IO thread has SIG_IPI blocked (those are for APIC vcpu
initialization only).

> +static void sig_aio_fd_read(void *opaque)
> +{
> +    int signum;
> +    ssize_t len;
> +
> +    do { 
> +	len = read(kvm_sigfd[0], &signum, sizeof(signum));
> +    } while (len == -1 && errno == EINTR);

What is the reason for this loop instead of a straight read? 

Its alright to be interrupted by a signal.

> +    signal(SIGUSR1, sig_aio_handler);
> +    signal(SIGUSR2, sig_aio_handler);
> +    signal(SIGALRM, sig_aio_handler);
> +    signal(SIGIO, sig_aio_handler);
> +
> +    if (pipe(kvm_sigfd) == -1)
> +	abort();

perror() would be nice.

> -        kvm_eat_signal(&io_signal_table, NULL, 1000);
>          pthread_mutex_lock(&qemu_mutex);
> -        cpu_single_env = NULL;
> -        main_loop_wait(0);
> +	main_loop_wait(10);

Increase that 1000 or something. Will make it easier to spot bugs.

Similarly in qemu_kvm_aio_wait().


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

  reply	other threads:[~2008-04-29 22:37 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-29 14:28 [PATCH][RFC] Use pipe() to simulate signalfd() Anthony Liguori
2008-04-29 22:37 ` Marcelo Tosatti [this message]
2008-04-29 22:42   ` Anthony Liguori
2008-04-29 23:13     ` Marcelo Tosatti
2008-04-29 23:15       ` Anthony Liguori
2008-04-29 23:37         ` Marcelo Tosatti
2008-04-29 23:44           ` Anthony Liguori
2008-04-30  0:08             ` Marcelo Tosatti
2008-04-30  0:22               ` Anthony Liguori
2008-04-30  0:38                 ` Marcelo Tosatti
2008-04-30  0:47                   ` Anthony Liguori
2008-04-30  2:16                     ` Marcelo Tosatti

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=20080429223706.GA18006@dmt \
    --to=mtosatti@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=avi@qumranet.com \
    --cc=kvm-devel@lists.sourceforge.net \
    /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.