/drivers/net/wan/ |
D | hdlc_ppp.c | 66 u16 pid; /* protocol ID */ member 109 static inline struct proto* get_proto(struct net_device *dev, u16 pid) in get_proto() argument 113 switch (pid) { in get_proto() 125 static inline const char* proto_name(u16 pid) in proto_name() argument 127 switch (pid) { in proto_name() 204 static void ppp_tx_cp(struct net_device *dev, u16 pid, u8 code, in ppp_tx_cp() argument 217 if (pid == PID_LCP && (code == LCP_ECHO_REQ || code == LCP_ECHO_REPLY)) in ppp_tx_cp() 247 proto_name(pid), code_names[code], id, debug_buffer); in ppp_tx_cp() 250 ppp_hard_header(skb, dev, pid, NULL, NULL, 0); in ppp_tx_cp() 301 static void ppp_cp_event(struct net_device *dev, u16 pid, u16 event, u8 code, in ppp_cp_event() argument [all …]
|
/drivers/media/common/b2c2/ |
D | flexcop-hw-filter.c | 47 u16 pid, u16 mask) in flexcop_pid_group_filter() argument 51 v30c.pid_filter_30c_ext_ind_0_7.Group_PID = pid; in flexcop_pid_group_filter() 68 vpid.vregname.field = onoff ? pid : 0x1fff; \ 75 u16 pid, int onoff) in flexcop_pid_Stream1_PID_ctrl() argument 82 u16 pid, int onoff) in flexcop_pid_Stream2_PID_ctrl() argument 89 u16 pid, int onoff) in flexcop_pid_PCR_PID_ctrl() argument 95 u16 pid, int onoff) in flexcop_pid_PMT_PID_ctrl() argument 101 u16 pid, int onoff) in flexcop_pid_EMM_PID_ctrl() argument 107 u16 pid, int onoff) in flexcop_pid_ECM_PID_ctrl() argument 113 int index, u16 pid, int onoff) in flexcop_pid_control() argument [all …]
|
/drivers/gpu/drm/msm/ |
D | msm_gpu_trace.h | 12 TP_PROTO(pid_t pid, u32 ringid, u32 id, u32 nr_bos, u32 nr_cmds), 13 TP_ARGS(pid, ringid, id, nr_bos, nr_cmds), 15 __field(pid_t, pid) 22 __entry->pid = pid; 29 __entry->id, __entry->pid, __entry->ringid, 37 __field(pid_t, pid) 44 __entry->pid = pid_nr(submit->pid); 51 __entry->id, __entry->pid, __entry->ringid, __entry->seqno, 61 __field(pid_t, pid) 71 __entry->pid = pid_nr(submit->pid); [all …]
|
/drivers/pinctrl/mvebu/ |
D | pinctrl-mvebu.h | 49 u8 pid; member 52 int (*mpp_get)(struct mvebu_mpp_ctrl_data *data, unsigned pid, 54 int (*mpp_set)(struct mvebu_mpp_ctrl_data *data, unsigned pid, 56 int (*mpp_gpio_req)(struct mvebu_mpp_ctrl_data *data, unsigned pid); 57 int (*mpp_gpio_dir)(struct mvebu_mpp_ctrl_data *data, unsigned pid, 103 u8 pid; member 136 .pid = _idl, \ 148 .pid = _idl, \ 179 .pid = _id, \ 197 int mvebu_mmio_mpp_ctrl_get(struct mvebu_mpp_ctrl_data *data, unsigned pid, [all …]
|
D | pinctrl-dove.c | 64 unsigned pid, unsigned long *config) in dove_pmu_mpp_ctrl_get() argument 66 unsigned off = (pid / MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in dove_pmu_mpp_ctrl_get() 67 unsigned shift = (pid % MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in dove_pmu_mpp_ctrl_get() 71 if ((pmu & BIT(pid)) == 0) in dove_pmu_mpp_ctrl_get() 72 return mvebu_mmio_mpp_ctrl_get(data, pid, config); in dove_pmu_mpp_ctrl_get() 82 unsigned pid, unsigned long config) in dove_pmu_mpp_ctrl_set() argument 84 unsigned off = (pid / MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in dove_pmu_mpp_ctrl_set() 85 unsigned shift = (pid % MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in dove_pmu_mpp_ctrl_set() 90 writel(pmu & ~BIT(pid), data->base + PMU_MPP_GENERAL_CTRL); in dove_pmu_mpp_ctrl_set() 91 return mvebu_mmio_mpp_ctrl_set(data, pid, config); in dove_pmu_mpp_ctrl_set() [all …]
|
D | pinctrl-orion.c | 31 unsigned pid, unsigned long *config) in orion_mpp_ctrl_get() argument 33 unsigned shift = (pid % MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in orion_mpp_ctrl_get() 35 if (pid < 16) { in orion_mpp_ctrl_get() 36 unsigned off = (pid / MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in orion_mpp_ctrl_get() 47 unsigned pid, unsigned long config) in orion_mpp_ctrl_set() argument 49 unsigned shift = (pid % MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in orion_mpp_ctrl_set() 51 if (pid < 16) { in orion_mpp_ctrl_set() 52 unsigned off = (pid / MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in orion_mpp_ctrl_set()
|
D | pinctrl-mvebu.c | 59 unsigned int pid, unsigned long *config) in mvebu_mmio_mpp_ctrl_get() argument 61 unsigned off = (pid / MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in mvebu_mmio_mpp_ctrl_get() 62 unsigned shift = (pid % MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in mvebu_mmio_mpp_ctrl_get() 70 unsigned int pid, unsigned long config) in mvebu_mmio_mpp_ctrl_set() argument 72 unsigned off = (pid / MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in mvebu_mmio_mpp_ctrl_set() 73 unsigned shift = (pid % MVEBU_MPPS_PER_REG) * MVEBU_MPP_BITS; in mvebu_mmio_mpp_ctrl_set() 83 struct mvebu_pinctrl *pctl, unsigned pid) in mvebu_pinctrl_find_group_by_pid() argument 87 if (pid >= pctl->groups[n].pins[0] && in mvebu_pinctrl_find_group_by_pid() 88 pid < pctl->groups[n].pins[0] + in mvebu_pinctrl_find_group_by_pid() 608 ctrl->pins[k] = ctrl->pid + k; in mvebu_pinctrl_probe() [all …]
|
/drivers/android/ |
D | binder.c | 492 int pid; member 564 int pid; member 1133 task->pid); in binder_do_set_priority() 1144 task->pid, desired.prio, in binder_do_set_priority() 1147 trace_binder_set_priority(task->tgid, task->pid, task->normal_prio, in binder_do_set_priority() 1307 proc->pid, current->pid, node->debug_id, in binder_init_node_ilocked() 1648 proc->pid, new_ref->data.debug_id, new_ref->data.desc, in binder_get_ref_for_node_olocked() 1660 ref->proc->pid, ref->data.debug_id, ref->data.desc, in binder_cleanup_ref_olocked() 1688 ref->proc->pid, ref->data.debug_id, in binder_cleanup_ref_olocked() 1743 ref->proc->pid, ref->data.debug_id, in binder_dec_ref_olocked() [all …]
|
D | binder_alloc.c | 83 alloc->pid, new_buffer_size, new_buffer); in binder_insert_free_buffer() 192 "%d: %s pages %pK-%pK\n", alloc->pid, in binder_update_page_range() 222 alloc->pid); in binder_update_page_range() 253 alloc->pid, page_addr); in binder_update_page_range() 263 alloc->pid, user_page_addr); in binder_update_page_range() 361 alloc->pid); in binder_alloc_new_buf_locked() 371 alloc->pid, data_size, offsets_size); in binder_alloc_new_buf_locked() 378 alloc->pid, extra_buffers_size); in binder_alloc_new_buf_locked() 385 alloc->pid, size); in binder_alloc_new_buf_locked() 435 alloc->pid, size); in binder_alloc_new_buf_locked() [all …]
|
/drivers/scsi/bfa/ |
D | bfa_fcs_rport.c | 174 bfa_trc(rport->fcs, rport->pid); in bfa_fcs_rport_sm_uninit() 213 bfa_trc(rport->fcs, rport->pid); in bfa_fcs_rport_sm_plogi_sending() 252 rport->pid = 0; in bfa_fcs_rport_sm_plogi_sending() 274 bfa_trc(rport->fcs, rport->pid); in bfa_fcs_rport_sm_plogiacc_sending() 313 rport->pid = 0; in bfa_fcs_rport_sm_plogiacc_sending() 340 bfa_trc(rport->fcs, rport->pid); in bfa_fcs_rport_sm_plogi_retry() 384 rport->pid = 0; in bfa_fcs_rport_sm_plogi_retry() 410 bfa_trc(rport->fcs, rport->pid); in bfa_fcs_rport_sm_plogi() 438 rport->old_pid = rport->pid; in bfa_fcs_rport_sm_plogi() 439 rport->pid = 0; in bfa_fcs_rport_sm_plogi() [all …]
|
/drivers/tty/ |
D | tty_jobctrl.c | 34 struct pid *pgrp, *tty_pgrp; in __tty_check_change() 171 void session_clear_tty(struct pid *session) in session_clear_tty() 195 struct pid *tty_pgrp = NULL; in tty_signal_session_leader() 269 struct pid *tty_pgrp = tty_get_pgrp(tty); in disassociate_ctty() 280 struct pid *old_pgrp; in disassociate_ctty() 398 struct pid *tty_get_pgrp(struct tty_struct *tty) in tty_get_pgrp() 401 struct pid *pgrp; in tty_get_pgrp() 418 static struct pid *session_of_pgrp(struct pid *pgrp) in session_of_pgrp() 421 struct pid *sid = NULL; in session_of_pgrp() 445 struct pid *pid; in tiocgpgrp() local [all …]
|
D | n_r3964.c | 119 static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg); 120 static int read_telegram(struct r3964_info *pInfo, struct pid *pid, 743 struct pid *pid) in findClient() argument 748 if (pClient->pid == pid) { in findClient() 755 static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg) in enable_signals() argument 767 if (pClient->pid == pid) { in enable_signals() 769 pid_nr(pid)); in enable_signals() 779 put_pid(pClient->pid); in enable_signals() 787 pClient = findClient(pInfo, pid); in enable_signals() 799 TRACE_PS("add client %d to client list", pid_nr(pid)); in enable_signals() [all …]
|
/drivers/misc/ocxl/ |
D | trace.h | 12 TP_PROTO(pid_t pid, void *spa, int pasid, u32 pidr, u32 tidr), 13 TP_ARGS(pid, spa, pasid, pidr, tidr), 16 __field(pid_t, pid) 24 __entry->pid = pid; 32 __entry->pid, 41 TP_PROTO(pid_t pid, void *spa, int pasid, u32 pidr, u32 tidr), 42 TP_ARGS(pid, spa, pasid, pidr, tidr) 46 TP_PROTO(pid_t pid, void *spa, int pasid, u32 pidr, u32 tidr), 47 TP_ARGS(pid, spa, pasid, pidr, tidr)
|
/drivers/media/dvb-core/ |
D | dvb_demux.c | 418 u16 pid = ts_pid(buf); in dvb_dmx_swfilter_packet() local 452 if ((feed->pid != pid) && (feed->pid != 0x2000)) in dvb_dmx_swfilter_packet() 457 pid, buf[1]); in dvb_dmx_swfilter_packet() 465 if (pid < MAX_PID) { in dvb_dmx_swfilter_packet() 467 demux->cnt_storage[pid] = in dvb_dmx_swfilter_packet() 468 (demux->cnt_storage[pid] + 1) & 0xf; in dvb_dmx_swfilter_packet() 470 if ((buf[3] & 0xf) != demux->cnt_storage[pid]) { in dvb_dmx_swfilter_packet() 472 if ((feed->pid != pid) && (feed->pid != 0x2000)) in dvb_dmx_swfilter_packet() 479 pid, demux->cnt_storage[pid], in dvb_dmx_swfilter_packet() 481 demux->cnt_storage[pid] = buf[3] & 0xf; in dvb_dmx_swfilter_packet() [all …]
|
/drivers/media/spi/ |
D | cxd2880-spi.c | 36 u16 pid; member 200 u16 pid = 0; in cxd2880_set_pid_filter() local 219 pid = cfg->pid_config[i].pid; in cxd2880_set_pid_filter() 221 data[1 + (i * 2)] = (pid >> 8) | 0x20; in cxd2880_set_pid_filter() 222 data[2 + (i * 2)] = pid & 0xff; in cxd2880_set_pid_filter() 252 tmpcfg.pid_config[0].pid = 0x1fff; in cxd2880_update_pid_filter() 347 if (feed->pid == 0x2000) { in cxd2880_start_feed() 369 cfgtmp.pid_config[i].pid = feed->pid; in cxd2880_start_feed() 371 feed->pid, i); in cxd2880_start_feed() 444 if (feed->pid == 0x2000) { in cxd2880_stop_feed() [all …]
|
/drivers/usb/storage/ |
D | usual-tables.c | 58 u16 vid, pid, bcdmin, bcdmax; member 66 .pid = id_product, \ 94 unsigned vid, pid, bcd; in usb_usual_ignore_device() local 99 pid = le16_to_cpu(udev->descriptor.idProduct); in usb_usual_ignore_device() 103 if (p->vid == vid && p->pid == pid && in usb_usual_ignore_device()
|
/drivers/macintosh/ |
D | windfarm_pm91.c | 103 struct wf_cpu_pid_state pid; member 118 struct wf_pid_state pid; member 131 struct wf_pid_state pid; member 199 wf_cpu_pid_init(&wf_smu_cpu_fans->pid, &pid_param); in wf_smu_create_cpu_fans() 253 if (temp > st->pid.param.tmax) in wf_smu_cpu_fans_tick() 256 new_setpoint = wf_cpu_pid_run(&st->pid, power, temp); in wf_smu_cpu_fans_tick() 315 wf_pid_init(&wf_smu_drive_fans->pid, ¶m); in wf_smu_create_drive_fans() 337 st->ticks = st->pid.param.interval; in wf_smu_drive_fans_tick() 350 if (temp > (st->pid.param.itarget + 0x50000)) in wf_smu_drive_fans_tick() 353 new_setpoint = wf_pid_run(&st->pid, temp); in wf_smu_drive_fans_tick() [all …]
|
D | windfarm_pm81.c | 186 struct wf_pid_state pid; member 252 struct wf_cpu_pid_state pid; member 313 wf_pid_init(&wf_smu_sys_fans->pid, &pid_param); in wf_smu_create_sys_fans() 351 if (temp > (st->pid.param.itarget + 0x50000)) in wf_smu_sys_fans_tick() 354 new_setpoint = wf_pid_run(&st->pid, temp); in wf_smu_sys_fans_tick() 362 cputarget = wf_smu_cpu_fans ? wf_smu_cpu_fans->pid.target : 0; in wf_smu_sys_fans_tick() 365 scaled = max(scaled, st->pid.param.min); in wf_smu_sys_fans_tick() 366 scaled = min(scaled, st->pid.param.max); in wf_smu_sys_fans_tick() 453 wf_cpu_pid_init(&wf_smu_cpu_fans->pid, &pid_param); in wf_smu_create_cpu_fans() 507 if (temp > st->pid.param.tmax) in wf_smu_cpu_fans_tick() [all …]
|
D | windfarm_pm112.c | 130 struct wf_cpu_pid_param pid; in create_cpu_loop() local 163 pid.interval = 1; /* seconds */ in create_cpu_loop() 164 pid.history_len = piddata->history_len; in create_cpu_loop() 165 pid.gd = piddata->gd; in create_cpu_loop() 166 pid.gp = piddata->gp; in create_cpu_loop() 167 pid.gr = piddata->gr / piddata->history_len; in create_cpu_loop() 168 pid.pmaxadj = (piddata->max_power << 16) - (piddata->power_adj << 8); in create_cpu_loop() 169 pid.ttarget = tmax - (piddata->target_temp_delta << 16); in create_cpu_loop() 170 pid.tmax = tmax; in create_cpu_loop() 171 pid.min = main_fan->ops->get_min(main_fan); in create_cpu_loop() [all …]
|
/drivers/gpu/drm/ |
D | drm_pci.c | 299 const struct pci_device_id *pid; in drm_legacy_pci_init() local 310 pid = &pdriver->id_table[i]; in drm_legacy_pci_init() 320 pci_get_subsys(pid->vendor, pid->device, pid->subvendor, in drm_legacy_pci_init() 321 pid->subdevice, pdev)) != NULL) { in drm_legacy_pci_init() 322 if ((pdev->class & pid->class_mask) != pid->class) in drm_legacy_pci_init() 327 drm_get_pci_dev(pdev, pid, driver); in drm_legacy_pci_init()
|
/drivers/connector/ |
D | cn_proc.c | 79 ev->event_data.fork.parent_pid = parent->pid; in proc_fork_connector() 82 ev->event_data.fork.child_pid = task->pid; in proc_fork_connector() 106 ev->event_data.exec.process_pid = task->pid; in proc_exec_connector() 130 ev->event_data.id.process_pid = task->pid; in proc_id_connector() 168 ev->event_data.sid.process_pid = task->pid; in proc_sid_connector() 192 ev->event_data.ptrace.process_pid = task->pid; in proc_ptrace_connector() 195 ev->event_data.ptrace.tracer_pid = current->pid; in proc_ptrace_connector() 224 ev->event_data.comm.process_pid = task->pid; in proc_comm_connector() 250 ev->event_data.coredump.process_pid = task->pid; in proc_coredump_connector() 256 ev->event_data.coredump.parent_pid = parent->pid; in proc_coredump_connector() [all …]
|
/drivers/char/agp/ |
D | compat_ioctl.c | 75 kreserve.pid = ureserve.pid; in compat_agpioc_reserve_wrap() 78 client = agp_find_client_by_pid(kreserve.pid); in compat_agpioc_reserve_wrap() 82 client_priv = agp_find_private(kreserve.pid); in compat_agpioc_reserve_wrap() 92 return agp_remove_client(kreserve.pid); in compat_agpioc_reserve_wrap() 133 client = agp_create_client(kreserve.pid); in compat_agpioc_reserve_wrap() 139 client_priv = agp_find_private(kreserve.pid); in compat_agpioc_reserve_wrap() 235 if (agp_fe.current_controller->pid != curr_priv->my_pid) { in compat_agp_ioctl()
|
/drivers/tty/serial/8250/ |
D | 8250_fintek.c | 95 u16 pid; member 166 pdata->pid = chip; in fintek_8250_check_id() 173 switch (pdata->pid) { in fintek_8250_get_ldn_range() 250 switch (pdata->pid) { in fintek_8250_set_irq_mode() 275 switch (pdata->pid) { in fintek_8250_set_max_fifo() 293 switch (pdata->pid) { in fintek_8250_goto_highspeed() 326 switch (pdata->pid) { in fintek_8250_set_termios() 337 __func__, pdata->pid); in fintek_8250_set_termios() 374 switch (pdata->pid) { in fintek_8250_set_termios_handler() 443 switch (pdata->pid) { in fintek_8250_set_rs485_handler()
|
/drivers/net/ethernet/mellanox/mlx5/core/ |
D | mlx5_core.h | 53 __func__, __LINE__, current->pid, \ 59 __func__, __LINE__, current->pid, \ 70 __func__, __LINE__, current->pid, \ 76 __func__, __LINE__, current->pid, \ 81 __func__, __LINE__, current->pid, \ 86 __func__, __LINE__, current->pid, \ 92 __func__, __LINE__, current->pid, \ 101 __func__, __LINE__, current->pid, \
|
/drivers/hwtracing/coresight/ |
D | coresight-priv.h | 170 #define CS_AMBA_ID(pid) \ argument 172 .id = pid, \ 177 #define CS_AMBA_ID_DATA(pid, dval) \ argument 179 .id = pid, \ 188 #define CS_AMBA_UCI_ID(pid, uci_ptr) \ argument 190 .id = pid, \
|