Searched refs:exe_file (Results 1 – 10 of 10) sorted by relevance
| /linux/arch/arc/kernel/ |
| H A D | troubleshoot.c | 58 struct file *exe_file; in print_task_path_n_nm() local 65 exe_file = get_mm_exe_file(mm); in print_task_path_n_nm() 68 if (exe_file) { in print_task_path_n_nm() 69 path_nm = file_path(exe_file, buf, ARC_PATH_MAX-1); in print_task_path_n_nm() 70 fput(exe_file); in print_task_path_n_nm()
|
| /linux/kernel/ |
| H A D | audit_watch.c | 529 struct file *exe_file; in audit_exe_compare() local 539 exe_file = get_mm_exe_file(current->mm); in audit_exe_compare() 540 if (!exe_file) in audit_exe_compare() 542 ino = file_inode(exe_file)->i_ino; in audit_exe_compare() 543 dev = file_inode(exe_file)->i_sb->s_dev; in audit_exe_compare() 544 fput(exe_file); in audit_exe_compare()
|
| H A D | fork.c | 561 struct file *exe_file; in dup_mm_exe_file() local 563 exe_file = get_mm_exe_file(oldmm); in dup_mm_exe_file() 564 RCU_INIT_POINTER(mm->exe_file, exe_file); in dup_mm_exe_file() 569 if (exe_file && exe_file_deny_write_access(exe_file)) in dup_mm_exe_file() 1091 RCU_INIT_POINTER(mm->exe_file, NULL); in mm_init() 1241 old_exe_file = rcu_dereference_raw(mm->exe_file); in set_mm_exe_file() 1252 rcu_assign_pointer(mm->exe_file, new_exe_file); in set_mm_exe_file() 1302 old_exe_file = rcu_dereference_raw(mm->exe_file); in replace_mm_exe_file() 1303 rcu_assign_pointer(mm->exe_file, new_exe_file); in replace_mm_exe_file() 1322 struct file *exe_file; in get_mm_exe_file() local [all …]
|
| H A D | taskstats.c | 160 struct file *exe_file = get_task_exe_file(tsk); in exe_add_tsk() local 162 if (exe_file) { in exe_add_tsk() 165 huge_encode_dev(exe_file->f_inode->i_sb->s_dev); in exe_add_tsk() 166 stats->ac_exe_inode = exe_file->f_inode->i_ino; in exe_add_tsk() 167 fput(exe_file); in exe_add_tsk()
|
| H A D | audit.c | 2400 struct file *exe_file; in audit_log_d_path_exe() local 2405 exe_file = get_mm_exe_file(mm); in audit_log_d_path_exe() 2406 if (!exe_file) in audit_log_d_path_exe() 2409 audit_log_d_path(ab, " exe=", &exe_file->f_path); in audit_log_d_path_exe() 2410 fput(exe_file); in audit_log_d_path_exe()
|
| /linux/security/tomoyo/ |
| H A D | util.c | 968 struct file *exe_file; in tomoyo_get_exe() local 974 exe_file = get_mm_exe_file(mm); in tomoyo_get_exe() 975 if (!exe_file) in tomoyo_get_exe() 978 cp = tomoyo_realpath_from_path(&exe_file->f_path); in tomoyo_get_exe() 979 fput(exe_file); in tomoyo_get_exe()
|
| /linux/fs/ |
| H A D | coredump.c | 197 struct file *exe_file; in cn_print_exe_file() local 201 exe_file = get_mm_exe_file(current->mm); in cn_print_exe_file() 202 if (!exe_file) in cn_print_exe_file() 211 path = file_path(exe_file, pathbuf, PATH_MAX); in cn_print_exe_file() 227 fput(exe_file); in cn_print_exe_file()
|
| /linux/mm/ |
| H A D | debug.c | 221 mm->exe_file, in dump_mm()
|
| /linux/fs/proc/ |
| H A D | base.c | 1783 struct file *exe_file; in proc_exe_link() local 1788 exe_file = get_task_exe_file(task); in proc_exe_link() 1790 if (exe_file) { in proc_exe_link() 1791 *exe_path = exe_file->f_path; in proc_exe_link() 1792 path_get(&exe_file->f_path); in proc_exe_link() 1793 fput(exe_file); in proc_exe_link()
|
| /linux/kernel/bpf/ |
| H A D | verifier.c | 7109 struct file __rcu *exe_file; in BTF_TYPE_SAFE_RCU_OR_NULL() local
|