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
d8836f77
Commit
d8836f77
authored
6 years ago
by
J. Bruce Fields
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfsd4: remove unused nfs4_check_olstateid parameter
Signed-off-by:
J. Bruce Fields
<
bfields@redhat.com
>
parent
fdec6114
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fs/nfsd/nfs4state.c
fs/nfsd/nfs4state.c
+2
-2
No files found.
fs/nfsd/nfs4state.c
View file @
d8836f77
...
...
@@ -5112,7 +5112,7 @@ nfs4_find_file(struct nfs4_stid *s, int flags)
}
static
__be32
nfs4_check_olstateid
(
struct
svc_fh
*
fhp
,
struct
nfs4_ol_stateid
*
ols
,
int
flags
)
nfs4_check_olstateid
(
struct
nfs4_ol_stateid
*
ols
,
int
flags
)
{
__be32
status
;
...
...
@@ -5195,7 +5195,7 @@ nfs4_preprocess_stateid_op(struct svc_rqst *rqstp,
break
;
case
NFS4_OPEN_STID
:
case
NFS4_LOCK_STID
:
status
=
nfs4_check_olstateid
(
fhp
,
openlockstateid
(
s
),
flags
);
status
=
nfs4_check_olstateid
(
openlockstateid
(
s
),
flags
);
break
;
default:
status
=
nfserr_bad_stateid
;
...
...
This diff is collapsed.
Click to expand it.
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