Home
last modified time | relevance | path

Searched defs:cmd (Results 1 – 200 of 3043) sorted by relevance

12345678910>>...16

/linux-4.1.27/include/linux/
Dfcntl.h12 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) argument
13 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) argument
14 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) argument
15 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) argument
16 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64) argument
17 #define IS_SETLKW64(cmd) ((cmd) == F_SETLKW64) argument
19 #define IS_GETLK32(cmd) (0) argument
20 #define IS_SETLK32(cmd) (0) argument
21 #define IS_SETLKW32(cmd) (0) argument
22 #define IS_GETLK64(cmd) ((cmd) == F_GETLK) argument
[all …]
/linux-4.1.27/drivers/staging/fsl-mc/bus/
Ddpmcp-cmd.h58 #define DPMCP_CMD_CREATE(cmd, cfg) \ argument
62 #define DPMCP_CMD_SET_IRQ(cmd, irq_index, irq_addr, irq_val, user_irq_id) \ argument
71 #define DPMCP_CMD_GET_IRQ(cmd, irq_index) \ argument
75 #define DPMCP_RSP_GET_IRQ(cmd, type, irq_addr, irq_val, user_irq_id) \ argument
84 #define DPMCP_CMD_SET_IRQ_ENABLE(cmd, irq_index, en) \ argument
91 #define DPMCP_CMD_GET_IRQ_ENABLE(cmd, irq_index) \ argument
95 #define DPMCP_RSP_GET_IRQ_ENABLE(cmd, en) \ argument
99 #define DPMCP_CMD_SET_IRQ_MASK(cmd, irq_index, mask) \ argument
106 #define DPMCP_CMD_GET_IRQ_MASK(cmd, irq_index) \ argument
110 #define DPMCP_RSP_GET_IRQ_MASK(cmd, mask) \ argument
[all …]
Ddprc.c39 struct mc_command cmd = { 0 }; in dprc_open() local
61 struct mc_command cmd = { 0 }; in dprc_close() local
78 struct mc_command cmd = { 0 }; in dprc_create_container() local
105 struct mc_command cmd = { 0 }; in dprc_destroy_container() local
120 struct mc_command cmd = { 0 }; in dprc_reset_container() local
139 struct mc_command cmd = { 0 }; in dprc_get_irq() local
169 struct mc_command cmd = { 0 }; in dprc_set_irq() local
189 struct mc_command cmd = { 0 }; in dprc_get_irq_enable() local
213 struct mc_command cmd = { 0 }; in dprc_set_irq_enable() local
230 struct mc_command cmd = { 0 }; in dprc_get_irq_mask() local
[all …]
Ddpbp.c39 struct mc_command cmd = { 0 }; in dpbp_open() local
61 struct mc_command cmd = { 0 }; in dpbp_close() local
76 struct mc_command cmd = { 0 }; in dpbp_create() local
98 struct mc_command cmd = { 0 }; in dpbp_destroy() local
110 struct mc_command cmd = { 0 }; in dpbp_enable() local
123 struct mc_command cmd = { 0 }; in dpbp_disable() local
136 struct mc_command cmd = { 0 }; in dpbp_is_enabled() local
155 struct mc_command cmd = { 0 }; in dpbp_reset() local
172 struct mc_command cmd = { 0 }; in dpbp_set_irq() local
194 struct mc_command cmd = { 0 }; in dpbp_get_irq() local
[all …]
Ddpmcp.c39 struct mc_command cmd = { 0 }; in dpmcp_open() local
60 struct mc_command cmd = { 0 }; in dpmcp_close() local
74 struct mc_command cmd = { 0 }; in dpmcp_create() local
95 struct mc_command cmd = { 0 }; in dpmcp_destroy() local
107 struct mc_command cmd = { 0 }; in dpmcp_reset() local
124 struct mc_command cmd = { 0 }; in dpmcp_set_irq() local
146 struct mc_command cmd = { 0 }; in dpmcp_get_irq() local
172 struct mc_command cmd = { 0 }; in dpmcp_set_irq_enable() local
189 struct mc_command cmd = { 0 }; in dpmcp_get_irq_enable() local
212 struct mc_command cmd = { 0 }; in dpmcp_set_irq_mask() local
[all …]
Ddpmng.c39 struct mc_command cmd = { 0 }; in mc_get_version() local
61 struct mc_command cmd = { 0 }; in dpmng_get_container_id() local
/linux-4.1.27/drivers/scsi/bfa/
Dbfad_bsg.c26 bfad_iocmd_ioc_enable(struct bfad_s *bfad, void *cmd) in bfad_iocmd_ioc_enable()
49 bfad_iocmd_ioc_disable(struct bfad_s *bfad, void *cmd) in bfad_iocmd_ioc_disable()
79 bfad_iocmd_ioc_get_info(struct bfad_s *bfad, void *cmd) in bfad_iocmd_ioc_get_info()
118 bfad_iocmd_ioc_get_attr(struct bfad_s *bfad, void *cmd) in bfad_iocmd_ioc_get_attr()
147 bfad_iocmd_ioc_get_stats(struct bfad_s *bfad, void *cmd) in bfad_iocmd_ioc_get_stats()
157 bfad_iocmd_ioc_get_fwstats(struct bfad_s *bfad, void *cmd, in bfad_iocmd_ioc_get_fwstats()
187 bfad_iocmd_ioc_reset_stats(struct bfad_s *bfad, void *cmd, unsigned int v_cmd) in bfad_iocmd_ioc_reset_stats()
205 bfad_iocmd_ioc_set_name(struct bfad_s *bfad, void *cmd, unsigned int v_cmd) in bfad_iocmd_ioc_set_name()
219 bfad_iocmd_iocfc_get_attr(struct bfad_s *bfad, void *cmd) in bfad_iocmd_iocfc_get_attr()
230 bfad_iocmd_ioc_fw_sig_inv(struct bfad_s *bfad, void *cmd) in bfad_iocmd_ioc_fw_sig_inv()
[all …]
/linux-4.1.27/drivers/md/
Ddm-cache-metadata.c205 static int superblock_read_lock(struct dm_cache_metadata *cmd, in superblock_read_lock()
212 static int superblock_lock_zero(struct dm_cache_metadata *cmd, in superblock_lock_zero()
219 static int superblock_lock(struct dm_cache_metadata *cmd, in superblock_lock()
255 static void __setup_mapping_info(struct dm_cache_metadata *cmd) in __setup_mapping_info()
272 static int __save_sm_root(struct dm_cache_metadata *cmd) in __save_sm_root()
285 static void __copy_sm_root(struct dm_cache_metadata *cmd, in __copy_sm_root()
293 static int __write_initial_superblock(struct dm_cache_metadata *cmd) in __write_initial_superblock()
348 static int __format_metadata(struct dm_cache_metadata *cmd) in __format_metadata()
389 struct dm_cache_metadata *cmd) in __check_incompat_features()
416 static int __open_metadata(struct dm_cache_metadata *cmd) in __open_metadata()
[all …]
/linux-4.1.27/arch/m68k/atari/
Datakeyb.c337 static const char cmd[2] = { 0x80, 0x01 }; in ikbd_reset() local
350 char cmd[2] = { 0x07, mode }; in ikbd_mouse_button_action() local
358 static const char cmd[1] = { 0x08 }; in ikbd_mouse_rel_pos() local
367 char cmd[5] = { 0x09, xmax>>8, xmax&0xFF, ymax>>8, ymax&0xFF }; in ikbd_mouse_abs_pos() local
375 char cmd[3] = { 0x0A, dx, dy }; in ikbd_mouse_kbd_mode() local
383 char cmd[3] = { 0x0B, x, y }; in ikbd_mouse_thresh() local
392 char cmd[3] = { 0x0C, x, y }; in ikbd_mouse_scale() local
400 static const char cmd[1] = { 0x0D }; in ikbd_mouse_pos_get() local
410 char cmd[6] = { 0x0E, 0x00, x>>8, x&0xFF, y>>8, y&0xFF }; in ikbd_mouse_pos_set() local
418 static const char cmd[1] = { 0x0F }; in ikbd_mouse_y0_bot() local
[all …]
/linux-4.1.27/drivers/target/tcm_fc/
Dtfc_cmd.c51 static void _ft_dump_cmd(struct ft_cmd *cmd, const char *caller) in _ft_dump_cmd()
83 void ft_dump_cmd(struct ft_cmd *cmd, const char *caller) in ft_dump_cmd()
89 static void ft_free_cmd(struct ft_cmd *cmd) in ft_free_cmd()
109 struct ft_cmd *cmd = container_of(se_cmd, struct ft_cmd, se_cmd); in ft_release_cmd() local
125 struct ft_cmd *cmd = container_of(se_cmd, struct ft_cmd, se_cmd); in ft_queue_status() local
193 struct ft_cmd *cmd = container_of(se_cmd, struct ft_cmd, se_cmd); in ft_write_pending_status() local
203 struct ft_cmd *cmd = container_of(se_cmd, struct ft_cmd, se_cmd); in ft_write_pending() local
252 struct ft_cmd *cmd = container_of(se_cmd, struct ft_cmd, se_cmd); in ft_get_task_tag() local
269 struct ft_cmd *cmd = arg; in ft_recv_seq() local
346 static void ft_send_resp_code(struct ft_cmd *cmd, in ft_send_resp_code()
[all …]
Dtfc_io.c62 struct ft_cmd *cmd = container_of(se_cmd, struct ft_cmd, se_cmd); in ft_queue_data_in() local
207 struct ft_cmd *cmd = container_of(work, struct ft_cmd, work); in ft_execute_work() local
215 void ft_recv_write_data(struct ft_cmd *cmd, struct fc_frame *fp) in ft_recv_write_data()
348 void ft_invl_hw_context(struct ft_cmd *cmd) in ft_invl_hw_context()
/linux-4.1.27/drivers/target/
Dtarget_core_transport.c558 static void target_remove_from_state_list(struct se_cmd *cmd) in target_remove_from_state_list()
577 static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists, in transport_cmd_check_stop()
631 static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd) in transport_cmd_check_stop_to_fabric()
636 static void transport_lun_remove_cmd(struct se_cmd *cmd) in transport_lun_remove_cmd()
647 void transport_cmd_finish_abort(struct se_cmd *cmd, int remove) in transport_cmd_finish_abort()
668 struct se_cmd *cmd = container_of(work, struct se_cmd, work); in target_complete_failure_work() local
678 static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd) in transport_get_sense_buffer()
697 void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status) in target_complete_cmd()
749 void target_complete_cmd_with_length(struct se_cmd *cmd, u8 scsi_status, int length) in target_complete_cmd_with_length()
766 static void target_add_to_state_list(struct se_cmd *cmd) in target_add_to_state_list()
[all …]
Dtarget_core_sbc.c43 sbc_emulate_readcapacity(struct se_cmd *cmd) in sbc_emulate_readcapacity()
92 sbc_emulate_readcapacity_16(struct se_cmd *cmd) in sbc_emulate_readcapacity_16()
156 sector_t sbc_get_write_same_sectors(struct se_cmd *cmd) in sbc_get_write_same_sectors()
180 sbc_emulate_noop(struct se_cmd *cmd) in sbc_emulate_noop()
186 static inline u32 sbc_get_size(struct se_cmd *cmd, u32 sectors) in sbc_get_size()
264 sbc_setup_write_same(struct se_cmd *cmd, unsigned char *flags, struct sbc_ops *ops) in sbc_setup_write_same()
324 static sense_reason_t xdreadwrite_callback(struct se_cmd *cmd, bool success, in xdreadwrite_callback()
383 sbc_execute_rw(struct se_cmd *cmd) in sbc_execute_rw()
389 static sense_reason_t compare_and_write_post(struct se_cmd *cmd, bool success, in compare_and_write_post()
415 static sense_reason_t compare_and_write_callback(struct se_cmd *cmd, bool success, in compare_and_write_callback()
[all …]
Dtarget_core_spc.c70 spc_emulate_inquiry_std(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_inquiry_std()
131 spc_emulate_evpd_80(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_80()
180 spc_emulate_evpd_83(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_83()
461 spc_emulate_evpd_86(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_86()
496 spc_emulate_evpd_b0(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_b0()
583 spc_emulate_evpd_b1(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_b1()
596 spc_emulate_evpd_b2(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_b2()
648 spc_emulate_evpd_b3(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_b3()
679 spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf) in spc_emulate_evpd_00()
698 spc_emulate_inquiry(struct se_cmd *cmd) in spc_emulate_inquiry()
[all …]
Dtarget_core_iblock.c292 static void iblock_complete_cmd(struct se_cmd *cmd) in iblock_complete_cmd()
311 struct se_cmd *cmd = bio->bi_private; in iblock_bio_done() local
336 iblock_get_bio(struct se_cmd *cmd, sector_t lba, u32 sg_num) in iblock_get_bio()
375 struct se_cmd *cmd = bio->bi_private; in iblock_end_io_flush() local
395 iblock_execute_sync_cache(struct se_cmd *cmd) in iblock_execute_sync_cache()
418 iblock_do_unmap(struct se_cmd *cmd, void *priv, in iblock_do_unmap()
434 iblock_execute_unmap(struct se_cmd *cmd) in iblock_execute_unmap()
442 iblock_execute_write_same_unmap(struct se_cmd *cmd) in iblock_execute_write_same_unmap()
458 iblock_execute_write_same(struct se_cmd *cmd) in iblock_execute_write_same()
630 iblock_alloc_bip(struct se_cmd *cmd, struct bio *bio) in iblock_alloc_bip()
[all …]
Dtarget_core_file.c261 static int fd_do_prot_rw(struct se_cmd *cmd, struct fd_prot *fd_prot, in fd_do_prot_rw()
319 static int fd_do_rw(struct se_cmd *cmd, struct scatterlist *sgl, in fd_do_rw()
384 fd_execute_sync_cache(struct se_cmd *cmd) in fd_execute_sync_cache()
429 fd_execute_write_same(struct se_cmd *cmd) in fd_execute_write_same()
516 fd_do_prot_unmap(struct se_cmd *cmd, sector_t lba, sector_t nolb) in fd_do_prot_unmap()
536 fd_do_unmap(struct se_cmd *cmd, void *priv, sector_t lba, sector_t nolb) in fd_do_unmap()
580 fd_execute_write_same_unmap(struct se_cmd *cmd) in fd_execute_write_same_unmap()
603 fd_execute_unmap(struct se_cmd *cmd) in fd_execute_unmap()
611 fd_execute_rw(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents, in fd_execute_rw()
916 fd_parse_cdb(struct se_cmd *cmd) in fd_parse_cdb()
Dtarget_core_tmr.c81 static void core_tmr_handle_tas_abort(struct se_cmd *cmd, int tas) in core_tmr_handle_tas_abort()
101 struct se_cmd *cmd) in target_check_cdb_and_preempt()
217 struct se_cmd *cmd; in core_tmr_drain_tmr_list() local
308 struct se_cmd *cmd, *next; in core_tmr_drain_state_list() local
Dtarget_core_pr.c98 target_scsi2_reservation_check(struct se_cmd *cmd) in target_scsi2_reservation_check()
130 static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd) in target_check_scsi2_reservation_conflict()
202 target_scsi2_reservation_release(struct se_cmd *cmd) in target_scsi2_reservation_release()
247 target_scsi2_reservation_reserve(struct se_cmd *cmd) in target_scsi2_reservation_reserve()
318 struct se_cmd *cmd, in core_scsi3_pr_seq_non_holder()
573 target_scsi3_pr_reservation_check(struct se_cmd *cmd) in target_scsi3_pr_reservation_check()
1434 struct se_cmd *cmd, in core_scsi3_decode_spec_i_port()
2001 core_scsi3_emulate_pro_register(struct se_cmd *cmd, u64 res_key, u64 sa_res_key, in core_scsi3_emulate_pro_register()
2228 core_scsi3_pro_reserve(struct se_cmd *cmd, int type, int scope, u64 res_key) in core_scsi3_pro_reserve()
2384 core_scsi3_emulate_pro_reserve(struct se_cmd *cmd, int type, int scope, in core_scsi3_emulate_pro_reserve()
[all …]
Dtarget_core_ua.c41 target_scsi3_ua_check(struct se_cmd *cmd) in target_scsi3_ua_check()
196 struct se_cmd *cmd, in core_scsi3_ua_for_check_condition()
265 struct se_cmd *cmd, in core_scsi3_ua_clear_for_request_sense()
/linux-4.1.27/drivers/target/iscsi/
Discsi_target_seq_pdu_list.c31 static void iscsit_dump_seq_list(struct iscsi_cmd *cmd) in iscsit_dump_seq_list()
49 static void iscsit_dump_pdu_list(struct iscsi_cmd *cmd) in iscsit_dump_pdu_list()
65 static void iscsit_dump_seq_list(struct iscsi_cmd *cmd) {} in iscsit_dump_seq_list()
66 static void iscsit_dump_pdu_list(struct iscsi_cmd *cmd) {} in iscsit_dump_pdu_list()
70 struct iscsi_cmd *cmd, in iscsit_ordered_seq_lists()
83 struct iscsi_cmd *cmd, in iscsit_ordered_pdu_lists()
130 struct iscsi_cmd *cmd, in iscsit_randomize_pdu_lists()
180 struct iscsi_cmd *cmd, in iscsit_randomize_seq_lists()
212 struct iscsi_cmd *cmd, in iscsit_determine_counts_for_list()
296 struct iscsi_cmd *cmd, in iscsit_do_build_pdu_and_seq_lists()
[all …]
Discsi_target_erl1.c121 struct iscsi_cmd *cmd, in iscsit_send_recovery_r2t_for_snack()
143 struct iscsi_cmd *cmd, in iscsit_handle_r2t_snack()
202 struct iscsi_cmd *cmd, in iscsit_create_recovery_datain_values_datasequenceinorder_yes()
248 struct iscsi_cmd *cmd, in iscsit_create_recovery_datain_values_datasequenceinorder_no()
406 struct iscsi_cmd *cmd, in iscsit_handle_recovery_datain()
474 struct iscsi_cmd *cmd; in iscsit_handle_recovery_datain_or_r2t() local
506 struct iscsi_cmd *cmd = NULL; in iscsit_handle_status_snack() local
569 struct iscsi_cmd *cmd = NULL; in iscsit_handle_data_ack() local
600 struct iscsi_cmd *cmd, in iscsit_send_recovery_r2t()
614 struct iscsi_cmd *cmd, in iscsit_dataout_datapduinorder_no_fbit()
[all …]
Discsi_target_datain_values.c43 void iscsit_attach_datain_req(struct iscsi_cmd *cmd, struct iscsi_datain_req *dr) in iscsit_attach_datain_req()
50 void iscsit_free_datain_req(struct iscsi_cmd *cmd, struct iscsi_datain_req *dr) in iscsit_free_datain_req()
59 void iscsit_free_all_datain_reqs(struct iscsi_cmd *cmd) in iscsit_free_all_datain_reqs()
71 struct iscsi_datain_req *iscsit_get_datain_req(struct iscsi_cmd *cmd) in iscsit_get_datain_req()
87 struct iscsi_cmd *cmd, in iscsit_set_datain_values_yes_and_yes()
185 struct iscsi_cmd *cmd, in iscsit_set_datain_values_no_and_yes()
306 struct iscsi_cmd *cmd, in iscsit_set_datain_values_yes_and_no()
405 struct iscsi_cmd *cmd, in iscsit_set_datain_values_no_and_no()
507 struct iscsi_cmd *cmd, in iscsit_get_datain_values()
Discsi_target.c492 static int iscsit_queue_rsp(struct iscsi_conn *conn, struct iscsi_cmd *cmd) in iscsit_queue_rsp()
498 static void iscsit_aborted_task(struct iscsi_conn *conn, struct iscsi_cmd *cmd) in iscsit_aborted_task()
650 struct iscsi_cmd *cmd; in iscsit_add_reject() local
677 struct iscsi_cmd *cmd, in iscsit_add_reject_from_cmd()
720 static int iscsit_add_reject_cmd(struct iscsi_cmd *cmd, u8 reason, in iscsit_add_reject_cmd()
726 int iscsit_reject_cmd(struct iscsi_cmd *cmd, u8 reason, unsigned char *buf) in iscsit_reject_cmd()
736 struct iscsi_cmd *cmd, in iscsit_map_iovec()
771 static void iscsit_unmap_iovec(struct iscsi_cmd *cmd) in iscsit_unmap_iovec()
785 struct iscsi_cmd *cmd, *cmd_p; in iscsit_ack_from_expstatsn() local
812 static int iscsit_allocate_iovecs(struct iscsi_cmd *cmd) in iscsit_allocate_iovecs()
[all …]
Discsi_target_tmr.c39 struct iscsi_cmd *cmd, in iscsit_tmr_abort_task()
114 struct iscsi_cmd *cmd, in iscsit_tmr_task_reassign()
186 struct iscsi_cmd *cmd, in iscsit_task_reassign_remove_cmd()
206 struct iscsi_cmd *cmd = tmr_req->ref_cmd; in iscsit_task_reassign_complete_nop_out() local
235 struct iscsi_cmd *cmd, in iscsit_task_reassign_complete_write()
307 struct iscsi_cmd *cmd, in iscsit_task_reassign_complete_read()
360 struct iscsi_cmd *cmd, in iscsit_task_reassign_complete_none()
374 struct iscsi_cmd *cmd = tmr_req->ref_cmd; in iscsit_task_reassign_complete_scsi_cmnd() local
423 struct iscsi_cmd *cmd; in iscsit_task_reassign_complete() local
462 int iscsit_tmr_post_handler(struct iscsi_cmd *cmd, struct iscsi_conn *conn) in iscsit_tmr_post_handler()
[all …]
Discsi_target_util.c63 struct iscsi_cmd *cmd, in iscsit_add_r2t_to_list()
92 struct iscsi_cmd *cmd, in iscsit_get_r2t_for_eos()
113 struct iscsi_r2t *iscsit_get_r2t_from_list(struct iscsi_cmd *cmd) in iscsit_get_r2t_from_list()
134 void iscsit_free_r2t(struct iscsi_r2t *r2t, struct iscsi_cmd *cmd) in iscsit_free_r2t()
140 void iscsit_free_r2ts_from_list(struct iscsi_cmd *cmd) in iscsit_free_r2ts_from_list()
156 struct iscsi_cmd *cmd; in iscsit_allocate_cmd() local
184 struct iscsi_cmd *cmd, in iscsit_get_seq_holder_for_datain()
196 struct iscsi_seq *iscsit_get_seq_holder_for_r2t(struct iscsi_cmd *cmd) in iscsit_get_seq_holder_for_r2t()
218 struct iscsi_cmd *cmd, in iscsit_get_holder_for_r2tsn()
278 int iscsit_sequence_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd, in iscsit_sequence_cmd()
[all …]
Discsi_target_erl0.c38 struct iscsi_cmd *cmd) in iscsit_set_dataout_sequence_values()
74 struct iscsi_cmd *cmd, in iscsit_dataout_within_command_recovery_check()
140 struct iscsi_cmd *cmd, in iscsit_dataout_check_unsolicited_sequence()
215 struct iscsi_cmd *cmd, in iscsit_dataout_check_sequence()
344 struct iscsi_cmd *cmd, in iscsit_dataout_check_datasn()
395 struct iscsi_cmd *cmd, in iscsit_dataout_pre_datapduinorder_yes()
457 struct iscsi_cmd *cmd, in iscsit_dataout_pre_datapduinorder_no()
488 static int iscsit_dataout_update_r2t(struct iscsi_cmd *cmd, u32 offset, u32 length) in iscsit_dataout_update_r2t()
508 struct iscsi_cmd *cmd, in iscsit_dataout_update_datapduinorder_no()
541 struct iscsi_cmd *cmd, in iscsit_dataout_post_crc_passed()
[all …]
Discsi_target_erl2.c36 struct iscsi_cmd *cmd, in iscsit_create_conn_recovery_datain_values()
64 struct iscsi_cmd *cmd) in iscsit_create_conn_recovery_dataout_values()
129 struct iscsi_cmd *cmd, *cmd_tmp; in iscsit_free_connection_recovery_entires() local
207 struct iscsi_cmd *cmd, in iscsit_remove_cmd_from_connection_recovery()
228 struct iscsi_cmd *cmd, *cmd_tmp; in iscsit_discard_cr_cmds_by_expstatsn() local
276 struct iscsi_cmd *cmd, *cmd_tmp; in iscsit_discard_unacknowledged_ooo_cmdsns_for_conn() local
317 struct iscsi_cmd *cmd, *cmd_tmp; in iscsit_prepare_cmds_for_realligance() local
/linux-4.1.27/drivers/ide/
Dide-taskfile.c27 void ide_tf_readback(ide_drive_t *drive, struct ide_cmd *cmd) in ide_tf_readback()
44 void ide_tf_dump(const char *s, struct ide_cmd *cmd) in ide_tf_dump()
59 struct ide_cmd cmd; in taskfile_lib_get_identify() local
81 struct ide_cmd *cmd = &hwif->cmd; in do_rw_taskfile() local
151 struct ide_cmd *cmd = &hwif->cmd; in task_no_data_intr() local
223 void ide_pio_bytes(ide_drive_t *drive, struct ide_cmd *cmd, in ide_pio_bytes()
281 static void ide_pio_datablock(ide_drive_t *drive, struct ide_cmd *cmd, in ide_pio_datablock()
306 static void ide_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd) in ide_error_cmd()
324 void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat) in ide_finish_cmd()
347 struct ide_cmd *cmd = &drive->hwif->cmd; in task_pio_intr() local
[all …]
Dide-ioctls.c20 unsigned int cmd, unsigned long arg, in ide_setting_ioctl()
57 static int ide_get_identity_ioctl(ide_drive_t *drive, unsigned int cmd, in ide_get_identity_ioctl()
122 struct ide_cmd cmd; in ide_cmd_ioctl() local
197 struct ide_cmd cmd; in ide_task_ioctl() local
235 unsigned int cmd, unsigned long arg) in generic_ide_ioctl()
Dide-disk.c55 static void ide_tf_set_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 dma) in ide_tf_set_cmd()
88 struct ide_cmd cmd; in __ide_do_rw_disk() local
207 struct ide_cmd cmd; in idedisk_read_native_max_address() local
241 struct ide_cmd cmd; in idedisk_set_max_address() local
432 struct ide_cmd *cmd; in idedisk_prep_fn() local
510 struct ide_cmd cmd; in ide_do_setfeature() local
584 struct ide_cmd cmd; in do_idedisk_flushcache() local
768 struct ide_cmd cmd; in ide_disk_set_doorlock() local
Dide-dma.c94 struct ide_cmd *cmd = &hwif->cmd; in ide_dma_intr() local
133 static int ide_dma_map_sg(ide_drive_t *drive, struct ide_cmd *cmd) in ide_dma_map_sg()
164 void ide_dma_unmap_sg(ide_drive_t *drive, struct ide_cmd *cmd) in ide_dma_unmap_sg()
452 struct ide_cmd *cmd = &hwif->cmd; in ide_dma_timeout_retry() local
533 int ide_dma_prepare(ide_drive_t *drive, struct ide_cmd *cmd) in ide_dma_prepare()
Dide-cd_ioctl.c113 unsigned char cmd[BLK_MAX_CDB]; in cdrom_eject() local
149 unsigned char cmd[BLK_MAX_CDB]; in ide_cd_lockdoor() local
218 unsigned char cmd[BLK_MAX_CDB]; in ide_cdrom_select_speed() local
276 unsigned char cmd[BLK_MAX_CDB]; in ide_cdrom_get_mcn() local
357 unsigned char cmd[BLK_MAX_CDB]; in ide_cd_fake_play_trkind() local
427 unsigned int cmd, void *arg) in ide_cdrom_audio_ioctl()
Dide-io.c74 void ide_complete_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat, u8 err) in ide_complete_cmd()
187 struct ide_cmd cmd; in do_special() local
223 void ide_map_sg(ide_drive_t *drive, struct ide_cmd *cmd) in ide_map_sg()
233 void ide_init_sg_cmd(struct ide_cmd *cmd, unsigned int nr_bytes) in ide_init_sg_cmd()
256 struct ide_cmd *cmd = rq->special; in execute_drive_cmd() local
282 u8 cmd = rq->cmd[0]; in ide_special_rq() local
/linux-4.1.27/include/scsi/
Dscsi_cmnd.h147 static inline void *scsi_cmd_priv(struct scsi_cmnd *cmd) in scsi_cmd_priv()
153 static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) in scsi_cmd_to_driver()
171 static inline unsigned scsi_sg_count(struct scsi_cmnd *cmd) in scsi_sg_count()
176 static inline struct scatterlist *scsi_sglist(struct scsi_cmnd *cmd) in scsi_sglist()
181 static inline unsigned scsi_bufflen(struct scsi_cmnd *cmd) in scsi_bufflen()
186 static inline void scsi_set_resid(struct scsi_cmnd *cmd, int resid) in scsi_set_resid()
191 static inline int scsi_get_resid(struct scsi_cmnd *cmd) in scsi_get_resid()
196 #define scsi_for_each_sg(cmd, sg, nseg, __i) \ argument
199 static inline int scsi_bidi_cmnd(struct scsi_cmnd *cmd) in scsi_bidi_cmnd()
205 static inline struct scsi_data_buffer *scsi_in(struct scsi_cmnd *cmd) in scsi_in()
[all …]
/linux-4.1.27/drivers/misc/ibmasm/
Dcommand.c36 struct command *cmd; in ibmasm_new_command() local
68 struct command *cmd = to_command(kref); in ibmasm_free_command() local
77 static void enqueue_command(struct service_processor *sp, struct command *cmd) in enqueue_command()
84 struct command *cmd; in dequeue_command() local
119 void ibmasm_exec_command(struct service_processor *sp, struct command *cmd) in ibmasm_exec_command()
162 void ibmasm_wait_for_response(struct command *cmd, int timeout) in ibmasm_wait_for_response()
177 struct command *cmd = sp->current_command; in ibmasm_receive_command_response() local
Ddot_command.h55 struct dot_command_header *cmd = (struct dot_command_header *)buffer; in get_dot_command_size() local
62 unsigned char *cmd = buffer + sizeof(struct dot_command_header); in get_dot_command_timeout() local
/linux-4.1.27/drivers/net/wireless/mwifiex/
Dsta_cmd.c44 struct host_cmd_ds_command *cmd, u16 cmd_action) in mwifiex_cmd_802_11_rssi_info()
74 struct host_cmd_ds_command *cmd, in mwifiex_cmd_mac_control()
109 struct host_cmd_ds_command *cmd, in mwifiex_cmd_802_11_snmp_mib()
148 mwifiex_cmd_802_11_get_log(struct host_cmd_ds_command *cmd) in mwifiex_cmd_802_11_get_log()
166 struct host_cmd_ds_command *cmd, in mwifiex_cmd_tx_rate_cfg()
241 static int mwifiex_cmd_tx_power_cfg(struct host_cmd_ds_command *cmd, in mwifiex_cmd_tx_power_cfg()
285 struct host_cmd_ds_command *cmd, in mwifiex_cmd_rf_tx_power()
302 struct host_cmd_ds_command *cmd, in mwifiex_cmd_rf_antenna()
342 struct host_cmd_ds_command *cmd, in mwifiex_cmd_802_11_hs_cfg()
400 struct host_cmd_ds_command *cmd, in mwifiex_cmd_802_11_mac_address()
[all …]
/linux-4.1.27/net/bluetooth/
Dmgmt_util.c60 int mgmt_cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status) in mgmt_cmd_status()
90 int mgmt_cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status, in mgmt_cmd_complete()
127 struct mgmt_pending_cmd *cmd; in mgmt_pending_find() local
144 struct mgmt_pending_cmd *cmd; in mgmt_pending_find_data() local
157 void (*cb)(struct mgmt_pending_cmd *cmd, void *data), in mgmt_pending_foreach()
160 struct mgmt_pending_cmd *cmd, *tmp; in mgmt_pending_foreach() local
174 struct mgmt_pending_cmd *cmd; in mgmt_pending_add() local
199 void mgmt_pending_free(struct mgmt_pending_cmd *cmd) in mgmt_pending_free()
206 void mgmt_pending_remove(struct mgmt_pending_cmd *cmd) in mgmt_pending_remove()
Dmgmt.c922 struct mgmt_pending_cmd *cmd; in get_adv_discov_flags() local
960 struct mgmt_pending_cmd *cmd; in get_connectable() local
1551 struct mgmt_pending_cmd *cmd; in set_powered() local
1632 static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data) in settings_rsp()
1648 static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data) in cmd_status_rsp()
1656 static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data) in cmd_complete_rsp()
1670 static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status) in generic_cmd_complete()
1676 static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status) in addr_cmd_complete()
1705 struct mgmt_pending_cmd *cmd; in set_discoverable_complete() local
1764 struct mgmt_pending_cmd *cmd; in set_discoverable() local
[all …]
/linux-4.1.27/drivers/net/wireless/ti/wl18xx/
Dcmd.c32 struct wl18xx_cmd_channel_switch *cmd; in wl18xx_cmd_channel_switch() local
89 struct wl18xx_cmd_smart_config_start *cmd; in wl18xx_cmd_smart_config_start() local
117 struct wl1271_cmd_header *cmd; in wl18xx_cmd_smart_config_stop() local
143 struct wl18xx_cmd_smart_config_set_group_key *cmd; in wl18xx_cmd_smart_config_set_group_key() local
178 struct wlcore_cmd_cac_start *cmd; in wl18xx_cmd_set_cac() local
209 struct wl18xx_cmd_dfs_radar_debug *cmd; in wl18xx_cmd_radar_detection_debug() local
235 struct wl18xx_cmd_dfs_master_restart *cmd; in wl18xx_cmd_dfs_master_restart() local
Dscan.c26 static void wl18xx_adjust_channels(struct wl18xx_cmd_scan_params *cmd, in wl18xx_adjust_channels()
44 struct wl18xx_cmd_scan_params *cmd; in wl18xx_scan_send() local
170 struct wl18xx_cmd_scan_params *cmd; in wl18xx_scan_sched_scan_config() local
/linux-4.1.27/drivers/net/wireless/libertas/
Dcmd.c67 static u8 is_command_allowed_in_ps(u16 cmd) in is_command_allowed_in_ps()
90 struct cmd_ds_get_hw_spec cmd; in lbs_update_hw_spec() local
236 struct cmd_ds_802_11_ps_mode cmd; in lbs_set_ps_mode() local
272 struct cmd_ds_802_11_sleep_params cmd; in lbs_cmd_802_11_sleep_params() local
367 struct cmd_header *cmd) in lbs_ret_host_sleep_activate()
378 struct cmd_header cmd; in lbs_set_host_sleep() local
438 struct cmd_ds_802_11_snmp_mib cmd; in lbs_set_snmp_mib() local
488 struct cmd_ds_802_11_snmp_mib cmd; in lbs_get_snmp_mib() local
533 struct cmd_ds_802_11_rf_tx_power cmd; in lbs_get_tx_power() local
565 struct cmd_ds_802_11_rf_tx_power cmd; in lbs_set_tx_power() local
[all …]
Dmesh.c25 struct cmd_ds_mesh_access *cmd) in lbs_mesh_access()
44 struct cmd_ds_mesh_config *cmd, in __lbs_mesh_config_send()
74 struct cmd_ds_mesh_config *cmd, in lbs_mesh_config_send()
94 struct cmd_ds_mesh_config cmd; in lbs_mesh_config() local
334 struct cmd_ds_mesh_config cmd; in mesh_get_default_parameters() local
380 struct cmd_ds_mesh_config cmd; in bootflag_set() local
430 struct cmd_ds_mesh_config cmd; in boottime_set() local
489 struct cmd_ds_mesh_config cmd; in channel_set() local
547 struct cmd_ds_mesh_config cmd; in mesh_id_set() local
613 struct cmd_ds_mesh_config cmd; in protocol_id_set() local
[all …]
Dcmd.h33 #define lbs_cmd(priv, cmdnr, cmd, cb, cb_arg) ({ \ argument
39 #define lbs_cmd_with_response(priv, cmdnr, cmd) \ argument
/linux-4.1.27/drivers/mmc/core/
Dsd_ops.c28 struct mmc_command cmd = {0}; in mmc_app_cmd() local
69 struct mmc_command *cmd, int retries) in mmc_wait_for_app_cmd()
124 struct mmc_command cmd = {0}; in mmc_app_set_bus_width() local
152 struct mmc_command cmd = {0}; in mmc_send_app_op_cond() local
198 struct mmc_command cmd = {0}; in mmc_send_if_cond() local
230 struct mmc_command cmd = {0}; in mmc_send_relative_addr() local
252 struct mmc_command cmd = {0}; in mmc_app_send_scr() local
311 struct mmc_command cmd = {0}; in mmc_sd_switch() local
356 struct mmc_command cmd = {0}; in mmc_app_sd_status() local
Dmmc_ops.c60 struct mmc_command cmd = {0}; in __mmc_send_status() local
93 struct mmc_command cmd = {0}; in _mmc_select_card() local
136 struct mmc_command cmd = {0}; in mmc_set_dsr() local
149 struct mmc_command cmd = {0}; in mmc_go_idle() local
185 struct mmc_command cmd = {0}; in mmc_send_op_cond() local
226 struct mmc_command cmd = {0}; in mmc_all_send_cid() local
247 struct mmc_command cmd = {0}; in mmc_set_relative_addr() local
267 struct mmc_command cmd = {0}; in mmc_send_cxd_native() local
294 struct mmc_command cmd = {0}; in mmc_send_cxd_data() local
424 struct mmc_command cmd = {0}; in mmc_spi_read_ocr() local
[all …]
Dsdio_ops.c24 struct mmc_command cmd = {0}; in mmc_send_io_op_cond() local
71 struct mmc_command cmd = {0}; in mmc_io_rw_direct_host() local
125 struct mmc_command cmd = {0}; in mmc_io_rw_extended() local
/linux-4.1.27/arch/powerpc/platforms/powermac/
Dpfunc_core.c95 static u32 pmf_next32(struct pmf_cmd *cmd) in pmf_next32()
107 static const void* pmf_next_blob(struct pmf_cmd *cmd, int count) in pmf_next_blob()
123 #define PMF_PARSE_CALL(name, cmd, handlers, p...) \ argument
136 static int pmf_parser_write_gpio(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_write_gpio()
146 static int pmf_parser_read_gpio(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_read_gpio()
158 static int pmf_parser_write_reg32(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_write_reg32()
170 static int pmf_parser_read_reg32(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_read_reg32()
180 static int pmf_parser_write_reg16(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_write_reg16()
192 static int pmf_parser_read_reg16(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_read_reg16()
202 static int pmf_parser_write_reg8(struct pmf_cmd *cmd, struct pmf_handlers *h) in pmf_parser_write_reg8()
[all …]
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_sriov_pf.c28 u32 cmd; member
36 struct qlcnic_cmd_args cmd; in qlcnic_sriov_pf_set_vport_info() local
178 struct qlcnic_cmd_args cmd; in qlcnic_sriov_get_pf_info() local
291 struct qlcnic_cmd_args cmd; in qlcnic_sriov_pf_config_vport() local
332 struct qlcnic_cmd_args cmd; in qlcnic_sriov_pf_cfg_vlan_filtering() local
361 struct qlcnic_cmd_args cmd; in qlcnic_sriov_pf_cfg_flood() local
383 struct qlcnic_cmd_args cmd; in qlcnic_sriov_pf_cfg_eswitch() local
684 struct qlcnic_cmd_args cmd; in qlcnic_sriov_set_vf_acl() local
739 struct qlcnic_cmd_args *cmd) in qlcnic_sriov_pf_channel_cfg_cmd()
790 struct qlcnic_cmd_args *cmd; in qlcnic_sriov_cfg_vf_def_mac() local
[all …]
Dqlcnic_ctx.c86 void qlcnic_free_mbx_args(struct qlcnic_cmd_args *cmd) in qlcnic_free_mbx_args()
114 struct qlcnic_cmd_args *cmd) in qlcnic_82xx_issue_cmd()
179 struct qlcnic_cmd_args cmd; in qlcnic_fw_cmd_set_drv_version() local
215 struct qlcnic_cmd_args cmd; in qlcnic_fw_cmd_set_mtu() local
252 struct qlcnic_cmd_args cmd; in qlcnic_82xx_fw_cmd_create_rx_ctx() local
398 struct qlcnic_cmd_args cmd; in qlcnic_82xx_fw_cmd_del_rx_ctx() local
424 struct qlcnic_cmd_args cmd; in qlcnic_82xx_fw_cmd_create_tx_ctx() local
529 struct qlcnic_cmd_args cmd; in qlcnic_82xx_fw_cmd_del_tx_ctx() local
547 struct qlcnic_cmd_args cmd; in qlcnic_fw_cmd_set_port() local
772 struct qlcnic_cmd_args cmd; in qlcnic_82xx_config_intrpt() local
[all …]
Dqlcnic_83xx_hw.c447 struct qlcnic_cmd_args *cmd) in qlcnic_83xx_get_mbx_data()
796 struct qlcnic_cmd_args *cmd) in qlcnic_dump_mbx()
822 struct qlcnic_cmd_args *cmd) in qlcnic_83xx_poll_for_mbx_completion()
846 struct qlcnic_cmd_args *cmd) in qlcnic_83xx_issue_cmd()
936 struct qlcnic_cmd_args cmd; in qlcnic_83xx_idc_aen_work() local
1069 struct qlcnic_cmd_args cmd; in qlcnic_83xx_add_rings() local
1141 struct qlcnic_cmd_args cmd; in qlcnic_83xx_del_rx_ctx() local
1172 struct qlcnic_cmd_args cmd; in qlcnic_83xx_create_rx_ctx() local
1292 struct qlcnic_cmd_args cmd; in qlcnic_83xx_del_tx_ctx() local
1317 struct qlcnic_cmd_args cmd; in qlcnic_83xx_create_tx_ctx() local
[all …]
Dqlcnic_sriov_common.c232 struct qlcnic_cmd_args cmd; in qlcnic_sriov_cleanup_list() local
306 struct qlcnic_cmd_args cmd; in qlcnic_sriov_post_bc_msg() local
352 struct qlcnic_cmd_args cmd; in qlcnic_sriov_get_vf_vport_info() local
416 struct qlcnic_cmd_args *cmd) in qlcnic_sriov_set_pvid_mode()
424 struct qlcnic_cmd_args *cmd) in qlcnic_sriov_set_guest_vlan_mode()
458 struct qlcnic_cmd_args cmd; in qlcnic_sriov_get_vf_acl() local
743 struct qlcnic_cmd_args *cmd, in qlcnic_sriov_prepare_bc_hdr()
1032 struct qlcnic_cmd_args *cmd) in __qlcnic_sriov_process_bc_cmd()
1050 struct qlcnic_cmd_args cmd; in qlcnic_sriov_process_bc_cmd() local
1191 struct qlcnic_cmd_args cmd; in qlcnic_sriov_handle_bc_cmd() local
[all …]
/linux-4.1.27/drivers/scsi/
Dpmcraid.c308 void pmcraid_init_cmdblk(struct pmcraid_cmd *cmd, int index) in pmcraid_init_cmdblk()
361 static void pmcraid_reinit_cmdblk(struct pmcraid_cmd *cmd) in pmcraid_reinit_cmdblk()
377 struct pmcraid_cmd *cmd = NULL; in pmcraid_get_free_cmd() local
403 void pmcraid_return_cmd(struct pmcraid_cmd *cmd) in pmcraid_return_cmd()
559 static void pmcraid_bist_done(struct pmcraid_cmd *cmd) in pmcraid_bist_done()
593 static void pmcraid_start_bist(struct pmcraid_cmd *cmd) in pmcraid_start_bist()
619 static void pmcraid_reset_alert_done(struct pmcraid_cmd *cmd) in pmcraid_reset_alert_done()
657 static void pmcraid_reset_alert(struct pmcraid_cmd *cmd) in pmcraid_reset_alert()
706 static void pmcraid_timeout_handler(struct pmcraid_cmd *cmd) in pmcraid_timeout_handler()
778 static void pmcraid_internal_done(struct pmcraid_cmd *cmd) in pmcraid_internal_done()
[all …]
Dscsi_lib.c84 scsi_set_blocked(struct scsi_cmnd *cmd, int reason) in scsi_set_blocked()
119 static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd) in scsi_mq_requeue_cmd()
141 static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy) in __scsi_queue_insert()
195 void scsi_queue_insert(struct scsi_cmnd *cmd, int reason) in scsi_queue_insert()
215 int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd, in scsi_execute()
265 int scsi_execute_req_flags(struct scsi_device *sdev, const unsigned char *cmd, in scsi_execute_req_flags()
299 static void scsi_init_cmd_errh(struct scsi_cmnd *cmd) in scsi_init_cmd_errh()
528 static void scsi_requeue_command(struct request_queue *q, struct scsi_cmnd *cmd) in scsi_requeue_command()
614 static void scsi_uninit_cmd(struct scsi_cmnd *cmd) in scsi_uninit_cmd()
624 static void scsi_mq_free_sgtables(struct scsi_cmnd *cmd) in scsi_mq_free_sgtables()
[all …]
Dscsi.c181 scsi_host_free_command(struct Scsi_Host *shost, struct scsi_cmnd *cmd) in scsi_host_free_command()
203 struct scsi_cmnd *cmd; in scsi_host_alloc_command() local
241 struct scsi_cmnd *cmd = scsi_host_alloc_command(shost, gfp_mask); in __scsi_get_command() local
279 struct scsi_cmnd *cmd = __scsi_get_command(dev->host, gfp_mask); in scsi_get_command() local
300 static void __scsi_put_command(struct Scsi_Host *shost, struct scsi_cmnd *cmd) in __scsi_put_command()
325 void scsi_put_command(struct scsi_cmnd *cmd) in scsi_put_command()
474 struct scsi_cmnd *cmd; in scsi_setup_command_freelist() local
510 struct scsi_cmnd *cmd; in scsi_destroy_command_freelist() local
521 void scsi_log_send(struct scsi_cmnd *cmd) in scsi_log_send()
547 void scsi_log_completion(struct scsi_cmnd *cmd, int disposition) in scsi_log_completion()
[all …]
Datari_NCR5380.c230 #define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble) argument
231 #define SET_NEXT(cmd,next) ((cmd)->host_scribble = (void *)(next)) argument
232 #define NEXTADDR(cmd) ((struct scsi_cmnd **)&(cmd)->host_scribble) argument
235 #define H_NO(cmd) (cmd)->device->host->host_no argument
304 static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged) in is_lun_busy()
330 static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged) in cmd_get_tag()
363 static void cmd_free_tag(struct scsi_cmnd *cmd) in cmd_free_tag()
417 static void merge_contiguous_buffers(struct scsi_cmnd *cmd) in merge_contiguous_buffers()
454 static inline void initialize_SCp(struct scsi_cmnd *cmd) in initialize_SCp()
663 static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd) in lprint_Scsi_Cmnd()
[all …]
Desp_scsi.c146 static void esp_send_dma_cmd(struct esp *esp, int len, int max_len, int cmd) in esp_send_dma_cmd()
368 static void esp_map_dma(struct esp *esp, struct scsi_cmnd *cmd) in esp_map_dma()
389 struct scsi_cmnd *cmd) in esp_cur_dma_addr()
404 struct scsi_cmnd *cmd) in esp_cur_dma_len()
416 struct scsi_cmnd *cmd, unsigned int len) in esp_advance_dma()
442 static void esp_unmap_dma(struct esp *esp, struct scsi_cmnd *cmd) in esp_unmap_dma()
455 struct scsi_cmnd *cmd = ent->cmd; in esp_save_pointers() local
469 struct scsi_cmnd *cmd = ent->cmd; in esp_restore_pointers() local
481 static void esp_check_command_len(struct esp *esp, struct scsi_cmnd *cmd) in esp_check_command_len()
638 struct scsi_cmnd *cmd = ent->cmd; in esp_autosense() local
[all …]
Dps3rom.c97 struct scsi_cmnd *cmd) in ps3rom_atapi_request()
160 static inline unsigned int srb10_lba(const struct scsi_cmnd *cmd) in srb10_lba()
166 static inline unsigned int srb10_len(const struct scsi_cmnd *cmd) in srb10_len()
172 struct scsi_cmnd *cmd, u32 start_sector, in ps3rom_read_request()
193 struct scsi_cmnd *cmd, u32 start_sector, in ps3rom_write_request()
215 static int ps3rom_queuecommand_lck(struct scsi_cmnd *cmd, in ps3rom_queuecommand_lck()
279 struct scsi_cmnd *cmd; in ps3rom_interrupt() local
Din2000.c207 static inline void write_3393_cmd(struct IN2000_hostdata *hostdata, uchar cmd) in write_3393_cmd()
257 static int is_dir_out(Scsi_Cmnd * cmd) in is_dir_out()
336 static int in2000_queuecommand_lck(Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *)) in in2000_queuecommand_lck() argument
448 Scsi_Cmnd *cmd, *prev; in DEF_SCSI_QCMD() local
747 static void transfer_bytes(Scsi_Cmnd * cmd, int data_in_dir) in transfer_bytes()
837 Scsi_Cmnd *patch, *cmd; in in2000_intr() local
1642 static int in2000_bus_reset(Scsi_Cmnd * cmd) in in2000_bus_reset()
1678 static int __in2000_abort(Scsi_Cmnd * cmd) in __in2000_abort()
1799 static int in2000_abort(Scsi_Cmnd * cmd) in in2000_abort()
2218 Scsi_Cmnd *cmd; in in2000_show_info() local
Dvmw_pvscsi.c60 struct scsi_cmnd *cmd; member
160 pvscsi_find_context(const struct pvscsi_adapter *adapter, struct scsi_cmnd *cmd) in pvscsi_find_context()
173 pvscsi_acquire_context(struct pvscsi_adapter *adapter, struct scsi_cmnd *cmd) in pvscsi_acquire_context()
251 u32 cmd, const void *desc, size_t len) in pvscsi_write_cmd_desc()
266 struct PVSCSICmdDescAbortCmd cmd = { 0 }; in pvscsi_abort_cmd() local
322 struct PVSCSICmdDescResetDevice cmd = { 0 }; in ll_device_reset() local
353 struct pvscsi_ctx *ctx, struct scsi_cmnd *cmd, in pvscsi_map_buffers()
392 struct scsi_cmnd *cmd; in pvscsi_unmap_buffers() local
463 struct PVSCSICmdDescSetupRings cmd = { 0 }; in pvscsi_setup_all_rings() local
522 struct scsi_cmnd *cmd; in pvscsi_complete_request() local
[all …]
Dmvumi.c250 static int mvumi_internal_cmd_sgl(struct mvumi_hba *mhba, struct mvumi_cmd *cmd, in mvumi_internal_cmd_sgl()
279 struct mvumi_cmd *cmd; in mvumi_create_internal_cmd() local
313 struct mvumi_cmd *cmd) in mvumi_delete_internal_cmd()
344 struct mvumi_cmd *cmd = NULL; in mvumi_get_cmd() local
362 struct mvumi_cmd *cmd) in mvumi_return_cmd()
374 struct mvumi_cmd *cmd; in mvumi_free_cmds() local
394 struct mvumi_cmd *cmd; in mvumi_alloc_cmds() local
736 struct mvumi_cmd *cmd) in mvumi_issue_blocked_cmd()
793 struct mvumi_cmd *cmd; in mvumi_flush_cache() local
1325 static void mvumi_complete_cmd(struct mvumi_hba *mhba, struct mvumi_cmd *cmd, in mvumi_complete_cmd()
[all …]
Dscsi_lib_dma.c22 int scsi_dma_map(struct scsi_cmnd *cmd) in scsi_dma_map()
42 void scsi_dma_unmap(struct scsi_cmnd *cmd) in scsi_dma_unmap()
Dwd719x.c185 static void wd719x_finish_cmd(struct scsi_cmnd *cmd, int result) in wd719x_finish_cmd()
201 static int wd719x_queuecommand(struct Scsi_Host *sh, struct scsi_cmnd *cmd) in wd719x_queuecommand()
463 static int wd719x_abort(struct scsi_cmnd *cmd) in wd719x_abort()
484 static int wd719x_reset(struct scsi_cmnd *cmd, u8 opcode, u8 device) in wd719x_reset()
503 static int wd719x_dev_reset(struct scsi_cmnd *cmd) in wd719x_dev_reset()
508 static int wd719x_bus_reset(struct scsi_cmnd *cmd) in wd719x_bus_reset()
513 static int wd719x_host_reset(struct scsi_cmnd *cmd) in wd719x_host_reset()
558 struct scsi_cmnd *cmd; in wd719x_interrupt_SCB() local
Dch.c185 ch_do_scsi(scsi_changer *ch, unsigned char *cmd, int cmd_len, in ch_do_scsi()
236 u_char cmd[12]; in ch_read_element_status() local
279 u_char cmd[6]; in ch_init_elem() local
293 u_char cmd[10], data[16]; in ch_readconfig() local
422 u_char cmd[10]; in ch_position() local
441 u_char cmd[12]; in ch_move() local
463 u_char cmd[12]; in ch_exchange() local
505 u_char cmd[12]; in ch_set_voltag() local
607 unsigned int cmd, unsigned long arg) in ch_ioctl()
860 unsigned int cmd, unsigned long arg) in ch_ioctl_compat()
Dscsi_ioctl.c88 static int ioctl_internal_command(struct scsi_device *sdev, char *cmd, in ioctl_internal_command()
199 int scsi_ioctl(struct scsi_device *sdev, int cmd, void __user *arg) in scsi_ioctl()
276 int scsi_ioctl_block_when_processing_errors(struct scsi_device *sdev, int cmd, in scsi_ioctl_block_when_processing_errors()
Dqlogicfas408.c212 static void ql_icmd(struct scsi_cmnd *cmd) in ql_icmd()
259 static unsigned int ql_pcmd(struct scsi_cmnd *cmd) in ql_pcmd()
442 static int qlogicfas408_queuecommand_lck(struct scsi_cmnd *cmd, in qlogicfas408_queuecommand_lck()
491 int qlogicfas408_abort(struct scsi_cmnd *cmd) in qlogicfas408_abort()
505 int qlogicfas408_bus_reset(struct scsi_cmnd *cmd) in qlogicfas408_bus_reset()
Dmesh.c84 #define DEBUG_TARGET(cmd) ((cmd) && ALLOW_DEBUG((cmd)->device->id)) argument
347 static void mesh_completed(struct mesh_state *ms, struct scsi_cmnd *cmd) in mesh_completed()
404 static void mesh_start_cmd(struct mesh_state *ms, struct scsi_cmnd *cmd) in mesh_start_cmd()
559 struct scsi_cmnd *cmd, *prev, *next; in mesh_start() local
590 struct scsi_cmnd *cmd; in mesh_done() local
683 struct scsi_cmnd *cmd = ms->current_req; in start_phase() local
858 struct scsi_cmnd *cmd; in reselected() local
989 struct scsi_cmnd *cmd; in handle_reset() local
1159 struct scsi_cmnd *cmd = ms->current_req; in handle_msgin() local
1257 static void set_dma_cmds(struct mesh_state *ms, struct scsi_cmnd *cmd) in set_dma_cmds()
[all …]
Dwd33c93.c219 #define write_wd33c93_cmd(regs, cmd) \ argument
282 write_wd33c93_cmd(const wd33c93_regs regs, uchar cmd) in write_wd33c93_cmd()
375 wd33c93_queuecommand_lck(struct scsi_cmnd *cmd, in wd33c93_queuecommand_lck()
489 struct scsi_cmnd *cmd, *prev; in DEF_SCSI_QCMD() local
730 transfer_bytes(const wd33c93_regs regs, struct scsi_cmnd *cmd, in transfer_bytes()
807 struct scsi_cmnd *patch, *cmd; in wd33c93_intr() local
1610 wd33c93_abort(struct scsi_cmnd * cmd) in wd33c93_abort()
2132 struct scsi_cmnd *cmd; in wd33c93_show_info() local
Dppa.c492 static inline int ppa_send_command(struct scsi_cmnd *cmd) in ppa_send_command()
513 static int ppa_completion(struct scsi_cmnd *cmd) in ppa_completion()
615 struct scsi_cmnd *cmd = dev->cur_cmd; in ppa_interrupt() local
670 static int ppa_engine(ppa_struct *dev, struct scsi_cmnd *cmd) in ppa_engine()
784 static int ppa_queuecommand_lck(struct scsi_cmnd *cmd, in ppa_queuecommand_lck()
831 static int ppa_abort(struct scsi_cmnd *cmd) in ppa_abort()
859 static int ppa_reset(struct scsi_cmnd *cmd) in ppa_reset()
880 static u8 cmd[6] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; in device_check() local
Ddpt_i2o.c424 static int adpt_queue_lck(struct scsi_cmnd * cmd, void (*done) (struct scsi_cmnd *)) in adpt_queue_lck()
593 static u32 adpt_cmd_to_context(struct scsi_cmnd *cmd) in adpt_cmd_to_context()
605 struct scsi_cmnd * cmd; in adpt_cmd_from_context() local
681 static int adpt_abort(struct scsi_cmnd * cmd) in adpt_abort()
726 static int adpt_device_reset(struct scsi_cmnd* cmd) in adpt_device_reset()
770 static int adpt_bus_reset(struct scsi_cmnd* cmd) in adpt_bus_reset()
798 static int __adpt_reset(struct scsi_cmnd* cmd) in __adpt_reset()
814 static int adpt_reset(struct scsi_cmnd* cmd) in adpt_reset()
1987 static int adpt_ioctl(struct inode *inode, struct file *file, uint cmd, ulong arg) in adpt_ioctl()
2070 static long adpt_unlocked_ioctl(struct file *file, uint cmd, ulong arg) in adpt_unlocked_ioctl()
[all …]
Dmac53c94.c69 static int mac53c94_queue_lck(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)) in mac53c94_queue_lck()
148 struct scsi_cmnd *cmd; in mac53c94_start() local
198 struct scsi_cmnd *cmd = state->current_req; in mac53c94_interrupt() local
346 struct scsi_cmnd *cmd; in cmd_done() local
361 static void set_dma_cmds(struct fsc_state *state, struct scsi_cmnd *cmd) in set_dma_cmds()
Dvirtio_scsi.c42 struct virtio_scsi_cmd_req cmd; member
48 struct virtio_scsi_cmd_resp cmd; member
150 struct virtio_scsi_cmd *cmd = buf; in virtscsi_complete_cmd() local
258 struct virtio_scsi_cmd *cmd = buf; in virtscsi_complete_free() local
426 struct virtio_scsi_cmd *cmd, in virtscsi_add_cmd()
471 struct virtio_scsi_cmd *cmd, in virtscsi_kick_cmd()
491 struct virtio_scsi_cmd_req *cmd, in virtio_scsi_init_hdr()
533 struct virtio_scsi_cmd *cmd = scsi_cmd_priv(sc); in virtscsi_queuecommand() local
637 static int virtscsi_tmf(struct virtio_scsi *vscsi, struct virtio_scsi_cmd *cmd) in virtscsi_tmf()
672 struct virtio_scsi_cmd *cmd; in virtscsi_device_reset() local
[all …]
Da100u2w.c595 static int orc_device_reset(struct orc_host * host, struct scsi_cmnd *cmd, unsigned int target) in orc_device_reset()
762 static int inia100_abort_cmd(struct orc_host * host, struct scsi_cmnd *cmd) in inia100_abort_cmd()
842 static int inia100_build_scb(struct orc_host * host, struct orc_scb * scb, struct scsi_cmnd * cmd) in inia100_build_scb()
914 static int inia100_queue_lck(struct scsi_cmnd * cmd, void (*done) (struct scsi_cmnd *)) in inia100_queue_lck()
959 static int inia100_bus_reset(struct scsi_cmnd * cmd) in inia100_bus_reset()
973 static int inia100_device_reset(struct scsi_cmnd * cmd) in inia100_device_reset()
993 struct scsi_cmnd *cmd; /* Pointer to SCSI request block */ in inia100_scb_handler() local
Dimm.c598 static inline int imm_send_command(struct scsi_cmnd *cmd) in imm_send_command()
618 static int imm_completion(struct scsi_cmnd *cmd) in imm_completion()
719 struct scsi_cmnd *cmd = dev->cur_cmd; in imm_interrupt() local
774 static int imm_engine(imm_struct *dev, struct scsi_cmnd *cmd) in imm_engine()
910 static int imm_queuecommand_lck(struct scsi_cmnd *cmd, in imm_queuecommand_lck()
955 static int imm_abort(struct scsi_cmnd *cmd) in imm_abort()
987 static int imm_reset(struct scsi_cmnd *cmd) in imm_reset()
1008 static char cmd[6] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; in device_check() local
/linux-4.1.27/drivers/net/wireless/libertas_tf/
Dcmd.c85 struct cmd_ds_get_hw_spec cmd; in lbtf_update_hw_spec() local
156 struct cmd_ds_802_11_rf_channel cmd; in lbtf_set_channel() local
171 struct cmd_ds_802_11_beacon_set cmd; in lbtf_beacon_set() local
194 struct cmd_ds_802_11_beacon_control cmd; in lbtf_beacon_ctrl() local
240 struct cmd_header *cmd; in lbtf_submit_command() local
308 void lbtf_complete_command(struct lbtf_private *priv, struct cmd_ctrl_node *cmd, in lbtf_complete_command()
322 struct cmd_ds_mac_multicast_addr cmd; in lbtf_cmd_set_mac_multicast_addr() local
344 struct cmd_ds_set_mode cmd; in lbtf_set_mode() local
357 struct cmd_ds_set_bssid cmd; in lbtf_set_bssid() local
371 struct cmd_ds_802_11_mac_address cmd; in lbtf_set_mac_address() local
[all …]
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/
Dpower.c82 struct iwl_beacon_filter_cmd *cmd, in iwl_mvm_beacon_filter_send_cmd()
115 struct iwl_beacon_filter_cmd *cmd) in iwl_mvm_beacon_filter_set_cqm_params()
130 struct iwl_mac_power_cmd *cmd) in iwl_mvm_power_log()
168 struct iwl_mac_power_cmd *cmd) in iwl_mvm_power_configure_uapsd()
331 struct iwl_mac_power_cmd *cmd) in iwl_mvm_power_build_cmd()
451 struct iwl_mac_power_cmd cmd = {}; in iwl_mvm_power_send_cmd() local
465 struct iwl_device_power_cmd cmd = { in iwl_mvm_power_update_device() local
514 struct iwl_device_cmd *cmd) in iwl_mvm_power_uapsd_misbehaving_ap_notif()
696 struct iwl_mac_power_cmd cmd = {}; in iwl_mvm_power_mac_dbgfs_read() local
767 struct iwl_beacon_filter_cmd *cmd) in iwl_mvm_beacon_filter_debugfs_parameters()
[all …]
Dscan.c319 struct iwl_device_cmd *cmd) in iwl_mvm_rx_scan_offload_iter_complete_notif()
332 struct iwl_device_cmd *cmd) in iwl_mvm_rx_scan_offload_results()
342 struct iwl_device_cmd *cmd) in iwl_mvm_rx_scan_offload_complete_notif()
442 struct iwl_host_cmd cmd = { in iwl_mvm_config_sched_scan_profiles() local
544 struct iwl_host_cmd cmd = { in iwl_mvm_send_scan_offload_abort() local
657 struct iwl_scan_req_unified_lmac *cmd) in iwl_mvm_lmac_scan_cfg_channels()
763 struct iwl_scan_req_unified_lmac *cmd, in iwl_mvm_build_generic_unified_scan_cmd()
796 struct iwl_scan_req_unified_lmac *cmd = mvm->scan_cmd; in iwl_mvm_unified_scan_lmac() local
913 struct iwl_scan_req_unified_lmac *cmd = mvm->scan_cmd; in iwl_mvm_unified_sched_scan_lmac() local
1094 struct iwl_host_cmd cmd = { in iwl_mvm_config_scan() local
[all …]
Dmac-ctxt.c611 struct iwl_mac_ctx_cmd *cmd) in iwl_mvm_mac_ctxt_set_ht_flags()
645 struct iwl_mac_ctx_cmd *cmd, in iwl_mvm_mac_ctxt_cmd_common()
746 struct iwl_mac_ctx_cmd *cmd) in iwl_mvm_mac_ctxt_send_cmd()
761 struct iwl_mac_ctx_cmd cmd = {}; in iwl_mvm_mac_ctxt_cmd_sta() local
844 struct iwl_mac_ctx_cmd cmd = {}; in iwl_mvm_mac_ctxt_cmd_listener() local
865 struct iwl_mac_ctx_cmd cmd = {}; in iwl_mvm_mac_ctxt_cmd_ibss() local
903 struct iwl_mac_ctx_cmd cmd = {}; in iwl_mvm_mac_ctxt_cmd_p2p_device() local
961 struct iwl_host_cmd cmd = { in iwl_mvm_mac_ctxt_send_beacon() local
1131 struct iwl_mac_ctx_cmd cmd = {}; in iwl_mvm_mac_ctxt_cmd_ap() local
1156 struct iwl_mac_ctx_cmd cmd = {}; in iwl_mvm_mac_ctxt_cmd_go() local
[all …]
Dfw.c431 struct iwl_host_cmd cmd = { in iwl_mvm_get_shared_mem_conf() local
589 struct iwl_fw_dbg_conf_hcmd *cmd = (void *)ptr; in iwl_mvm_start_fw_dbg_conf() local
619 struct iwl_ltr_config_cmd cmd = { in iwl_mvm_config_ltr() local
820 struct iwl_device_cmd *cmd) in iwl_mvm_rx_card_state_notif()
836 struct iwl_device_cmd *cmd) in iwl_mvm_rx_radio_ver()
852 struct iwl_device_cmd *cmd) in iwl_mvm_rx_mfuart_notif()
Dphy-ctxt.c128 struct iwl_phy_context_cmd *cmd, in iwl_mvm_phy_ctxt_cmd_hdr()
143 struct iwl_phy_context_cmd *cmd, in iwl_mvm_phy_ctxt_cmd_data()
198 struct iwl_phy_context_cmd cmd; in iwl_mvm_phy_ctxt_apply() local
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/
Dpower.c61 struct iwl_powertable_cmd cmd; member
160 struct iwl_powertable_cmd *cmd, in iwl_static_sleep_cmd()
262 struct iwl_powertable_cmd *cmd) in iwl_power_sleep_cam_cmd()
272 static int iwl_set_power(struct iwl_priv *priv, struct iwl_powertable_cmd *cmd) in iwl_set_power()
290 struct iwl_powertable_cmd *cmd) in iwl_power_build_cmd()
330 int iwl_power_set_mode(struct iwl_priv *priv, struct iwl_powertable_cmd *cmd, in iwl_power_set_mode()
380 struct iwl_powertable_cmd cmd; in iwl_power_update_mode() local
Drx.c128 struct iwl_device_cmd *cmd) in iwlagn_rx_reply_error()
143 struct iwl_device_cmd *cmd) in iwlagn_rx_csa()
174 struct iwl_device_cmd *cmd) in iwlagn_rx_spectrum_measure_notif()
192 struct iwl_device_cmd *cmd) in iwlagn_rx_pm_sleep_notif()
205 struct iwl_device_cmd *cmd) in iwlagn_rx_pm_debug_statistics_notif()
217 struct iwl_device_cmd *cmd) in iwlagn_rx_beacon_notif()
453 struct iwl_device_cmd *cmd) in iwlagn_rx_statistics()
559 struct iwl_device_cmd *cmd) in iwlagn_rx_reply_statistics()
583 struct iwl_device_cmd *cmd) in iwlagn_rx_card_state_notif()
635 struct iwl_device_cmd *cmd) in iwlagn_rx_missed_beacon_notif()
[all …]
Ducode.c62 struct iwl_calib_xtal_freq_cmd cmd; in iwl_set_Xtal_calib() local
73 struct iwl_calib_temperature_offset_cmd cmd; in iwl_set_temperature_offset_calib() local
88 struct iwl_calib_temperature_offset_v2_cmd cmd; in iwl_set_temperature_offset_calib_v2() local
114 struct iwl_host_cmd cmd = { in iwl_send_calib_cfg() local
/linux-4.1.27/tools/perf/util/
Drun-command.c19 int start_command(struct child_process *cmd) in start_command()
190 int finish_command(struct child_process *cmd) in finish_command()
195 int run_command(struct child_process *cmd) in run_command()
203 static void prepare_run_command_v_opt(struct child_process *cmd, in prepare_run_command_v_opt()
216 struct child_process cmd; in run_command_v_opt() local
/linux-4.1.27/drivers/macintosh/
Dsmu.c68 u8 cmd; member
112 struct smu_cmd *cmd; in smu_start_cmd() local
163 struct smu_cmd *cmd; in smu_db_intr() local
262 int smu_queue_cmd(struct smu_cmd *cmd) in smu_queue_cmd()
290 void (*done)(struct smu_cmd *cmd, void *misc), in smu_queue_simple()
293 struct smu_cmd *cmd = &scmd->cmd; in smu_queue_simple() local
333 void smu_done_complete(struct smu_cmd *cmd, void *misc) in smu_done_complete()
342 void smu_spinwait_cmd(struct smu_cmd *cmd) in smu_spinwait_cmd()
381 struct smu_simple_cmd cmd; in smu_get_rtc_time() local
408 struct smu_simple_cmd cmd; in smu_set_rtc_time() local
[all …]
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
Dbmi.c32 struct bmi_cmd cmd; in ath10k_bmi_done() local
58 struct bmi_cmd cmd; in ath10k_bmi_get_target_info() local
94 struct bmi_cmd cmd; in ath10k_bmi_read_memory() local
135 struct bmi_cmd cmd; in ath10k_bmi_write_memory() local
180 struct bmi_cmd cmd; in ath10k_bmi_execute() local
219 struct bmi_cmd cmd; in ath10k_bmi_lz_data() local
257 struct bmi_cmd cmd; in ath10k_bmi_lz_stream_start() local
Dwmi-tlv.c1018 struct wmi_tlv_pdev_suspend *cmd; in ath10k_wmi_tlv_op_gen_pdev_suspend() local
1039 struct wmi_tlv_resume_cmd *cmd; in ath10k_wmi_tlv_op_gen_pdev_resume() local
1063 struct wmi_tlv_pdev_set_rd_cmd *cmd; in ath10k_wmi_tlv_op_gen_pdev_set_rd() local
1089 struct wmi_tlv_pdev_set_param_cmd *cmd; in ath10k_wmi_tlv_op_gen_pdev_set_param() local
1112 struct wmi_tlv_init_cmd *cmd; in ath10k_wmi_tlv_op_gen_init() local
1216 struct wmi_tlv_start_scan_cmd *cmd; in ath10k_wmi_tlv_op_gen_start_scan() local
1314 struct wmi_stop_scan_cmd *cmd; in ath10k_wmi_tlv_op_gen_stop_scan() local
1355 struct wmi_vdev_create_cmd *cmd; in ath10k_wmi_tlv_op_gen_vdev_create() local
1379 struct wmi_vdev_delete_cmd *cmd; in ath10k_wmi_tlv_op_gen_vdev_delete() local
1402 struct wmi_tlv_vdev_start_cmd *cmd; in ath10k_wmi_tlv_op_gen_vdev_start() local
[all …]
Dwmi.c933 u32 cmd = 0; in ath10k_wmi_cmd_send_nowait() local
1057 struct wmi_mgmt_tx_cmd *cmd; in ath10k_wmi_op_gen_mgmt_tx() local
3672 struct wmi_pdev_set_regdomain_cmd *cmd; in ath10k_wmi_op_gen_pdev_set_rd() local
3697 struct wmi_pdev_set_regdomain_cmd_10x *cmd; in ath10k_wmi_10x_op_gen_pdev_set_rd() local
3721 struct wmi_pdev_suspend_cmd *cmd; in ath10k_wmi_op_gen_pdev_suspend() local
3749 struct wmi_pdev_set_param_cmd *cmd; in ath10k_wmi_op_gen_pdev_set_param() local
3795 struct wmi_init_cmd *cmd; in ath10k_wmi_op_gen_init() local
3869 struct wmi_init_cmd_10x *cmd; in ath10k_wmi_10_1_op_gen_init() local
3935 struct wmi_init_cmd_10_2 *cmd; in ath10k_wmi_10_2_op_gen_init() local
4152 struct wmi_start_scan_cmd *cmd; in ath10k_wmi_op_gen_start_scan() local
[all …]
Dhtt_tx.c138 struct htt_cmd *cmd; in ath10k_htt_h2t_ver_req_msg() local
167 struct htt_cmd *cmd; in ath10k_htt_h2t_stats_req() local
208 struct htt_cmd *cmd; in ath10k_htt_send_rx_ring_cfg_ll() local
297 struct htt_cmd *cmd; in ath10k_htt_h2t_aggr_cfg_msg() local
342 struct htt_cmd *cmd; in ath10k_htt_mgmt_tx() local
/linux-4.1.27/drivers/infiniband/core/
Duverbs_cmd.c288 struct ib_uverbs_get_context cmd; in ib_uverbs_get_context() local
453 struct ib_uverbs_query_device cmd; in ib_uverbs_query_device() local
482 struct ib_uverbs_query_port cmd; in ib_uverbs_query_port() local
532 struct ib_uverbs_alloc_pd cmd; in ib_uverbs_alloc_pd() local
606 struct ib_uverbs_dealloc_pd cmd; in ib_uverbs_dealloc_pd() local
726 struct ib_uverbs_open_xrcd cmd; in ib_uverbs_open_xrcd() local
863 struct ib_uverbs_close_xrcd cmd; in ib_uverbs_close_xrcd() local
940 struct ib_uverbs_reg_mr cmd; in ib_uverbs_reg_mr() local
1049 struct ib_uverbs_rereg_mr cmd; in ib_uverbs_rereg_mr() local
1142 struct ib_uverbs_dereg_mr cmd; in ib_uverbs_dereg_mr() local
[all …]
Ducma.c296 struct rdma_ucm_get_event cmd; in ucma_get_event() local
350 static int ucma_get_qp_type(struct rdma_ucm_create_id *cmd, enum ib_qp_type *qp_type) in ucma_get_qp_type()
371 struct rdma_ucm_create_id cmd; in ucma_create_id() local
484 struct rdma_ucm_destroy_id cmd; in ucma_destroy_id() local
518 struct rdma_ucm_bind_ip cmd; in ucma_bind_ip() local
537 struct rdma_ucm_bind cmd; in ucma_bind() local
562 struct rdma_ucm_resolve_ip cmd; in ucma_resolve_ip() local
584 struct rdma_ucm_resolve_addr cmd; in ucma_resolve_addr() local
611 struct rdma_ucm_resolve_route cmd; in ucma_resolve_route() local
695 struct rdma_ucm_query cmd; in ucma_query_route() local
[all …]
Ducm.c390 struct ib_ucm_event_get cmd; in ib_ucm_event() local
474 struct ib_ucm_create_id cmd; in ib_ucm_create_id() local
521 struct ib_ucm_destroy_id cmd; in ib_ucm_destroy_id() local
567 struct ib_ucm_attr_id cmd; in ib_ucm_attr_id() local
599 struct ib_ucm_init_qp_attr cmd; in ib_ucm_init_qp_attr() local
647 struct ib_ucm_listen cmd; in ib_ucm_listen() local
673 struct ib_ucm_notify cmd; in ib_ucm_notify() local
738 struct ib_ucm_req cmd; in ib_ucm_send_req() local
796 struct ib_ucm_rep cmd; in ib_ucm_send_rep() local
836 struct ib_ucm_private_data cmd; in ib_ucm_send_private_data() local
[all …]
/linux-4.1.27/drivers/scsi/libsas/
Dsas_scsi_host.c148 static struct sas_task *sas_create_task(struct scsi_cmnd *cmd, in sas_create_task()
180 int sas_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd) in sas_queuecommand()
222 static void sas_eh_finish_cmd(struct scsi_cmnd *cmd) in sas_eh_finish_cmd()
240 static void sas_eh_defer_cmd(struct scsi_cmnd *cmd) in sas_eh_defer_cmd()
258 struct scsi_cmnd *cmd, *n; in sas_scsi_clear_queue_lu() local
270 struct scsi_cmnd *cmd, *n; in sas_scsi_clear_queue_I_T() local
283 struct scsi_cmnd *cmd, *n; in sas_scsi_clear_queue_port() local
350 static int sas_recover_lu(struct domain_device *dev, struct scsi_cmnd *cmd) in sas_recover_lu()
487 int sas_eh_abort_handler(struct scsi_cmnd *cmd) in sas_eh_abort_handler()
509 int sas_eh_device_reset_handler(struct scsi_cmnd *cmd) in sas_eh_device_reset_handler()
[all …]
/linux-4.1.27/include/sound/
Dhda_regmap.h76 unsigned int cmd = snd_hdac_regmap_encode_verb(nid, verb); in snd_hdac_regmap_write() local
95 unsigned int cmd = snd_hdac_regmap_encode_verb(nid, verb); in snd_hdac_regmap_update() local
112 unsigned int cmd = snd_hdac_regmap_encode_verb(nid, verb); in snd_hdac_regmap_read() local
133 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx); in snd_hdac_regmap_get_amp() local
157 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx); in snd_hdac_regmap_update_amp() local
178 unsigned int cmd = snd_hdac_regmap_encode_amp_stereo(nid, dir, idx); in snd_hdac_regmap_get_amp_stereo() local
202 unsigned int cmd = snd_hdac_regmap_encode_amp_stereo(nid, dir, idx); in snd_hdac_regmap_update_amp_stereo() local
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4vf/
Dt4vf_hw.c116 int t4vf_wr_mbox_core(struct adapter *adapter, const void *cmd, int size, in t4vf_wr_mbox_core()
347 struct fw_reset_cmd cmd; in t4vf_fw_reset() local
370 struct fw_params_cmd cmd, rpl; in t4vf_query_params() local
408 struct fw_params_cmd cmd; in t4vf_set_params() local
702 struct fw_rss_glb_config_cmd cmd, rpl; in t4vf_get_rss_glb_config() local
777 struct fw_pfvf_cmd cmd, rpl; in t4vf_get_vfres() local
830 struct fw_rss_vi_config_cmd cmd, rpl; in t4vf_read_rss_vi_config() local
881 struct fw_rss_vi_config_cmd cmd, rpl; in t4vf_write_rss_vi_config() local
936 struct fw_rss_ind_tbl_cmd cmd; in t4vf_config_rss_range() local
1023 struct fw_vi_cmd cmd, rpl; in t4vf_alloc_vi() local
[all …]
/linux-4.1.27/drivers/net/wireless/ti/wlcore/
Dcmd.c56 struct wl1271_cmd_header *cmd; in __wlcore_cmd_send() local
233 struct wl12xx_cmd_role_enable *cmd; in wl12xx_cmd_role_enable() local
275 struct wl12xx_cmd_role_disable *cmd; in wl12xx_cmd_role_disable() local
429 struct wl12xx_cmd_role_start *cmd; in wl12xx_cmd_role_start_dev() local
478 struct wl12xx_cmd_role_stop *cmd; in wl12xx_cmd_role_stop_dev() local
514 struct wl12xx_cmd_role_start *cmd; in wl12xx_cmd_role_start_sta() local
589 struct wl12xx_cmd_role_stop *cmd; in wl12xx_cmd_role_stop_sta() local
624 struct wl12xx_cmd_role_start *cmd; in wl12xx_cmd_role_start_ap() local
731 struct wl12xx_cmd_role_stop *cmd; in wl12xx_cmd_role_stop_ap() local
763 struct wl12xx_cmd_role_start *cmd; in wl12xx_cmd_role_start_ibss() local
[all …]
Dspi.c89 u8 *cmd; in wl12xx_spi_reset() local
119 u8 *cmd = kzalloc(WSPI_INIT_CMD_LEN, GFP_KERNEL); in wl12xx_spi_init() local
211 u32 *cmd; in wl12xx_spi_raw_read() local
278 u32 *cmd; in wl12xx_spi_raw_write() local
/linux-4.1.27/drivers/staging/mt29f_spinand/
Dmt29f_spinand.c73 static int spinand_cmd(struct spi_device *spi, struct spinand_cmd *cmd) in spinand_cmd()
122 struct spinand_cmd cmd = {0}; in spinand_read_id() local
150 struct spinand_cmd cmd = {0}; in spinand_read_status() local
198 struct spinand_cmd cmd = {0}; in spinand_get_otp() local
223 struct spinand_cmd cmd = {0}; in spinand_set_otp() local
295 struct spinand_cmd cmd = {0}; in spinand_write_enable() local
303 struct spinand_cmd cmd = {0}; in spinand_read_page_to_cache() local
326 struct spinand_cmd cmd = {0}; in spinand_read_from_cache() local
424 struct spinand_cmd cmd = {0}; in spinand_program_data_to_cache() local
450 struct spinand_cmd cmd = {0}; in spinand_program_execute() local
[all …]
/linux-4.1.27/net/atm/
Dioctl.c50 static int do_vcc_ioctl(struct socket *sock, unsigned int cmd, in do_vcc_ioctl()
186 int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) in vcc_ioctl()
222 unsigned int cmd; member
245 static int do_atm_iobuf(struct socket *sock, unsigned int cmd, in do_atm_iobuf()
276 static int do_atmif_sioc(struct socket *sock, unsigned int cmd, in do_atmif_sioc()
309 unsigned int cmd = 0; in do_atm_ioctl() local
358 int vcc_compat_ioctl(struct socket *sock, unsigned int cmd, in vcc_compat_ioctl()
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/
Dnetxen_nic_ctx.c49 netxen_issue_cmd(struct netxen_adapter *adapter, struct netxen_cmd_args *cmd) in netxen_issue_cmd()
102 struct netxen_cmd_args cmd; in netxen_get_minidump_template_size() local
123 struct netxen_cmd_args cmd; in netxen_get_minidump_template() local
241 struct netxen_cmd_args cmd; in nx_fw_cmd_set_mtu() local
262 struct netxen_cmd_args cmd; in nx_fw_cmd_set_gbe_port() local
284 struct netxen_cmd_args cmd; in nx_fw_cmd_create_rx_ctx() local
421 struct netxen_cmd_args cmd; in nx_fw_cmd_destroy_rx_ctx() local
450 struct netxen_cmd_args cmd; in nx_fw_cmd_create_tx_ctx() local
528 struct netxen_cmd_args cmd; in nx_fw_cmd_destroy_tx_ctx() local
546 struct netxen_cmd_args cmd; in nx_fw_cmd_query_phy() local
[all …]
/linux-4.1.27/fs/ocfs2/
Dlocks.c39 int cmd, struct file_lock *fl) in ocfs2_do_flock()
94 static int ocfs2_do_funlock(struct file *file, int cmd, struct file_lock *fl) in ocfs2_do_funlock()
110 int ocfs2_flock(struct file *file, int cmd, struct file_lock *fl) in ocfs2_flock()
130 int ocfs2_lock(struct file *file, int cmd, struct file_lock *fl) in ocfs2_lock()
/linux-4.1.27/net/wireless/
Dwext-core.c451 unsigned int cmd, in wireless_send_event()
681 static iw_handler get_handler(struct net_device *dev, unsigned int cmd) in get_handler()
715 static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd, in ioctl_standard_iw_point()
915 unsigned int cmd, in wireless_process_ioctl()
987 static int wext_permission_check(unsigned int cmd) in wext_permission_check()
999 unsigned int cmd, struct iw_request_info *info, in wext_ioctl_dispatch()
1023 unsigned int cmd, in ioctl_standard_call()
1060 int wext_handle_ioctl(struct net *net, struct ifreq *ifr, unsigned int cmd, in wext_handle_ioctl()
1080 unsigned int cmd, in compat_standard_call()
1108 int compat_wext_handle_ioctl(struct net *net, unsigned int cmd, in compat_wext_handle_ioctl()
Dwext-priv.c93 static int get_priv_descr_and_size(struct net_device *dev, unsigned int cmd, in get_priv_descr_and_size()
137 static int ioctl_private_iw_point(struct iw_point *iwp, unsigned int cmd, in ioctl_private_iw_point()
188 unsigned int cmd, struct iw_request_info *info, in ioctl_private_call()
214 unsigned int cmd, struct iw_request_info *info, in compat_private_call()
/linux-4.1.27/tools/perf/
Dperf.c32 const char *cmd; member
70 const char *cmd; member
83 int check_pager_config(const char *cmd) in check_pager_config()
106 static int check_browser_config(const char *cmd) in check_browser_config()
151 const char *cmd = (*argv)[0]; in handle_options() local
406 const char *cmd = argv[0]; in handle_internal_command() local
435 struct strbuf cmd = STRBUF_INIT; in execv_dashed_external() local
510 const char *cmd; in main() local
Dbuiltin-data.c18 #define for_each_cmd(cmd) \ argument
34 struct data_cmd *cmd; in print_usage() local
98 struct data_cmd *cmd; in cmd_data() local
/linux-4.1.27/drivers/block/rsxx/
Dcregs.c112 static void creg_issue_cmd(struct rsxx_cardinfo *card, struct creg_cmd *cmd) in creg_issue_cmd()
170 struct creg_cmd *cmd; in creg_queue_cmd() local
209 struct creg_cmd *cmd; in creg_cmd_timed_out() local
239 struct creg_cmd *cmd; in creg_cmd_done() local
313 struct creg_cmd *cmd = NULL; in creg_reset() local
372 struct creg_cmd *cmd, in creg_cmd_done_cb()
535 int rsxx_issue_card_cmd(struct rsxx_cardinfo *card, u32 cmd) in rsxx_issue_card_cmd()
610 struct creg_cmd *cmd, in read_hw_log_done()
668 struct rsxx_reg_access *cmd, in issue_reg_cmd()
681 struct rsxx_reg_access cmd; in rsxx_reg_access() local
[all …]
/linux-4.1.27/drivers/firmware/
Dqcom_scm.c118 struct qcom_scm_command *cmd; in alloc_qcom_scm_command() local
139 static inline void free_qcom_scm_command(struct qcom_scm_command *cmd) in free_qcom_scm_command()
151 const struct qcom_scm_command *cmd) in qcom_scm_command_to_response()
162 static inline void *qcom_scm_get_command_buffer(const struct qcom_scm_command *cmd) in qcom_scm_get_command_buffer()
219 static int __qcom_scm_call(const struct qcom_scm_command *cmd) in __qcom_scm_call()
279 struct qcom_scm_command *cmd; in qcom_scm_call() local
316 #define SCM_ATOMIC(svc, cmd, n) (((((svc) << 10)|((cmd) & 0x3ff)) << 12) | \ argument
330 static s32 qcom_scm_call_atomic1(u32 svc, u32 cmd, u32 arg1) in qcom_scm_call_atomic1()
399 } cmd; in qcom_scm_set_boot_addr() local
/linux-4.1.27/drivers/usb/gadget/legacy/
Dtcm_usb_gadget.c41 static inline void usbg_cleanup_cmd(struct usbg_cmd *cmd) in usbg_cleanup_cmd()
63 struct usbg_cmd *cmd = req->context; in bot_status_complete() local
76 static void bot_enqueue_sense_code(struct f_uas *fu, struct usbg_cmd *cmd) in bot_enqueue_sense_code()
102 struct usbg_cmd *cmd = req->context; in bot_err_compl() local
123 static void bot_send_bad_status(struct usbg_cmd *cmd) in bot_send_bad_status()
157 static int bot_send_status(struct usbg_cmd *cmd, bool moved_data) in bot_send_status()
193 static int bot_send_status_response(struct usbg_cmd *cmd) in bot_send_status_response()
205 struct usbg_cmd *cmd = req->context; in bot_read_compl() local
213 static int bot_send_read_response(struct usbg_cmd *cmd) in bot_send_read_response()
255 static int bot_send_write_request(struct usbg_cmd *cmd) in bot_send_write_request()
[all …]
/linux-4.1.27/arch/arm/mach-omap2/
Dcommon.h154 static inline void omap2xxx_restart(enum reboot_mode mode, const char *cmd) in omap2xxx_restart()
162 static inline void am33xx_restart(enum reboot_mode mode, const char *cmd) in am33xx_restart()
170 static inline void omap3xxx_restart(enum reboot_mode mode, const char *cmd) in omap3xxx_restart()
178 static inline void ti81xx_restart(enum reboot_mode mode, const char *cmd) in ti81xx_restart()
187 static inline void omap44xx_restart(enum reboot_mode mode, const char *cmd) in omap44xx_restart()
/linux-4.1.27/drivers/crypto/ccp/
Dccp-dev.c37 struct ccp_cmd *cmd; member
91 int ccp_enqueue_cmd(struct ccp_cmd *cmd) in ccp_enqueue_cmd()
143 struct ccp_cmd *cmd = container_of(work, struct ccp_cmd, work); in ccp_do_cmd_backlog() local
173 struct ccp_cmd *cmd = NULL; in ccp_dequeue_cmd() local
218 struct ccp_cmd *cmd = tdata->cmd; in ccp_do_cmd_complete() local
227 struct ccp_cmd *cmd; in ccp_cmd_queue_thread() local
470 struct ccp_cmd *cmd; in ccp_destroy() local
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
Dwmi.c305 struct wmi_create_pstream_cmd cmd; in ath6kl_wmi_implicit_create_pstream() local
764 struct roam_ctrl_cmd *cmd; in ath6kl_wmi_set_roam_lrssi_cmd() local
788 struct roam_ctrl_cmd *cmd; in ath6kl_wmi_force_roam_cmd() local
808 struct set_beacon_int_cmd *cmd; in ath6kl_wmi_ap_set_beacon_intvl_cmd() local
824 struct set_dtim_cmd *cmd; in ath6kl_wmi_ap_set_dtim_cmd() local
840 struct roam_ctrl_cmd *cmd; in ath6kl_wmi_set_roam_mode_cmd() local
1400 struct wmi_rssi_threshold_params_cmd *cmd; in ath6kl_wmi_send_rssi_threshold_params() local
1417 struct wmi_rssi_threshold_params_cmd cmd; in ath6kl_wmi_rssi_threshold_event_rx() local
1607 struct wmi_txe_notify_cmd *cmd; in ath6kl_wmi_set_txe_notify() local
1625 struct wmi_set_rssi_filter_cmd *cmd; in ath6kl_wmi_set_rssi_filter_cmd() local
[all …]
/linux-4.1.27/drivers/scsi/megaraid/
Dmegaraid_sas_base.c194 megasas_issue_dcmd(struct megasas_instance *instance, struct megasas_cmd *cmd) in megasas_issue_dcmd()
210 struct megasas_cmd *cmd = NULL; in megasas_get_cmd() local
233 __megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd) in __megasas_return_cmd()
265 megasas_return_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd) in megasas_return_cmd()
916 megasas_issue_polled(struct megasas_instance *instance, struct megasas_cmd *cmd) in megasas_issue_polled()
952 struct megasas_cmd *cmd, int timeout) in megasas_issue_blocked_cmd()
986 struct megasas_cmd *cmd; in megasas_issue_blocked_abort_cmd() local
1191 struct megasas_cmd *cmd) in megasas_build_dcdb()
1290 struct megasas_cmd *cmd) in megasas_build_ldio()
1425 inline int megasas_cmd_type(struct scsi_cmnd *cmd) in megasas_cmd_type()
[all …]
Dmegaraid_sas_fusion.c167 struct megasas_cmd_fusion *cmd = NULL; in megasas_get_cmd_fusion() local
189 struct megasas_cmd_fusion *cmd) in megasas_return_cmd_fusion()
244 struct megasas_cmd_fusion *cmd; in megasas_teardown_frame_pool_fusion() local
342 struct megasas_cmd_fusion *cmd; in megasas_create_frame_pool_fusion() local
423 struct megasas_cmd_fusion *cmd; in megasas_alloc_cmds_fusion() local
590 wait_and_poll(struct megasas_instance *instance, struct megasas_cmd *cmd, in wait_and_poll()
630 struct megasas_cmd *cmd; in megasas_ioc_init_fusion() local
765 struct megasas_cmd *cmd; in megasas_get_ld_map_info() local
859 struct megasas_cmd *cmd; in megasas_sync_map_info() local
1169 map_cmd_status(struct megasas_cmd_fusion *cmd, u8 status, u8 ext_status) in map_cmd_status()
[all …]
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb3/
Dcxgb3_ioctl.h53 uint32_t cmd; member
59 uint32_t cmd; member
69 uint32_t cmd; member
77 uint32_t cmd; member
86 uint32_t cmd; member
100 uint32_t cmd; member
118 uint32_t cmd; member
124 uint32_t cmd; member
133 uint32_t cmd; member
141 uint32_t cmd; member
[all …]
/linux-4.1.27/drivers/block/
Dnull_blk.c171 static void free_cmd(struct nullb_cmd *cmd) in free_cmd()
178 struct nullb_cmd *cmd; in __alloc_cmd() local
194 struct nullb_cmd *cmd; in alloc_cmd() local
214 static void end_cmd(struct nullb_cmd *cmd) in end_cmd()
236 struct nullb_cmd *cmd; in null_cmd_timer_expired() local
252 static void null_cmd_end_timer(struct nullb_cmd *cmd) in null_cmd_end_timer()
274 static inline void null_handle_cmd(struct nullb_cmd *cmd) in null_handle_cmd()
317 struct nullb_cmd *cmd; in null_queue_bio() local
329 struct nullb_cmd *cmd; in null_rq_prep_fn() local
346 struct nullb_cmd *cmd = rq->special; in null_request_fn() local
[all …]
/linux-4.1.27/drivers/infiniband/hw/ocrdma/
Docrdma_hw.c388 struct ocrdma_delete_q_req *cmd = dev->mbx_cmd; in ocrdma_mbx_delete_q() local
417 struct ocrdma_create_eq_req *cmd = dev->mbx_cmd; in ocrdma_mbx_create_eq() local
508 struct ocrdma_create_cq_cmd *cmd = dev->mbx_cmd; in ocrdma_mbx_mq_cq_create() local
550 struct ocrdma_create_mq_req *cmd = dev->mbx_cmd; in ocrdma_mbx_create_mq() local
974 static void ocrdma_post_mqe(struct ocrdma_dev *dev, struct ocrdma_mqe *cmd) in ocrdma_post_mqe()
1172 struct ocrdma_mqe *cmd; in ocrdma_mbx_query_fw_ver() local
1199 struct ocrdma_mqe *cmd; in ocrdma_mbx_query_fw_config() local
1313 struct ocrdma_mqe *cmd; in ocrdma_mbx_query_dev() local
1332 struct ocrdma_mqe *cmd; in ocrdma_mbx_get_link_speed() local
1360 struct ocrdma_mqe *cmd; in ocrdma_mbx_get_phy_info() local
[all …]
/linux-4.1.27/drivers/media/usb/cpia2/
Dcpia2_core.c144 struct cpia2_command cmd; in cpia2_do_command() local
517 #define DIR(cmd) ((cmd->direction == TRANSFER_WRITE) ? "Write" : "Read") argument
518 #define BINDEX(cmd) (cmd->req_mode & 0x03) argument
520 int cpia2_send_command(struct camera_data *cam, struct cpia2_command *cmd) in cpia2_send_command()
616 struct cpia2_command cmd; in cpia2_reset_camera() local
893 struct cpia2_command *cmd, in cpia2_send_onebyte_command()
907 struct cpia2_command cmd; in apply_vp_patch() local
1146 struct cpia2_command cmd; in config_sensor_410() local
1332 struct cpia2_command cmd; in config_sensor_500() local
1831 struct cpia2_command cmd; in set_lowlight_boost() local
[all …]
/linux-4.1.27/drivers/media/dvb-frontends/
Dtda10071.c163 struct tda10071_cmd *cmd) in tda10071_cmd_execute()
209 struct tda10071_cmd cmd; in tda10071_set_tone() local
255 struct tda10071_cmd cmd; in tda10071_set_voltage() local
301 struct tda10071_cmd cmd; in tda10071_diseqc_send_master_cmd() local
361 struct tda10071_cmd cmd; in tda10071_diseqc_recv_slave_reply() local
419 struct tda10071_cmd cmd; in tda10071_diseqc_send_burst() local
540 struct tda10071_cmd cmd; in tda10071_read_signal_strength() local
579 struct tda10071_cmd cmd; in tda10071_read_ber() local
667 struct tda10071_cmd cmd; in tda10071_set_frontend() local
874 struct tda10071_cmd cmd; in tda10071_init() local
[all …]
Dsi2168.c22 static int si2168_cmd_execute(struct i2c_client *client, struct si2168_cmd *cmd) in si2168_cmd_execute()
84 struct si2168_cmd cmd; in si2168_read_status() local
154 struct si2168_cmd cmd; in si2168_set_frontend() local
356 struct si2168_cmd cmd; in si2168_init() local
539 struct si2168_cmd cmd; in si2168_sleep() local
/linux-4.1.27/drivers/gpu/drm/
Ddrm_ioc32.c87 static int compat_drm_version(struct file *file, unsigned int cmd, in compat_drm_version()
134 static int compat_drm_getunique(struct file *file, unsigned int cmd, in compat_drm_getunique()
163 static int compat_drm_setunique(struct file *file, unsigned int cmd, in compat_drm_setunique()
192 static int compat_drm_getmap(struct file *file, unsigned int cmd, in compat_drm_getmap()
229 static int compat_drm_addmap(struct file *file, unsigned int cmd, in compat_drm_addmap()
271 static int compat_drm_rmmap(struct file *file, unsigned int cmd, in compat_drm_rmmap()
299 static int compat_drm_getclient(struct file *file, unsigned int cmd, in compat_drm_getclient()
341 static int compat_drm_getstats(struct file *file, unsigned int cmd, in compat_drm_getstats()
378 static int compat_drm_addbufs(struct file *file, unsigned int cmd, in compat_drm_addbufs()
408 static int compat_drm_markbufs(struct file *file, unsigned int cmd, in compat_drm_markbufs()
[all …]
/linux-4.1.27/include/linux/mfd/
Ddln2.h4 #define DLN2_CMD(cmd, id) ((cmd) | ((id) << 8)) argument
80 static inline int dln2_transfer_rx(struct platform_device *pdev, u16 cmd, in dln2_transfer_rx()
97 static inline int dln2_transfer_tx(struct platform_device *pdev, u16 cmd, in dln2_transfer_tx()
/linux-4.1.27/drivers/net/wireless/ti/wl1251/
Dcmd.c23 struct wl1251_cmd_header *cmd; in wl1251_cmd_send() local
208 struct cmd_enabledisable_path *cmd; in wl1251_cmd_data_path_rx() local
244 struct cmd_enabledisable_path *cmd; in wl1251_cmd_data_path_tx() local
352 struct cmd_read_write_memory *cmd; in wl1251_cmd_read_memory() local
392 struct wl1251_cmd_packet_template *cmd; in wl1251_cmd_template_set() local
428 struct wl1251_cmd_scan *cmd; in wl1251_cmd_scan() local
494 struct wl1251_cmd_trigger_scan_to *cmd; in wl1251_cmd_trigger_scan_to() local
Dspi.c59 u8 *cmd; in wl1251_spi_reset() local
89 u8 *cmd = kzalloc(WSPI_INIT_CMD_LEN, GFP_KERNEL); in wl1251_spi_wake() local
149 u32 *cmd; in wl1251_spi_read() local
188 u32 *cmd; in wl1251_spi_write() local
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
Dwmi.c179 } __packed cmd = { in __wmi_send() local
717 u8 *cmd; in wmi_recv_cmd() local
842 struct wmi_echo_cmd cmd = { in wmi_echo() local
852 struct wmi_set_mac_address_cmd cmd; in wmi_set_mac_address() local
865 struct wmi_pcp_start_cmd cmd = { in wmi_pcp_start() local
911 struct wmi_set_ssid_cmd cmd = { in wmi_set_ssid() local
928 struct wmi_set_ssid_cmd cmd; in wmi_get_ssid() member
949 struct wmi_set_pcp_channel_cmd cmd = { in wmi_set_channel() local
961 struct wmi_set_pcp_channel_cmd cmd; in wmi_get_channel() member
979 struct wmi_p2p_cfg_cmd cmd = { in wmi_p2p_cfg() local
[all …]
/linux-4.1.27/drivers/media/tuners/
Dsi2157.c22 static int si2157_cmd_execute(struct i2c_client *client, struct si2157_cmd *cmd) in si2157_cmd_execute()
83 struct si2157_cmd cmd; in si2157_init() local
224 struct si2157_cmd cmd; in si2157_sleep() local
250 struct si2157_cmd cmd; in si2157_set_params() local
373 struct si2157_cmd cmd; in si2157_probe() local
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/
Dcmd.c97 static struct mlx5_cmd_work_ent *alloc_cmd(struct mlx5_cmd *cmd, in alloc_cmd()
123 static u8 alloc_token(struct mlx5_cmd *cmd) in alloc_token()
137 static int alloc_ent(struct mlx5_cmd *cmd) in alloc_ent()
151 static void free_ent(struct mlx5_cmd *cmd, int idx) in free_ent()
160 static struct mlx5_cmd_layout *get_inst(struct mlx5_cmd *cmd, int idx) in get_inst()
482 struct mlx5_cmd *cmd = ent->cmd; in cmd_work_handler() local
574 struct mlx5_cmd *cmd = &dev->cmd; in wait_func() local
606 struct mlx5_cmd *cmd = &dev->cmd; in mlx5_cmd_invoke() local
982 struct mlx5_cmd *cmd = &dev->cmd; in set_wqname() local
1046 struct mlx5_cmd *cmd = &dev->cmd; in mlx5_cmd_use_events() local
[all …]
/linux-4.1.27/drivers/crypto/qat/qat_common/
Dadf_ctl_drv.c224 static int adf_ctl_ioctl_dev_config(struct file *fp, unsigned int cmd, in adf_ctl_ioctl_dev_config()
300 static int adf_ctl_ioctl_dev_stop(struct file *fp, unsigned int cmd, in adf_ctl_ioctl_dev_stop()
334 static int adf_ctl_ioctl_dev_start(struct file *fp, unsigned int cmd, in adf_ctl_ioctl_dev_start()
375 static int adf_ctl_ioctl_get_num_devices(struct file *fp, unsigned int cmd, in adf_ctl_ioctl_get_num_devices()
387 static int adf_ctl_ioctl_get_status(struct file *fp, unsigned int cmd, in adf_ctl_ioctl_get_status()
427 static long adf_ctl_ioctl(struct file *fp, unsigned int cmd, unsigned long arg) in adf_ctl_ioctl()
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_ioc32.c47 static int compat_i915_batchbuffer(struct file *file, unsigned int cmd, in compat_i915_batchbuffer()
82 static int compat_i915_cmdbuffer(struct file *file, unsigned int cmd, in compat_i915_cmdbuffer()
112 static int compat_i915_irq_emit(struct file *file, unsigned int cmd, in compat_i915_irq_emit()
135 static int compat_i915_getparam(struct file *file, unsigned int cmd, in compat_i915_getparam()
162 static int compat_i915_alloc(struct file *file, unsigned int cmd, in compat_i915_alloc()
201 long i915_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in i915_compat_ioctl()
/linux-4.1.27/drivers/media/usb/dvb-usb/
DcinergyT2-fe.c149 u8 cmd[] = { CINERGYT2_EP1_GET_TUNER_STATUS }; in cinergyt2_fe_read_status() local
181 char cmd[] = { CINERGYT2_EP1_GET_TUNER_STATUS }; in cinergyt2_fe_read_ber() local
197 u8 cmd[] = { CINERGYT2_EP1_GET_TUNER_STATUS }; in cinergyt2_fe_read_unc_blocks() local
216 char cmd[] = { CINERGYT2_EP1_GET_TUNER_STATUS }; in cinergyt2_fe_read_signal_strength() local
234 char cmd[] = { CINERGYT2_EP1_GET_TUNER_STATUS }; in cinergyt2_fe_read_snr() local
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
Di40e_common.c166 struct i40e_aqc_queue_shutdown *cmd = in i40e_aq_queue_shutdown() local
1264 struct i40e_aq_set_phy_config *cmd = in i40e_aq_set_phy_config() local
1371 struct i40e_aqc_clear_pxe *cmd = in i40e_aq_clear_pxe_mode() local
1399 struct i40e_aqc_set_link_restart_an *cmd = in i40e_aq_set_link_restart_an() local
1515 struct i40e_aqc_set_phy_int_mask *cmd = in i40e_aq_set_phy_int_mask() local
1542 struct i40e_aqc_add_get_update_vsi *cmd = in i40e_aq_add_vsi() local
1586 struct i40e_aqc_set_vsi_promiscuous_modes *cmd = in i40e_aq_set_vsi_unicast_promiscuous() local
1618 struct i40e_aqc_set_vsi_promiscuous_modes *cmd = in i40e_aq_set_vsi_multicast_promiscuous() local
1653 struct i40e_aqc_set_vsi_promiscuous_modes *cmd = in i40e_aq_set_vsi_broadcast() local
1685 struct i40e_aqc_add_get_update_vsi *cmd = in i40e_aq_get_vsi_params() local
[all …]
Di40e_nvm.c520 struct i40e_nvm_access *cmd, in i40e_nvmupd_command()
563 struct i40e_nvm_access *cmd, in i40e_nvmupd_state_init()
680 struct i40e_nvm_access *cmd, in i40e_nvmupd_state_reading()
722 struct i40e_nvm_access *cmd, in i40e_nvmupd_state_writing()
820 struct i40e_nvm_access *cmd, in i40e_nvmupd_validate_command()
912 struct i40e_nvm_access *cmd, in i40e_nvmupd_nvm_read()
947 struct i40e_nvm_access *cmd, in i40e_nvmupd_nvm_erase()
982 struct i40e_nvm_access *cmd, in i40e_nvmupd_nvm_write()
/linux-4.1.27/drivers/video/fbdev/mb862xx/
Dmb862xxfb_accel.c49 __u32 cmd[6]; in mb86290fb_copyarea() local
75 static void mb86290fb_imageblit1(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit1()
124 static void mb86290fb_imageblit8(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit8()
163 static void mb86290fb_imageblit16(u32 *cmd, u16 step, u16 dx, u16 dy, in mb86290fb_imageblit16()
192 u32 *cmd = NULL; in mb86290fb_imageblit() local
261 u32 cmd[7]; in mb86290fb_fillrect() local
/linux-4.1.27/drivers/gpu/drm/radeon/
Dradeon_ioc32.c59 static int compat_radeon_cp_init(struct file *file, unsigned int cmd, in compat_radeon_cp_init()
106 static int compat_radeon_cp_clear(struct file *file, unsigned int cmd, in compat_radeon_cp_clear()
133 static int compat_radeon_cp_stipple(struct file *file, unsigned int cmd, in compat_radeon_cp_stipple()
167 static int compat_radeon_cp_texture(struct file *file, unsigned int cmd, in compat_radeon_cp_texture()
215 static int compat_radeon_cp_vertex2(struct file *file, unsigned int cmd, in compat_radeon_cp_vertex2()
246 static int compat_radeon_cp_cmdbuf(struct file *file, unsigned int cmd, in compat_radeon_cp_cmdbuf()
273 static int compat_radeon_cp_getparam(struct file *file, unsigned int cmd, in compat_radeon_cp_getparam()
299 static int compat_radeon_mem_alloc(struct file *file, unsigned int cmd, in compat_radeon_mem_alloc()
324 static int compat_radeon_irq_emit(struct file *file, unsigned int cmd, in compat_radeon_irq_emit()
349 static int compat_radeon_cp_setparam(struct file *file, unsigned int cmd, in compat_radeon_cp_setparam()
[all …]
/linux-4.1.27/Documentation/cdrom/
Dcdrom-standard.tex817 \subsubsection{Directly implemented $ioctl$s}
833 \subsubsection{$Ioctl$s routed through $audio_ioctl()$}
861 \subsubsection{New $ioctl$s in \cdromc}
948 \subsubsection{Device dependent $ioctl$s}
/linux-4.1.27/drivers/s390/char/
Dhmcdrv_ftp.c49 static enum hmcdrv_ftp_cmdid hmcdrv_ftp_cmd_getid(const char *cmd, int len) in hmcdrv_ftp_cmd_getid()
54 enum hmcdrv_ftp_cmdid cmd; /* associated command as enum */ in hmcdrv_ftp_cmd_getid() member
111 static int hmcdrv_ftp_parse(char *cmd, struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_ftp_parse()
236 ssize_t hmcdrv_ftp_cmd(char __kernel *cmd, loff_t offset, in hmcdrv_ftp_cmd()
/linux-4.1.27/drivers/scsi/sym53c8xx_2/
Dsym_glue.c134 #define SYM_UCMD_PTR(cmd) ((struct sym_ucmd *)(&(cmd)->SCp)) argument
135 #define SYM_SOFTC_PTR(cmd) sym_get_hcb(cmd->device->host) argument
140 void sym_xpt_done(struct sym_hcb *np, struct scsi_cmnd *cmd) in sym_xpt_done()
189 struct scsi_cmnd *cmd = cp->cmd; in sym_set_cam_result_error() local
258 static int sym_scatter(struct sym_hcb *np, struct sym_ccb *cp, struct scsi_cmnd *cmd) in sym_scatter()
300 static int sym_queue_command(struct sym_hcb *np, struct scsi_cmnd *cmd) in sym_queue_command()
332 static inline int sym_setup_cdb(struct sym_hcb *np, struct scsi_cmnd *cmd, struct sym_ccb *cp) in sym_setup_cdb()
345 int sym_setup_data_and_start(struct sym_hcb *np, struct scsi_cmnd *cmd, struct sym_ccb *cp) in sym_setup_data_and_start()
508 static int sym53c8xx_queue_command_lck(struct scsi_cmnd *cmd, in sym53c8xx_queue_command_lck()
591 static int sym_eh_handler(int op, char *opname, struct scsi_cmnd *cmd) in sym_eh_handler()
[all …]
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
Dvmwgfx_execbuf.c620 } *cmd; in vmw_cmd_cid_check() local
634 } *cmd; in vmw_cmd_set_render_target_check() local
673 } *cmd; in vmw_cmd_surface_copy_check() local
694 } *cmd; in vmw_cmd_stretch_blt_check() local
715 } *cmd; in vmw_cmd_blt_surf_screen_check() local
731 } *cmd; in vmw_cmd_present_check() local
999 } *cmd; in vmw_cmd_begin_gb_query() local
1023 } *cmd; in vmw_cmd_begin_query() local
1065 } *cmd; in vmw_cmd_end_gb_query() local
1100 } *cmd; in vmw_cmd_end_query() local
[all …]
Dvmwgfx_context.c113 } *cmd; in vmw_hw_context_destroy() local
192 } *cmd; in vmw_context_init() local
256 } *cmd; in vmw_gb_context_create() local
301 } *cmd; in vmw_gb_context_bind() local
343 uint8_t *cmd; in vmw_gb_context_unbind() local
398 } *cmd; in vmw_gb_context_destroy() local
553 } *cmd; in vmw_context_scrub_shader() local
586 } *cmd; in vmw_context_scrub_render_target() local
626 } *cmd; in vmw_context_scrub_texture() local
/linux-4.1.27/drivers/media/pci/ivtv/
Divtv-mailbox.c189 static void write_mailbox(volatile struct ivtv_mailbox __iomem *mbox, int cmd, int args, u32 data[]) in write_mailbox()
214 static int ivtv_api_call(struct ivtv *itv, int cmd, int args, u32 data[]) in ivtv_api_call()
329 int ivtv_api(struct ivtv *itv, int cmd, int args, u32 data[]) in ivtv_api()
339 int ivtv_api_func(void *priv, u32 cmd, int in, int out, u32 data[CX2341X_MBOX_MAX_DATA]) in ivtv_api_func()
344 int ivtv_vapi_result(struct ivtv *itv, u32 data[CX2341X_MBOX_MAX_DATA], int cmd, int args, ...) in ivtv_vapi_result()
357 int ivtv_vapi(struct ivtv *itv, int cmd, int args, ...) in ivtv_vapi()
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
Dcmd.c119 const enum carl9170_cmd_oids cmd, const unsigned int len) in carl9170_cmd_buf()
134 struct carl9170_cmd *cmd; in carl9170_reboot() local
154 struct carl9170_cmd *cmd; in carl9170_bcn_ctrl() local
204 struct carl9170_cmd *cmd; in carl9170_powersave() local
/linux-4.1.27/drivers/video/fbdev/savage/
Dsavagefb_accel.c36 int cmd; in savagefb_copyarea() local
68 int cmd, color; in savagefb_fillrect() local
96 int cmd; in savagefb_imageblit() local
/linux-4.1.27/arch/x86/include/asm/xen/
Dhypercall.h280 HYPERVISOR_callback_op(int cmd, void *arg) in HYPERVISOR_callback_op()
292 HYPERVISOR_sched_op(int cmd, void *arg) in HYPERVISOR_sched_op()
340 HYPERVISOR_memory_op(unsigned int cmd, void *arg) in HYPERVISOR_memory_op()
365 HYPERVISOR_event_channel_op(int cmd, void *arg) in HYPERVISOR_event_channel_op()
374 HYPERVISOR_xen_version(int cmd, void *arg) in HYPERVISOR_xen_version()
380 HYPERVISOR_console_io(int cmd, int count, char *str) in HYPERVISOR_console_io()
388 HYPERVISOR_physdev_op(int cmd, void *arg) in HYPERVISOR_physdev_op()
397 HYPERVISOR_grant_table_op(unsigned int cmd, void *uop, unsigned int count) in HYPERVISOR_grant_table_op()
416 HYPERVISOR_vm_assist(unsigned int cmd, unsigned int type) in HYPERVISOR_vm_assist()
422 HYPERVISOR_vcpu_op(int cmd, int vcpuid, void *extra_args) in HYPERVISOR_vcpu_op()
[all …]
/linux-4.1.27/kernel/
Dreboot.c68 void kernel_restart_prepare(char *cmd) in kernel_restart_prepare()
183 void do_kernel_restart(char *cmd) in do_kernel_restart()
214 void kernel_restart(char *cmd) in kernel_restart()
280 SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd, in SYSCALL_DEFINE4() argument
392 static int run_cmd(const char *cmd) in run_cmd()
/linux-4.1.27/drivers/uwb/
Dreset.c72 struct uwb_rccb *cmd, size_t cmd_size, in uwb_rc_cmd_async()
172 struct uwb_rccb *cmd, size_t cmd_size, in __uwb_rc_cmd()
228 struct uwb_rccb *cmd, size_t cmd_size, in uwb_rc_cmd()
271 struct uwb_rccb *cmd, size_t cmd_size, in uwb_rc_vcmd()
295 struct uwb_rccb *cmd; in uwb_rc_reset() local
/linux-4.1.27/drivers/scsi/qla2xxx/
Dqla_target.c1299 struct qla_tgt_cmd *cmd; in abort_cmd_for_tag() local
1332 struct qla_tgt_cmd *cmd; in abort_cmds_for_lun() local
1374 struct qla_tgt_cmd *cmd = in __qlt_24xx_handle_abts() local
1606 struct qla_tgt_cmd *cmd = prm->cmd; in qlt_pci_map_calc_cnt() local
1664 static void qlt_unmap_sg(struct scsi_qla_host *vha, struct qla_tgt_cmd *cmd) in qlt_unmap_sg()
1910 static inline int qlt_has_data(struct qla_tgt_cmd *cmd) in qlt_has_data()
1918 static int qlt_pre_xmit_response(struct qla_tgt_cmd *cmd, in qlt_pre_xmit_response()
1985 struct qla_tgt_cmd *cmd, int sending_sense) in qlt_need_explicit_conf()
2028 static void qlt_check_srr_debug(struct qla_tgt_cmd *cmd, int *xmit_type) in qlt_check_srr_debug()
2082 static inline void qlt_check_srr_debug(struct qla_tgt_cmd *cmd, int *xmit_type) in qlt_check_srr_debug()
[all …]
Dqla_iocb.c26 struct scsi_cmnd *cmd = GET_CMD_SP(sp); in qla2x00_get_cmd_direction() local
150 struct scsi_cmnd *cmd = GET_CMD_SP(sp); in qla24xx_configure_prot_mode() local
199 struct scsi_cmnd *cmd; in qla2x00_build_scsi_iocbs_32() local
257 struct scsi_cmnd *cmd; in qla2x00_build_scsi_iocbs_64() local
316 struct scsi_cmnd *cmd; in qla2x00_start_scsi() local
587 struct scsi_cmnd *cmd; in qla24xx_build_scsi_type_6_iocbs() local
710 struct scsi_cmnd *cmd; in qla24xx_build_scsi_iocbs() local
787 struct scsi_cmnd *cmd = GET_CMD_SP(sp); in qla24xx_set_t10dif_tags() local
935 struct scsi_cmnd *cmd; in qla24xx_walk_and_build_sglist_no_difb() local
1049 struct scsi_cmnd *cmd; in qla24xx_walk_and_build_sglist() local
[all …]
/linux-4.1.27/arch/s390/hypfs/
Dhypfs_sprp.c25 static unsigned long hypfs_sprp_diag304(void *data, unsigned long cmd) in hypfs_sprp_diag304()
65 unsigned long cmd; in __hypfs_sprp_ioctl() local
102 static long hypfs_sprp_ioctl(struct file *file, unsigned int cmd, in hypfs_sprp_ioctl()
/linux-4.1.27/fs/
Dcompat_ioctl.c118 static int w_long(unsigned int fd, unsigned int cmd, in w_long()
142 static int do_video_get_event(unsigned int fd, unsigned int cmd, in do_video_get_event()
172 static int do_video_stillpicture(unsigned int fd, unsigned int cmd, in do_video_stillpicture()
203 static int do_video_set_spu_palette(unsigned int fd, unsigned int cmd, in do_video_set_spu_palette()
279 static int sg_ioctl_trans(unsigned int fd, unsigned int cmd, in sg_ioctl_trans()
383 static int sg_grt_trans(unsigned int fd, unsigned int cmd, struct in sg_grt_trans()
415 static int ppp_sock_fprog_ioctl_trans(unsigned int fd, unsigned int cmd, in ppp_sock_fprog_ioctl_trans()
454 static int ppp_gidle(unsigned int fd, unsigned int cmd, in ppp_gidle()
475 static int ppp_scompress(unsigned int fd, unsigned int cmd, in ppp_scompress()
515 static int mt_ioctl_trans(unsigned int fd, unsigned int cmd, void __user *argp) in mt_ioctl_trans()
[all …]
/linux-4.1.27/drivers/net/ethernet/samsung/sxgbe/
Dsxgbe_ethtool.c186 struct ethtool_cmd *cmd) in sxgbe_getsettings()
196 static int sxgbe_setsettings(struct net_device *dev, struct ethtool_cmd *cmd) in sxgbe_setsettings()
334 struct ethtool_rxnfc *cmd) in sxgbe_get_rss_hash_opts()
367 static int sxgbe_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd, in sxgbe_get_rxnfc()
385 struct ethtool_rxnfc *cmd) in sxgbe_set_rss_hash_opt()
444 static int sxgbe_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd) in sxgbe_set_rxnfc()
Dsxgbe_mdio.c45 static void sxgbe_mdio_ctrl_data(struct sxgbe_priv_data *sp, u32 cmd, in sxgbe_mdio_ctrl_data()
55 static void sxgbe_mdio_c45(struct sxgbe_priv_data *sp, u32 cmd, int phyaddr, in sxgbe_mdio_c45()
68 static void sxgbe_mdio_c22(struct sxgbe_priv_data *sp, u32 cmd, int phyaddr, in sxgbe_mdio_c22()
82 static int sxgbe_mdio_access(struct sxgbe_priv_data *sp, u32 cmd, int phyaddr, in sxgbe_mdio_access()
/linux-4.1.27/drivers/w1/
Dw1_netlink.c47 struct w1_netlink_cmd *cmd; /* advances as cmds are appened */ member
153 struct w1_netlink_cmd *cmd) in w1_netlink_queue_cmd()
192 struct w1_netlink_cmd *cmd = (struct w1_netlink_cmd *)block->msg->data; in w1_netlink_queue_status() local
308 struct w1_netlink_cmd *cmd) in w1_process_command_io()
333 struct w1_netlink_cmd *cmd) in w1_process_command_addremove()
407 struct w1_netlink_cmd *cmd) in w1_process_command_slave()
469 struct w1_netlink_cmd *cmd = (struct w1_netlink_cmd *)node->msg->data; in w1_process_cb() local
520 struct w1_netlink_cmd *cmd = (struct w1_netlink_cmd *)msg->data; in w1_list_count_cmds() local
/linux-4.1.27/drivers/isdn/isdnloop/
Disdnloop.c59 isdn_ctrl cmd; in isdnloop_bchan_send() local
122 isdnloop_parse_setup(char *setup, isdn_ctrl *cmd) in isdnloop_parse_setup()
189 isdn_ctrl cmd; in isdnloop_parse_status() local
318 isdn_ctrl cmd; in isdnloop_polldchan() local
666 isdnloop_try_call(isdnloop_card *card, char *p, int lch, isdn_ctrl *cmd) in isdnloop_try_call()
780 isdn_ctrl cmd; in isdnloop_parse_cmd() local
970 isdn_ctrl cmd; in isdnloop_writecmd() local
1019 isdn_ctrl cmd; in isdnloop_stopcard() local
1135 isdn_ctrl cmd; in isdnloop_command() local
1510 isdn_ctrl cmd; in isdnloop_exit() local
/linux-4.1.27/drivers/staging/comedi/drivers/
Dni_labpc_common.c279 static bool labpc_use_continuous_mode(const struct comedi_cmd *cmd, in labpc_use_continuous_mode()
288 static unsigned int labpc_ai_convert_period(const struct comedi_cmd *cmd, in labpc_ai_convert_period()
300 static void labpc_set_ai_convert_period(struct comedi_cmd *cmd, in labpc_set_ai_convert_period()
316 static unsigned int labpc_ai_scan_period(const struct comedi_cmd *cmd, in labpc_ai_scan_period()
328 static void labpc_set_ai_scan_period(struct comedi_cmd *cmd, in labpc_set_ai_scan_period()
341 static void labpc_adc_timing(struct comedi_device *dev, struct comedi_cmd *cmd, in labpc_adc_timing()
423 static enum scan_mode labpc_ai_scan_mode(const struct comedi_cmd *cmd) in labpc_ai_scan_mode()
449 struct comedi_cmd *cmd) in labpc_ai_check_chanlist()
505 struct comedi_subdevice *s, struct comedi_cmd *cmd) in labpc_ai_cmdtest()
625 struct comedi_cmd *cmd = &async->cmd; in labpc_ai_cmd() local
[all …]
Dni_tiocmd.c91 struct comedi_cmd *cmd = &s->async->cmd; in ni_tio_input_inttrig() local
118 struct comedi_cmd *cmd = &async->cmd; in ni_tio_input_cmd() local
170 struct comedi_cmd *cmd = &s->async->cmd; in ni_tio_cmd_setup() local
198 struct comedi_cmd *cmd = &async->cmd; in ni_tio_cmd() local
225 struct comedi_cmd *cmd) in ni_tio_cmdtest()
Dni_labpc_isadma.c38 struct comedi_cmd *cmd = &s->async->cmd; in labpc_suggest_transfer_size() local
65 struct comedi_cmd *cmd = &s->async->cmd; in labpc_setup_dma() local
87 struct comedi_cmd *cmd = &async->cmd; in labpc_drain_dma() local
/linux-4.1.27/tools/usb/usbip/src/
Dusbip.c107 const struct command *cmd; in usbip_help() local
139 static int run_command(const struct command *cmd, int argc, char *argv[]) in run_command()
154 char *cmd; in main() local
/linux-4.1.27/drivers/staging/octeon/
Dethernet-mdio.c54 static int cvm_oct_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) in cvm_oct_get_settings()
64 static int cvm_oct_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) in cvm_oct_set_settings()
106 int cvm_oct_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) in cvm_oct_ioctl()
/linux-4.1.27/drivers/scsi/bnx2i/
Dbnx2i_iscsi.c56 static void bnx2i_get_write_cmd_bd_idx(struct bnx2i_cmd *cmd, u32 buf_off, in bnx2i_get_write_cmd_bd_idx()
86 struct bnx2i_cmd *cmd = task->dd_data; in bnx2i_setup_write_cmd_bd_info() local
143 static int bnx2i_map_scsi_sg(struct bnx2i_hba *hba, struct bnx2i_cmd *cmd) in bnx2i_map_scsi_sg()
186 static void bnx2i_iscsi_map_sg_list(struct bnx2i_cmd *cmd) in bnx2i_iscsi_map_sg_list()
207 void bnx2i_iscsi_unmap_sg_list(struct bnx2i_cmd *cmd) in bnx2i_iscsi_unmap_sg_list()
217 static void bnx2i_setup_cmd_wqe_template(struct bnx2i_cmd *cmd) in bnx2i_setup_cmd_wqe_template()
445 struct bnx2i_cmd *cmd) in bnx2i_alloc_bdt()
475 struct bnx2i_cmd *cmd = task->dd_data; in bnx2i_destroy_cmd_pool() local
500 struct bnx2i_cmd *cmd = task->dd_data; in bnx2i_setup_cmd_pool() local
1083 struct bnx2i_cmd *cmd = task->dd_data; in bnx2i_iscsi_send_generic_request() local
[all …]
/linux-4.1.27/fs/nilfs2/
Dioctl.c222 unsigned int cmd, void __user *argp) in nilfs_ioctl_change_cpmode()
277 unsigned int cmd, void __user *argp) in nilfs_ioctl_delete_checkpoint()
356 unsigned int cmd, void __user *argp) in nilfs_ioctl_get_cpstat()
423 unsigned int cmd, void __user *argp) in nilfs_ioctl_get_sustat()
532 unsigned int cmd, void __user *argp) in nilfs_ioctl_get_bdescs()
876 unsigned int cmd, void __user *argp) in nilfs_ioctl_clean_segments()
1014 unsigned int cmd, void __user *argp) in nilfs_ioctl_sync()
1180 unsigned int cmd, void __user *argp, in nilfs_ioctl_get_info()
1231 unsigned int cmd, void __user *argp) in nilfs_ioctl_set_suinfo()
1295 long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in nilfs_ioctl()
[all …]
/linux-4.1.27/drivers/char/tpm/
Dtpm2-cmd.c247 struct tpm2_cmd cmd; in tpm2_pcr_read() local
294 struct tpm2_cmd cmd; in tpm2_pcr_extend() local
338 struct tpm2_cmd cmd; in tpm2_get_random() local
397 struct tpm2_cmd cmd; in tpm2_get_tpm_pt() local
434 struct tpm2_cmd cmd; in tpm2_startup() local
462 struct tpm2_cmd cmd; in tpm2_shutdown() local
529 struct tpm2_cmd cmd; in tpm2_start_selftest() local
565 struct tpm2_cmd cmd; in tpm2_do_selftest() local
627 struct tpm2_cmd cmd; in tpm2_probe() local
Dtpm-interface.c401 ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd, in tpm_transmit_cmd()
636 struct tpm_cmd_t cmd; in tpm_continue_selftest() local
655 struct tpm_cmd_t cmd; in tpm_pcr_read_dev() local
716 struct tpm_cmd_t cmd; in tpm_pcr_extend() local
755 struct tpm_cmd_t cmd; in tpm_do_selftest() local
804 int tpm_send(u32 chip_num, void *cmd, size_t buflen) in tpm_send()
896 struct tpm_cmd_t cmd; in tpm_pm_suspend() local
/linux-4.1.27/drivers/staging/i2o/
Ddebug.c20 u8 cmd = (msg[1] >> 24) & 0xFF; in i2o_report_status() local
200 static void i2o_report_util_cmd(u8 cmd) in i2o_report_util_cmd()
253 static void i2o_report_exec_cmd(u8 cmd) in i2o_report_exec_cmd()
/linux-4.1.27/arch/mips/lasat/
Dpicvue.c172 static void pvc_funcset(u8 cmd) in pvc_funcset()
183 static void pvc_entrymode(u8 cmd) in pvc_entrymode()
194 void pvc_dispcnt(u8 cmd) in pvc_dispcnt()
204 void pvc_move(u8 cmd) in pvc_move()
223 u8 cmd = EIGHT_BYTE; in pvc_init() local
/linux-4.1.27/drivers/irqchip/
Dirq-gic-v3-its.c182 static void its_encode_devid(struct its_cmd_block *cmd, u32 devid) in its_encode_devid()
188 static void its_encode_event_id(struct its_cmd_block *cmd, u32 id) in its_encode_event_id()
194 static void its_encode_phys_id(struct its_cmd_block *cmd, u32 phys_id) in its_encode_phys_id()
200 static void its_encode_size(struct its_cmd_block *cmd, u8 size) in its_encode_size()
206 static void its_encode_itt(struct its_cmd_block *cmd, u64 itt_addr) in its_encode_itt()
212 static void its_encode_valid(struct its_cmd_block *cmd, int valid) in its_encode_valid()
218 static void its_encode_target(struct its_cmd_block *cmd, u64 target_addr) in its_encode_target()
224 static void its_encode_collection(struct its_cmd_block *cmd, u16 col) in its_encode_collection()
230 static inline void its_fixup_cmd(struct its_cmd_block *cmd) in its_fixup_cmd()
239 static struct its_collection *its_build_mapd_cmd(struct its_cmd_block *cmd, in its_build_mapd_cmd()
[all …]
/linux-4.1.27/drivers/media/
Dmedia-devnode.c120 __media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg, in __media_ioctl()
135 static long media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in media_ioctl()
144 static long media_compat_ioctl(struct file *filp, unsigned int cmd, in media_compat_ioctl()
/linux-4.1.27/arch/powerpc/platforms/cell/spufs/
Dspu_save.c67 unsigned int cmd = 0x24; /* PUTL */ in save_upper_240kb() local
123 unsigned int cmd = 0x20; /* PUT */ in spill_regs_to_mem() local
140 unsigned int cmd = 0xCC; in enqueue_sync() local
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
Den_ethtool.c714 struct ethtool_cmd *cmd) in ethtool_get_ptys_settings()
788 struct ethtool_cmd *cmd) in ethtool_get_default_settings()
814 static int mlx4_en_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) in mlx4_en_get_settings()
860 static int mlx4_en_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) in mlx4_en_set_settings()
1210 struct ethtool_rxnfc *cmd) in mlx4_en_validate_flow()
1282 static int mlx4_en_ethtool_add_mac_rule(struct ethtool_rxnfc *cmd, in mlx4_en_ethtool_add_mac_rule()
1306 struct ethtool_rxnfc *cmd, in mlx4_en_ethtool_add_mac_rule_by_ipv4()
1330 struct ethtool_rxnfc *cmd, in add_ip_rule()
1368 struct ethtool_rxnfc *cmd, in add_tcp_udp_rule()
1436 struct ethtool_rxnfc *cmd, in mlx4_en_ethtool_to_net_trans_rule()
[all …]
Dresource_tracker.c1547 static int qp_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in qp_alloc_res()
1614 static int mtt_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in mtt_alloc_res()
1647 static int mpt_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in mpt_alloc_res()
1696 static int cq_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in cq_alloc_res()
1731 static int srq_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in srq_alloc_res()
1856 static int mac_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in mac_alloc_res()
1965 static int vlan_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in vlan_alloc_res()
2003 static int counter_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in counter_alloc_res()
2033 static int xrcdn_alloc_res(struct mlx4_dev *dev, int slave, int op, int cmd, in xrcdn_alloc_res()
2059 struct mlx4_cmd_info *cmd) in mlx4_ALLOC_RES_wrapper()
[all …]
/linux-4.1.27/arch/blackfin/kernel/
Dreboot.c82 void native_machine_restart(char *cmd) in native_machine_restart()
86 void machine_restart(char *cmd) in machine_restart()
/linux-4.1.27/drivers/xen/
Dfallback.c8 int xen_event_channel_op_compat(int cmd, void *arg) in xen_event_channel_op_compat()
47 int xen_physdev_op_compat(int cmd, void *arg) in xen_physdev_op_compat()
/linux-4.1.27/drivers/infiniband/ulp/isert/
Dib_isert.c71 isert_prot_cmd(struct isert_conn *conn, struct se_cmd *cmd) in isert_prot_cmd()
1285 struct iscsi_cmd *cmd; in isert_allocate_cmd() local
1301 struct isert_cmd *isert_cmd, struct iscsi_cmd *cmd, in isert_handle_scsi_cmd()
1363 struct iscsi_cmd *cmd = NULL; in isert_handle_iscsi_dataout() local
1415 struct iscsi_cmd *cmd, struct iser_rx_desc *rx_desc, in isert_handle_nop_out()
1434 struct iscsi_cmd *cmd, struct iser_rx_desc *rx_desc, in isert_handle_text_cmd()
1468 struct iscsi_cmd *cmd; in isert_rx_opcode() local
1750 struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd; in isert_put_cmd() local
1900 struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd; in isert_completion_rdma_write() local
1926 struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd; in isert_completion_rdma_read() local
[all …]
/linux-4.1.27/drivers/input/joystick/iforce/
Diforce-packets.c36 void iforce_dump_packet(char *msg, u16 cmd, unsigned char *data) in iforce_dump_packet()
49 int iforce_send_packet(struct iforce *iforce, u16 cmd, unsigned char* data) in iforce_send_packet()
156 void iforce_process_packet(struct iforce *iforce, u16 cmd, unsigned char *data) in iforce_process_packet()
/linux-4.1.27/drivers/atm/
Dambassador.c387 static inline void dump_command (command * cmd) { in dump_command()
556 static int command_do (amb_dev * dev, command * cmd) { in command_do()
757 command cmd; in drain_rx_pool() local
1153 command cmd; in amb_open() local
1187 command cmd; in amb_open() local
1240 command cmd; in amb_close() local
1262 command cmd; in amb_close() local
1544 command * cmd = memory; in create_queues() local
1670 static int decode_loader_result (loader_command cmd, u32 result) in decode_loader_result()
1741 loader_command cmd) in do_loader_command()
[all …]
/linux-4.1.27/fs/ext2/
Dioctl.c20 long ext2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in ext2_ioctl()
167 long ext2_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in ext2_compat_ioctl()
/linux-4.1.27/include/net/
Dwext.h17 static inline int wext_handle_ioctl(struct net *net, struct ifreq *ifr, unsigned int cmd, in wext_handle_ioctl()
22 static inline int compat_wext_handle_ioctl(struct net *net, unsigned int cmd, in compat_wext_handle_ioctl()
/linux-4.1.27/drivers/gpu/drm/r128/
Dr128_ioc32.c62 static int compat_r128_init(struct file *file, unsigned int cmd, in compat_r128_init()
110 static int compat_r128_depth(struct file *file, unsigned int cmd, in compat_r128_depth()
139 static int compat_r128_stipple(struct file *file, unsigned int cmd, in compat_r128_stipple()
162 static int compat_r128_getparam(struct file *file, unsigned int cmd, in compat_r128_getparam()
197 long r128_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in r128_compat_ioctl()
/linux-4.1.27/drivers/usb/dwc3/
Ddebug.h29 dwc3_gadget_ep_cmd_string(u8 cmd) in dwc3_gadget_ep_cmd_string()
60 dwc3_gadget_generic_cmd_string(u8 cmd) in dwc3_gadget_generic_cmd_string()
/linux-4.1.27/drivers/mmc/host/
Dmxs-mmc.c67 struct mmc_command *cmd; member
140 struct mmc_command *cmd = host->cmd; in mxs_mmc_request_done() local
189 struct mmc_command *cmd = host->cmd; in mxs_mmc_irq_handler() local
262 struct mmc_command *cmd = host->cmd; in mxs_mmc_bc() local
296 struct mmc_command *cmd = host->cmd; in mxs_mmc_ac() local
353 struct mmc_command *cmd = host->cmd; in mxs_mmc_adtc() local
466 struct mmc_command *cmd) in mxs_mmc_start_cmd()
Drtsx_pci_sdmmc.c108 static void sd_cmd_set_sd_cmd(struct rtsx_pcr *pcr, struct mmc_command *cmd) in sd_cmd_set_sd_cmd()
123 static int sd_response_type(struct mmc_command *cmd) in sd_response_type()
224 struct mmc_command *cmd) in sd_send_cmd_get_rsp()
341 static int sd_read_data(struct realtek_pci_sdmmc *host, struct mmc_command *cmd, in sd_read_data()
395 struct mmc_command *cmd, u16 byte_cnt, u8 *buf, int buf_len, in sd_write_data()
447 struct mmc_command *cmd = mrq->cmd; in sd_read_long_data() local
505 struct mmc_command *cmd = mrq->cmd; in sd_write_long_data() local
588 struct mmc_command *cmd = mrq->cmd; in sd_normal_rw() local
712 struct mmc_command cmd = {0}; in sd_tuning_rx_cmd() local
786 static inline int sdio_extblock_cmd(struct mmc_command *cmd, in sdio_extblock_cmd()
[all …]
/linux-4.1.27/drivers/media/pci/cx18/
Dcx18-mailbox.c40 u32 cmd; member
95 static const struct cx18_api_info *find_api_info(u32 cmd) in find_api_info()
600 static int cx18_api_call(struct cx18 *cx, u32 cmd, int args, u32 data[]) in cx18_api_call()
753 int cx18_api(struct cx18 *cx, u32 cmd, int args, u32 data[]) in cx18_api()
775 int cx18_api_func(void *priv, u32 cmd, int in, int out, in cx18_api_func()
839 u32 cmd, int args, ...) in cx18_vapi_result()
851 int cx18_vapi(struct cx18 *cx, u32 cmd, int args, ...) in cx18_vapi()
/linux-4.1.27/net/nfc/nci/
Dcore.c46 struct nci_core_conn_create_cmd *cmd; member
150 struct nci_core_reset_cmd cmd; in nci_reset_req() local
163 struct nci_rf_disc_map_cmd cmd; in nci_init_complete_req() local
206 struct nci_core_set_config_cmd cmd; in nci_set_config_req() local
227 struct nci_rf_disc_cmd cmd; in nci_rf_discover_req() local
293 struct nci_rf_discover_select_cmd cmd; in nci_rf_discover_select_req() local
318 struct nci_rf_deactivate_cmd cmd; in nci_rf_deactivate_req() local
479 struct nci_nfcee_discover_cmd cmd; in nci_nfcee_discover_req() local
496 struct nci_nfcee_mode_set_cmd *cmd = in nci_nfcee_mode_set_req() local
505 struct nci_nfcee_mode_set_cmd cmd; in nci_nfcee_mode_set() local
[all …]
/linux-4.1.27/arch/powerpc/kernel/
Dsmp-tbsync.c26 volatile int cmd; member
46 int cmd; in smp_generic_take_timebase() local
77 static int start_contest(int cmd, long offset, int num) in start_contest()
/linux-4.1.27/include/uapi/linux/
Dethtool.h94 __u32 cmd; member
176 __u32 cmd; member
202 __u32 cmd; member
210 __u32 cmd; member
234 __u32 cmd; member
257 __u32 cmd; member
282 __u32 cmd; member
307 __u32 cmd; member
329 __u32 cmd; member
409 __u32 cmd; member
[all …]
/linux-4.1.27/drivers/usb/host/whci/
Dhw.c29 u32 cmd; in whc_write_wusbcmd() local
48 int whc_do_gencmd(struct whc *whc, u32 cmd, u32 params, void *addr, size_t len) in whc_do_gencmd()
/linux-4.1.27/drivers/crypto/caam/
Ddesc_constr.h107 u32 *cmd = desc_end(desc); in append_cmd() local
158 #define APPEND_CMD_RET(cmd, op) \ argument
181 #define APPEND_CMD(cmd, op) \ argument
189 #define APPEND_CMD_LEN(cmd, op) \ in APPEND_CMD() argument
201 #define APPEND_CMD_PTR(cmd, op) \ argument
230 #define APPEND_SEQ_PTR_INTLEN(cmd, op) \ argument
244 #define APPEND_CMD_PTR_TO_IMM(cmd, op) \ argument
254 #define APPEND_CMD_PTR_EXTLEN(cmd, op) \ argument
268 #define APPEND_CMD_PTR_LEN(cmd, op, type) \ argument
285 #define APPEND_CMD_PTR_TO_IMM2(cmd, op) \ argument
[all …]
/linux-4.1.27/net/netfilter/
Dnf_conntrack_ftp.c154 struct nf_conntrack_man *cmd, char term, in try_rfc959()
181 struct nf_conntrack_man *cmd, char term, in try_rfc1123()
224 static int try_eprt(const char *data, size_t dlen, struct nf_conntrack_man *cmd, in try_eprt()
273 struct nf_conntrack_man *cmd, char term, in try_epsv_response()
294 struct nf_conntrack_man *cmd, in find_pattern()
401 struct nf_conntrack_man cmd = {}; in help() local
/linux-4.1.27/fs/reiserfs/
Dioctl.c23 long reiserfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in reiserfs_ioctl()
133 long reiserfs_compat_ioctl(struct file *file, unsigned int cmd, in reiserfs_compat_ioctl()
/linux-4.1.27/net/core/
Ddev_ioctl.c121 static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd) in dev_ifsioc_locked()
241 static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd) in dev_ifsioc()
393 int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg) in dev_ioctl()
/linux-4.1.27/drivers/s390/net/
Dqeth_l2_main.c39 static int qeth_l2_do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) in qeth_l2_do_ioctl()
284 struct qeth_ipa_cmd *cmd; in qeth_l2_send_setdelvlan_cb() local
301 struct qeth_ipa_cmd *cmd; in qeth_l2_send_setdelvlan() local
564 struct qeth_ipa_cmd *cmd; in qeth_l2_send_setdelmac() local
1247 struct qeth_ipa_cmd *cmd) in qeth_l2_control_event()
1496 struct qeth_ipa_cmd *cmd) in qeth_bridge_state_change()
1561 struct qeth_ipa_cmd *cmd) in qeth_bridge_host_event()
1694 struct qeth_ipa_cmd *cmd = (struct qeth_ipa_cmd *) data; in qeth_bridgeport_query_support_cb() local
1718 struct qeth_ipa_cmd *cmd; in qeth_bridgeport_query_support() local
1747 struct qeth_ipa_cmd *cmd = (struct qeth_ipa_cmd *) data; in qeth_bridgeport_query_ports_cb() local
[all …]
Dlcs.c756 struct lcs_cmd *cmd; in lcs_get_lancmd() local
792 lcs_alloc_reply(struct lcs_cmd *cmd) in lcs_alloc_reply()
814 lcs_notify_lancmd_waiters(struct lcs_card *card, struct lcs_cmd *cmd) in lcs_notify_lancmd_waiters()
871 struct lcs_cmd *cmd; in lcs_send_lancmd() local
914 struct lcs_cmd *cmd; in lcs_send_startup() local
932 struct lcs_cmd *cmd; in lcs_send_shutdown() local
946 __lcs_lanstat_cb(struct lcs_card *card, struct lcs_cmd *cmd) in __lcs_lanstat_cb()
956 struct lcs_cmd *cmd; in lcs_send_lanstat() local
976 struct lcs_cmd *cmd; in lcs_send_stoplan() local
992 __lcs_send_startlan_cb(struct lcs_card *card, struct lcs_cmd *cmd) in __lcs_send_startlan_cb()
[all …]
/linux-4.1.27/drivers/media/rc/img-ir/
Dimg-ir-sharp.c18 unsigned int addr, cmd, exp, chk; in img_ir_sharp_scancode() local
44 unsigned int addr, cmd, exp = 0, chk = 0; in img_ir_sharp_filter() local
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dfwil.c107 brcmf_fil_cmd_data(struct brcmf_if *ifp, u32 cmd, void *data, u32 len, bool set) in brcmf_fil_cmd_data()
133 brcmf_fil_cmd_data_set(struct brcmf_if *ifp, u32 cmd, void *data, u32 len) in brcmf_fil_cmd_data_set()
150 brcmf_fil_cmd_data_get(struct brcmf_if *ifp, u32 cmd, void *data, u32 len) in brcmf_fil_cmd_data_get()
168 brcmf_fil_cmd_int_set(struct brcmf_if *ifp, u32 cmd, u32 data) in brcmf_fil_cmd_int_set()
182 brcmf_fil_cmd_int_get(struct brcmf_if *ifp, u32 cmd, u32 *data) in brcmf_fil_cmd_int_get()
/linux-4.1.27/block/
Dscsi_ioctl.c207 int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm) in blk_verify_command()
534 int cmd, int data) in __blk_send_generic()
560 unsigned int cmd, void __user *arg) in scsi_cmd_ioctl()
689 int scsi_verify_blk_ioctl(struct block_device *bd, unsigned int cmd) in scsi_verify_blk_ioctl()
731 unsigned int cmd, void __user *arg) in scsi_cmd_blk_ioctl()
/linux-4.1.27/drivers/ata/
Dlibata-scsi.c273 static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq) in ata_scsi_set_sense()
367 static void ata_scsi_invalid_field(struct scsi_cmnd *cmd) in ata_scsi_invalid_field()
676 int cmd, void __user *arg) in ata_sas_scsi_ioctl()
727 int ata_scsi_ioctl(struct scsi_device *scsidev, int cmd, void __user *arg) in ata_scsi_ioctl()
754 struct scsi_cmnd *cmd) in ata_scsi_qc_new()
978 struct scsi_cmnd *cmd = qc->scsicmd; in ata_gen_passthru_sense() local
1052 struct scsi_cmnd *cmd = qc->scsicmd; in ata_gen_ata_sense() local
1762 struct scsi_cmnd *cmd = qc->scsicmd; in ata_scsi_qc_complete() local
1826 static int ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd, in ata_scsi_translate()
1905 static void *ata_scsi_rbuf_get(struct scsi_cmnd *cmd, bool copy_in, in ata_scsi_rbuf_get()
[all …]
/linux-4.1.27/sound/synth/emux/
Demux_oss.c250 snd_emux_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd, unsigned long ioarg) in snd_emux_ioctl_seq_oss()
307 unsigned char cmd, *data; in snd_emux_event_oss_input() local
335 emuspec_control(struct snd_emux *emu, struct snd_emux_port *port, int cmd, in emuspec_control()
430 gusspec_control(struct snd_emux *emu, struct snd_emux_port *port, int cmd, in gusspec_control()
/linux-4.1.27/drivers/uwb/i1480/dfu/
Dphy.c55 struct i1480_cmd_mpi_write *cmd = i1480->cmd_buf; in i1480_mpi_write() local
103 struct i1480_cmd_mpi_read *cmd = i1480->cmd_buf; in i1480_mpi_read() local
/linux-4.1.27/drivers/i2c/busses/
Di2c-robotfuzz-osif.c39 static int osif_usb_read(struct i2c_adapter *adapter, int cmd, in osif_usb_read()
49 static int osif_usb_write(struct i2c_adapter *adapter, int cmd, in osif_usb_write()
66 int i, cmd; in osif_xfer() local
/linux-4.1.27/net/bridge/
Dbr_ioctl.c112 static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) in old_dev_ioctl()
350 int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg) in br_ioctl_deviceless_stub()
378 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) in br_dev_ioctl()
/linux-4.1.27/drivers/gpu/drm/mga/
Dmga_ioc32.c60 static int compat_mga_init(struct file *file, unsigned int cmd, in compat_mga_init()
111 static int compat_mga_getparam(struct file *file, unsigned int cmd, in compat_mga_getparam()
140 static int compat_mga_dma_bootstrap(struct file *file, unsigned int cmd, in compat_mga_dma_bootstrap()
208 long mga_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) in mga_compat_ioctl()
/linux-4.1.27/arch/s390/kernel/
Dcpcmd.c62 int __cpcmd(const char *cmd, char *response, int rlen, int *response_code) in __cpcmd()
87 int cpcmd(const char *cmd, char *response, int rlen, int *response_code) in cpcmd()

12345678910>>...16