mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Gregory Haskins" <ghaskins@novell.com>
To: "Julia Lawall" <julia@diku.dk>, "Avi Kivity" <avi@redhat.com>,
	"Gleb Natapov" <gleb@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Marcelo Tosatti" <mtosatti@redhat.com>, <kvm@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] kvm: only allow one gsi per fd
Date: Wed, 13 Jan 2010 11:22:50 -0700	[thread overview]
Message-ID: <4B4DC92A0200005A0005D0C4@sinclair.provo.novell.com> (raw)
In-Reply-To: <20100113165809.GA13334@redhat.com>

>>> On 1/13/2010 at 11:58 AM, in message <20100113165809.GA13334@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com> wrote: 
> Looks like repeatedly binding same fd to multiple gsi's with irqfd can
> use up a ton of kernel memory for irqfd structures.
> 
> A simple fix is to allow each fd to only trigger one gsi: triggering a
> srorm of interrupts in guest is likely useless anyway, and we can do it
> by binding a single gsi to many interrupts if we really want to.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Seems reasonable to me.

Acked-by: Gregory Haskins <ghaskins@novell.com>

> ---
> 
> This patch is IMO a good candidate for 2.6.33 and 2.6.32.x.
> 
>  virt/kvm/eventfd.c |   15 +++++++++++++--
>  1 files changed, 13 insertions(+), 2 deletions(-)
> 
> diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
> index 30f70fd..62e4cd9 100644
> --- a/virt/kvm/eventfd.c
> +++ b/virt/kvm/eventfd.c
> @@ -166,7 +166,7 @@ irqfd_ptable_queue_proc(struct file *file, 
> wait_queue_head_t *wqh,
>  static int
>  kvm_irqfd_assign(struct kvm *kvm, int fd, int gsi)
>  {
> -	struct _irqfd *irqfd;
> +	struct _irqfd *irqfd, *tmp;
>  	struct file *file = NULL;
>  	struct eventfd_ctx *eventfd = NULL;
>  	int ret;
> @@ -203,9 +203,20 @@ kvm_irqfd_assign(struct kvm *kvm, int fd, int gsi)
>  	init_waitqueue_func_entry(&irqfd->wait, irqfd_wakeup);
>  	init_poll_funcptr(&irqfd->pt, irqfd_ptable_queue_proc);
>  
> +	spin_lock_irq(&kvm->irqfds.lock);
> +
> +	ret = 0;
> +	list_for_each_entry(tmp, &kvm->irqfds.items, list) {
> +		if (irqfd->eventfd != tmp->eventfd)
> +			continue;
> +		/* This fd is used for another irq already. */
> +		ret = -EBUSY;
> +		spin_unlock_irq(&kvm->irqfds.lock);
> +		goto fail;
> +	}
> +
>  	events = file->f_op->poll(file, &irqfd->pt);
>  
> -	spin_lock_irq(&kvm->irqfds.lock);
>  	list_add_tail(&irqfd->list, &kvm->irqfds.items);
>  	spin_unlock_irq(&kvm->irqfds.lock);
>  





  reply	other threads:[~2010-01-13 18:42 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-13 16:58 Michael S. Tsirkin
2010-01-13 18:22 ` Gregory Haskins [this message]
2010-01-17 12:40 ` Avi Kivity
2010-01-20 11:36   ` Michael S. Tsirkin
2010-01-20 11:52     ` Avi Kivity
2010-01-20 11:59       ` Michael S. Tsirkin
2010-01-20 12:11         ` Avi Kivity

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=4B4DC92A0200005A0005D0C4@sinclair.provo.novell.com \
    --to=ghaskins@novell.com \
    --cc=avi@redhat.com \
    --cc=gleb@redhat.com \
    --cc=julia@diku.dk \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=mtosatti@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome