Lines Matching defs:reply
1835 void __iomem *reply;
1856 printk(KERN_ERR"dpti: Could not get reply frame\n");
1863 reply = (u8 *)pHba->reply_pool +
1867 printk(KERN_ERR "dpti: reply frame not from pool\n");
1871 if (readl(reply) & MSG_FAIL) {
1872 u32 old_m = readl(reply+28);
1881 // Transaction context is 0 in failed reply frame
1884 writel(old_context, reply+12);
1887 context = readl(reply+8);
1889 status = readl(reply+16);
1900 readl(reply + 12) - 1);
1911 readl(reply + 12) - 1);
1914 adpt_i2o_scsi_complete(reply, cmd);
2081 static void adpt_i2o_scsi_complete(void __iomem *reply, struct scsi_cmnd *cmd)
2086 u32 reply_flags = readl(reply) & 0xff00; // Leave it shifted up 8 bits
2090 u16 detailed_status = readl(reply+16) &0xffff;
2095 scsi_set_resid(cmd, scsi_bufflen(cmd) - readl(reply+20));
2106 if (readl(reply+20) < cmd->underflow) {
2172 memcpy_fromio(cmd->sense_buffer, (reply+28) , len);
2538 // Wait for the reply status to come back
2557 // If the command was successful, fill the fifo with our reply
2575 printk(KERN_ERR "%s: Could not allocate reply pool\n", pHba->name);