You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
fdab684d72
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
12 lines
296 B
C
12 lines
296 B
C
#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 *);
|