Release 4.7 include/linux/fs_pin.h
#include <linux/wait.h>
struct fs_pin {
wait_queue_head_t wait;
int done;
struct hlist_node s_list;
struct hlist_node m_list;
void (*kill)(struct fs_pin *);
};
struct vfsmount;
static inline void init_fs_pin(struct fs_pin *p, void (*kill)(struct fs_pin *))
{
init_waitqueue_head(&p->wait);
INIT_HLIST_NODE(&p->s_list);
INIT_HLIST_NODE(&p->m_list);
p->kill = kill;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 37 | 69.81% | 1 | 50.00% |
eric w. biederman | eric w. biederman | 16 | 30.19% | 1 | 50.00% |
| Total | 53 | 100.00% | 2 | 100.00% |
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 *);
void pin_kill(struct fs_pin *);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 117 | 87.97% | 3 | 75.00% |
eric w. biederman | eric w. biederman | 16 | 12.03% | 1 | 25.00% |
| Total | 133 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.