From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LXGaG-0007pQ-Ac for qemu-devel@nongnu.org; Wed, 11 Feb 2009 10:01:04 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LXGaF-0007oY-9M for qemu-devel@nongnu.org; Wed, 11 Feb 2009 10:01:03 -0500 Received: from [199.232.76.173] (port=35542 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXGaE-0007oH-Tc for qemu-devel@nongnu.org; Wed, 11 Feb 2009 10:01:02 -0500 Received: from mx2.redhat.com ([66.187.237.31]:48652) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LXGaE-00085A-7V for qemu-devel@nongnu.org; Wed, 11 Feb 2009 10:01:02 -0500 Date: Wed, 11 Feb 2009 13:00:24 -0200 From: Marcelo Tosatti Message-ID: <20090211150024.GA4760@amt.cnet> References: <20090210203051.064692466@emt.localdomain> <20090210203208.565573495@emt.localdomain> <49923740.2060208@us.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <49923740.2060208@us.ibm.com> Subject: [Qemu-devel] Re: [patch 19/19] qemu: PCI device, disk and host network hot-add / hot-remove Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel On Tue, Feb 10, 2009 at 08:26:08PM -0600, Anthony Liguori wrote: > Marcelo Tosatti wrote: >> Index: trunk/hw/pci-hotplug.c >> =================================================================== >> --- /dev/null >> +++ trunk/hw/pci-hotplug.c >> > > New files need copyright/license at the top. Feel free to just resend > this patch or even a patch on top of this one. > > Regards, > > Anthony Liguori There you go Index: trunk/hw/device-hotplug.c =================================================================== --- trunk.orig/hw/device-hotplug.c +++ trunk/hw/device-hotplug.c @@ -1,3 +1,27 @@ +/* + * QEMU device hotplug helpers + * + * Copyright (c) 2004 Fabrice Bellard + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + #include "hw.h" #include "boards.h" #include "net.h" Index: trunk/hw/pci-hotplug.c =================================================================== --- trunk.orig/hw/pci-hotplug.c +++ trunk/hw/pci-hotplug.c @@ -1,3 +1,27 @@ +/* + * QEMU PCI hotplug support + * + * Copyright (c) 2004 Fabrice Bellard + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + #include "hw.h" #include "boards.h" #include "pci.h"