DragonFly BSD
 

Message4808

Author dillon
Recipients rumcic
Date 2008-07-01.22:09:00
Content
:
:With latest -HEAD I get the mentioned panic. Managed to get a memory dump and I
:uploaded it to leaf:~rumko/crash/01.07.08

    Nice catch.  I'll get it fixed today.  It's a simple race.... the
    deleted flag test on line 2018 of hammer_inode.c occurs before
    the node is locked, and the assertion that caused the panic occurs
    after the node is locked.  The node can easily become deleted while
    blocked on the lock.  I just need to lock the node before doing the
    first test.

						-Matt
History
Date User Action Args
2008-07-01 22:09:01dillonsetrecipients: + rumcic
2008-07-01 22:09:01dillonlinkissue1037 messages
2008-07-01 22:09:00dilloncreate