From: Corentin Labbe Date: Tue, 26 Sep 2017 07:14:05 +0000 (+0200) Subject: nfs_common: fix build warning in grace.c X-Git-Tag: v4.15-rc1~40^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=033c006e5fe08233014d449715171f07e68a4a3a;p=thirdparty%2Fkernel%2Flinux.git 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 Reviewed-by: Jeff Layton Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfs_common/grace.c b/fs/nfs_common/grace.c index 420d3a0ab258f..519396967e79c 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);