-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hiro Yoshioka
authored and
Linus Torvalds
committed
Jun 23, 2006
1 parent
80b61f0
commit 7813688
Showing
6 changed files
with
190 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7dbdf43cfa635ddc3701cc8d1eab07597cd731c0 | ||
refs/heads/master: c22ce143d15eb288543fe9873e1c5ac1c01b69a1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef __LINUX_UACCESS_H__ | ||
#define __LINUX_UACCESS_H__ | ||
|
||
#include <asm/uaccess.h> | ||
|
||
#ifndef ARCH_HAS_NOCACHE_UACCESS | ||
|
||
static inline unsigned long __copy_from_user_inatomic_nocache(void *to, | ||
const void __user *from, unsigned long n) | ||
{ | ||
return __copy_from_user_inatomic(to, from, n); | ||
} | ||
|
||
static inline unsigned long __copy_from_user_nocache(void *to, | ||
const void __user *from, unsigned long n) | ||
{ | ||
return __copy_from_user(to, from, n); | ||
} | ||
|
||
#endif /* ARCH_HAS_NOCACHE_UACCESS */ | ||
|
||
#endif /* __LINUX_UACCESS_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters