Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932359Ab2F0WEW (ORCPT ); Wed, 27 Jun 2012 18:04:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35442 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932273Ab2F0WEV (ORCPT ); Wed, 27 Jun 2012 18:04:21 -0400 Message-ID: <1340834658.1207.261.camel@bling.home> Subject: Re: [PATCH v2 4/6] kvm: Extend irqfd to support level interrupts From: Alex Williamson To: "Michael S. Tsirkin" Cc: avi@redhat.com, kvm@vger.kernel.org, linux-kernel@vger.kernel.org, jan.kiszka@siemens.com Date: Wed, 27 Jun 2012 16:04:18 -0600 In-Reply-To: <20120627152624.GC21393@redhat.com> References: <20120627044758.23698.249.stgit@bling.home> <20120627050937.23698.68442.stgit@bling.home> <20120627152624.GC21393@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1067 Lines: 33 On Wed, 2012-06-27 at 18:26 +0300, Michael S. Tsirkin wrote: > On Tue, Jun 26, 2012 at 11:09:46PM -0600, Alex Williamson wrote: > > @@ -71,6 +130,14 @@ irqfd_inject(struct work_struct *work) > > kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0); > > } > > > > +static void > > +irqfd_inject_level(struct work_struct *work) > > +{ > > + struct _irqfd *irqfd = container_of(work, struct _irqfd, inject); > > + > > + kvm_set_irq(irqfd->kvm, irqfd->source->id, irqfd->gsi, 1); > > +} > > + > > /* > > * Race-free decouple logic (ordering is critical) > > */ > > > Why is it safe to ignore return value here? > needs a comment. Well, it seems like you and Gleb came to the conclusion that it's safe, but I can really follow from the list thread. Can you explain and I'll add a comment? Thanks, Alex -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/