blob: 50ef7d2ef03c8041e1de4c73d5702acc4433bc70 [file] [log] [blame]
Al Viroefb170c2014-08-07 08:39:04 -04001#include <linux/fs.h>
2#include <linux/slab.h>
3#include <linux/fs_pin.h>
Al Viro8fa1f1c2014-05-21 18:22:52 -04004#include "internal.h"
Al Viroefb170c2014-08-07 08:39:04 -04005#include "mount.h"
6
Al Viroefb170c2014-08-07 08:39:04 -04007static DEFINE_SPINLOCK(pin_lock);
8
Al Viroefb170c2014-08-07 08:39:04 -04009void pin_remove(struct fs_pin *pin)
10{
11 spin_lock(&pin_lock);
12 hlist_del(&pin->m_list);
13 hlist_del(&pin->s_list);
14 spin_unlock(&pin_lock);
15}
16
Al Virofdab6842015-01-11 10:57:27 -050017void pin_insert_group(struct fs_pin *pin, struct vfsmount *m, struct hlist_head *p)
Al Viroefb170c2014-08-07 08:39:04 -040018{
19 spin_lock(&pin_lock);
Al Virofdab6842015-01-11 10:57:27 -050020 if (p)
21 hlist_add_head(&pin->s_list, p);
Al Viroefb170c2014-08-07 08:39:04 -040022 hlist_add_head(&pin->m_list, &real_mount(m)->mnt_pins);
23 spin_unlock(&pin_lock);
24}
25
Al Virofdab6842015-01-11 10:57:27 -050026void pin_insert(struct fs_pin *pin, struct vfsmount *m)
27{
28 pin_insert_group(pin, m, &m->mnt_sb->s_pins);
29}
30
Al Viro8fa1f1c2014-05-21 18:22:52 -040031void mnt_pin_kill(struct mount *m)
Al Viroefb170c2014-08-07 08:39:04 -040032{
33 while (1) {
34 struct hlist_node *p;
35 struct fs_pin *pin;
36 rcu_read_lock();
Al Viro8fa1f1c2014-05-21 18:22:52 -040037 p = ACCESS_ONCE(m->mnt_pins.first);
Al Viroefb170c2014-08-07 08:39:04 -040038 if (!p) {
39 rcu_read_unlock();
40 break;
41 }
42 pin = hlist_entry(p, struct fs_pin, m_list);
Al Viroefb170c2014-08-07 08:39:04 -040043 pin->kill(pin);
44 }
45}
46
Al Virofdab6842015-01-11 10:57:27 -050047void group_pin_kill(struct hlist_head *p)
Al Viroefb170c2014-08-07 08:39:04 -040048{
49 while (1) {
Al Virofdab6842015-01-11 10:57:27 -050050 struct hlist_node *q;
Al Viroefb170c2014-08-07 08:39:04 -040051 struct fs_pin *pin;
52 rcu_read_lock();
Al Virofdab6842015-01-11 10:57:27 -050053 q = ACCESS_ONCE(p->first);
54 if (!q) {
Al Viroefb170c2014-08-07 08:39:04 -040055 rcu_read_unlock();
56 break;
57 }
Al Virofdab6842015-01-11 10:57:27 -050058 pin = hlist_entry(q, struct fs_pin, s_list);
Al Viroefb170c2014-08-07 08:39:04 -040059 pin->kill(pin);
60 }
61}