[U-Boot] can the last traces of "bcopy" be removed?

Michal Simek monstr at monstr.eu
Mon May 23 16:11:18 CEST 2016


Hi,

2016-05-22 20:54 GMT+02:00 Robert P. J. Day <rpjday at crashcourse.ca>:

>
>   just noticed that this is all that's left of "bcopy":
>
> $ grep -rw bcopy *
> arch/powerpc/lib/ppcstring.S:   .globl  bcopy
> arch/powerpc/lib/ppcstring.S:bcopy:
> arch/microblaze/include/asm/string.h:extern void bcopy (const char *, char
> *, int);
> include/linux/string.h:char *bcopy(const char *src, char *dest, int count);
> lib/string.c: * bcopy - Copy one area of memory to another
> lib/string.c: * memcpy() is the standard, bcopy() is a legacy BSD function.
> lib/string.c:char * bcopy(const char * src, char * dest, int count)
> $
>
> so, really, no actual usage, and even the microblaze string.h file
> contains:
>
> #if 0
> #define __HAVE_ARCH_BCOPY
> #define __HAVE_ARCH_MEMCPY
> #define __HAVE_ARCH_MEMSET
> #define __HAVE_ARCH_MEMMOVE
>
> extern void *memcpy (void *, const void *, __kernel_size_t);
> extern void bcopy (const char *, char *, int);
> extern void *memset (void *, int, __kernel_size_t);
> extern void *memmove (void *, const void *, __kernel_size_t);
> #endif
>
> so unless i'm misreading, can't bcopy() be tossed entirely while no
> one's using it and before anyone gets a chance to resurrect it? :-)



No problem to remove it. Please send the patch.

Thanks,
Michal


More information about the U-Boot mailing list