Changeset 8984

Show
Ignore:
Timestamp:
07/29/11 11:18:43 (22 months ago)
Author:
mtmoore
Message:

add debug statements for broken op argument, add check for state of op

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/Orange-Branch/src/kernel/linux-2.6/waitqueue.c

    r8983 r8984  
    177177    if( !op ) 
    178178    { 
     179        gossip_debug(GOSSIP_WAIT_DEBUG, "%s: op is null, ignoring\n", 
     180                     __func__); 
    179181        return; 
    180182    } 
     
    185187           op_state_serviced(op) || op_state_purged(op)) ) 
    186188    { 
     189        gossip_debug(GOSSIP_WAIT_DEBUG, "%s: op %p not in a valid state (%0x), " 
     190                     "ignoring\n", __func__, op, op->op_state); 
    187191        return; 
    188192    }