CACHE_LINE_SIZE is 64 on athlon and amd64 chips, not 32. This should

probably be 128 since that is what the hardware prefetch fill size is
on both the p3, p4 and athlon* cpus.
This commit is contained in:
Peter Wemm 2003-12-11 04:47:53 +00:00
parent 2e227f0406
commit 40a7c81112
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123436

View File

@ -55,7 +55,7 @@
#include "debug.h"
#include "rtld.h"
#define CACHE_LINE_SIZE 32
#define CACHE_LINE_SIZE 64
#define WAFLAG 0x1 /* A writer holds the lock */
#define RC_INCR 0x2 /* Adjusts count of readers desiring lock */