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
6ed2288c
Commit
6ed2288c
authored
Jan 30, 2017
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vchiq_2835_arm: switch to get_user_pages_fast()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
2bd6bf03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c
...taging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c
+7
-13
No files found.
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c
View file @
6ed2288c
...
...
@@ -92,8 +92,7 @@ static irqreturn_t
vchiq_doorbell_irq
(
int
irq
,
void
*
dev_id
);
static
struct
vchiq_pagelist_info
*
create_pagelist
(
char
__user
*
buf
,
size_t
count
,
unsigned
short
type
,
struct
task_struct
*
task
);
create_pagelist
(
char
__user
*
buf
,
size_t
count
,
unsigned
short
type
);
static
void
free_pagelist
(
struct
vchiq_pagelist_info
*
pagelistinfo
,
...
...
@@ -251,8 +250,7 @@ vchiq_prepare_bulk_data(VCHIQ_BULK_T *bulk, VCHI_MEM_HANDLE_T memhandle,
pagelistinfo
=
create_pagelist
((
char
__user
*
)
offset
,
size
,
(
dir
==
VCHIQ_BULK_RECEIVE
)
?
PAGELIST_READ
:
PAGELIST_WRITE
,
current
);
:
PAGELIST_WRITE
);
if
(
!
pagelistinfo
)
return
VCHIQ_ERROR
;
...
...
@@ -391,8 +389,7 @@ cleanup_pagelistinfo(struct vchiq_pagelist_info *pagelistinfo)
*/
static
struct
vchiq_pagelist_info
*
create_pagelist
(
char
__user
*
buf
,
size_t
count
,
unsigned
short
type
,
struct
task_struct
*
task
)
create_pagelist
(
char
__user
*
buf
,
size_t
count
,
unsigned
short
type
)
{
PAGELIST_T
*
pagelist
;
struct
vchiq_pagelist_info
*
pagelistinfo
;
...
...
@@ -472,14 +469,11 @@ create_pagelist(char __user *buf, size_t count, unsigned short type,
}
/* do not try and release vmalloc pages */
}
else
{
down_read
(
&
task
->
mm
->
mmap_sem
);
actual_pages
=
get_user_pages
(
(
unsigned
long
)
buf
&
PAGE_MASK
,
actual_pages
=
get_user_pages_fast
(
(
unsigned
long
)
buf
&
PAGE_MASK
,
num_pages
,
(
type
==
PAGELIST_READ
)
?
FOLL_WRITE
:
0
,
pages
,
NULL
/*vmas */
);
up_read
(
&
task
->
mm
->
mmap_sem
);
type
==
PAGELIST_READ
,
pages
);
if
(
actual_pages
!=
num_pages
)
{
vchiq_log_info
(
vchiq_arm_log_level
,
...
...
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