summaryrefslogtreecommitdiff
path: root/include/linux/fs_pin.h
blob: 2be38d1464ae269f4e31ab216f8e0f37931018b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <linux/fs.h>

struct fs_pin {
	struct hlist_node	s_list;
	struct hlist_node	m_list;
	void (*kill)(struct fs_pin *);
};

void pin_remove(struct fs_pin *);
void pin_insert_group(struct fs_pin *, struct vfsmount *, struct hlist_head *);
void pin_insert(struct fs_pin *, struct vfsmount *);