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
d608b1b2
Commit
d608b1b2
authored
May 28, 2004
by
Alexander Viro
Committed by
Linus Torvalds
May 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sparse: nfs __user annotation (client only, and not touching RPC)
parent
7a08b07c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
fs/nfs/direct.c
fs/nfs/direct.c
+2
-2
fs/nfs/file.c
fs/nfs/file.c
+6
-6
include/linux/nfs_fs.h
include/linux/nfs_fs.h
+1
-1
No files found.
fs/nfs/direct.c
View file @
d608b1b2
...
@@ -536,7 +536,7 @@ nfs_file_direct_read(struct kiocb *iocb, char *buf, size_t count, loff_t pos)
...
@@ -536,7 +536,7 @@ nfs_file_direct_read(struct kiocb *iocb, char *buf, size_t count, loff_t pos)
* is no atomic O_APPEND write facility in the NFS protocol.
* is no atomic O_APPEND write facility in the NFS protocol.
*/
*/
ssize_t
ssize_t
nfs_file_direct_write
(
struct
kiocb
*
iocb
,
const
char
*
buf
,
size_t
count
,
loff_t
pos
)
nfs_file_direct_write
(
struct
kiocb
*
iocb
,
const
char
__user
*
buf
,
size_t
count
,
loff_t
pos
)
{
{
ssize_t
retval
=
-
EINVAL
;
ssize_t
retval
=
-
EINVAL
;
loff_t
*
ppos
=
&
iocb
->
ki_pos
;
loff_t
*
ppos
=
&
iocb
->
ki_pos
;
...
@@ -546,7 +546,7 @@ nfs_file_direct_write(struct kiocb *iocb, const char *buf, size_t count, loff_t
...
@@ -546,7 +546,7 @@ nfs_file_direct_write(struct kiocb *iocb, const char *buf, size_t count, loff_t
struct
address_space
*
mapping
=
file
->
f_mapping
;
struct
address_space
*
mapping
=
file
->
f_mapping
;
struct
inode
*
inode
=
mapping
->
host
;
struct
inode
*
inode
=
mapping
->
host
;
struct
iovec
iov
=
{
struct
iovec
iov
=
{
.
iov_base
=
(
void
__user
*
)
buf
,
.
iov_base
=
buf
,
.
iov_len
=
count
,
.
iov_len
=
count
,
};
};
...
...
fs/nfs/file.c
View file @
d608b1b2
...
@@ -38,9 +38,9 @@ static long nfs_file_fcntl(int fd, unsigned int cmd,
...
@@ -38,9 +38,9 @@ static long nfs_file_fcntl(int fd, unsigned int cmd,
static
int
nfs_file_open
(
struct
inode
*
,
struct
file
*
);
static
int
nfs_file_open
(
struct
inode
*
,
struct
file
*
);
static
int
nfs_file_release
(
struct
inode
*
,
struct
file
*
);
static
int
nfs_file_release
(
struct
inode
*
,
struct
file
*
);
static
int
nfs_file_mmap
(
struct
file
*
,
struct
vm_area_struct
*
);
static
int
nfs_file_mmap
(
struct
file
*
,
struct
vm_area_struct
*
);
static
ssize_t
nfs_file_sendfile
(
struct
file
*
,
loff_t
*
,
size_t
,
read_actor_t
,
void
*
);
static
ssize_t
nfs_file_sendfile
(
struct
file
*
,
loff_t
*
,
size_t
,
read_actor_t
,
void
__user
*
);
static
ssize_t
nfs_file_read
(
struct
kiocb
*
,
char
*
,
size_t
,
loff_t
);
static
ssize_t
nfs_file_read
(
struct
kiocb
*
,
char
__user
*
,
size_t
,
loff_t
);
static
ssize_t
nfs_file_write
(
struct
kiocb
*
,
const
char
*
,
size_t
,
loff_t
);
static
ssize_t
nfs_file_write
(
struct
kiocb
*
,
const
char
__user
*
,
size_t
,
loff_t
);
static
int
nfs_file_flush
(
struct
file
*
);
static
int
nfs_file_flush
(
struct
file
*
);
static
int
nfs_fsync
(
struct
file
*
,
struct
dentry
*
dentry
,
int
datasync
);
static
int
nfs_fsync
(
struct
file
*
,
struct
dentry
*
dentry
,
int
datasync
);
...
@@ -148,7 +148,7 @@ nfs_file_flush(struct file *file)
...
@@ -148,7 +148,7 @@ nfs_file_flush(struct file *file)
}
}
static
ssize_t
static
ssize_t
nfs_file_read
(
struct
kiocb
*
iocb
,
char
*
buf
,
size_t
count
,
loff_t
pos
)
nfs_file_read
(
struct
kiocb
*
iocb
,
char
__user
*
buf
,
size_t
count
,
loff_t
pos
)
{
{
struct
dentry
*
dentry
=
iocb
->
ki_filp
->
f_dentry
;
struct
dentry
*
dentry
=
iocb
->
ki_filp
->
f_dentry
;
struct
inode
*
inode
=
dentry
->
d_inode
;
struct
inode
*
inode
=
dentry
->
d_inode
;
...
@@ -171,7 +171,7 @@ nfs_file_read(struct kiocb *iocb, char * buf, size_t count, loff_t pos)
...
@@ -171,7 +171,7 @@ nfs_file_read(struct kiocb *iocb, char * buf, size_t count, loff_t pos)
static
ssize_t
static
ssize_t
nfs_file_sendfile
(
struct
file
*
filp
,
loff_t
*
ppos
,
size_t
count
,
nfs_file_sendfile
(
struct
file
*
filp
,
loff_t
*
ppos
,
size_t
count
,
read_actor_t
actor
,
void
*
target
)
read_actor_t
actor
,
void
__user
*
target
)
{
{
struct
dentry
*
dentry
=
filp
->
f_dentry
;
struct
dentry
*
dentry
=
filp
->
f_dentry
;
struct
inode
*
inode
=
dentry
->
d_inode
;
struct
inode
*
inode
=
dentry
->
d_inode
;
...
@@ -267,7 +267,7 @@ struct address_space_operations nfs_file_aops = {
...
@@ -267,7 +267,7 @@ struct address_space_operations nfs_file_aops = {
* Write to a file (through the page cache).
* Write to a file (through the page cache).
*/
*/
static
ssize_t
static
ssize_t
nfs_file_write
(
struct
kiocb
*
iocb
,
const
char
*
buf
,
size_t
count
,
loff_t
pos
)
nfs_file_write
(
struct
kiocb
*
iocb
,
const
char
__user
*
buf
,
size_t
count
,
loff_t
pos
)
{
{
struct
dentry
*
dentry
=
iocb
->
ki_filp
->
f_dentry
;
struct
dentry
*
dentry
=
iocb
->
ki_filp
->
f_dentry
;
struct
inode
*
inode
=
dentry
->
d_inode
;
struct
inode
*
inode
=
dentry
->
d_inode
;
...
...
include/linux/nfs_fs.h
View file @
d608b1b2
...
@@ -308,7 +308,7 @@ extern ssize_t nfs_direct_IO(int, struct kiocb *, const struct iovec *, loff_t,
...
@@ -308,7 +308,7 @@ extern ssize_t nfs_direct_IO(int, struct kiocb *, const struct iovec *, loff_t,
unsigned
long
);
unsigned
long
);
extern
ssize_t
nfs_file_direct_read
(
struct
kiocb
*
iocb
,
char
*
buf
,
extern
ssize_t
nfs_file_direct_read
(
struct
kiocb
*
iocb
,
char
*
buf
,
size_t
count
,
loff_t
pos
);
size_t
count
,
loff_t
pos
);
extern
ssize_t
nfs_file_direct_write
(
struct
kiocb
*
iocb
,
const
char
*
buf
,
extern
ssize_t
nfs_file_direct_write
(
struct
kiocb
*
iocb
,
const
char
__user
*
buf
,
size_t
count
,
loff_t
pos
);
size_t
count
,
loff_t
pos
);
/*
/*
...
...
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