aboutsummaryrefslogtreecommitdiffstats
path: root/lib/string.c
diff options
context:
space:
mode:
authorPaolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>2005-05-05 19:15:17 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-05 19:36:33 -0400
commit0c28130b5c9e8f0b153436d3dae39482e5a70af1 (patch)
treedf2c3f91108cc897cd799196b6044ebb617a8f0a /lib/string.c
parent23352fc252495fdc072b3bd29f57c4c6b7a6bd83 (diff)
[PATCH] x86_64: make string func definition work as intended
In include/asm-x86_64/string.h there are such comments: /* Use C out of line version for memcmp */ #define memcmp __builtin_memcmp int memcmp(const void * cs,const void * ct,size_t count); This would mean that if the compiler does not decide to use __builtin_memcmp, it emits a call to memcmp to be satisfied by the C out-of-line version in lib/string.c. What happens is that after preprocessing, in lib/string.i you may find the definition of "__builtin_strcmp". Actually, by accident, in the object you will find the definition of strcmp and such (maybe a trick intended to redirect calls to __builtin_memcmp to the default memcmp when the definition is not expanded); however, this particular case is not a documented feature as far as I can see. Also, the EXPORT_SYMBOL does not work, so it's duplicated in the arch. I simply added some #undef to lib/string.c and removed the (now duplicated) exports in x86-64 and UML/x86_64 subarchs (the second ones are introduced by another patch I just posted for -mm). Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> CC: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'lib/string.c')
-rw-r--r--lib/string.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/string.c b/lib/string.c
index 4bb93ad23c60..5c8b55af0df6 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -65,6 +65,7 @@ EXPORT_SYMBOL(strnicmp);
65 * @dest: Where to copy the string to 65 * @dest: Where to copy the string to
66 * @src: Where to copy the string from 66 * @src: Where to copy the string from
67 */ 67 */
68#undef strcpy
68char * strcpy(char * dest,const char *src) 69char * strcpy(char * dest,const char *src)
69{ 70{
70 char *tmp = dest; 71 char *tmp = dest;
@@ -132,6 +133,7 @@ EXPORT_SYMBOL(strlcpy);
132 * @dest: The string to be appended to 133 * @dest: The string to be appended to
133 * @src: The string to append to it 134 * @src: The string to append to it
134 */ 135 */
136#undef strcat
135char * strcat(char * dest, const char * src) 137char * strcat(char * dest, const char * src)
136{ 138{
137 char *tmp = dest; 139 char *tmp = dest;
@@ -209,6 +211,7 @@ EXPORT_SYMBOL(strlcat);
209 * @cs: One string 211 * @cs: One string
210 * @ct: Another string 212 * @ct: Another string
211 */ 213 */
214#undef strcmp
212int strcmp(const char * cs,const char * ct) 215int strcmp(const char * cs,const char * ct)
213{ 216{
214 register signed char __res; 217 register signed char __res;
@@ -514,6 +517,7 @@ EXPORT_SYMBOL(memmove);
514 * @ct: Another area of memory 517 * @ct: Another area of memory
515 * @count: The size of the area. 518 * @count: The size of the area.
516 */ 519 */
520#undef memcmp
517int memcmp(const void * cs,const void * ct,size_t count) 521int memcmp(const void * cs,const void * ct,size_t count)
518{ 522{
519 const unsigned char *su1, *su2; 523 const unsigned char *su1, *su2;