Changeset 184 for trunk/src/os2ahci/os2ahci.c
- Timestamp:
- Dec 15, 2016, 12:31:51 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/os2ahci.c
r181 r184 422 422 if (com_baud) InitComPort(com_baud); 423 423 424 NTPRINTF("BldLevel: %s\n", BldLevel);425 NTPRINTF("CmdLine: %s\n", cmd_line);424 dprintf(0,"BldLevel: %s\n", BldLevel); 425 dprintf(0,"CmdLine: %s\n", cmd_line); 426 426 /* 427 427 if (sizeof(ADD_WORKSPACE) > ADD_WORKSPACE_SIZE) … … 634 634 635 635 /* unit handle outside of the allowed range */ 636 DPRINTF(0,"warning: IORB for %d.%d.%d out of range\n", a, p, d);636 dprintf(0,"warning: IORB for %d.%d.%d out of range\n", a, p, d); 637 637 pIorb->Status = IORB_ERROR; 638 638 pIorb->ErrorCode = IOERR_CMD_SYNTAX; … … 1077 1077 if ((u32)(pPtr + 1) - (u32)pDt > pIorb_conf->DeviceTableLen) 1078 1078 { 1079 DPRINTF(0,"error: device table provided by DASD too small\n");1079 dprintf(0,"error: device table provided by DASD too small\n"); 1080 1080 iorb_seterr(pIorb, IOERR_CMD_SW_RESOURCE); 1081 1081 goto iocm_device_table_done; … … 1106 1106 if (ad_info->busy) 1107 1107 { 1108 DPRINTF(0,"error: port scan requested while adapter was busy\n");1108 dprintf(0,"error: port scan requested while adapter was busy\n"); 1109 1109 iorb_seterr(pIorb, IOERR_CMD_SW_RESOURCE); 1110 1110 goto iocm_device_table_done; … … 1118 1118 if (rc != 0) 1119 1119 { 1120 DPRINTF(0,"error: port scan failed on adapter #%d\n", dta);1120 dprintf(0,"error: port scan failed on adapter #%d\n", dta); 1121 1121 iorb_seterr(pIorb, IOERR_CMD_SW_RESOURCE); 1122 1122 goto iocm_device_table_done; … … 1312 1312 } 1313 1313 1314 #ifdef DEBUG 1314 1315 if (D32g_DbgLevel) 1315 1316 { … … 1347 1348 pIorb->Timeout); 1348 1349 } 1350 #endif 1349 1351 } 1350 1352 … … 1385 1387 } 1386 1388 1389 #ifdef DEBUG 1387 1390 if (found) 1388 1391 { … … 1393 1396 DPRINTF(2,"IORB %x not found in queue %x\n", vIorb, queue); 1394 1397 } 1398 #endif 1395 1399 1396 1400 return(!found); … … 1553 1557 1554 1558 Timer_CancelTimer(timer_handle); 1555 DPRINTF(0,"timeout for IORB %x\n", vIorb);1559 dprintf(0,"timeout for IORB %x\n", vIorb); 1556 1560 1557 1561 /* Move the timed-out IORB to the abort queue. Since it's possible that the … … 1606 1610 /* reset watchdog timer */ 1607 1611 Timer_CancelTimer(timer_handle); 1608 DPRINTF(0,"reset watchdog invoked\n");1612 dprintf(0,"reset watchdog invoked\n"); 1609 1613 1610 1614 /* call context hook manually */ … … 1639 1643 if ((u32)(pUi + 1) - (u32)pDt > pIorb_conf->DeviceTableLen) 1640 1644 { 1641 DPRINTF(0,"error: device table provided by DASD too small\n");1645 dprintf(0,"error: device table provided by DASD too small\n"); 1642 1646 iorb_seterr(&pIorb_conf->iorbh, IOERR_CMD_SW_RESOURCE); 1643 1647 return(-1);
Note:
See TracChangeset
for help on using the changeset viewer.