/linux-4.4.14/tools/perf/util/ |
D | help.c | 8 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len) in add_cmdname() argument 16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc); in add_cmdname() 17 cmds->names[cmds->cnt++] = ent; in add_cmdname() 20 static void clean_cmdnames(struct cmdnames *cmds) in clean_cmdnames() argument 24 for (i = 0; i < cmds->cnt; ++i) in clean_cmdnames() 25 zfree(&cmds->names[i]); in clean_cmdnames() 26 zfree(&cmds->names); in clean_cmdnames() 27 cmds->cnt = 0; in clean_cmdnames() 28 cmds->alloc = 0; in clean_cmdnames() 38 static void uniq(struct cmdnames *cmds) in uniq() argument [all …]
|
D | help.h | 22 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len); 24 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
|
/linux-4.4.14/drivers/media/pci/saa7164/ |
D | saa7164-cmd.c | 32 if (dev->cmds[i].inuse == 0) { in saa7164_cmd_alloc_seqno() 33 dev->cmds[i].inuse = 1; in saa7164_cmd_alloc_seqno() 34 dev->cmds[i].signalled = 0; in saa7164_cmd_alloc_seqno() 35 dev->cmds[i].timeout = 0; in saa7164_cmd_alloc_seqno() 36 ret = dev->cmds[i].seqno; in saa7164_cmd_alloc_seqno() 48 if ((dev->cmds[seqno].inuse == 1) && in saa7164_cmd_free_seqno() 49 (dev->cmds[seqno].seqno == seqno)) { in saa7164_cmd_free_seqno() 50 dev->cmds[seqno].inuse = 0; in saa7164_cmd_free_seqno() 51 dev->cmds[seqno].signalled = 0; in saa7164_cmd_free_seqno() 52 dev->cmds[seqno].timeout = 0; in saa7164_cmd_free_seqno() [all …]
|
D | saa7164-core.c | 1295 dev->cmds[i].seqno = i; in saa7164_initdev() 1296 dev->cmds[i].inuse = 0; in saa7164_initdev() 1297 mutex_init(&dev->cmds[i].lock); in saa7164_initdev() 1298 init_waitqueue_head(&dev->cmds[i].wait); in saa7164_initdev()
|
D | saa7164.h | 475 struct cmd cmds[SAA_CMD_MAX_MSG_UNITS]; member
|
/linux-4.4.14/drivers/infiniband/core/ |
D | roce_gid_mgmt.c | 67 struct netdev_event_work_cmd cmds[ROCE_NETDEV_CALLBACK_SZ]; member 506 for (i = 0; i < ARRAY_SIZE(work->cmds) && work->cmds[i].cb; i++) { in netdevice_event_work_handler() 507 ib_enum_all_roce_netdevs(work->cmds[i].filter, in netdevice_event_work_handler() 508 work->cmds[i].filter_ndev, in netdevice_event_work_handler() 509 work->cmds[i].cb, in netdevice_event_work_handler() 510 work->cmds[i].ndev); in netdevice_event_work_handler() 511 dev_put(work->cmds[i].ndev); in netdevice_event_work_handler() 512 dev_put(work->cmds[i].filter_ndev); in netdevice_event_work_handler() 518 static int netdevice_queue_work(struct netdev_event_work_cmd *cmds, in netdevice_queue_work() argument 530 memcpy(ndev_work->cmds, cmds, sizeof(ndev_work->cmds)); in netdevice_queue_work() [all …]
|
/linux-4.4.14/tools/usb/usbip/src/ |
D | usbip.c | 53 static const struct command cmds[] = { variable 112 for (i = 0; cmds[i].name != NULL; i++) in usbip_help() 113 if (!strcmp(cmds[i].name, argv[0]) && cmds[i].usage) { in usbip_help() 114 cmds[i].usage(); in usbip_help() 122 for (cmd = cmds; cmd->name != NULL; cmd++) in usbip_help() 187 for (i = 0; cmds[i].name != NULL; i++) in main() 188 if (!strcmp(cmds[i].name, cmd)) { in main() 192 rc = run_command(&cmds[i], argc, argv); in main()
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_overlay.c | 113 } *cmds; in vmw_overlay_send_put() local 125 fifo_size = sizeof(*cmds) + sizeof(*flush) + sizeof(*items) * num_items; in vmw_overlay_send_put() 127 cmds = vmw_fifo_reserve(dev_priv, fifo_size); in vmw_overlay_send_put() 129 if (!cmds) in vmw_overlay_send_put() 132 items = (typeof(items))&cmds[1]; in vmw_overlay_send_put() 136 fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1)); in vmw_overlay_send_put() 138 cmds->header.cmdType = SVGA_ESCAPE_VMWARE_VIDEO_SET_REGS; in vmw_overlay_send_put() 139 cmds->header.streamId = arg->stream_id; in vmw_overlay_send_put() 193 } *cmds; in vmw_overlay_send_stop() local 197 cmds = vmw_fifo_reserve(dev_priv, sizeof(*cmds)); in vmw_overlay_send_stop() [all …]
|
/linux-4.4.14/tools/perf/ |
D | perf-completion.sh | 128 cmds_=$($cmd $1 --list-cmds) 156 cmds=$($cmd --list-opts) 158 cmds=$($cmd --list-cmds) 160 __perfcomp "$cmds" "$cur" 170 subcmds=$($cmd $prev_skip_opts --list-cmds)
|
D | .gitignore | 16 common-cmds.h
|
D | Makefile.perf | 325 $(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt 327 $(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt) 362 prepare: $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h fixdep 500 check: $(OUTPUT)common-cmds.h 592 …$(call QUIET_CLEAN, core-gen) $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h T…
|
/linux-4.4.14/drivers/crypto/ccp/ |
D | ccp-crypto-main.c | 46 struct list_head cmds; member 102 list_for_each_entry_continue(tmp, &req_queue.cmds, entry) { in ccp_crypto_cmd_complete() 113 if (req_queue.backlog != &req_queue.cmds) { in ccp_crypto_cmd_complete() 223 list_for_each_entry(tmp, &req_queue.cmds, entry) { in ccp_crypto_enqueue_cmd() 242 if (req_queue.backlog == &req_queue.cmds) in ccp_crypto_enqueue_cmd() 248 list_add_tail(&crypto_cmd->entry, &req_queue.cmds); in ccp_crypto_enqueue_cmd() 376 INIT_LIST_HEAD(&req_queue.cmds); in ccp_crypto_init() 377 req_queue.backlog = &req_queue.cmds; in ccp_crypto_init()
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/ |
D | iwl-notif-wait.c | 102 if (w->cmds[i] == in iwl_notification_wait_notify() 141 const u16 *cmds, int n_cmds, in iwl_init_notification_wait() argument 152 memcpy(wait_entry->cmds, cmds, n_cmds * sizeof(u16)); in iwl_init_notification_wait()
|
D | iwl-notif-wait.h | 109 u16 cmds[MAX_NOTIF_CMDS]; member 125 const u16 *cmds, int n_cmds,
|
D | iwl-fw-file.h | 595 } __packed cmds[16]; member
|
/linux-4.4.14/tools/perf/Documentation/ |
D | Makefile | 235 _cmds_txt = cmds-ancillaryinterrogators.txt \ 236 cmds-ancillarymanipulators.txt \ 237 cmds-mainporcelain.txt \ 238 cmds-plumbinginterrogators.txt \ 239 cmds-plumbingmanipulators.txt \ 240 cmds-synchingrepositories.txt \ 241 cmds-synchelpers.txt \ 242 cmds-purehelpers.txt \ 243 cmds-foreignscminterface.txt
|
/linux-4.4.14/fs/quota/ |
D | compat.c | 46 unsigned int cmds; in sys32_quotactl() local 55 cmds = cmd >> SUBCMDSHIFT; in sys32_quotactl() 57 switch (cmds) { in sys32_quotactl()
|
D | quota.c | 763 uint cmds, type; in SYSCALL_DEFINE4() local 768 cmds = cmd >> SUBCMDSHIFT; in SYSCALL_DEFINE4() 777 if (cmds == Q_SYNC) in SYSCALL_DEFINE4() 787 if (cmds == Q_QUOTAON) { in SYSCALL_DEFINE4() 795 sb = quotactl_block(special, cmds); in SYSCALL_DEFINE4() 801 ret = do_quotactl(sb, type, cmds, id, addr, pathp); in SYSCALL_DEFINE4()
|
/linux-4.4.14/sound/ppc/ |
D | pmac.c | 74 rec->cmds = (void __iomem *)DBDMA_ALIGN(rec->space); in snd_pmac_dbdma_alloc() 75 rec->addr = rec->dma_base + (unsigned long)((char *)rec->cmds - (char *)rec->space); in snd_pmac_dbdma_alloc() 243 chip->extra_dma.cmds->command = cpu_to_le16(DBDMA_STOP); in snd_pmac_pcm_prepare() 253 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) { in snd_pmac_pcm_prepare() 291 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) in snd_pmac_pcm_trigger() 306 for (i = 0, cp = rec->cmd.cmds; i < rec->nperiods; i++, cp++) in snd_pmac_pcm_trigger() 330 volatile struct dbdma_cmd __iomem *cp = &rec->cmd.cmds[rec->cur_period]; in snd_pmac_pcm_pointer() 427 memcpy((void *)emergency_dbdma.cmds, (void *)cp, in snd_pmac_pcm_dead_xfer() 432 cp = emergency_dbdma.cmds; in snd_pmac_pcm_dead_xfer() 474 cp = emergency_dbdma.cmds; in snd_pmac_pcm_update() [all …]
|
D | pmac.h | 55 struct dbdma_cmd __iomem *cmds; member
|
/linux-4.4.14/sound/hda/ |
D | hdac_controller.c | 67 memset(bus->rirb.cmds, 0, sizeof(bus->rirb.cmds)); in snd_hdac_bus_init_cmd_io() 141 bus->rirb.cmds[addr]++; in snd_hdac_bus_send_cmd() 190 else if (bus->rirb.cmds[addr]) { in snd_hdac_bus_update_rirb() 192 bus->rirb.cmds[addr]--; in snd_hdac_bus_update_rirb() 220 if (!bus->rirb.cmds[addr]) { in snd_hdac_bus_get_response()
|
/linux-4.4.14/include/net/sctp/ |
D | command.h | 205 sctp_cmd_t cmds[SCTP_MAX_NUM_COMMANDS]; member 217 seq->last_used_slot = seq->cmds + SCTP_MAX_NUM_COMMANDS; in sctp_init_cmd_seq() 233 BUG_ON(cmd < seq->cmds); in sctp_add_cmd_sf()
|
/linux-4.4.14/include/linux/platform_data/ |
D | video-pxafb.h | 160 extern int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int); 164 uint16_t *cmds, int n) in pxafb_smart_queue() argument
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-cmd-queue.h | 330 uint64_t *cmds) in cvmx_cmd_queue_write() argument 363 *ptr++ = *cmds++; in cvmx_cmd_queue_write() 390 *ptr++ = *cmds++; in cvmx_cmd_queue_write() 401 *ptr++ = *cmds++; in cvmx_cmd_queue_write()
|
/linux-4.4.14/net/sctp/ |
D | sm_sideeffect.c | 72 static void sctp_cmd_hb_timer_update(sctp_cmd_seq_t *cmds, 633 static void sctp_cmd_hb_timers_start(sctp_cmd_seq_t *cmds, in sctp_cmd_hb_timers_start() argument 649 static void sctp_cmd_hb_timers_stop(sctp_cmd_seq_t *cmds, in sctp_cmd_hb_timers_stop() argument 664 static void sctp_cmd_t3_rtx_timers_stop(sctp_cmd_seq_t *cmds, in sctp_cmd_t3_rtx_timers_stop() argument 678 static void sctp_cmd_hb_timer_update(sctp_cmd_seq_t *cmds, in sctp_cmd_hb_timer_update() argument 687 static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds, in sctp_cmd_transport_on() argument 759 static int sctp_cmd_process_sack(sctp_cmd_seq_t *cmds, in sctp_cmd_process_sack() argument 781 static void sctp_cmd_setup_t2(sctp_cmd_seq_t *cmds, in sctp_cmd_setup_t2() argument 799 static void sctp_cmd_new_state(sctp_cmd_seq_t *cmds, in sctp_cmd_new_state() argument 853 static void sctp_cmd_delete_tcb(sctp_cmd_seq_t *cmds, in sctp_cmd_delete_tcb() argument [all …]
|
/linux-4.4.14/drivers/block/ |
D | null_blk.c | 29 struct nullb_cmd *cmds; member 182 cmd = &nq->cmds[tag]; in __alloc_cmd() 404 kfree(nq->cmds); in cleanup_queue() 592 nq->cmds = kzalloc(nq->queue_depth * sizeof(*cmd), GFP_KERNEL); in setup_commands() 593 if (!nq->cmds) in setup_commands() 599 kfree(nq->cmds); in setup_commands() 604 cmd = &nq->cmds[i]; in setup_commands()
|
/linux-4.4.14/include/uapi/linux/mmc/ |
D | ioctl.h | 56 struct mmc_ioc_cmd cmds[0]; member
|
/linux-4.4.14/sound/pci/lola/ |
D | lola.c | 101 if (chip->rirb.cmds < LOLA_CORB_ENTRIES - 1) { in corb_send_verb() 108 chip->rirb.cmds++; in corb_send_verb() 142 else if (chip->rirb.cmds) { in lola_update_rirb() 146 chip->rirb.cmds--; in lola_update_rirb() 164 if (!chip->rirb.cmds) { in rirb_get_response() 420 chip->rirb.rp = chip->rirb.cmds = 0; in setup_corb_rirb()
|
D | lola.h | 226 int cmds; /* number of pending requests */ member
|
/linux-4.4.14/drivers/rtc/ |
D | rtc-digicolor.c | 45 static int dc_rtc_cmds(struct dc_rtc *rtc, const u8 *cmds, int len) in dc_rtc_cmds() argument 51 writeb_relaxed((cmds[i] & DC_RTC_CMD_MASK) | DC_RTC_GO_BUSY, in dc_rtc_cmds()
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.megaraid_sas | 116 2. Increase default cmds per lun to 256. 209 b). during the reset, driver will store the pending cmds 211 will re-issue those pending cmds again to FW after the OCR 216 cmds until the OCR finished. 222 e). In driver's IOCTL routine, the application cmds will wait for the 223 OCR to finish, then issue the cmds to FW. 316 6. Reasign the Application cmds to SAS2 controller 384 driver schedules for cmd completion if there are pending cmds 497 from the time cmds were last sent to FW. 520 …(hw_crit_error=1). If hw_crit_error==1, now we donot accept any processing of pending cmds/accept … [all …]
|
D | sym53c8xx_2.txt | 953 | | | | -------------- tagged cmds 0 - off 1015 --------------------------- max tag cmds 0 - 2
|
D | ncr53c8xx.txt | 1706 | | | | -------------- tagged cmds 0 - off 1768 --------------------------- max tag cmds 0 - 2
|
D | ChangeLog.lpfc | 1571 send (HBA_Q_DEPTH - 10) cmds.
|
/linux-4.4.14/include/net/nfc/ |
D | hci.h | 183 struct nfc_vendor_cmd *cmds, in nfc_hci_set_vendor_cmds() argument 186 return nfc_set_vendor_cmds(hdev->ndev, cmds, n_cmds); in nfc_hci_set_vendor_cmds()
|
D | nfc.h | 310 struct nfc_vendor_cmd *cmds, in nfc_set_vendor_cmds() argument 316 dev->vendor_cmds = cmds; in nfc_set_vendor_cmds()
|
D | nci_core.h | 347 struct nfc_vendor_cmd *cmds, in nci_set_vendor_cmds() argument 350 return nfc_set_vendor_cmds(ndev->nfc_dev, cmds, n_cmds); in nci_set_vendor_cmds()
|
/linux-4.4.14/tools/net/ |
D | bpf_dbg.c | 1242 static const struct shell_cmd cmds[] = { variable 1262 for (i = 0; i < array_size(cmds); i++) { in execf() 1263 if (len != strlen(cmds[i].name)) in execf() 1265 if (strncmp(cmds[i].name, cmd, len) == 0) { in execf() 1266 ret = cmds[i].func(cont); in execf() 1284 for (; list_index < array_size(cmds); ) { in shell_comp_gen() 1285 const char *name = cmds[list_index].name; in shell_comp_gen()
|
/linux-4.4.14/sound/aoa/soundbus/i2sbus/ |
D | i2sbus.h | 34 struct dbdma_cmd *cmds; member
|
D | core.c | 55 r->cmds = (void*)DBDMA_ALIGN(r->space); in alloc_dbdma_descriptor_ring() 57 (dma_addr_t)((char*)r->cmds - (char*)r->space); in alloc_dbdma_descriptor_ring()
|
D | pcm.c | 378 command = pi->dbdma_ring.cmds; in i2sbus_pcm_prepare() 651 while (pi->dbdma_ring.cmds[i].xfer_status) { in handle_interrupt() 652 if (le16_to_cpu(pi->dbdma_ring.cmds[i].xfer_status) & BT) in handle_interrupt() 659 pi->dbdma_ring.cmds[i].xfer_status = 0; in handle_interrupt()
|
/linux-4.4.14/drivers/atm/ |
D | ambassador.c | 300 static unsigned int cmds = 8; variable 1510 static int create_queues(amb_dev *dev, unsigned int cmds, unsigned int txs, in create_queues() argument 1520 total += cmds * sizeof(command); in create_queues() 1549 cq->maximum = cmds - 1; in create_queues() 1554 cq->ptrs.limit = cmd + cmds; in create_queues() 2115 } else if (create_queues (dev, cmds, txs, rxs, rxs_bs)) { in amb_init() 2326 if (cmds < MIN_QUEUE_SIZE) in amb_check_args() 2328 cmds = MIN_QUEUE_SIZE); in amb_check_args() 2362 module_param(cmds, uint, 0); 2369 MODULE_PARM_DESC(cmds, "number of command queue entries");
|
/linux-4.4.14/include/uapi/drm/ |
D | msm_drm.h | 183 __u64 __user cmds; /* in, ptr to array of submit_cmd's */ member
|
/linux-4.4.14/drivers/dma/ |
D | img-mdc-dma.c | 601 int i, cmds; in mdc_tx_status() local 622 cmds = (done - processed) % in mdc_tx_status() 630 cmds--; in mdc_tx_status() 632 cmds += mdesc->list_cmds_done; in mdc_tx_status() 636 for (i = 0; i < cmds; i++) { in mdc_tx_status()
|
/linux-4.4.14/scripts/ |
D | Makefile.build | 347 modorder-cmds = \ 353 $(Q)(cat /dev/null; $(modorder-cmds)) > $@
|
/linux-4.4.14/drivers/media/usb/gspca/ |
D | sq930x.c | 750 struct ucbus_write_cmd cmds[2] = { in lz24bp_ppl() local 755 ucbus_write(&sd->gspca_dev, cmds, ARRAY_SIZE(cmds), 2); in lz24bp_ppl()
|
/linux-4.4.14/drivers/net/ethernet/tile/ |
D | tilepro.c | 1797 memcpy(&eq->cmds[cmd_tail], cmd, cmd_size); in tile_net_tx_tso() 1873 lepp_cmd_t cmds[1 + MAX_SKB_FRAGS]; in tile_net_tx() local 1937 cmds[i] = cmd; in tile_net_tx() 1980 *(lepp_cmd_t *)&eq->cmds[cmd_tail] = cmds[i]; in tile_net_tx()
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | ops.c | 717 for (i = 0; i < ARRAY_SIZE(cmds_trig->cmds); i++) { in iwl_mvm_rx_check_trigger() 719 if (!cmds_trig->cmds[i].cmd_id) in iwl_mvm_rx_check_trigger() 722 if (cmds_trig->cmds[i].cmd_id != pkt->hdr.cmd || in iwl_mvm_rx_check_trigger() 723 cmds_trig->cmds[i].group_id != pkt->hdr.group_id) in iwl_mvm_rx_check_trigger()
|
/linux-4.4.14/arch/tile/include/hv/ |
D | drv_xgbe_intf.h | 548 char cmds[LEPP_CMD_QUEUE_BYTES] member
|
/linux-4.4.14/drivers/scsi/ |
D | libiscsi_tcp.c | 1127 struct iscsi_task *task = session->cmds[cmd_i]; in iscsi_tcp_r2tpool_alloc() 1157 struct iscsi_task *task = session->cmds[i]; in iscsi_tcp_r2tpool_alloc() 1172 struct iscsi_task *task = session->cmds[i]; in iscsi_tcp_r2tpool_free()
|
D | libiscsi.c | 1139 return session->cmds[i]; in iscsi_itt_to_task() 1859 task = conn->session->cmds[i]; in fail_scsi_tasks() 2003 running_task = conn->session->cmds[i]; in iscsi_eh_cmd_timed_out() 2796 (void***)&session->cmds, in iscsi_session_setup() 2802 struct iscsi_task *task = session->cmds[cmd_i]; in iscsi_session_setup() 3058 task = conn->session->cmds[i]; in fail_mgmt_tasks()
|
D | ips.c | 4291 ips_deallocatescbs(ips_ha_t * ha, int cmds) in ips_deallocatescbs() argument 4295 IPS_SGLIST_SIZE(ha) * IPS_MAX_SG * cmds, in ips_deallocatescbs() 4298 pci_free_consistent(ha->pcidev, sizeof (ips_scb_t) * cmds, in ips_deallocatescbs()
|
/linux-4.4.14/drivers/input/keyboard/ |
D | lm8323.c | 441 int len, const u16 *cmds) in lm8323_write_pwm() argument 446 lm8323_write_pwm_one(pwm, i, cmds[i]); in lm8323_write_pwm()
|
/linux-4.4.14/include/scsi/ |
D | libiscsi.h | 352 struct iscsi_task **cmds; /* Original Cmds arr */ member
|
/linux-4.4.14/fs/ |
D | binfmt_elf.c | 373 static unsigned long total_mapping_size(struct elf_phdr *cmds, int nr) in total_mapping_size() argument 378 if (cmds[i].p_type == PT_LOAD) { in total_mapping_size() 387 return cmds[last_idx].p_vaddr + cmds[last_idx].p_memsz - in total_mapping_size() 388 ELF_PAGESTART(cmds[first_idx].p_vaddr); in total_mapping_size()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | pxafb.c | 1201 int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds) in pxafb_smart_queue() argument 1206 for (i = 0; i < n_cmds; i++, cmds++) { in pxafb_smart_queue() 1208 if ((*cmds & 0xff00) == SMART_CMD_DELAY) { in pxafb_smart_queue() 1210 mdelay(*cmds & 0xff); in pxafb_smart_queue() 1218 fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds; in pxafb_smart_queue()
|
/linux-4.4.14/drivers/scsi/bnx2fc/ |
D | bnx2fc_io.c | 247 cmgr->cmds = (struct bnx2fc_cmd **)(cmgr + 1); in bnx2fc_cmd_mgr_alloc() 429 cmd_mgr->cmds[xid] = io_req; in bnx2fc_elstm_alloc() 484 cmd_mgr->cmds[xid] = io_req; in bnx2fc_cmd_alloc() 522 cmd_mgr->cmds[io_req->xid] = NULL; in bnx2fc_cmd_release()
|
D | bnx2fc.h | 283 struct bnx2fc_cmd **cmds; member
|
D | bnx2fc_hwi.c | 717 io_req = (struct bnx2fc_cmd *)hba->cmd_mgr->cmds[xid]; in bnx2fc_process_unsol_compl() 844 io_req = (struct bnx2fc_cmd *)hba->cmd_mgr->cmds[xid]; in bnx2fc_process_unsol_compl() 902 io_req = (struct bnx2fc_cmd *)hba->cmd_mgr->cmds[xid]; in bnx2fc_process_cq_compl()
|
/linux-4.4.14/drivers/gpu/drm/msm/ |
D | msm_gem_submit.c | 360 to_user_ptr(args->cmds + (i * sizeof(submit_cmd))); in msm_ioctl_gem_submit()
|
/linux-4.4.14/drivers/mmc/card/ |
D | block.c | 643 struct mmc_ioc_cmd __user *cmds = user->cmds; in mmc_blk_ioctl_multi_cmd() local 669 idata[i] = mmc_blk_ioctl_copy_from_user(&cmds[i]); in mmc_blk_ioctl_multi_cmd() 696 err = mmc_blk_ioctl_copy_to_user(&cmds[i], idata[i]); in mmc_blk_ioctl_multi_cmd() 2284 card->scr.cmds & SD_SCR_CMD23_SUPPORT)) in mmc_blk_alloc_req()
|
/linux-4.4.14/include/linux/mmc/ |
D | card.h | 132 unsigned char cmds; member
|
/linux-4.4.14/arch/powerpc/xmon/ |
D | xmon.c | 111 static int cmds(struct pt_regs *); 527 cmd = cmds(regs); in xmon_core() 571 cmd = cmds(regs); in xmon_core() 851 cmds(struct pt_regs *excp) in cmds() function
|
/linux-4.4.14/include/sound/ |
D | hdaudio.h | 240 int cmds[HDA_MAX_CODECS]; /* number of pending requests */ member
|
/linux-4.4.14/include/linux/ |
D | security.h | 206 int security_quotactl(int cmds, int type, int id, struct super_block *sb); 444 static inline int security_quotactl(int cmds, int type, int id, in security_quotactl() argument
|
D | lsm_hooks.h | 1324 int (*quotactl)(int cmds, int type, int id, struct super_block *sb);
|
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_sriov.c | 276 enum bnx2x_queue_cmd cmds[] = {BNX2X_Q_CMD_HALT, in bnx2x_vf_queue_destroy() enum 296 for (i = 0; i < ARRAY_SIZE(cmds); i++) { in bnx2x_vf_queue_destroy() 297 q_params.cmd = cmds[i]; in bnx2x_vf_queue_destroy() 300 BNX2X_ERR("Failed to run Queue command %d\n", cmds[i]); in bnx2x_vf_queue_destroy()
|
/linux-4.4.14/security/ |
D | security.c | 196 int security_quotactl(int cmds, int type, int id, struct super_block *sb) in security_quotactl() argument 198 return call_int_hook(quotactl, 0, cmds, type, id, sb); in security_quotactl()
|
/linux-4.4.14/drivers/mmc/core/ |
D | sd.c | 218 scr->cmds = UNSTUFF_BITS(resp, 32, 2); in mmc_decode_scr()
|
/linux-4.4.14/drivers/scsi/bnx2i/ |
D | bnx2i_iscsi.c | 474 struct iscsi_task *task = session->cmds[i]; in bnx2i_destroy_cmd_pool() 499 struct iscsi_task *task = session->cmds[i]; in bnx2i_setup_cmd_pool()
|
/linux-4.4.14/sound/sparc/ |
D | dbri.c | 106 static char *cmds[] = { variable 1841 cmds[command], val); in dbri_process_one_interrupt()
|
/linux-4.4.14/drivers/scsi/qla2xxx/ |
D | qla_target.c | 1748 (ha->tgt.cmds[h-1] != NULL)); in qlt_make_handle() 1783 ha->tgt.cmds[h-1] = prm->cmd; in qlt_24xx_build_ctio_pkt() 2361 ha->tgt.cmds[h-1] = prm->cmd; in qlt_build_ctio_crc2_pkt() 3230 if (ha->tgt.cmds[handle] != NULL) { in qlt_get_cmd() 3231 struct qla_tgt_cmd *cmd = ha->tgt.cmds[handle]; in qlt_get_cmd() 3232 ha->tgt.cmds[handle] = NULL; in qlt_get_cmd()
|
D | qla_def.h | 2892 struct qla_tgt_cmd *cmds[DEFAULT_OUTSTANDING_COMMANDS]; member
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | cx24116.c | 143 enum cmds { enum
|
D | cx24117.c | 137 enum cmds { enum
|
/linux-4.4.14/sound/pci/hda/ |
D | hda_controller.c | 605 if (!bus->rirb.cmds[addr]) { in azx_rirb_get_response()
|
/linux-4.4.14/drivers/ata/ |
D | libata-core.c | 2134 u8 *cmds = dev->ncq_send_recv_cmds; in ata_dev_config_ncq() local 2137 memcpy(cmds, ap->sector_buf, ATA_LOG_NCQ_SEND_RECV_SIZE); in ata_dev_config_ncq() 2141 cmds[ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET] &= in ata_dev_config_ncq()
|
D | libata-eh.c | 148 #define CMDS(cmds...) (const u8 []){ cmds, 0 } argument
|
/linux-4.4.14/drivers/platform/x86/ |
D | thinkpad_acpi.c | 898 static char *next_cmd(char **cmds) in next_cmd() argument 900 char *start = *cmds; in next_cmd() 910 *cmds = end + 1; in next_cmd()
|
/linux-4.4.14/Documentation/DocBook/ |
D | gpu.xml.db | 593 API-i915-parse-cmds
|
/linux-4.4.14/security/selinux/ |
D | hooks.c | 2085 static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb) in selinux_quotactl() argument 2093 switch (cmds) { in selinux_quotactl()
|
/linux-4.4.14/drivers/scsi/be2iscsi/ |
D | be_main.c | 326 abrt_task = conn->session->cmds[i]; in beiscsi_eh_device_reset()
|