Merge remote-tracking branch 'scsi-queue/core-for-3.19' into for-linus
[deliverable/linux.git] / include / linux / fs_pin.h
CommitLineData
efb170c2
AV
1#include <linux/fs.h>
2
3struct fs_pin {
4 atomic_long_t count;
5 union {
6 struct {
7 struct hlist_node s_list;
8 struct hlist_node m_list;
9 };
10 struct rcu_head rcu;
11 };
12 void (*kill)(struct fs_pin *);
13};
14
15void pin_put(struct fs_pin *);
16void pin_remove(struct fs_pin *);
17void pin_insert(struct fs_pin *, struct vfsmount *);
This page took 0.057738 seconds and 5 git commands to generate.