diff options
author | cognet <cognet@FreeBSD.org> | 2006-08-30 11:44:37 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2006-08-30 11:44:37 +0000 |
commit | 192d7d2aa6c3120adbfca1842eeeb9648694045a (patch) | |
tree | 8a470a60144b15bfc3fe7da1ac7a63bca4e478ec /sys/arm | |
parent | 5ffbf296e89b6407e9d4e293a52a36c90da192d9 (diff) | |
download | FreeBSD-src-192d7d2aa6c3120adbfca1842eeeb9648694045a.zip FreeBSD-src-192d7d2aa6c3120adbfca1842eeeb9648694045a.tar.gz |
Use ENTRY_NP for alternate entry points instead of ENTRY to avoid calling
mcount twice when profiling.
Spotted out by: bde
Diffstat (limited to 'sys/arm')
-rw-r--r-- | sys/arm/arm/fusu.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arm/arm/fusu.S b/sys/arm/arm/fusu.S index 7712b44..afd4663 100644 --- a/sys/arm/arm/fusu.S +++ b/sys/arm/arm/fusu.S @@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$"); * Fetch an int from the user's address space. */ -ENTRY(casuword32) +ENTRY_NP(casuword32) ENTRY(casuptr) #ifdef MULTIPROCESSOR /* XXX Probably not appropriate for non-Hydra SMPs */ @@ -99,7 +99,7 @@ ENTRY(casuptr) * Fetch an int from the user's address space. */ -ENTRY(fuword32) +ENTRY_NP(fuword32) ENTRY(fuword) #ifdef MULTIPROCESSOR /* XXX Probably not appropriate for non-Hydra SMPs */ @@ -301,7 +301,7 @@ fusupcbfaulttext: * Store an int in the user's address space. */ -ENTRY(suword32) +ENTRY_NP(suword32) ENTRY(suword) #ifdef MULTIPROCESSOR /* XXX Probably not appropriate for non-Hydra SMPs */ |