[PATCH v1] xenalyze: remove unused defines

Olaf Hering posted 1 patch 10 months, 3 weeks ago
Failed in applying to current master (apply log)
tools/xentrace/analyze.h | 13 -------------
1 file changed, 13 deletions(-)
[PATCH v1] xenalyze: remove unused defines
Posted by Olaf Hering 10 months, 3 weeks ago
These defines are not used by xenalyze.
NR_CPUS will not match what was used for building Xen itself.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
 tools/xentrace/analyze.h | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/tools/xentrace/analyze.h b/tools/xentrace/analyze.h
index 6fefa19639..89217026a7 100644
--- a/tools/xentrace/analyze.h
+++ b/tools/xentrace/analyze.h
@@ -16,19 +16,6 @@
 
 #define TRC_LOST_RECORDS_END    (TRC_GEN + 50)
 
-#define NR_CPUS 128
-#if __x86_64__
-# define BITS_PER_LONG 64
-#else
-# define BITS_PER_LONG 32
-#endif
-
-#define BITS_TO_LONGS(bits) \
-    (((bits)+BITS_PER_LONG-1)/BITS_PER_LONG)
-#define DECLARE_BITMAP(name,bits) \
-    unsigned long name[BITS_TO_LONGS(bits)]
-typedef struct cpumask{ DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t;
-
 enum {
     TRCE_SFLAG_SET_AD,
     TRCE_SFLAG_SET_A,
Re: [PATCH v1] xenalyze: remove unused defines
Posted by George Dunlap 8 months, 3 weeks ago
On Thu, Jun 1, 2023 at 9:13 AM Olaf Hering <olaf@aepfle.de> wrote:

> These defines are not used by xenalyze.
> NR_CPUS will not match what was used for building Xen itself.
>
> Signed-off-by: Olaf Hering <olaf@aepfle.de>
>

Reviewed-by: George Dunlap <george.dunlap@cloud.com>