From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5NDx-0000L7-9n for qemu-devel@nongnu.org; Wed, 07 Mar 2012 15:12:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S5NDZ-0005Hk-0M for qemu-devel@nongnu.org; Wed, 07 Mar 2012 15:12:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42319) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5NDY-0005HY-O4 for qemu-devel@nongnu.org; Wed, 07 Mar 2012 15:12:12 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q27KCBRq017679 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 7 Mar 2012 15:12:11 -0500 Message-ID: <1331151130.29701.362.camel@bling.home> From: Alex Williamson Date: Wed, 07 Mar 2012 13:12:10 -0700 In-Reply-To: <4F572812.4050706@redhat.com> References: <20120307000340.3079.87515.stgit@bling.home> <20120307001419.3079.96413.stgit@bling.home> <4F572812.4050706@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 3/6] pci: Add notifier for device probing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: ddutile@redhat.com, qemu-devel@nongnu.org, gleb@redhat.com, mst@redhat.com On Wed, 2012-03-07 at 10:19 +0100, Paolo Bonzini wrote: > Il 07/03/2012 01:14, Alex Williamson ha scritto: > > +void pci_host_remove_dev_probe_notifier(Notifier *notify) > > +{ > > + notifier_list_remove(&pci_host_dev_probe_notifiers, notify); > > +} > > + > > Looks like qemu-kvm needs a merge. :) > > Upstream has notifier_remove, not notifier_list_remove. Thanks Paolo, Alex