diff options
author | attilio <attilio@FreeBSD.org> | 2009-05-14 17:43:00 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2009-05-14 17:43:00 +0000 |
commit | 902219327c608b14c9bcbd63038b9842bae52f7b (patch) | |
tree | 22b20a38e37e187948ac0d924a006065dcd27968 /sys/gnu | |
parent | b8aa665b4a6150092ef1acac35dac70302c2795d (diff) | |
download | FreeBSD-src-902219327c608b14c9bcbd63038b9842bae52f7b.zip FreeBSD-src-902219327c608b14c9bcbd63038b9842bae52f7b.tar.gz |
FreeBSD right now support 32 CPUs on all the architectures at least.
With the arrival of 128+ cores it is necessary to handle more than that.
One of the first thing to change is the support for cpumask_t that needs
to handle more than 32 bits masking (which happens now). Some places,
however, still assume that cpumask_t is a 32 bits mask.
Fix that situation by using always correctly cpumask_t when needed.
While here, remove the part under STOP_NMI for the Xen support as it
is broken in any case.
Additively make ipi_nmi_pending as static.
Reviewed by: jhb, kmacy
Tested by: Giovanni Trematerra <giovanni dot trematerra at gmail dot com>
Diffstat (limited to 'sys/gnu')
-rw-r--r-- | sys/gnu/fs/xfs/FreeBSD/support/debug.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/gnu/fs/xfs/FreeBSD/support/debug.h b/sys/gnu/fs/xfs/FreeBSD/support/debug.h index d35b14f..816a717 100644 --- a/sys/gnu/fs/xfs/FreeBSD/support/debug.h +++ b/sys/gnu/fs/xfs/FreeBSD/support/debug.h @@ -75,6 +75,5 @@ extern int get_thread_id(void); #endif #define ASSERT_ALWAYS(EX) ((EX)?((void)0):assfail(#EX, __FILE__, __LINE__)) -#define debug_stop_all_cpus(param) /* param is "cpumask_t *" */ #endif /* __XFS_SUPPORT_DEBUG_H__ */ |