Release 4.14 arch/sparc/include/asm/uaccess.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ___ASM_SPARC_UACCESS_H
#define ___ASM_SPARC_UACCESS_H
#if defined(__sparc__) && defined(__arch64__)
#include <asm/uaccess_64.h>
#else
#include <asm/uaccess_32.h>
#endif
#define user_addr_max() \
(uaccess_kernel() ? ~0UL : TASK_SIZE)
long strncpy_from_user(char *dest, const char __user *src, long count);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 22 | 41.51% | 2 | 25.00% |
Sam Ravnborg | 17 | 32.08% | 2 | 25.00% |
Linus Torvalds (pre-git) | 10 | 18.87% | 1 | 12.50% |
Pete Zaitcev | 2 | 3.77% | 1 | 12.50% |
Al Viro | 1 | 1.89% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 1.89% | 1 | 12.50% |
Total | 53 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.