Lines Matching refs:info
55 struct bpf_iter_seq_task_info *info = seq->private; in task_seq_start() local
58 task = task_seq_get_next(info->common.ns, &info->tid, false); in task_seq_start()
69 struct bpf_iter_seq_task_info *info = seq->private; in task_seq_next() local
73 ++info->tid; in task_seq_next()
75 task = task_seq_get_next(info->common.ns, &info->tid, false); in task_seq_next()
139 task_file_seq_get_next(struct bpf_iter_seq_task_file_info *info) in task_file_seq_get_next() argument
141 struct pid_namespace *ns = info->common.ns; in task_file_seq_get_next()
142 u32 curr_tid = info->tid, max_fds; in task_file_seq_get_next()
145 int curr_fd = info->fd; in task_file_seq_get_next()
152 if (info->task) { in task_file_seq_get_next()
153 curr_task = info->task; in task_file_seq_get_next()
154 curr_files = info->files; in task_file_seq_get_next()
155 curr_fd = info->fd; in task_file_seq_get_next()
159 info->task = NULL; in task_file_seq_get_next()
160 info->files = NULL; in task_file_seq_get_next()
161 info->tid = curr_tid; in task_file_seq_get_next()
169 info->fd = 0; in task_file_seq_get_next()
173 info->files = curr_files; in task_file_seq_get_next()
174 info->task = curr_task; in task_file_seq_get_next()
175 if (curr_tid == info->tid) { in task_file_seq_get_next()
176 curr_fd = info->fd; in task_file_seq_get_next()
178 info->tid = curr_tid; in task_file_seq_get_next()
195 info->fd = curr_fd; in task_file_seq_get_next()
204 info->task = NULL; in task_file_seq_get_next()
205 info->files = NULL; in task_file_seq_get_next()
206 info->fd = 0; in task_file_seq_get_next()
207 curr_tid = ++(info->tid); in task_file_seq_get_next()
213 struct bpf_iter_seq_task_file_info *info = seq->private; in task_file_seq_start() local
216 info->task = NULL; in task_file_seq_start()
217 info->files = NULL; in task_file_seq_start()
218 file = task_file_seq_get_next(info); in task_file_seq_start()
227 struct bpf_iter_seq_task_file_info *info = seq->private; in task_file_seq_next() local
230 ++info->fd; in task_file_seq_next()
232 return task_file_seq_get_next(info); in task_file_seq_next()
249 struct bpf_iter_seq_task_file_info *info = seq->private; in DEFINE_BPF_ITER_FUNC() local
260 ctx.task = info->task; in DEFINE_BPF_ITER_FUNC()
261 ctx.fd = info->fd; in DEFINE_BPF_ITER_FUNC()
273 struct bpf_iter_seq_task_file_info *info = seq->private; in task_file_seq_stop() local
279 put_files_struct(info->files); in task_file_seq_stop()
280 put_task_struct(info->task); in task_file_seq_stop()
281 info->files = NULL; in task_file_seq_stop()
282 info->task = NULL; in task_file_seq_stop()