Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
fork
Configure Feed
Select the types of activity you want to include in your feed.
1#ifdef __uClinux__
2#include <asm/uaccess_no.h>
3#else
4#include <asm/uaccess_mm.h>
5#endif
6
7#ifdef CONFIG_CPU_HAS_NO_UNALIGNED
8#include <asm-generic/uaccess-unaligned.h>
9#else
10#define __get_user_unaligned(x, ptr) __get_user((x), (ptr))
11#define __put_user_unaligned(x, ptr) __put_user((x), (ptr))
12#endif