Hello! On Fri, May 30, 2003 at 08:56:32AM -0400, Bill Rees wrote: > My application is running with the Sun jdk 1.4.1_02 under Red Hat 9.0 and > I've received this error in dmesg:
Do you have any way to reproduce? > Unable to handle kernel NULL pointer dereference at virtual address 00000018 > printing eip: > e092b263 > *pde = 00000000 > Oops: 0000 > CPU: 0 > EIP: 0060:[<e092b263>] Not tainted > EFLAGS: 00010282 > EIP is at do_journal_end [reiserfs] 0x3b3 (2.4.20-8smp) So it's died here: /* for each real block, add it to the journal list hash, ** copy into real block index array in the commit or desc block */ for (i = 0, cn = SB_JOURNAL(p_s_sb)->j_first ; cn ; cn = cn->next, i++) { if (test_bit(BH_JDirty, &cn->bh->b_state) ) { (in test_bit) because cn->bh is zero. Hm. Chris, do you have any ideas how that might have happened? Bye, Oleg