Home
last modified time | relevance | path

Searched refs:cmd_head (Results 1 – 10 of 10) sorted by relevance

/linux-4.4.14/drivers/target/
Dtarget_core_user.c342 u32 cmd_head; in is_ring_space_avail() local
347 cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */ in is_ring_space_avail()
353 if (head_to_end(cmd_head, udev->cmdr_size) >= cmd_size) in is_ring_space_avail()
356 cmd_needed = cmd_size + head_to_end(cmd_head, udev->cmdr_size); in is_ring_space_avail()
358 space = spc_free(cmd_head, udev->cmdr_last_cleaned, udev->cmdr_size); in is_ring_space_avail()
360 pr_debug("no cmd space: %u %u %u\n", cmd_head, in is_ring_space_avail()
384 uint32_t cmd_head; in tcmu_queue_cmd_ring() local
410 cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */ in tcmu_queue_cmd_ring()
435 cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */ in tcmu_queue_cmd_ring()
439 if (head_to_end(cmd_head, udev->cmdr_size) < command_size) { in tcmu_queue_cmd_ring()
[all …]
/linux-4.4.14/drivers/net/ethernet/i825xx/
Dlib82596.c321 struct i596_cmd *cmd_head; member
424 cmd = lp->cmd_head; in i596_display_data()
573 lp->cmd_head = NULL; in init_i596_mem()
801 while (lp->cmd_head != NULL) { in i596_cleanup_cmd()
802 ptr = lp->cmd_head; in i596_cleanup_cmd()
803 lp->cmd_head = ptr->v_next; in i596_cleanup_cmd()
874 lp->cmd_head)); in i596_add_cmd()
884 if (lp->cmd_head != NULL) { in i596_add_cmd()
889 lp->cmd_head = cmd; in i596_add_cmd()
1156 while (lp->cmd_head != NULL) { in i596_interrupt()
[all …]
D82596.c329 struct i596_cmd *cmd_head; member
475 cmd = lp->cmd_head; in i596_display_data()
669 lp->cmd_head = lp->scb.cmd = I596_NULL; in init_i596_mem()
880 while (lp->cmd_head != I596_NULL) { in i596_cleanup_cmd()
881 ptr = lp->cmd_head; in i596_cleanup_cmd()
882 lp->cmd_head = ptr->v_next; in i596_cleanup_cmd()
950 if (lp->cmd_head != I596_NULL) { in i596_add_cmd()
954 lp->cmd_head = cmd; in i596_add_cmd()
1283 while ((lp->cmd_head != I596_NULL) && (lp->cmd_head->status & STAT_C)) { in i596_interrupt()
1284 ptr = lp->cmd_head; in i596_interrupt()
[all …]
/linux-4.4.14/drivers/net/ethernet/tile/
Dtilepro.c1739 unsigned int cmd_head, cmd_tail, cmd_next; in tile_net_tx_tso() local
1782 cmd_head = eq->cmd_head; in tile_net_tx_tso()
1788 if (cmd_tail < cmd_head && cmd_next >= cmd_head) in tile_net_tx_tso()
1792 if (cmd_next == cmd_head) in tile_net_tx_tso()
1870 unsigned int cmd_head, cmd_tail, cmd_next; in tile_net_tx() local
1962 cmd_head = eq->cmd_head; in tile_net_tx()
1971 if (cmd_tail < cmd_head && cmd_next >= cmd_head) in tile_net_tx()
1975 if (cmd_next == cmd_head) in tile_net_tx()
/linux-4.4.14/kernel/debug/kdb/
Dkdb_main.c812 static unsigned int cmd_head, cmd_tail; variable
1098 if (cmd_head == cmd_tail) in handle_ctrl_cmd()
1107 if (cmdptr != cmd_head) in handle_ctrl_cmd()
1287 *(cmd_hist[cmd_head]) = '\0'; in kdb_local()
1305 if (cmdptr == cmd_head) { in kdb_local()
1306 strncpy(cmd_hist[cmd_head], cmd_cur, in kdb_local()
1308 *(cmd_hist[cmd_head] + in kdb_local()
1309 strlen(cmd_hist[cmd_head])-1) = '\0'; in kdb_local()
1316 strncpy(cmd_hist[cmd_head], cmd_cur, in kdb_local()
1320 cmd_head = (cmd_head+1) % KDB_CMD_HISTORY_COUNT; in kdb_local()
[all …]
/linux-4.4.14/include/uapi/linux/
Dtarget_core_user.h51 __u32 cmd_head; member
/linux-4.4.14/Documentation/target/
Dtcmu-design.txt125 cmd_head - Modified by the kernel to indicate when a command has been
133 mailbox.cmd_head by the size of the command, modulo cmdr_size, and
136 signals the kernel via a 4-byte write(). When cmd_head equals
323 /* Process events from cmd ring until we catch up with cmd_head */
324 while (ent != (void *)mb + mb->cmdr_off + mb->cmd_head) {
/linux-4.4.14/drivers/input/mouse/
Dcyapa_gen5.c1886 struct pip_app_cmd_head *cmd_head; in cyapa_gen5_read_idac_data() local
1957 cmd_head = (struct pip_app_cmd_head *)cmd; in cyapa_gen5_read_idac_data()
1958 put_unaligned_le16(PIP_OUTPUT_REPORT_ADDR, &cmd_head->addr); in cyapa_gen5_read_idac_data()
1959 put_unaligned_le16(sizeof(cmd) - 2, &cmd_head->length); in cyapa_gen5_read_idac_data()
1960 cmd_head->report_id = PIP_APP_CMD_REPORT_ID; in cyapa_gen5_read_idac_data()
1961 cmd_head->cmd_code = cmd_code; in cyapa_gen5_read_idac_data()
1968 put_unaligned_le16(offset, &cmd_head->parameter_data[0]); in cyapa_gen5_read_idac_data()
1969 put_unaligned_le16(read_len, &cmd_head->parameter_data[2]); in cyapa_gen5_read_idac_data()
1970 cmd_head->parameter_data[4] = idac_data_type; in cyapa_gen5_read_idac_data()
/linux-4.4.14/arch/tile/include/hv/
Ddrv_xgbe_intf.h532 volatile unsigned int cmd_head; member
/linux-4.4.14/drivers/net/can/usb/peak_usb/
Dpcan_usb_fd.c184 void *cmd_head = pcan_usb_fd_cmd_buffer(dev); in pcan_usb_fd_send_cmd() local
197 cmd_len = cmd_tail - cmd_head; in pcan_usb_fd_send_cmd()
203 packet_ptr = cmd_head; in pcan_usb_fd_send_cmd()