From 8014ddbd426f9763adf1247f3775638b23d1f772 Mon Sep 17 00:00:00 2001
From: Peter Cai <peter.cai@uwaterloo.ca>
Date: Tue, 28 Feb 2023 15:59:00 -0500
Subject: [PATCH] Support irq packing in analyzation

---
 analyze/config.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/analyze/config.py b/analyze/config.py
index aad6ca2..2fc77cb 100644
--- a/analyze/config.py
+++ b/analyze/config.py
@@ -2,6 +2,7 @@ markers = {
   "default": ".",
   "kernel_polling": "+",
   "manual_polling": "x",
+  "irq_packing": "*",
   "fstack": "s",
   "caladan": "p",
   "caladan (per-thread QPS w/ 2 threads)": "p"
@@ -11,6 +12,7 @@ colors = {
   "default": "tab:blue",
   "kernel_polling": "tab:orange",
   "manual_polling": "tab:purple",
+  "irq_packing": "tab:olive",
   "fstack": "tab:green",
   "caladan": "tab:red",
   "caladan (per-thread QPS w/ 2 threads)": "tab:red"
-- 
GitLab