diff options
author | Corentin Labbe <clabbe.montjoie@gmail.com> | 2017-09-26 09:14:05 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2017-09-26 09:25:19 -0400 |
commit | 033c006e5fe08233014d449715171f07e68a4a3a (patch) | |
tree | 39835116ed3c39e83f2c11a36c97f0d09f1a0d35 /fs/nfs_common | |
parent | 7d34cd12061d2cf38f7505c0ab2ae2f03fbe8e08 (diff) | |
download | linux-033c006e5fe08233014d449715171f07e68a4a3a.tar.gz linux-033c006e5fe08233014d449715171f07e68a4a3a.tar.bz2 linux-033c006e5fe08233014d449715171f07e68a4a3a.zip |
nfs_common: fix build warning in grace.c
This fix the following warning
fs/nfs_common/grace.c:66:1: warning: no previous prototype for function '__state_in_grace' [-Wmissing-prototypes]
by adding the missing static.
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfs_common')
-rw-r--r-- | fs/nfs_common/grace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs_common/grace.c b/fs/nfs_common/grace.c index 420d3a0ab258..519396967e79 100644 --- a/fs/nfs_common/grace.c +++ b/fs/nfs_common/grace.c @@ -62,7 +62,7 @@ EXPORT_SYMBOL_GPL(locks_end_grace); * to answer ordinary lock requests, and when they should accept only * lock reclaims. */ -int +static int __state_in_grace(struct net *net, bool open) { struct list_head *grace_list = net_generic(net, grace_net_id); |