aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs_pin.h
blob: a2e71912e758d286f58f7f5ab19010f2fbc257d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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(struct fs_pin *, struct vfsmount *);