From patchwork Thu Nov 15 14:29:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 199324 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D4BCD2C0408 for ; Fri, 16 Nov 2012 02:28:14 +1100 (EST) Received: from localhost ([::1]:36890 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZ1MS-00018F-Vh for incoming@patchwork.ozlabs.org; Thu, 15 Nov 2012 10:28:12 -0500 Received: from eggs.gnu.org ([208.118.235.92]:41690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZ1MJ-00017W-Ff for qemu-devel@nongnu.org; Thu, 15 Nov 2012 10:28:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TZ1MG-0000gg-Dp for qemu-devel@nongnu.org; Thu, 15 Nov 2012 10:28:03 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59338) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZ1MA-0000fv-1L; Thu, 15 Nov 2012 10:27:54 -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 qAFFRp8s027836 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 15 Nov 2012 10:27:53 -0500 Received: from localhost (ovpn-112-20.ams2.redhat.com [10.36.112.20]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qAFEU55u032131; Thu, 15 Nov 2012 09:30:09 -0500 From: Stefan Hajnoczi To: Date: Thu, 15 Nov 2012 15:29:53 +0100 Message-Id: <1352989793-7357-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: qemu-trivial@nongnu.org, Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH] vmstate: drop orphan register_device_unmigratable() prototype X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org commit 38e0735eb76a1479917ef3501a208d4f70998494 ("ivshmem: use migration blockers to prevent live migration in peer mode (v2)") removed the definition of register_device_unmigratable() but forgot to remove the declaration in the header file. Signed-off-by: Stefan Hajnoczi --- vmstate.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/vmstate.h b/vmstate.h index 623af0a..af10596 100644 --- a/vmstate.h +++ b/vmstate.h @@ -56,9 +56,6 @@ int register_savevm_live(DeviceState *dev, void *opaque); void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque); -void register_device_unmigratable(DeviceState *dev, const char *idstr, - void *opaque); - typedef struct VMStateInfo VMStateInfo; typedef struct VMStateDescription VMStateDescription;