cregit-Linux how code gets into the kernel

Release 4.18 tools/perf/bench/mem-memcpy-x86-64-lib.c

Directory: tools/perf/bench
/*
 * From code in arch/x86/lib/usercopy_64.c, copied to keep tools/ copy
 * of the kernel's arch/x86/lib/memcpy_64.s used in 'perf bench mem memcpy'
 * happy.
 */
#include <linux/types.h>

unsigned long __memcpy_mcsafe(void *dst, const void *src, size_t cnt);
unsigned long mcsafe_handle_tail(char *to, char *from, unsigned len);


unsigned long mcsafe_handle_tail(char *to, char *from, unsigned len) { for (; len; --len, to++, from++) { /* * Call the assembly routine back directly since * memcpy_mcsafe() may silently fallback to memcpy. */ unsigned long rem = __memcpy_mcsafe(to, from, 1); if (rem) break; } return len; }

Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo55100.00%1100.00%
Total55100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Arnaldo Carvalho de Melo92100.00%1100.00%
Total92100.00%1100.00%
Directory: tools/perf/bench
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.