Lines Matching refs:mark
26 struct fsnotify_mark *mark))
29 struct fsnotify_mark *mark;
32 list_for_each_entry(mark, &group->marks_list, g_list) {
33 show(m, mark);
75 static void inotify_fdinfo(struct seq_file *m, struct fsnotify_mark *mark)
80 if (mark->connector->type != FSNOTIFY_OBJ_TYPE_INODE)
83 inode_mark = container_of(mark, struct inotify_inode_mark, fsn_mark);
84 inode = igrab(fsnotify_conn_inode(mark->connector));
88 inotify_mark_user_mask(mark));
104 static void fanotify_fdinfo(struct seq_file *m, struct fsnotify_mark *mark)
109 if (mark->flags & FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY)
112 if (mark->connector->type == FSNOTIFY_OBJ_TYPE_INODE) {
113 inode = igrab(fsnotify_conn_inode(mark->connector));
118 mflags, mark->mask, mark->ignored_mask);
122 } else if (mark->connector->type == FSNOTIFY_OBJ_TYPE_VFSMOUNT) {
123 struct mount *mnt = fsnotify_conn_mount(mark->connector);
126 mnt->mnt_id, mflags, mark->mask, mark->ignored_mask);
127 } else if (mark->connector->type == FSNOTIFY_OBJ_TYPE_SB) {
128 struct super_block *sb = fsnotify_conn_sb(mark->connector);
131 sb->s_dev, mflags, mark->mask, mark->ignored_mask);