Home
last modified time | relevance | path

Searched refs:rcode (Results 1 – 25 of 29) sorted by relevance

12

/linux/sound/firewire/fireworks/
H A Dfireworks_transaction.c118 copy_resp_to_buf(struct snd_efw *efw, void *data, size_t length, int *rcode) in copy_resp_to_buf() argument
136 *rcode = RCODE_CONFLICT_ERROR; in copy_resp_to_buf()
159 *rcode = RCODE_COMPLETE; in copy_resp_to_buf()
166 void *data, size_t length, int *rcode) in handle_resp_for_user() argument
191 copy_resp_to_buf(efw, data, length, rcode); in handle_resp_for_user()
198 void *data, size_t length, int *rcode, u32 seqnum) in handle_resp_for_kernel() argument
219 *rcode = RCODE_COMPLETE; in handle_resp_for_kernel()
231 int rcode, dummy; in efw_response() local
234 rcode = RCODE_TYPE_ERROR; in efw_response()
236 rcode = RCODE_DATA_ERROR; in efw_response()
[all …]
/linux/sound/firewire/
H A Dlib.c38 int generation, rcode, tries = 0; in snd_fw_transaction() local
46 rcode = fw_run_transaction(device->card, tcode, in snd_fw_transaction()
51 if (rcode == RCODE_COMPLETE) in snd_fw_transaction()
54 if (rcode == RCODE_GENERATION && (flags & FW_FIXED_GENERATION)) in snd_fw_transaction()
57 if (rcode_is_permanent_error(rcode) || ++tries >= 3) { in snd_fw_transaction()
61 fw_rcode_string(rcode)); in snd_fw_transaction()
H A Dlib.h21 static inline bool rcode_is_permanent_error(int rcode) in rcode_is_permanent_error() argument
23 return rcode == RCODE_TYPE_ERROR || rcode == RCODE_ADDRESS_ERROR; in rcode_is_permanent_error()
/linux/drivers/firewire/
H A Dcore-transaction.c47 static int close_transaction(struct fw_transaction *transaction, struct fw_card *card, int rcode, in close_transaction() argument
69 t->callback.without_tstamp(card, rcode, NULL, 0, t->callback_data); in close_transaction()
71 t->callback.with_tstamp(card, rcode, t->packet.timestamp, response_tstamp, NULL, 0, in close_transaction()
391 int rcode; member
394 static void transaction_callback(struct fw_card *card, int rcode, in transaction_callback() argument
399 if (rcode == RCODE_COMPLETE) in transaction_callback()
401 d->rcode = rcode; in transaction_callback()
436 return d.rcode; in fw_run_transaction()
704 int rcode, void *payload, size_t length) in fw_fill_response() argument
718 async_header_set_rcode(response->header, rcode); in fw_fill_response()
[all …]
H A Dpacket-serdes-test.c64 unsigned int rcode) in serialize_async_header_response() argument
67 async_header_set_rcode(header, rcode); in serialize_async_header_response()
74 unsigned int rcode) in serialize_async_header_quadlet_response() argument
77 rcode); in serialize_async_header_quadlet_response()
84 unsigned int rcode, unsigned int data_length, in serialize_async_header_block_response() argument
88 rcode); in serialize_async_header_block_response()
144 unsigned int *rcode) in deserialize_async_header_response() argument
147 *rcode = async_header_get_rcode(header); in deserialize_async_header_response()
154 unsigned int *rcode) in deserialize_async_header_quadlet_response() argument
156 deserialize_async_header_response(header, dst_id, tlabel, retry, tcode, priority, src_id, rcode); in deserialize_async_header_quadlet_response()
[all …]
H A Dcore-card.c293 int gap_count, generation, grace, rcode; in bm_work() local
366 rcode = fw_run_transaction(card, TCODE_LOCK_COMPARE_SWAP, in bm_work()
371 if (rcode == RCODE_GENERATION) in bm_work()
378 if (rcode == RCODE_COMPLETE && generation == card->generation) in bm_work()
383 if (rcode == RCODE_COMPLETE && bm_id != 0x3f) { in bm_work()
391 if (rcode == RCODE_SEND_ERROR) { in bm_work()
403 if (rcode != RCODE_COMPLETE && !keep_this_irm) { in bm_work()
412 fw_rcode_string(rcode), new_root_id); in bm_work()
525 rcode = fw_run_transaction(card, TCODE_WRITE_QUADLET_REQUEST, in bm_work()
529 if (rcode == RCODE_GENERATION) in bm_work()
H A Duapi-test.c24 KUNIT_EXPECT_EQ(test, 12, offsetof(struct fw_cdev_event_response, rcode)); in structure_layout_event_response()
55 KUNIT_EXPECT_EQ(test, 12, offsetof(struct fw_cdev_event_response2, rcode)); in structure_layout_event_response2()
69 KUNIT_EXPECT_EQ(test, 12, offsetof(struct fw_cdev_event_phy_packet2, rcode)); in structure_layout_event_phy_packet2()
H A Dcore-cdev.c566 static void complete_transaction(struct fw_card *card, int rcode, u32 request_tstamp, in complete_transaction() argument
586 if (rcode == RCODE_COMPLETE) in complete_transaction()
589 rsp->rcode = rcode; in complete_transaction()
609 if (rcode == RCODE_COMPLETE) in complete_transaction()
612 rsp->rcode = rcode; in complete_transaction()
903 fw_send_response(r->card, r->request, a->rcode); in ioctl_send_response()
1564 u32 rcode; in outbound_phy_packet_callback() local
1572 rcode = RCODE_COMPLETE; in outbound_phy_packet_callback()
1576 rcode = RCODE_COMPLETE; in outbound_phy_packet_callback()
1581 rcode = RCODE_BUSY; in outbound_phy_packet_callback()
[all …]
H A Dsbp2.c260 int rcode; member
440 iter->rcode = RCODE_COMPLETE; in sbp2_status_write()
458 static void complete_transaction(struct fw_card *card, int rcode, in complete_transaction() argument
475 if (orb->rcode == -1) in complete_transaction()
476 orb->rcode = rcode; in complete_transaction()
477 if (orb->rcode != RCODE_COMPLETE) { in complete_transaction()
530 orb->rcode = RCODE_CANCELLED; in sbp2_cancel_orbs()
614 orb->base.rcode); in sbp2_send_management_orb()
618 if (orb->base.rcode != RCODE_COMPLETE) { in sbp2_send_management_orb()
620 orb->base.rcode); in sbp2_send_management_orb()
[all …]
H A Dcore-device.c549 int i, rcode; in read_rom() local
555 rcode = fw_run_transaction(device->card, in read_rom()
558 if (rcode != RCODE_BUSY) in read_rom()
564 return rcode; in read_rom()
937 int rcode; in set_broadcast_channel() local
957 rcode = fw_run_transaction(card, TCODE_READ_QUADLET_REQUEST, in set_broadcast_channel()
961 switch (rcode) { in set_broadcast_channel()
1164 int i, rcode; in reread_config_rom() local
1167 rcode = read_rom(device, generation, i, &q); in reread_config_rom()
1168 if (rcode ! in reread_config_rom()
[all...]
H A Dnet.c708 int rcode; in fwnet_receive_packet() local
715 rcode = RCODE_COMPLETE; in fwnet_receive_packet()
717 rcode = RCODE_ADDRESS_ERROR; in fwnet_receive_packet()
719 rcode = RCODE_TYPE_ERROR; in fwnet_receive_packet()
723 rcode = RCODE_CONFLICT_ERROR; in fwnet_receive_packet()
725 rcode = RCODE_COMPLETE; in fwnet_receive_packet()
728 fw_send_response(card, r, rcode); in fwnet_receive_packet()
923 static void fwnet_write_complete(struct fw_card *card, int rcode, in fwnet_write_complete() argument
930 if (rcode == RCODE_COMPLETE) { in fwnet_write_complete()
933 if (printk_timed_ratelimit(&j, 1000) || rcode != last_rcode) { in fwnet_write_complete()
[all …]
H A Dpacket-header-definitions.h137 unsigned int rcode) in async_header_set_rcode() argument
140 header[1] |= (((u32)rcode) << ASYNC_HEADER_Q1_RCODE_SHIFT) & ASYNC_HEADER_Q1_RCODE_MASK; in async_header_set_rcode()
H A Dohci.h266 static inline void ohci1394_at_data_set_rcode(__le32 *data, unsigned int rcode) in ohci1394_at_data_set_rcode() argument
269 …data[1] |= cpu_to_le32((rcode << OHCI1394_AT_DATA_Q1_rCode_SHIFT) & OHCI1394_AT_DATA_Q1_rCode_MASK… in ohci1394_at_data_set_rcode()
/linux/drivers/scsi/aacraid/
H A Dcommctrl.c491 s32 rcode = 0; in aac_send_raw_srb() local
522 rcode = -EFAULT; in aac_send_raw_srb()
528 rcode = -EINVAL; in aac_send_raw_srb()
534 rcode = PTR_ERR(user_srbcmd); in aac_send_raw_srb()
556 rcode = -EINVAL; in aac_send_raw_srb()
561 rcode = -EINVAL; in aac_send_raw_srb()
577 rcode = -EINVAL; in aac_send_raw_srb()
663 rcode = -EINVAL; in aac_send_raw_srb()
669 rcode = -ENOMEM; in aac_send_raw_srb()
687 rcode = -EFAULT; in aac_send_raw_srb()
[all …]
H A Daachba.c1676 int rcode; in aac_send_safw_bmic_cmd() local
1702 rcode = -ENOMEM; in aac_send_safw_bmic_cmd()
1736 rcode = aac_fib_send(ScsiPortCommand64, fibptr, fibsize, FsaNormal, in aac_send_safw_bmic_cmd()
1739 if (rcode == -ERESTARTSYS) in aac_send_safw_bmic_cmd()
1740 rcode = -ERESTART; in aac_send_safw_bmic_cmd()
1742 if (unlikely(rcode < 0)) in aac_send_safw_bmic_cmd()
1753 return rcode; in aac_send_safw_bmic_cmd()
1781 int rcode = -ENOMEM; in aac_issue_safw_bmic_identify() local
1800 rcode = aac_send_safw_bmic_cmd(dev, &srbu, identify_reply, datasize); in aac_issue_safw_bmic_identify()
1801 if (unlikely(rcode < 0)) in aac_issue_safw_bmic_identify()
[all …]
/linux/sound/firewire/fireface/
H A Dff-transaction.c11 int rcode) in finish_transmit_midi_msg() argument
16 if (rcode_is_permanent_error(rcode)) { in finish_transmit_midi_msg()
21 if (rcode != RCODE_COMPLETE) { in finish_transmit_midi_msg()
35 static void finish_transmit_midi0_msg(struct fw_card *card, int rcode, in finish_transmit_midi0_msg() argument
41 finish_transmit_midi_msg(ff, 0, rcode); in finish_transmit_midi0_msg()
44 static void finish_transmit_midi1_msg(struct fw_card *card, int rcode, in finish_transmit_midi1_msg() argument
50 finish_transmit_midi_msg(ff, 1, rcode); in finish_transmit_midi1_msg()
/linux/sound/firewire/oxfw/
H A Doxfw-scs1x.c101 int rcode; in handle_hss() local
104 rcode = RCODE_ADDRESS_ERROR; in handle_hss()
109 rcode = RCODE_TYPE_ERROR; in handle_hss()
119 rcode = RCODE_COMPLETE; in handle_hss()
121 fw_send_response(card, request, rcode); in handle_hss()
124 static void scs_write_callback(struct fw_card *card, int rcode, in scs_write_callback() argument
129 if (!rcode_is_permanent_error(rcode)) { in scs_write_callback()
131 if (rcode == RCODE_COMPLETE) in scs_write_callback()
/linux/drivers/net/ethernet/qlogic/netxen/
H A Dnetxen_nic_ctx.c37 u32 rcode = NX_RCODE_SUCCESS; in netxen_issue_cmd() local
61 rcode = NX_RCODE_TIMEOUT; in netxen_issue_cmd()
63 rcode = NXRD32(adapter, NX_ARG1_CRB_OFFSET); in netxen_issue_cmd()
66 netxen_nic_driver_name, rcode); in netxen_issue_cmd()
80 return rcode; in netxen_issue_cmd()
219 u32 rcode = NX_RCODE_SUCCESS; in nx_fw_cmd_set_mtu() local
230 rcode = netxen_issue_cmd(adapter, &cmd); in nx_fw_cmd_set_mtu()
232 if (rcode != NX_RCODE_SUCCESS) in nx_fw_cmd_set_mtu()
525 u32 rcode; in nx_fw_cmd_query_phy() local
534 rcode = netxen_issue_cmd(adapter, &cmd); in nx_fw_cmd_query_phy()
[all …]
/linux/net/smc/
H A Dsmc_stats.h110 #define SMC_STAT_TX_PAYLOAD(_smc, length, rcode) \ argument
116 typeof(rcode) _rc = (rcode); \
125 #define SMC_STAT_RX_PAYLOAD(_smc, length, rcode) \ argument
131 typeof(rcode) _rc = (rcode); \
/linux/include/uapi/linux/
H A Dfirewire-cdev.h118 __u32 rcode; member
157 __u32 rcode; member
436 __u32 rcode; member
476 __u32 rcode; member
668 __u32 rcode; member
/linux/drivers/target/sbp/
H A Dsbp_target.c803 int sess_gen, sess_node, rcode; in tgt_agent_rw() local
812 rcode = RCODE_TYPE_ERROR; in tgt_agent_rw()
819 rcode = RCODE_TYPE_ERROR; in tgt_agent_rw()
828 rcode = tgt_agent_rw_agent_state(card, tcode, data, agent); in tgt_agent_rw()
831 rcode = tgt_agent_rw_agent_reset(card, tcode, data, agent); in tgt_agent_rw()
834 rcode = tgt_agent_rw_orb_pointer(card, tcode, data, agent); in tgt_agent_rw()
837 rcode = tgt_agent_rw_doorbell(card, tcode, data, agent); in tgt_agent_rw()
840 rcode = tgt_agent_rw_unsolicited_status_enable(card, tcode, in tgt_agent_rw()
843 rcode = RCODE_ADDRESS_ERROR; in tgt_agent_rw()
847 fw_send_response(card, request, rcode); in tgt_agent_rw()
[all …]
/linux/include/linux/
H A Dfirewire.h263 typedef void (*fw_transaction_callback_t)(struct fw_card *card, int rcode,
266 typedef void (*fw_transaction_callback_with_tstamp_t)(struct fw_card *card, int rcode,
358 struct fw_request *request, int rcode);
431 const char *fw_rcode_string(int rcode);
/linux/sound/firewire/tascam/
H A Dtascam-transaction.c145 static void async_midi_port_callback(struct fw_card *card, int rcode, in async_midi_port_callback() argument
156 if (rcode == RCODE_COMPLETE) in async_midi_port_callback()
158 else if (!rcode_is_permanent_error(rcode)) in async_midi_port_callback()
/linux/drivers/media/firewire/
H A Dfiredtv-fw.c41 int rcode, generation = device->generation; in node_req() local
45 rcode = fw_run_transaction(device->card, tcode, device->node_id, in node_req()
48 return rcode != RCODE_COMPLETE ? -EIO : 0; in node_req()
/linux/drivers/s390/cio/
H A Dtrace.h289 __field(u16, rcode)
299 __entry->rcode = chsc->code;
304 __entry->cc, __entry->rcode)

12