/openbmc/linux/drivers/net/wireless/intersil/orinoco/ |
H A D | hermes_dld.c | 315 #define DEFINE_DEFAULT_PDR(pid, length, data) \ argument 320 } __packed default_pdr_data_##pid = { \ 321 cpu_to_le16((sizeof(default_pdr_data_##pid)/ \ 323 cpu_to_le16(pid), \ 327 #define DEFAULT_PDR(pid) default_pdr_data_##pid argument
|
/openbmc/phosphor-networkd/src/ |
H A D | util.cpp | 36 pid_t pid = fork(); in executeCommandinChildProcess() local 38 if (pid == 0) in executeCommandinChildProcess() 43 else if (pid < 0) in executeCommandinChildProcess() 49 else if (pid > 0) in executeCommandinChildProcess() 52 while (waitpid(pid, &status, 0) == -1) in executeCommandinChildProcess()
|
/openbmc/linux/Documentation/translations/zh_CN/userspace-api/ |
H A D | seccomp_filter.rst | 183 __u32 pid; 207 输入长度,每个过滤器唯一的 ``id`` , 触发请求进程的 ``pid`` (如果进程的pid命名空 208 间对于监听者的pid命名空间不可见的话,可能为0)。通知还包含传递给seccomp的 ``data`` 230 内存的指针。进程的内存可以通过 ``ptrace()`` 或 ``/proc/pid/mem`` 由合适的特权跟踪
|
/openbmc/linux/tools/testing/selftests/wireguard/qemu/ |
H A D | init.c | 165 pid_t pid; in launch_tests() local 168 pid = fork(); in launch_tests() 169 if (pid == -1) in launch_tests() 171 else if (pid == 0) { in launch_tests() 175 if (waitpid(pid, &status, 0) < 0) in launch_tests()
|
/openbmc/linux/arch/um/os-Linux/drivers/ |
H A D | tuntap_user.c | 73 int pid, n, err; in tuntap_open_tramp() local 80 pid = run_helper(tuntap_pre_exec, &data, argv); in tuntap_open_tramp() 82 if (pid < 0) in tuntap_open_tramp() 83 return pid; in tuntap_open_tramp() 109 helper_wait(pid); in tuntap_open_tramp()
|
/openbmc/linux/tools/testing/selftests/cgroup/ |
H A D | test_kill.c | 226 pid_t pid = -ESRCH; in test_cgkill_forkbomb() local 235 pid = cg_run_nowait(cgroup, forkbomb_fn, NULL); in test_cgkill_forkbomb() 236 if (pid < 0) in test_cgkill_forkbomb() 250 if (pid > 0) in test_cgkill_forkbomb() 251 wait_for_pid(pid); in test_cgkill_forkbomb()
|
/openbmc/linux/arch/x86/um/os-Linux/ |
H A D | prctl.c | 9 int os_arch_prctl(int pid, int option, unsigned long *arg2) in os_arch_prctl() argument 11 return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) arg2, option); in os_arch_prctl()
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | bpf_iter_task.c | 25 if (task->pid != tid) in dump_task() 33 BPF_SEQ_PRINTF(seq, "%8d %8d\n", task->tgid, task->pid); in dump_task() 86 BPF_SEQ_PRINTF(seq, "%8d %8d %8d\n", task->tgid, task->pid, user_data); in dump_task_sleepable()
|
H A D | uprobe_multi.c | 23 int pid = 0; variable 41 if (pid && child_pid != pid) in uprobe_multi_check()
|
H A D | test_probe_read_user_str.c | 9 pid_t pid = 0; variable 17 if (pid != (bpf_get_current_pid_tgid() >> 32)) in on_write()
|
/openbmc/linux/drivers/gpu/drm/i915/gem/ |
H A D | i915_gem_context_types.h | 25 struct pid; 291 struct pid *pid; member
|
/openbmc/openbmc/poky/meta/recipes-devtools/rsync/files/ |
H A D | rsyncd.conf | 7 pid file = /var/run/rsyncd.pid
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | mlx5_core.h | 49 __func__, __LINE__, current->pid, \ 55 __func__, __LINE__, current->pid, \ 66 __func__, __LINE__, current->pid, \ 72 __func__, __LINE__, current->pid, \ 77 __func__, __LINE__, current->pid, \ 82 __func__, __LINE__, current->pid, \ 88 __func__, __LINE__, current->pid, \ 97 __func__, __LINE__, current->pid, \ 121 __func__, __LINE__, current->pid, \
|
/openbmc/linux/include/linux/ |
H A D | rtnetlink.h | 12 extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo); 13 extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid); 14 extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, 123 extern int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
|
/openbmc/linux/drivers/macintosh/ |
H A D | windfarm_pm72.c | 394 struct wf_cpu_pid_param pid; in cpu_setup_pid() local 421 pid.interval = 1; /* seconds */ in cpu_setup_pid() 422 pid.history_len = hsize; in cpu_setup_pid() 423 pid.gd = mpu->pid_gd; in cpu_setup_pid() 424 pid.gp = mpu->pid_gp; in cpu_setup_pid() 425 pid.gr = mpu->pid_gr; in cpu_setup_pid() 426 pid.tmax = tmax; in cpu_setup_pid() 427 pid.ttarget = ttarget; in cpu_setup_pid() 428 pid.pmaxadj = ptarget; in cpu_setup_pid() 429 pid.min = fmin; in cpu_setup_pid() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | task_local_storage_helpers.h | 17 static inline int sys_pidfd_open(pid_t pid, unsigned int flags) in sys_pidfd_open() argument 19 return syscall(__NR_pidfd_open, pid, flags); in sys_pidfd_open()
|
/openbmc/linux/include/trace/events/ |
H A D | timer.h | 350 TP_PROTO(int which, struct pid *pid, unsigned long long now), 352 TP_ARGS(which, pid, now), 356 __field( pid_t, pid ) 363 __entry->pid = pid_nr(pid); 367 (int) __entry->pid, __entry->now)
|
H A D | osnoise.h | 19 __field( pid_t, pid ) 24 __entry->pid = t->pid; 31 __entry->pid,
|
/openbmc/linux/drivers/gpu/drm/mcde/ |
H A D | mcde_drv.c | 273 u32 pid; in mcde_probe() local 365 pid = readl(mcde->regs + MCDE_PID); in mcde_probe() 367 (pid & MCDE_PID_MAJOR_VERSION_MASK) in mcde_probe() 369 (pid & MCDE_PID_MINOR_VERSION_MASK) in mcde_probe() 371 (pid & MCDE_PID_DEVELOPMENT_VERSION_MASK) in mcde_probe() 373 (pid & MCDE_PID_METALFIX_VERSION_MASK) in mcde_probe() 375 if (pid != 0x03000800) { in mcde_probe()
|
/openbmc/linux/fs/proc/ |
H A D | thread_self.c | 17 pid_t pid = task_pid_nr_ns(current, ns); in proc_thread_self_get_link() local 20 if (!pid) in proc_thread_self_get_link() 25 sprintf(name, "%u/task/%u", tgid, pid); in proc_thread_self_get_link()
|
/openbmc/linux/Documentation/translations/zh_CN/admin-guide/mm/damon/ |
H A D | usage.rst | 63 │ │ 0/state,pid 112 在每个kdamond目录中,存在两个文件(``state`` 和 ``pid`` )和一个目录( ``contexts`` )。 123 如果状态为 ``on``,读取 ``pid`` 显示kdamond线程的pid。 172 可以通过将进程的pid写到 ``pid_target`` 文件中来指定DAMON的进程。 369 测虚拟地址空间的情况下,这些值应该是监测目标进程的pid。例如,下面的命令将pid为42和4242的进程设 404 例如,下面的命令将设置几个地址范围, ``1-100`` 和 ``100-200`` 作为pid 42的初始监测目标 406 ``50-100`` 作为pid 4242的地址,这是 ``target_ids`` 中的第二个(索引 ``1`` ):: 543 得该线程的 ``pid`` 。当监测被 ``关闭`` 时,读取该文件不会返回任何信息::
|
/openbmc/linux/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_gem.c | 279 struct pid *pid; in vmw_debugfs_gem_info_show() local 289 pid = rcu_dereference(file->pid); in vmw_debugfs_gem_info_show() 290 task = pid_task(pid, PIDTYPE_TGID); in vmw_debugfs_gem_info_show() 291 seq_printf(m, "pid %8d command %s:\n", pid_nr(pid), in vmw_debugfs_gem_info_show()
|
/openbmc/linux/tools/perf/ |
H A D | perf-sys.h | 14 pid_t pid, int cpu, int group_fd, in sys_perf_event_open() argument 17 return syscall(__NR_perf_event_open, attr, pid, cpu, in sys_perf_event_open()
|
/openbmc/linux/tools/testing/selftests/x86/ |
H A D | fsgsbase_restore.c | 131 pid_t pid = getpid(), tid = syscall(SYS_gettid); in tracee_zap_segment() local 134 syscall(SYS_tgkill, pid, tid, SIGSTOP); in tracee_zap_segment() 165 pid_t pid = getpid(), tid = syscall(SYS_gettid); in main() local 168 syscall(SYS_tgkill, pid, tid, SIGSTOP); in main()
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | vas.h | 69 struct pid *pid; /* PID of owner */ member 70 struct pid *tgid; /* Thread group ID of owner */ 103 put_pid(ref->pid); in put_vas_user_win_ref()
|