Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
de51d6cc
Commit
de51d6cc
authored
Mar 22, 2017
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nios2: switch to RAW_COPY_USER
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
981db65b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
33 deletions
+15
-33
arch/nios2/Kconfig
arch/nios2/Kconfig
+1
-0
arch/nios2/include/asm/uaccess.h
arch/nios2/include/asm/uaccess.h
+6
-25
arch/nios2/mm/uaccess.c
arch/nios2/mm/uaccess.c
+8
-8
No files found.
arch/nios2/Kconfig
View file @
de51d6cc
...
...
@@ -16,6 +16,7 @@ config NIOS2
select SPARSE_IRQ
select USB_ARCH_HAS_HCD if USB_SUPPORT
select CPU_NO_EFFICIENT_FFS
select ARCH_HAS_RAW_COPY_USER
config GENERIC_CSUM
def_bool y
...
...
arch/nios2/include/asm/uaccess.h
View file @
de51d6cc
...
...
@@ -73,36 +73,17 @@ static inline unsigned long __must_check clear_user(void __user *to,
return
__clear_user
(
to
,
n
);
}
extern
long
__copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
);
extern
long
__copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
);
static
inline
long
copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
)
{
unsigned
long
res
=
n
;
if
(
access_ok
(
VERIFY_READ
,
from
,
n
))
res
=
__copy_from_user
(
to
,
from
,
n
);
if
(
unlikely
(
res
))
memset
(
to
+
(
n
-
res
),
0
,
res
);
return
res
;
}
static
inline
long
copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
)
{
if
(
!
access_ok
(
VERIFY_WRITE
,
to
,
n
))
return
n
;
return
__copy_to_user
(
to
,
from
,
n
);
}
extern
unsigned
long
raw_copy_from_user
(
void
*
to
,
const
void
__user
*
from
,
unsigned
long
n
);
extern
unsigned
long
raw_copy_to_user
(
void
__user
*
to
,
const
void
*
from
,
unsigned
long
n
);
#define INLINE_COPY_FROM_USER
#define INLINE_COPY_TO_USER
extern
long
strncpy_from_user
(
char
*
__to
,
const
char
__user
*
__from
,
long
__len
);
extern
long
strnlen_user
(
const
char
__user
*
s
,
long
n
);
#define __copy_from_user_inatomic __copy_from_user
#define __copy_to_user_inatomic __copy_to_user
/* Optimized macros */
#define __get_user_asm(val, insn, addr, err) \
{ \
...
...
arch/nios2/mm/uaccess.c
View file @
de51d6cc
...
...
@@ -10,9 +10,9 @@
#include <linux/export.h>
#include <linux/uaccess.h>
asm
(
".global
_
_copy_from_user
\n
"
" .type
_
_copy_from_user, @function
\n
"
"
_
_copy_from_user:
\n
"
asm
(
".global
raw
_copy_from_user
\n
"
" .type
raw
_copy_from_user, @function
\n
"
"
raw
_copy_from_user:
\n
"
" movi r2,7
\n
"
" mov r3,r4
\n
"
" bge r2,r6,1f
\n
"
...
...
@@ -65,12 +65,12 @@ asm(".global __copy_from_user\n"
".word 7b,13b
\n
"
".previous
\n
"
);
EXPORT_SYMBOL
(
_
_copy_from_user
);
EXPORT_SYMBOL
(
raw
_copy_from_user
);
asm
(
" .global
_
_copy_to_user
\n
"
" .type
_
_copy_to_user, @function
\n
"
"
_
_copy_to_user:
\n
"
" .global
raw
_copy_to_user
\n
"
" .type
raw
_copy_to_user, @function
\n
"
"
raw
_copy_to_user:
\n
"
" movi r2,7
\n
"
" mov r3,r4
\n
"
" bge r2,r6,1f
\n
"
...
...
@@ -127,7 +127,7 @@ asm(
".word 11b,13b
\n
"
".word 12b,13b
\n
"
".previous
\n
"
);
EXPORT_SYMBOL
(
_
_copy_to_user
);
EXPORT_SYMBOL
(
raw
_copy_to_user
);
long
strncpy_from_user
(
char
*
__to
,
const
char
__user
*
__from
,
long
__len
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment