nfs_common: move locks_in_grace comment at the right place
Commit c87fb4a378
("lockd: NLM grace period shouldn't block NFSv4 opens")
made the locks_in_grace() comment be in the wrong place.
This patch move this comment just at the right place.
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>
This commit is contained in:
parent
033c006e5f
commit
809d4fcf9d
|
@ -55,13 +55,6 @@ locks_end_grace(struct lock_manager *lm)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(locks_end_grace);
|
EXPORT_SYMBOL_GPL(locks_end_grace);
|
||||||
|
|
||||||
/**
|
|
||||||
* locks_in_grace
|
|
||||||
*
|
|
||||||
* Lock managers call this function to determine when it is OK for them
|
|
||||||
* to answer ordinary lock requests, and when they should accept only
|
|
||||||
* lock reclaims.
|
|
||||||
*/
|
|
||||||
static int
|
static int
|
||||||
__state_in_grace(struct net *net, bool open)
|
__state_in_grace(struct net *net, bool open)
|
||||||
{
|
{
|
||||||
|
@ -78,6 +71,13 @@ __state_in_grace(struct net *net, bool open)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* locks_in_grace
|
||||||
|
*
|
||||||
|
* Lock managers call this function to determine when it is OK for them
|
||||||
|
* to answer ordinary lock requests, and when they should accept only
|
||||||
|
* lock reclaims.
|
||||||
|
*/
|
||||||
int locks_in_grace(struct net *net)
|
int locks_in_grace(struct net *net)
|
||||||
{
|
{
|
||||||
return __state_in_grace(net, 0);
|
return __state_in_grace(net, 0);
|
||||||
|
|
Loading…
Reference in New Issue