svn commit: r193282 - stable/7/sys/libkern

Kip Macy kmacy at freebsd.org
Tue Jun 2 00:41:32 UTC 2009


No, this is a band-aid for a mistake I made in the ZFS MFC. I had
hoped to avoid updating all the files.<arch>, but I will do that if
need be.

Cheers,
Kip



On Mon, Jun 1, 2009 at 4:51 PM, M. Warner Losh <imp at bsdimp.com> wrote:
> In message: <200906012209.n51M9gTU094161 at svn.freebsd.org>
>            Kip Macy <kmacy at FreeBSD.org> writes:
> : Author: kmacy
> : Date: Mon Jun  1 22:09:42 2009
> : New Revision: 193282
> : URL: http://svn.freebsd.org/changeset/base/193282
> :
> : Log:
> :   memmove is defined in support.S on arm - don't compile in
> :
> : Modified:
> :   stable/7/sys/libkern/memmove.c
> :
> : Modified: stable/7/sys/libkern/memmove.c
> : ==============================================================================
> : --- stable/7/sys/libkern/memmove.c    Mon Jun  1 22:05:08 2009        (r193281)
> : +++ stable/7/sys/libkern/memmove.c    Mon Jun  1 22:09:42 2009        (r193282)
> : @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$");
> :
> :  #include <sys/libkern.h>
> :
> : +#if !defined(__arm__)
> :  void *
> :  memmove(void *dest, const void *src, size_t n)
> :  {
> : @@ -36,3 +37,4 @@ memmove(void *dest, const void *src, siz
> :       bcopy(src, dest, n);
> :       return (dest);
> :  }
> : +#endif
>
> Ummm, usually we don't bother to even include the .c file in cases
> like this...  Is it this way in -head?
>
>
> Warner
>



-- 
When bad men combine, the good must associate; else they will fall one
by one, an unpitied sacrifice in a contemptible struggle.

    Edmund Burke


More information about the freebsd-arm mailing list