| /linux/include/linux/ |
| H A D | fs_pin.h | 9 void (*kill)(struct fs_pin *); member 14 static inline void init_fs_pin(struct fs_pin *p, void (*kill)(struct fs_pin *)) in init_fs_pin() 19 p->kill = kill; in init_fs_pin()
|
| /linux/fs/ |
| H A D | fs_struct.c | 94 int kill; in exit_fs() local 98 kill = !--fs->users; in exit_fs() 101 if (kill) in exit_fs() 130 int kill; in unshare_fs_struct() local 137 kill = !--fs->users; in unshare_fs_struct() 142 if (kill) in unshare_fs_struct()
|
| /linux/Documentation/devicetree/bindings/power/reset/ |
| H A D | ltc2952-poweroff.txt | 5 A full powerdown can be triggered via the kill signal. 12 - kill-gpios: phandle + gpio-specifier for the GPIO connected to the 13 chip's kill line 19 until an explicit kill signal is received 32 kill-gpios = <&gpio0 2 GPIO_ACTIVE_LOW>;
|
| /linux/Documentation/translations/zh_CN/mm/ |
| H A D | hwpoison.rst | 67 最好的,默认情况下注意一些页面总是被当作late kill处理。 76 全局启用early kill 79 设置early/late kill mode/revert 到系统默认值。 87 Early kill 89 Late kill
|
| /linux/tools/testing/selftests/powerpc/ |
| H A D | harness.c | 62 kill(-pid, SIGKILL); in run_test() 66 kill(-pid, SIGTERM); in run_test() 74 kill(-pid, SIGTERM); in run_test()
|
| /linux/tools/testing/selftests/mm/ |
| H A D | migration.c | 169 kill(getpid(), SIGHUP); 178 ASSERT_EQ(kill(self->pids[i], SIGTERM), 0); 241 kill(getpid(), SIGHUP); 250 ASSERT_EQ(kill(self->pids[i], SIGTERM), 0); 301 kill(getpid(), SIGHUP); 310 ASSERT_EQ(kill(self->pids[i], SIGTERM), 0);
|
| H A D | mrelease_test.c | 132 if (!kill(pid, SIGKILL)) in main() 139 if (!kill(pid, SIGKILL)) in main() 147 if (kill(pid, SIGKILL)) in main()
|
| /linux/security/apparmor/include/ |
| H A D | perms.h | 76 u32 kill; /* set only when ~allow | deny */ member 114 accum->kill |= addend->kill & ~addend->allow; in aa_perms_accum_raw() 141 accum->kill |= addend->kill & ~accum->allow; in aa_perms_accum()
|
| /linux/tools/testing/selftests/powerpc/signal/ |
| H A D | sigreturn_vdso.c | 89 kill(getpid(), SIGUSR1); in test_sigreturn_vdso() 101 kill(getpid(), SIGUSR1); in test_sigreturn_vdso() 117 kill(getpid(), SIGUSR1); in test_sigreturn_vdso()
|
| H A D | sig_sc_double_restart.c | 36 kill(getpid(), SIGUSR2); in SIGUSR1_handler() 147 kill(pid, SIGUSR1); in test_restart()
|
| /linux/tools/testing/selftests/namespaces/ |
| H A D | cred_change_test.c | 119 kill(pid, SIGKILL); in TEST() 130 kill(pid, SIGKILL); in TEST() 251 kill(pid, SIGKILL); in TEST() 370 kill(pid, SIGKILL); in TEST() 509 kill(pid, SIGKILL); in TEST() 516 kill(pid, SIGKILL); in TEST() 529 kill(pid, SIGKILL); in TEST() 672 kill(pid, SIGKILL); in TEST() 785 kill(pid, SIGKILL); in TEST()
|
| H A D | listns_pagination_bug.c | 82 kill(pids[j], SIGKILL); in TEST() 95 kill(pids[i], SIGKILL); in TEST() 122 kill(pids[j], SIGKILL); in TEST()
|
| H A D | listns_test.c | 407 kill(pid, SIGKILL); in TEST() 421 kill(pid, SIGKILL); in TEST() 441 kill(pid, SIGKILL); in TEST() 580 kill(pid, SIGKILL); in TEST() 593 kill(pid, SIGKILL); in TEST() 622 kill(pid, SIGKILL); in TEST()
|
| H A D | stress_test.c | 162 kill(pids[j], SIGKILL); in TEST() 185 kill(pids[j], SIGKILL); in TEST() 403 kill(pids[j], SIGKILL); in TEST() 421 kill(pids[i], SIGKILL); in TEST() 463 kill(pids[j], SIGKILL); in TEST()
|
| /linux/Documentation/mm/ |
| H A D | hwpoison.rst | 10 kill the processes associated with it and avoid using it in the future. 62 early kill 69 late kill 72 Note some pages are always handled as late kill. 81 Enable early kill mode globally 84 Set early/late kill mode/revert to system default 92 Early kill 94 Late kill
|
| /linux/arch/um/os-Linux/ |
| H A D | util.c | 95 if (kill(getpid(), SIGABRT) < 0) in uml_abort() 128 kill(0, SIGTERM); in os_dump_core() 134 kill(0, SIGCONT); in os_dump_core()
|
| H A D | process.c | 30 kill(pid, SIGALRM); in os_alarm_process() 41 kill(pid, SIGKILL); in os_kill_process() 61 kill(pid, SIGKILL); in os_kill_ptraced_process()
|
| /linux/tools/testing/selftests/proc/ |
| H A D | setns-dcache.c | 41 kill(pid, SIGTERM); in f() 108 kill(pid, SIGTERM); in main()
|
| H A D | setns-sysvipc.c | 40 kill(pid, SIGTERM); in f() 107 kill(pid, SIGTERM); in main()
|
| /linux/samples/seccomp/ |
| H A D | dropper.c | 46 struct sock_filter kill = BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL); in install_filter() local 47 filter[4] = kill; in install_filter()
|
| /linux/tools/testing/selftests/perf_events/ |
| H A D | remove_on_exec.c | 158 EXPECT_EQ(kill(pid_exec, SIGKILL), 0); in TEST_F() 191 EXPECT_EQ(kill(pid_exec, SIGKILL), 0); in TEST_F() 220 EXPECT_EQ(kill(pids[i], SIGKILL), 0); in TEST_F()
|
| /linux/tools/testing/selftests/ptrace/ |
| H A D | get_set_sud.c | 31 kill(getpid(), SIGSTOP); in TEST() 69 kill(child, SIGKILL); in TEST()
|
| /linux/tools/testing/selftests/drivers/net/ |
| H A D | stats.py | 244 defer(one.kill) 246 defer(two.kill) 257 # defers will kill the loops 281 defer(stats.kill) 291 kill_updown = defer(updown.kill)
|
| /linux/tools/testing/selftests/kselftest_harness/ |
| H A D | harness-selftest.c | 38 kill(getpid(), SIGUSR1); in TEST_SIGNAL() 45 kill(getpid(), SIGUSR1); in TEST_SIGNAL()
|
| /linux/Documentation/networking/device_drivers/wifi/intel/ |
| H A D | ipw2100.rst | 177 0 RF kill not enabled (radio on) 178 1 SW based RF kill active (radio off) 179 2 HW based RF kill active (radio off) 180 3 Both HW and SW RF kill active (radio off) 186 0 If SW based RF kill active, turn the radio back on 187 1 If radio is on, activate SW based RF kill 192 If you enable the SW based RF kill and then toggle the HW 193 based RF kill from ON -> OFF -> ON, the radio will NOT come back on 204 RF kill switch"
|