From patchwork Thu Nov 30 14:41:43 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhao Liu X-Patchwork-Id: 13474513 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="HFKmm7Ro" Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.43]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5E21A85 for ; Thu, 30 Nov 2023 06:33:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1701354831; x=1732890831; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=TLbpY7EX///aEBUshQ9nHMg5QAVw4jJxDP0uMhZZdFI=; b=HFKmm7Rol5h5fm15pg/BdwuLBRyUTUPNKgFkKrStTvqQJDP0pF7KnwgE zB61HtAxH7Xf1ZylXBCTZizu2ZMfEASjRfAeXEoA3NwN6hPPvFwmGY+KQ /g+vMlUJYGQEusnyqNA048nvUCXcydWue8oapA0oLZjTdgsxuoIwq63SM XHkaeSyra04z7qycktm43gzuXJ3rlZsGwKxgFXniD/X+2Wy66vK55C18H WLyYTyCKgUoVQSNdfZT/abbN4YoCrUcfgne4qnGN/xWgRii7DX0cNDrq5 lRfSFaJtRmCRnTB5r6pKXn1xj07mlKY3WEJfPEe+1t/Ozib8bknC4POXC A==; X-IronPort-AV: E=McAfee;i="6600,9927,10910"; a="479532060" X-IronPort-AV: E=Sophos;i="6.04,239,1695711600"; d="scan'208";a="479532060" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Nov 2023 06:33:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10910"; a="942730047" X-IronPort-AV: E=Sophos;i="6.04,239,1695711600"; d="scan'208";a="942730047" Received: from liuzhao-optiplex-7080.sh.intel.com ([10.239.160.36]) by orsmga005.jf.intel.com with ESMTP; 30 Nov 2023 06:33:41 -0800 From: Zhao Liu To: Paolo Bonzini , =?utf-8?q?Alex_Benn=C3=A9e?= , =?utf-8?q?Philippe_M?= =?utf-8?q?athieu-Daud=C3=A9?= , Eduardo Habkost , Marcel Apfelbaum , Yanan Wang , Richard Henderson , "Michael S . Tsirkin" , Jason Wang , Nicholas Piggin , Daniel Henrique Barboza , Igor Mammedov , =?utf-8?q?C=C3=A9dric_Le_Goater?= , =?utf-8?b?RnLDqWTDqXJp?= =?utf-8?b?YyBCYXJyYXQ=?= , David Gibson , Harsh Prateek Bora , Stefano Stabellini , Anthony Perard , Paul Durrant , Gerd Hoffmann , Peter Maydell , Alistair Francis , "Edgar E . Iglesias" , =?utf-8?q?Daniel_P_=2E_Ber?= =?utf-8?q?rang=C3=A9?= , Bin Meng , Palmer Dabbelt , Weiwei Li , Liu Zhiwei , qemu-devel@nongnu.org, kvm@vger.kernel.org, qemu-ppc@nongnu.org, xen-devel@lists.xenproject.org, qemu-arm@nongnu.org, qemu-riscv@nongnu.org, qemu-s390x@nongnu.org Cc: Nina Schoetterl-Glausch , Thomas Huth , Zhiyuan Lv , Zhenyu Wang , Yongwei Ma , Zhao Liu Subject: [RFC 21/41] hw/cpu/cluster: Allow cpu-cluster to be created by -device Date: Thu, 30 Nov 2023 22:41:43 +0800 Message-Id: <20231130144203.2307629-22-zhao1.liu@linux.intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231130144203.2307629-1-zhao1.liu@linux.intel.com> References: <20231130144203.2307629-1-zhao1.liu@linux.intel.com> Precedence: bulk X-Mailing-List: kvm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Zhao Liu Since we will extend cpu-cluster to build CPU topology in virtualization case via -device, remove the original limitition. Signed-off-by: Zhao Liu --- hw/cpu/cluster.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/hw/cpu/cluster.c b/hw/cpu/cluster.c index 27ab9e25a265..8a666c27d151 100644 --- a/hw/cpu/cluster.c +++ b/hw/cpu/cluster.c @@ -96,9 +96,6 @@ static void cpu_cluster_class_init(ObjectClass *klass, void *data) device_class_set_props(dc, cpu_cluster_properties); dc->realize = cpu_cluster_realize; - /* This is not directly for users, CPU children must be attached by code */ - dc->user_creatable = false; - #ifdef CONFIG_TCG cc->tcg_clu_ops = &common_cluster_tcg_ops; #endif