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
6b45d858
Commit
6b45d858
authored
Mar 20, 2006
by
Trond Myklebust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFS: Clean up nfs_get_user_pages
Signed-off-by:
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
parent
606bbba0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
30 deletions
+29
-30
fs/nfs/direct.c
fs/nfs/direct.c
+29
-30
No files found.
fs/nfs/direct.c
View file @
6b45d858
...
...
@@ -59,7 +59,6 @@
#define NFSDBG_FACILITY NFSDBG_VFS
static
void
nfs_free_user_pages
(
struct
page
**
pages
,
int
npages
,
int
do_dirty
);
static
kmem_cache_t
*
nfs_direct_cachep
;
/*
...
...
@@ -121,6 +120,18 @@ ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_
return
-
EINVAL
;
}
static
void
nfs_free_user_pages
(
struct
page
**
pages
,
int
npages
,
int
do_dirty
)
{
int
i
;
for
(
i
=
0
;
i
<
npages
;
i
++
)
{
struct
page
*
page
=
pages
[
i
];
if
(
do_dirty
&&
!
PageCompound
(
page
))
set_page_dirty_lock
(
page
);
page_cache_release
(
page
);
}
kfree
(
pages
);
}
static
inline
int
nfs_get_user_pages
(
int
rw
,
unsigned
long
user_addr
,
size_t
size
,
struct
page
***
pages
)
{
int
result
=
-
ENOMEM
;
...
...
@@ -138,31 +149,23 @@ static inline int nfs_get_user_pages(int rw, unsigned long user_addr, size_t siz
page_count
,
(
rw
==
READ
),
0
,
*
pages
,
NULL
);
up_read
(
&
current
->
mm
->
mmap_sem
);
if
(
result
!=
page_count
)
{
/*
* If we got fewer pages than expected from get_user_pages(),
* the user buffer runs off the end of a mapping; return EFAULT.
* If we got fewer pages than expected from
* get_user_pages(), the user buffer runs off the
* end of a mapping; return EFAULT.
*/
if
(
result
>=
0
&&
result
<
page_count
)
{
if
(
result
>=
0
)
{
nfs_free_user_pages
(
*
pages
,
result
,
0
);
*
pages
=
NULL
;
result
=
-
EFAULT
;
}
else
kfree
(
*
pages
);
*
pages
=
NULL
;
}
}
return
result
;
}
static
void
nfs_free_user_pages
(
struct
page
**
pages
,
int
npages
,
int
do_dirty
)
{
int
i
;
for
(
i
=
0
;
i
<
npages
;
i
++
)
{
struct
page
*
page
=
pages
[
i
];
if
(
do_dirty
&&
!
PageCompound
(
page
))
set_page_dirty_lock
(
page
);
page_cache_release
(
page
);
}
kfree
(
pages
);
}
static
inline
struct
nfs_direct_req
*
nfs_direct_req_alloc
(
void
)
{
struct
nfs_direct_req
*
dreq
;
...
...
@@ -788,13 +791,11 @@ ssize_t nfs_file_direct_read(struct kiocb *iocb, char __user *buf, size_t count,
if
(
retval
)
goto
out
;
page_count
=
nfs_get_user_pages
(
READ
,
(
unsigned
long
)
buf
,
retval
=
nfs_get_user_pages
(
READ
,
(
unsigned
long
)
buf
,
count
,
&
pages
);
if
(
page_count
<
0
)
{
nfs_free_user_pages
(
pages
,
0
,
0
);
retval
=
page_count
;
if
(
retval
<
0
)
goto
out
;
}
page_count
=
retval
;
retval
=
nfs_direct_read
(
iocb
,
(
unsigned
long
)
buf
,
count
,
pos
,
pages
,
page_count
);
...
...
@@ -862,13 +863,11 @@ ssize_t nfs_file_direct_write(struct kiocb *iocb, const char __user *buf, size_t
if
(
retval
)
goto
out
;
page_count
=
nfs_get_user_pages
(
WRITE
,
(
unsigned
long
)
buf
,
retval
=
nfs_get_user_pages
(
WRITE
,
(
unsigned
long
)
buf
,
count
,
&
pages
);
if
(
page_count
<
0
)
{
nfs_free_user_pages
(
pages
,
0
,
0
);
retval
=
page_count
;
if
(
retval
<
0
)
goto
out
;
}
page_count
=
retval
;
retval
=
nfs_direct_write
(
iocb
,
(
unsigned
long
)
buf
,
count
,
pos
,
pages
,
page_count
);
...
...
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