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
Kirill Smelkov
linux
Commits
47462c3c
Commit
47462c3c
authored
Apr 08, 2003
by
Trond Myklebust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make NFSv4 'read' code use the cached stateid if it exists.
parent
be6c1a46
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
4 deletions
+28
-4
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+26
-0
fs/nfs/nfs4xdr.c
fs/nfs/nfs4xdr.c
+1
-4
include/linux/nfs_xdr.h
include/linux/nfs_xdr.h
+1
-0
No files found.
fs/nfs/nfs4proc.c
View file @
47462c3c
...
...
@@ -1013,6 +1013,7 @@ nfs4_proc_read(struct inode *inode, struct rpc_cred *cred,
struct
page
*
page
,
int
*
eofp
)
{
struct
nfs_server
*
server
=
NFS_SERVER
(
inode
);
struct
nfs4_shareowner
*
sp
;
uint64_t
offset
=
page_offset
(
page
)
+
base
;
struct
nfs_readargs
arg
=
{
.
fh
=
NFS_FH
(
inode
),
...
...
@@ -1035,6 +1036,17 @@ nfs4_proc_read(struct inode *inode, struct rpc_cred *cred,
int
status
;
dprintk
(
"NFS call read %d @ %Ld
\n
"
,
count
,
(
long
long
)
offset
);
/*
* Try first to use O_RDONLY, then O_RDWR stateid.
*/
sp
=
nfs4_get_inode_share
(
inode
,
O_RDONLY
);
if
(
!
sp
)
sp
=
nfs4_get_inode_share
(
inode
,
O_RDWR
);
if
(
sp
)
memcpy
(
arg
.
stateid
,
sp
->
so_stateid
,
sizeof
(
nfs4_stateid
));
else
memcpy
(
arg
.
stateid
,
zero_stateid
,
sizeof
(
nfs4_stateid
));
fattr
->
valid
=
0
;
status
=
rpc_call_sync
(
server
->
client
,
&
msg
,
flags
);
if
(
!
status
)
{
...
...
@@ -1441,6 +1453,7 @@ nfs4_proc_read_setup(struct nfs_read_data *data, unsigned int count)
};
struct
inode
*
inode
=
data
->
inode
;
struct
nfs_page
*
req
=
nfs_list_entry
(
data
->
pages
.
next
);
struct
nfs4_shareowner
*
sp
;
int
flags
;
data
->
args
.
fh
=
NFS_FH
(
inode
);
...
...
@@ -1453,6 +1466,19 @@ nfs4_proc_read_setup(struct nfs_read_data *data, unsigned int count)
data
->
res
.
eof
=
0
;
data
->
timestamp
=
jiffies
;
if
(
req
->
wb_file
)
{
unsigned
int
oflags
=
req
->
wb_file
->
f_flags
;
sp
=
nfs4_get_inode_share
(
inode
,
oflags
);
}
else
{
sp
=
nfs4_get_inode_share
(
inode
,
O_RDONLY
);
if
(
!
sp
)
sp
=
nfs4_get_inode_share
(
inode
,
O_RDWR
);
}
if
(
sp
)
memcpy
(
data
->
args
.
stateid
,
sp
->
so_stateid
,
sizeof
(
nfs4_stateid
));
else
memcpy
(
data
->
args
.
stateid
,
zero_stateid
,
sizeof
(
nfs4_stateid
));
/* N.B. Do we need to test? Never called for swapfile inode */
flags
=
RPC_TASK_ASYNC
|
(
IS_SWAPFILE
(
inode
)
?
NFS_RPC_SWAPFLAGS
:
0
);
...
...
fs/nfs/nfs4xdr.c
View file @
47462c3c
...
...
@@ -654,10 +654,7 @@ encode_read(struct xdr_stream *xdr, struct nfs_readargs *args)
RESERVE_SPACE
(
32
);
WRITE32
(
OP_READ
);
WRITE32
(
0
);
/* all-zero stateid! */
WRITE32
(
0
);
WRITE32
(
0
);
WRITE32
(
0
);
WRITEMEM
(
args
->
stateid
,
sizeof
(
nfs4_stateid
));
WRITE64
(
args
->
offset
);
WRITE32
(
args
->
count
);
...
...
include/linux/nfs_xdr.h
View file @
47462c3c
...
...
@@ -157,6 +157,7 @@ struct nfs_closeres {
struct
nfs_readargs
{
struct
nfs_fh
*
fh
;
nfs4_stateid
stateid
;
__u64
offset
;
__u32
count
;
unsigned
int
pgbase
;
...
...
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