/linux-4.1.27/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.1.27/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 | 1246 dev->cmds[i].seqno = i; in saa7164_initdev() 1247 dev->cmds[i].inuse = 0; in saa7164_initdev() 1248 mutex_init(&dev->cmds[i].lock); in saa7164_initdev() 1249 init_waitqueue_head(&dev->cmds[i].wait); in saa7164_initdev()
|
D | saa7164.h | 463 struct cmd cmds[SAA_CMD_MAX_MSG_UNITS]; member
|
/linux-4.1.27/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.1.27/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.1.27/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 | Makefile.perf | 276 $(PERF_IN): $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h FORCE 288 $(OUTPUT)common-cmds.h: util/generate-cmdlist.sh command-list.txt 290 $(OUTPUT)common-cmds.h: $(wildcard Documentation/perf-*.txt) 325 single_dep: $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h 450 check: $(OUTPUT)common-cmds.h 533 …$(call QUIET_CLEAN, core-gen) $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h T…
|
D | .gitignore | 16 common-cmds.h
|
/linux-4.1.27/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() 374 INIT_LIST_HEAD(&req_queue.cmds); in ccp_crypto_init() 375 req_queue.backlog = &req_queue.cmds; in ccp_crypto_init()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
D | iwl-notif-wait.c | 101 if (w->cmds[i] == pkt->hdr.cmd) { in iwl_notification_wait_notify() 139 const u8 *cmds, int n_cmds, in iwl_init_notification_wait() argument 150 memcpy(wait_entry->cmds, cmds, n_cmds); in iwl_init_notification_wait()
|
D | iwl-notif-wait.h | 108 u8 cmds[MAX_NOTIF_CMDS]; member 124 const u8 *cmds, int n_cmds,
|
D | iwl-fw-file.h | 558 } __packed cmds[16]; member
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/block/ |
D | null_blk.c | 27 struct nullb_cmd *cmds; member 183 cmd = &nq->cmds[tag]; in __alloc_cmd() 429 nq->cmds = kzalloc(nq->queue_depth * sizeof(*cmd), GFP_KERNEL); in setup_commands() 430 if (!nq->cmds) in setup_commands() 436 kfree(nq->cmds); in setup_commands() 441 cmd = &nq->cmds[i]; in setup_commands() 453 kfree(nq->cmds); in cleanup_queue()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/include/uapi/drm/ |
D | msm_drm.h | 183 uint64_t __user cmds; /* in, ptr to array of submit_cmd's */ member
|
/linux-4.1.27/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.1.27/scripts/ |
D | Makefile.build | 347 modorder-cmds = \ 353 $(Q)(cat /dev/null; $(modorder-cmds)) > $@
|
/linux-4.1.27/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.1.27/drivers/net/ethernet/tile/ |
D | tilepro.c | 1800 memcpy(&eq->cmds[cmd_tail], cmd, cmd_size); in tile_net_tx_tso() 1876 lepp_cmd_t cmds[1 + MAX_SKB_FRAGS]; in tile_net_tx() local 1940 cmds[i] = cmd; in tile_net_tx() 1983 *(lepp_cmd_t *)&eq->cmds[cmd_tail] = cmds[i]; in tile_net_tx()
|
/linux-4.1.27/sound/pci/hda/ |
D | hda_controller.c | 1038 memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds)); in azx_init_cmd_io() 1103 chip->rirb.cmds[addr]++; in azx_corb_send_cmd() 1146 else if (chip->rirb.cmds[addr]) { in azx_update_rirb() 1149 chip->rirb.cmds[addr]--; in azx_update_rirb() 1176 if (!chip->rirb.cmds[addr]) { in azx_rirb_get_response()
|
D | hda_controller.h | 248 int cmds[AZX_MAX_CODECS]; /* number of pending requests */ member
|
/linux-4.1.27/arch/tile/include/hv/ |
D | drv_xgbe_intf.h | 548 char cmds[LEPP_CMD_QUEUE_BYTES] member
|
/linux-4.1.27/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() 2794 (void***)&session->cmds, in iscsi_session_setup() 2800 struct iscsi_task *task = session->cmds[cmd_i]; in iscsi_session_setup() 3056 task = conn->session->cmds[i]; in fail_mgmt_tasks()
|
D | ips.c | 4295 ips_deallocatescbs(ips_ha_t * ha, int cmds) in ips_deallocatescbs() argument 4299 IPS_SGLIST_SIZE(ha) * IPS_MAX_SG * cmds, in ips_deallocatescbs() 4302 pci_free_consistent(ha->pcidev, sizeof (ips_scb_t) * cmds, in ips_deallocatescbs()
|
/linux-4.1.27/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.1.27/include/scsi/ |
D | libiscsi.h | 352 struct iscsi_task **cmds; /* Original Cmds arr */ member
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | ops.c | 704 for (i = 0; i < ARRAY_SIZE(cmds_trig->cmds); i++) { in iwl_mvm_rx_check_trigger() 706 if (!cmds_trig->cmds[i].cmd_id) in iwl_mvm_rx_check_trigger() 709 if (cmds_trig->cmds[i].cmd_id != pkt->hdr.cmd) in iwl_mvm_rx_check_trigger()
|
/linux-4.1.27/fs/ |
D | binfmt_elf.c | 372 static unsigned long total_mapping_size(struct elf_phdr *cmds, int nr) in total_mapping_size() argument 377 if (cmds[i].p_type == PT_LOAD) { in total_mapping_size() 386 return cmds[last_idx].p_vaddr + cmds[last_idx].p_memsz - in total_mapping_size() 387 ELF_PAGESTART(cmds[first_idx].p_vaddr); in total_mapping_size()
|
/linux-4.1.27/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.1.27/drivers/gpu/drm/msm/ |
D | msm_gem_submit.c | 361 to_user_ptr(args->cmds + (i * sizeof(submit_cmd))); in msm_ioctl_gem_submit()
|
/linux-4.1.27/include/linux/mmc/ |
D | card.h | 131 unsigned char cmds; member
|
/linux-4.1.27/drivers/scsi/bnx2fc/ |
D | bnx2fc_io.c | 292 cmgr->cmds = (struct bnx2fc_cmd **)(cmgr + 1); in bnx2fc_cmd_mgr_alloc() 474 cmd_mgr->cmds[xid] = io_req; in bnx2fc_elstm_alloc() 529 cmd_mgr->cmds[xid] = io_req; in bnx2fc_cmd_alloc() 567 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.1.27/arch/powerpc/xmon/ |
D | xmon.c | 111 static int cmds(struct pt_regs *); 526 cmd = cmds(regs); in xmon_core() 570 cmd = cmds(regs); in xmon_core() 840 cmds(struct pt_regs *excp) in cmds() function
|
/linux-4.1.27/include/linux/ |
D | security.h | 1483 int (*quotactl) (int cmds, int type, int id, struct super_block *sb); 1789 int security_quotactl(int cmds, int type, int id, struct super_block *sb); 2026 static inline int security_quotactl(int cmds, int type, int id, in security_quotactl() argument
|
/linux-4.1.27/security/ |
D | security.c | 212 int security_quotactl(int cmds, int type, int id, struct super_block *sb) in security_quotactl() argument 214 return security_ops->quotactl(cmds, type, id, sb); in security_quotactl()
|
D | capability.c | 43 static int cap_quotactl(int cmds, int type, int id, struct super_block *sb) in cap_quotactl() argument
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_sriov.c | 282 enum bnx2x_queue_cmd cmds[] = {BNX2X_Q_CMD_HALT, in bnx2x_vf_queue_destroy() enum 302 for (i = 0; i < ARRAY_SIZE(cmds); i++) { in bnx2x_vf_queue_destroy() 303 q_params.cmd = cmds[i]; in bnx2x_vf_queue_destroy() 306 BNX2X_ERR("Failed to run Queue command %d\n", cmds[i]); in bnx2x_vf_queue_destroy()
|
/linux-4.1.27/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.1.27/drivers/mmc/core/ |
D | sd.c | 218 scr->cmds = UNSTUFF_BITS(resp, 32, 2); in mmc_decode_scr()
|
/linux-4.1.27/sound/sparc/ |
D | dbri.c | 106 static char *cmds[] = { variable 1841 cmds[command], val); in dbri_process_one_interrupt()
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | qla_target.c | 1750 (ha->tgt.cmds[h-1] != NULL)); in qlt_make_handle() 1785 ha->tgt.cmds[h-1] = prm->cmd; in qlt_24xx_build_ctio_pkt() 2367 ha->tgt.cmds[h-1] = prm->cmd; in qlt_build_ctio_crc2_pkt() 3237 if (ha->tgt.cmds[handle] != NULL) { in qlt_get_cmd() 3238 struct qla_tgt_cmd *cmd = ha->tgt.cmds[handle]; in qlt_get_cmd() 3239 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.1.27/drivers/media/dvb-frontends/ |
D | cx24116.c | 143 enum cmds { enum
|
D | cx24117.c | 137 enum cmds { enum
|
/linux-4.1.27/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.1.27/drivers/platform/x86/ |
D | thinkpad_acpi.c | 897 static char *next_cmd(char **cmds) in next_cmd() argument 899 char *start = *cmds; in next_cmd() 909 *cmds = end + 1; in next_cmd()
|
/linux-4.1.27/drivers/mmc/card/ |
D | block.c | 2179 card->scr.cmds & SD_SCR_CMD23_SUPPORT)) in mmc_blk_alloc_req()
|
/linux-4.1.27/security/selinux/ |
D | hooks.c | 2069 static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb) in selinux_quotactl() argument 2077 switch (cmds) { in selinux_quotactl()
|
/linux-4.1.27/drivers/scsi/be2iscsi/ |
D | be_main.c | 326 abrt_task = conn->session->cmds[i]; in beiscsi_eh_device_reset()
|