patch-2.4.20 linux-2.4.20/drivers/scsi/aacraid/commsup.c
Next file: linux-2.4.20/drivers/scsi/aacraid/dpcsup.c
Previous file: linux-2.4.20/drivers/scsi/aacraid/comminit.c
Back to the patch index
Back to the overall index
- Lines: 37
- Date:
Thu Nov 28 15:53:14 2002
- Orig file:
linux-2.4.19/drivers/scsi/aacraid/commsup.c
- Orig date:
Fri Aug 2 17:39:44 2002
diff -urN linux-2.4.19/drivers/scsi/aacraid/commsup.c linux-2.4.20/drivers/scsi/aacraid/commsup.c
@@ -180,7 +180,7 @@
} else {
if (fibptr->fib->header.XferState != 0) {
printk(KERN_WARNING "fib_free, XferState != 0, fibptr = 0x%p, XferState = 0x%x\n",
- fibptr, fibptr->fib->header.XferState);
+ (void *)fibptr, fibptr->fib->header.XferState);
}
fibptr->next = fibptr->dev->free_fib;
fibptr->dev->free_fib = fibptr;
@@ -280,8 +280,7 @@
else BUG();
if (*index + 1 == le32_to_cpu(*(q->headers.consumer))) { /* Queue is full */
- printk(KERN_WARNING "Queue %d full, %ld outstanding.\n",
- qid, q->numpending);
+ printk(KERN_WARNING "Queue %d full, %ld outstanding.\n", qid, q->numpending);
return 0;
} else {
*entry = q->base + *index;
@@ -336,7 +335,7 @@
* Setup queue entry with command, status and fib mapped
*/
entry->size = cpu_to_le32(le16_to_cpu(fib->header.Size));
- entry->addr = cpu_to_le32(fib->header.SenderFibAddress); /* Restore adapters pointer to the FIB */
+ entry->addr = cpu_to_le32(fib->header.SenderFibAddress); /* Restore adapters pointer to the FIB */
fib->header.ReceiverFibAddress = fib->header.SenderFibAddress; /* Let the adapter now where to find its data */
map = 0;
}
@@ -682,7 +681,7 @@
}
else
{
- printk(KERN_WARNING "fib_complete: Unknown xferstate detected.\n");
+ printk(KERN_WARNING "fib_adapter_complete: Unknown xferstate detected.\n");
BUG();
}
return 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)