blob: 8dbaff7820982aeeaff2e8ec4f90dfc3f7302e04 [file] [log] [blame]
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04001/*
2 * Common code for control of lockd and nfsv4 grace periods.
3 */
4
5#include <linux/module.h>
6#include <linux/lockd/bind.h>
Stanislav Kinsburskydb9c4552012-07-25 16:57:13 +04007#include <net/net_namespace.h>
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -04008
Stanislav Kinsburskydb9c4552012-07-25 16:57:13 +04009#include "netns.h"
10
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -040011static DEFINE_SPINLOCK(grace_lock);
12
13/**
14 * locks_start_grace
15 * @lm: who this grace period is for
16 *
17 * A grace period is a period during which locks should not be given
18 * out. Currently grace periods are only enforced by the two lock
19 * managers (lockd and nfsd), using the locks_in_grace() function to
20 * check when they are in a grace period.
21 *
22 * This function is called to start a grace period.
23 */
24void locks_start_grace(struct lock_manager *lm)
25{
Stanislav Kinsburskydb9c4552012-07-25 16:57:13 +040026 struct net *net = &init_net;
27 struct lockd_net *ln = net_generic(net, lockd_net_id);
28
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -040029 spin_lock(&grace_lock);
Stanislav Kinsburskydb9c4552012-07-25 16:57:13 +040030 list_add(&lm->list, &ln->grace_list);
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -040031 spin_unlock(&grace_lock);
32}
33EXPORT_SYMBOL_GPL(locks_start_grace);
34
35/**
36 * locks_end_grace
37 * @lm: who this grace period is for
38 *
39 * Call this function to state that the given lock manager is ready to
40 * resume regular locking. The grace period will not end until all lock
41 * managers that called locks_start_grace() also call locks_end_grace().
42 * Note that callers count on it being safe to call this more than once,
43 * and the second call should be a no-op.
44 */
45void locks_end_grace(struct lock_manager *lm)
46{
47 spin_lock(&grace_lock);
48 list_del_init(&lm->list);
49 spin_unlock(&grace_lock);
50}
51EXPORT_SYMBOL_GPL(locks_end_grace);
52
53/**
54 * locks_in_grace
55 *
56 * Lock managers call this function to determine when it is OK for them
57 * to answer ordinary lock requests, and when they should accept only
58 * lock reclaims.
59 */
60int locks_in_grace(void)
61{
Stanislav Kinsburskydb9c4552012-07-25 16:57:13 +040062 struct net *net = &init_net;
63 struct lockd_net *ln = net_generic(net, lockd_net_id);
64
65 return !list_empty(&ln->grace_list);
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -040066}
67EXPORT_SYMBOL_GPL(locks_in_grace);