From ea121a0c59373e50e0409e9158a164b9ff531cae Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 16 Jan 2018 13:06:39 +0100 Subject: ZONE(9): Avoid function call overhead --- freebsd/sys/vm/uma_core.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/freebsd/sys/vm/uma_core.c b/freebsd/sys/vm/uma_core.c index 6c85b0e8..fbae47cb 100644 --- a/freebsd/sys/vm/uma_core.c +++ b/freebsd/sys/vm/uma_core.c @@ -99,12 +99,14 @@ __FBSDID("$FreeBSD$"); #include #ifdef __rtems__ #ifdef RTEMS_SMP + #include + /* * It is essential that we have a per-processor cache, otherwise the * critical_enter()/critical_exit() protection would be insufficient. */ #undef curcpu - #define curcpu rtems_get_current_processor() + #define curcpu _SMP_Get_current_processor() #undef mp_maxid #define mp_maxid (rtems_get_processor_count() - 1) #define SMP -- cgit v1.2.3