From patchwork Mon Sep 26 10:16:25 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lin Ma X-Patchwork-Id: 675069 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)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sjKgD1FYKz9sBR for ; Mon, 26 Sep 2016 20:18:28 +1000 (AEST) Received: from localhost ([::1]:43075 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boSzR-0002df-5U for incoming@patchwork.ozlabs.org; Mon, 26 Sep 2016 06:18:25 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49146) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boSy5-0001RS-4B for qemu-devel@nongnu.org; Mon, 26 Sep 2016 06:17:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1boSxy-0004uZ-DO for qemu-devel@nongnu.org; Mon, 26 Sep 2016 06:17:00 -0400 Received: from victor.provo.novell.com ([137.65.250.26]:46928 helo=prv3-mh.provo.novell.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boSxy-0004rY-8P for qemu-devel@nongnu.org; Mon, 26 Sep 2016 06:16:54 -0400 Received: from linux-xpcv.apac.novell.com (prv-ext-foundry1int.gns.novell.com [137.65.251.240]) by prv3-mh.provo.novell.com with ESMTP (NOT encrypted); Mon, 26 Sep 2016 04:16:42 -0600 From: Lin Ma To: qemu-devel@nongnu.org Date: Mon, 26 Sep 2016 18:16:25 +0800 Message-Id: <20160926101627.14296-2-lma@suse.com> X-Mailer: git-send-email 2.9.2 In-Reply-To: <20160926101627.14296-1-lma@suse.com> References: <20160926101627.14296-1-lma@suse.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 137.65.250.26 Subject: [Qemu-devel] [PATCH v3 1/3] qom: make base type user-creatable abstract X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: pbonzini@redhat.com, afaerber@suse.de, armbru@redhat.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Lin Ma --- qom/object_interfaces.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qom/object_interfaces.c b/qom/object_interfaces.c index bf59846..9288242 100644 --- a/qom/object_interfaces.c +++ b/qom/object_interfaces.c @@ -217,6 +217,7 @@ static void register_types(void) static const TypeInfo uc_interface_info = { .name = TYPE_USER_CREATABLE, .parent = TYPE_INTERFACE, + .abstract = true, .class_size = sizeof(UserCreatableClass), };