summaryrefslogtreecommitdiffstats
path: root/sys/kern/sched_ule.c
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2009-01-25 07:35:10 +0000
committerjeff <jeff@FreeBSD.org>2009-01-25 07:35:10 +0000
commitd4c94410f6615f5725c1df4bb3d92f167767a8fa (patch)
treee4b27f4bfb769907b2543c513b7ba3dcf7e9af12 /sys/kern/sched_ule.c
parent63e5efcb881d21dcf1d5659711998289f9b6f3de (diff)
downloadFreeBSD-src-d4c94410f6615f5725c1df4bb3d92f167767a8fa.zip
FreeBSD-src-d4c94410f6615f5725c1df4bb3d92f167767a8fa.tar.gz
- Use __XSTRING where I want the define to be expanded. This resulted in
sizeof("MAXCPU") being used to calculate a string length rather than something more reasonable such as sizeof("32"). This shouldn't have caused any ill effect until we run on machines with 1000000 or more cpus.
Diffstat (limited to 'sys/kern/sched_ule.c')
-rw-r--r--sys/kern/sched_ule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c
index 3a06223..96f7280 100644
--- a/sys/kern/sched_ule.c
+++ b/sys/kern/sched_ule.c
@@ -86,8 +86,8 @@ dtrace_vtime_switch_func_t dtrace_vtime_switch_func;
#define KTR_ULE 0
-#define TS_NAME_LEN (MAXCOMLEN + sizeof(" td ") + sizeof(__STRING(UINT_MAX)))
-#define TDQ_NAME_LEN (sizeof("sched lock ") + sizeof(__STRING(MAXCPU)))
+#define TS_NAME_LEN (MAXCOMLEN + sizeof(" td ") + sizeof(__XSTRING(UINT_MAX)))
+#define TDQ_NAME_LEN (sizeof("sched lock ") + sizeof(__XSTRING(MAXCPU)))
#define TDQ_LOADNAME_LEN (PCPU_NAME_LEN + sizeof(" load"))
/*
OpenPOWER on IntegriCloud