Lines Matching refs:job_list
499 static void fio_server_add_job_pid(struct flist_head *job_list, pid_t pid) in fio_server_add_job_pid() argument
502 fio_server_add_fork_item(pid, job_list); in fio_server_add_job_pid()
557 static void fio_server_check_jobs(struct flist_head *job_list) in fio_server_check_jobs() argument
559 fio_server_check_fork_items(job_list); in fio_server_check_jobs()
589 static int handle_run_cmd(struct flist_head *job_list, struct fio_net_cmd *cmd) in handle_run_cmd() argument
599 fio_server_add_job_pid(job_list, pid); in handle_run_cmd()
798 static int handle_command(struct flist_head *job_list, struct fio_net_cmd *cmd) in handle_command() argument
829 ret = handle_run_cmd(job_list, cmd); in handle_command()
874 FLIST_HEAD(job_list); in handle_connection()
891 if (!flist_empty(&job_list)) in handle_connection()
901 fio_server_check_jobs(&job_list); in handle_connection()
913 fio_server_check_jobs(&job_list); in handle_connection()
924 ret = handle_command(&job_list, cmd); in handle_connection()