Ignore:
Timestamp:
Dec 13, 2016, 3:07:49 AM (9 years ago)
Author:
David Azarewicz
Message:

Debugging changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/os2ahci.c

    r178 r181  
    606606     * link in 'vNext'.
    607607     */
    608     vNext = (pIorb->RequestControl | IORB_CHAIN) ? pIorb->pNxtIORB : NULL;
     608    if (pIorb->RequestControl & IORB_CHAIN) vNext = pIorb->pNxtIORB;
     609    else vNext = (IORBH FAR16DATA *)0;
    609610
    610611    pIorb->Status = 0;
     
    13171318     */
    13181319    char *queue_type;
    1319     int min_debug = 1;
     1320    int min_debug = 7;
    13201321
    13211322    if ((u32)queue >> 16 == (u32)&queue >> 16) /* DAZ this is bogus */
     
    13231324      /* this queue is on the stack */
    13241325      queue_type = "local";
    1325       min_debug = 2;
     1326      min_debug = 8;
    13261327
    13271328    }
     
    13341335    {
    13351336      queue_type = "abort";
    1336       min_debug = 2;
     1337      min_debug = 8;
    13371338
    13381339    }
     
    13861387  if (found)
    13871388  {
    1388     DPRINTF(3,"IORB %x removed (queue = %x)\n", vIorb, queue);
     1389    DPRINTF(8,"IORB %x removed (queue = %x)\n", vIorb, queue);
    13891390  }
    13901391  else
     
    14581459  pIorb->Status |= IORB_DONE;
    14591460
    1460   DPRINTF(1,"IORB %x complete status=0x%04x error=0x%04x\n",
     1461  DPRINTF(7,"IORB %x complete status=0x%04x error=0x%04x\n",
    14611462          vIorb, pIorb->Status, pIorb->ErrorCode);
    14621463
Note: See TracChangeset for help on using the changeset viewer.