aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs_pin.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs_pin.h')
-rw-r--r--include/linux/fs_pin.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/linux/fs_pin.h b/include/linux/fs_pin.h
index 2be38d1464ae..9dc4e0384bfb 100644
--- a/include/linux/fs_pin.h
+++ b/include/linux/fs_pin.h
@@ -1,11 +1,22 @@
1#include <linux/fs.h> 1#include <linux/wait.h>
2 2
3struct fs_pin { 3struct fs_pin {
4 wait_queue_head_t wait;
5 int done;
4 struct hlist_node s_list; 6 struct hlist_node s_list;
5 struct hlist_node m_list; 7 struct hlist_node m_list;
6 void (*kill)(struct fs_pin *); 8 void (*kill)(struct fs_pin *);
7}; 9};
8 10
11struct vfsmount;
12
13static inline void init_fs_pin(struct fs_pin *p, void (*kill)(struct fs_pin *))
14{
15 init_waitqueue_head(&p->wait);
16 p->kill = kill;
17}
18
9void pin_remove(struct fs_pin *); 19void pin_remove(struct fs_pin *);
10void pin_insert_group(struct fs_pin *, struct vfsmount *, struct hlist_head *); 20void pin_insert_group(struct fs_pin *, struct vfsmount *, struct hlist_head *);
11void pin_insert(struct fs_pin *, struct vfsmount *); 21void pin_insert(struct fs_pin *, struct vfsmount *);
22void pin_kill(struct fs_pin *);