Home
last modified time | relevance | path

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

12

/linux/Documentation/dev-tools/
H A Dktap.rst145 ok 5 check return code # rcode=0
147 The test "check return code" passed, with additional diagnostic data “rcode=0”
/linux/drivers/firewire/
H A Dcore-card.c300 int gap_count, generation, grace, rcode; in bm_work() local
373 rcode = fw_run_transaction(card, TCODE_LOCK_COMPARE_SWAP, in bm_work()
378 if (rcode == RCODE_GENERATION) in bm_work()
385 if (rcode == RCODE_COMPLETE && generation == card->generation) in bm_work()
390 if (rcode == RCODE_COMPLETE && bm_id != 0x3f) { in bm_work()
398 if (rcode == RCODE_SEND_ERROR) { in bm_work()
410 if (rcode != RCODE_COMPLETE && !keep_this_irm) { in bm_work()
419 fw_rcode_string(rcode), new_root_id); in bm_work()
532 rcode = fw_run_transaction(card, TCODE_WRITE_QUADLET_REQUEST, in bm_work()
536 if (rcode == RCODE_GENERATION) in bm_work()
H A Dcore-cdev.c549 static void complete_transaction(struct fw_card *card, int rcode, u32 request_tstamp, in complete_transaction() argument
569 if (rcode == RCODE_COMPLETE) in complete_transaction()
572 rsp->rcode = rcode; in complete_transaction()
592 if (rcode == RCODE_COMPLETE) in complete_transaction()
595 rsp->rcode = rcode; in complete_transaction()
889 fw_send_response(r->card, r->request, a->rcode); in ioctl_send_response()
1560 u32 rcode; in outbound_phy_packet_callback() local
1568 rcode = RCODE_COMPLETE; in outbound_phy_packet_callback()
1572 rcode = RCODE_COMPLETE; in outbound_phy_packet_callback()
1577 rcode = RCODE_BUSY; in outbound_phy_packet_callback()
[all …]
H A Dcore-device.c556 int i, rcode; in read_rom() local
562 rcode = fw_run_transaction(device->card, in read_rom()
565 if (rcode != RCODE_BUSY) in read_rom()
571 return rcode; in read_rom()
1004 int rcode; in set_broadcast_channel() local
1024 rcode = fw_run_transaction(card, TCODE_READ_QUADLET_REQUEST, in set_broadcast_channel()
1028 switch (rcode) { in set_broadcast_channel()
1182 int i, rcode; in reread_config_rom() local
1185 rcode = read_rom(device, generation, i, &q); in reread_config_rom()
1186 if (rcode != RCODE_COMPLETE) in reread_config_rom()
[all …]
H A Dcore-transaction.c55 static int close_transaction(struct fw_transaction *transaction, struct fw_card *card, int rcode, in close_transaction() argument
78 t->callback.without_tstamp(card, rcode, NULL, 0, t->callback_data); in close_transaction()
80 t->callback.with_tstamp(card, rcode, t->packet.timestamp, response_tstamp, in close_transaction()
411 int rcode; member
414 static void transaction_callback(struct fw_card *card, int rcode, in transaction_callback() argument
419 if (rcode == RCODE_COMPLETE) in transaction_callback()
421 d->rcode = rcode; in transaction_callback()
456 return d.rcode; in fw_run_transaction()
723 int rcode, void *payload, size_t length) in fw_fill_response() argument
737 async_header_set_rcode(response->header, rcode); in fw_fill_response()
[all …]
H A Dcore.h252 int rcode, void *payload, size_t length);
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.h135 unsigned int rcode) in async_header_set_rcode() argument
138 header[1] |= (((u32)rcode) << ASYNC_HEADER_Q1_RCODE_SHIFT) & ASYNC_HEADER_Q1_RCODE_MASK; in async_header_set_rcode()
H A Dpacket-serdes-test.c63 unsigned int rcode) in serialize_async_header_response() argument
66 async_header_set_rcode(header, rcode); in serialize_async_header_response()
73 unsigned int rcode) in serialize_async_header_quadlet_response() argument
76 rcode); in serialize_async_header_quadlet_response()
83 unsigned int rcode, unsigned int data_length, in serialize_async_header_block_response() argument
87 rcode); in serialize_async_header_block_response()
143 unsigned int *rcode) in deserialize_async_header_response() argument
146 *rcode = async_header_get_rcode(header); in deserialize_async_header_response()
153 unsigned int *rcode) in deserialize_async_header_quadlet_response() argument
155 deserialize_async_header_response(header, dst_id, tlabel, retry, tcode, priority, src_id, rcode); in deserialize_async_header_quadlet_response()
[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 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()
/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/mtd/nand/raw/
H A Dnand_bbt.c755 uint8_t rcode = td->reserved_block_code; in write_bbt() local
765 if (!rcode) in write_bbt()
766 rcode = 0xff; in write_bbt()
801 msk[2] = ~rcode; in write_bbt()
/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/drivers/s390/cio/
H A Dtrace.h289 __field(u16, rcode)
299 __entry->rcode = chsc->code;
304 __entry->cc, __entry->rcode)
/linux/drivers/scsi/aacraid/
H A Daachba.c1676 int rcode; in aac_send_safw_bmic_cmd() local
1703 rcode = -ENOMEM; in aac_send_safw_bmic_cmd()
1737 rcode = aac_fib_send(ScsiPortCommand64, fibptr, fibsize, FsaNormal, in aac_send_safw_bmic_cmd()
1740 if (rcode == -ERESTARTSYS) in aac_send_safw_bmic_cmd()
1741 rcode = -ERESTART; in aac_send_safw_bmic_cmd()
1743 if (unlikely(rcode < 0)) in aac_send_safw_bmic_cmd()
1754 return rcode; in aac_send_safw_bmic_cmd()
1782 int rcode = -ENOMEM; in aac_issue_safw_bmic_identify() local
1801 rcode = aac_send_safw_bmic_cmd(dev, &srbu, identify_reply, datasize); in aac_issue_safw_bmic_identify()
1802 if (unlikely(rcode < 0)) in aac_issue_safw_bmic_identify()
[all …]
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 Dcommsup.c1893 int rcode = 0; in aac_update_safw_host_devices() local
1895 rcode = aac_setup_safw_adapter(dev); in aac_update_safw_host_devices()
1896 if (unlikely(rcode < 0)) { in aac_update_safw_host_devices()
1914 return rcode; in aac_update_safw_host_devices()
1919 int rcode = 0; in aac_scan_safw_host() local
1921 rcode = aac_update_safw_host_devices(dev); in aac_scan_safw_host()
1922 if (rcode) in aac_scan_safw_host()
1925 return rcode; in aac_scan_safw_host()
1930 int rcode = 0; in aac_scan_host() local
1934 rcode = aac_scan_safw_host(dev); in aac_scan_host()
[all …]
/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.h261 typedef void (*fw_transaction_callback_t)(struct fw_card *card, int rcode,
264 typedef void (*fw_transaction_callback_with_tstamp_t)(struct fw_card *card, int rcode,
356 struct fw_request *request, int rcode);
429 const char *fw_rcode_string(int 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/net/smc/
H A Dsmc_stats.h108 #define SMC_STAT_TX_PAYLOAD(_smc, length, rcode) \ argument
114 typeof(rcode) _rc = (rcode); \
123 #define SMC_STAT_RX_PAYLOAD(_smc, length, rcode) \ argument
129 typeof(rcode) _rc = (rcode); \
/linux/sound/firewire/bebob/
H A Dbebob_maudio.c96 int err, rcode; in snd_bebob_maudio_load_firmware() local
123 rcode = fw_run_transaction(device->card, TCODE_WRITE_BLOCK_REQUEST, in snd_bebob_maudio_load_firmware()
128 if (rcode != RCODE_COMPLETE) { in snd_bebob_maudio_load_firmware()
/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/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 …]

12