From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 844803EB108 for ; Thu, 25 Jun 2026 16:41:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782405700; cv=none; b=rPuMfJ6RkyTKOhXSTaHjBVlHDgOfLDgl8ithi+MDeoLT40t6VOWuQDRnhPZTDO5EtJy0B6WoYCml/kPNAorfbMqBhSEpgZ3Hnpc+5UFobT00sOySxjPDQzpvY5KAaNfJziwvXffByH184iJm/RobaYZ9Ah9h7ke75dyhlX+dhvQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782405700; c=relaxed/simple; bh=nZsGmcbS1D7RQPqtzykkEbX/axFyab2RZHHi8rw3EHw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=F+VAY0Lz+nGPCrD76CZu+d2BHbRjIf0RlTxihYdPdbvEpiSDz24wBo4AVlWW3//jcML0yvHPZV30PwiaWx7/EJUIzJN97DLW6/L5za6CpZxqKL6EqtLddIM2VC4fr+LSX9SWp33MDXASMUK3iwd/rHxLxWcrWD7BFPijb0PkJyU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=DP2GdPBp; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="DP2GdPBp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C2FDF1F00A3D; Thu, 25 Jun 2026 16:41:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782405699; bh=LGd+fZIELIDQjhUQ9mCFdmeXSoK0VjZA3k7v66gotQg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DP2GdPBpzS62AsFgs6lpLXWwVQhtp6dlp/kl0o5/O50/TLLloRCRh/UdKmHbVN/FI 0hUA4sniXO0dN8UK9ePFDKgOT41voPYg/tHc65HKED4VFXuK63JlikbDTsMFg7yMFl +KtmzbYixA6t4cFjNiEXBnmt0aoLr3cHoE8zTqtqB+tkDFcdB7JIrErT5K/Kf35Gs9 raIzsSUhKrWn0mpDn7PXwdzvQs15gSYCEoQ4VNTxOIcL+ZaWhJE0Ab2yRem3yJzJdu W+szJ3FnBEALgor0dYgqAEeM9PG1rkHfeTpYPWH6RFSjdwAmQ7qYwniHF5dVsbGEdC 37BaPedAZNeHQ== From: Frederic Weisbecker To: Christian Loehle Cc: LKML , Frederic Weisbecker , Anna-Maria Behnsen , Sehee Jeong , Thomas Gleixner , Peter Zijlstra Subject: [PATCH 6/6] scripts/timer_migration_tree.py: Dump mask of each group Date: Thu, 25 Jun 2026 18:41:14 +0200 Message-ID: <20260625164114.51454-7-frederic@kernel.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260625164114.51454-1-frederic@kernel.org> References: <20260625164114.51454-1-frederic@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Dump the mask of each group in order to verify they are correct and well sorted with respect to CPU capacities. Signed-off-by: Frederic Weisbecker --- scripts/timer_migration_tree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/timer_migration_tree.py b/scripts/timer_migration_tree.py index 4f055fc08435..275b05fd6c1b 100755 --- a/scripts/timer_migration_tree.py +++ b/scripts/timer_migration_tree.py @@ -90,6 +90,7 @@ def populate(enode, node): enode.add_feature("lvl", "lvl:%d" % node.lvl) enode.add_feature("family", "family %d" % node.family) enode.add_feature("num_children", "c=%d" % node.num_children) + enode.add_feature("groupmask", "mask=%s" % node.groupmask) for child in node.children: populate(enode, child) @@ -107,4 +108,4 @@ if __name__ == "__main__": group = group.parent root = Tree() populate(root, group) - print(root.get_ascii(show_internal=True, attributes=["name", "family", "lvl"])) + print(root.get_ascii(show_internal=True, attributes=["name", "family", "lvl", "groupmask"])) -- 2.53.0