Skip to content

Commit

Permalink
nfs_common: move locks_in_grace comment at the right place
Browse files Browse the repository at this point in the history
Commit c87fb4a ("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 <[email protected]>
Reviewed-by: Jeff Layton <[email protected]>
Signed-off-by: J. Bruce Fields <[email protected]>
  • Loading branch information
montjoie authored and J. Bruce Fields committed Sep 26, 2017
1 parent 033c006 commit 809d4fc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions fs/nfs_common/grace.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,6 @@ locks_end_grace(struct lock_manager *lm)
}
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
__state_in_grace(struct net *net, bool open)
{
Expand All @@ -78,6 +71,13 @@ __state_in_grace(struct net *net, bool open)
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)
{
return __state_in_grace(net, 0);
Expand Down

0 comments on commit 809d4fc

Please sign in to comment.