cregit-Linux how code gets into the kernel

Release 4.16 arch/arm/include/asm/string.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_ARM_STRING_H

#define __ASM_ARM_STRING_H

/*
 * We don't do inline string functions, since the
 * optimised inline asm versions are not small.
 */


#define __HAVE_ARCH_STRRCHR
extern char * strrchr(const char * s, int c);


#define __HAVE_ARCH_STRCHR
extern char * strchr(const char * s, int c);


#define __HAVE_ARCH_MEMCPY
extern void * memcpy(void *, const void *, __kernel_size_t);


#define __HAVE_ARCH_MEMMOVE
extern void * memmove(void *, const void *, __kernel_size_t);


#define __HAVE_ARCH_MEMCHR
extern void * memchr(const void *, int, __kernel_size_t);


#define __HAVE_ARCH_MEMSET
extern void * memset(void *, int, __kernel_size_t);


#define __HAVE_ARCH_MEMSET32
extern void *__memset32(uint32_t *, uint32_t v, __kernel_size_t);

static inline void *memset32(uint32_t *p, uint32_t v, __kernel_size_t n) { return __memset32(p, v, n * 4); }

Contributors

PersonTokensPropCommitsCommitProp
Matthew Wilcox30100.00%1100.00%
Total30100.00%1100.00%

#define __HAVE_ARCH_MEMSET64 extern void *__memset64(uint64_t *, uint32_t low, __kernel_size_t, uint32_t hi);
static inline void *memset64(uint64_t *p, uint64_t v, __kernel_size_t n) { return __memset64(p, v, n * 8, v >> 32); }

Contributors

PersonTokensPropCommitsCommitProp
Matthew Wilcox34100.00%1100.00%
Total34100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)11252.34%466.67%
Matthew Wilcox10147.20%116.67%
Greg Kroah-Hartman10.47%116.67%
Total214100.00%6100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.