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
2355c596
Commit
2355c596
authored
Apr 25, 2012
by
J. Bruce Fields
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nfsd4: fix missing "static"
Signed-off-by:
J. Bruce Fields
<
bfields@redhat.com
>
parent
bfa4b365
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
fs/nfsd/export.c
fs/nfsd/export.c
+1
-1
fs/nfsd/nfs4recover.c
fs/nfsd/nfs4recover.c
+1
-1
fs/nfsd/nfs4state.c
fs/nfsd/nfs4state.c
+1
-1
fs/nfsd/nfs4xdr.c
fs/nfsd/nfs4xdr.c
+1
-1
No files found.
fs/nfsd/export.c
View file @
2355c596
...
...
@@ -706,7 +706,7 @@ static struct cache_head *svc_export_alloc(void)
return
NULL
;
}
struct
cache_detail
svc_export_cache_template
=
{
st
atic
st
ruct
cache_detail
svc_export_cache_template
=
{
.
owner
=
THIS_MODULE
,
.
hash_size
=
EXPORT_HASHMAX
,
.
name
=
"nfsd.export"
,
...
...
fs/nfsd/nfs4recover.c
View file @
2355c596
...
...
@@ -1029,7 +1029,7 @@ rpc_pipefs_event(struct notifier_block *nb, unsigned long event, void *ptr)
return
ret
;
}
struct
notifier_block
nfsd4_cld_block
=
{
st
atic
st
ruct
notifier_block
nfsd4_cld_block
=
{
.
notifier_call
=
rpc_pipefs_event
,
};
...
...
fs/nfsd/nfs4state.c
View file @
2355c596
...
...
@@ -4021,7 +4021,7 @@ static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
__set_bit
(
access
,
&
lock_stp
->
st_access_bmap
);
}
__be32
lookup_or_create_lock_state
(
struct
nfsd4_compound_state
*
cstate
,
struct
nfs4_ol_stateid
*
ost
,
struct
nfsd4_lock
*
lock
,
struct
nfs4_ol_stateid
**
lst
,
bool
*
new
)
static
__be32
lookup_or_create_lock_state
(
struct
nfsd4_compound_state
*
cstate
,
struct
nfs4_ol_stateid
*
ost
,
struct
nfsd4_lock
*
lock
,
struct
nfs4_ol_stateid
**
lst
,
bool
*
new
)
{
struct
nfs4_file
*
fi
=
ost
->
st_file
;
struct
nfs4_openowner
*
oo
=
openowner
(
ost
->
st_stateowner
);
...
...
fs/nfsd/nfs4xdr.c
View file @
2355c596
...
...
@@ -3399,7 +3399,7 @@ nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
return
0
;
}
__be32
static
__be32
nfsd4_encode_test_stateid
(
struct
nfsd4_compoundres
*
resp
,
int
nfserr
,
struct
nfsd4_test_stateid
*
test_stateid
)
{
...
...
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