diff options
author | marius <marius@FreeBSD.org> | 2011-07-09 18:47:51 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2011-07-09 18:47:51 +0000 |
commit | c7a02e807c5cce0bd96e390d82ed5117c994045e (patch) | |
tree | 3b0a01a3e348bd83d12d0eb36c32dc203fcd1e83 /sys | |
parent | 17591f511aadb2ec519d763bd2bac145f7022bb5 (diff) | |
download | FreeBSD-src-c7a02e807c5cce0bd96e390d82ed5117c994045e.zip FreeBSD-src-c7a02e807c5cce0bd96e390d82ed5117c994045e.tar.gz |
Fix the definition for PCPU_NAME_LEN, which is intended to fit
("CPU %d", cpuid) where cpuid <= MAXCPU.
1. sizeof(__XSTRING(MAXCPU) + 1) is a typo: typeof(__XSTRING(...) + 1)
is 'char *', so sizeof() will return the size of the pointer, not
the size of the string contents. The proper expression should be
'sizeof(__XSTRING(MAXCPU)) + 1'.
2. One should not add one, but substract it: sizeof() accounts for the
trailing '\0' and we have two sizeof's, so the size of one '\0'
should be substracted -- this will give the maximal string buffer
length for CPU with its number, no less, no more.
Submitted by: rea
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/pcpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/pcpu.h b/sys/sys/pcpu.h index 2e69f81..b25fcc8 100644 --- a/sys/sys/pcpu.h +++ b/sys/sys/pcpu.h @@ -146,7 +146,7 @@ struct rm_queue { struct rm_queue* volatile rmq_prev; }; -#define PCPU_NAME_LEN (sizeof("CPU ") + sizeof(__XSTRING(MAXCPU) + 1)) +#define PCPU_NAME_LEN (sizeof("CPU ") + sizeof(__XSTRING(MAXCPU)) - 1) /* * This structure maps out the global data that needs to be kept on a |