Displaying 3 results from an estimated 3 matches for "__journal_unfile_buffer".
2006 Feb 18
1
kernel panic: Assertion failure in __journal_unfile_buffer()
I was just extracting a 96MB tar file ( tar -xWf backup.tar ), the cpu load was 99%
for a long time. I then stopped it and tried again, but this time this popped up in
my ssh session:
--
Message from syslogd at rock at Sat Feb 18 00:47:05 2006 ...
rock kernel: Assertion failure in __journal_unfile_buffer() at
fs/jbd/transaction.c:1520: "jh->b_jlist < 9"
--
A kernel panic dump is displayed on the servers monitor. Here is what I can remember:
Call trace: jurnal_commit_transaction+<something> [jdb]
Is the panic dump stored anywhere?
When I rebooted, the raid set was dirty and...
2003 Jul 22
0
Assertion failure in __journal_unfile_buffer()
...so I'm wondering whether this bug has already been
fixed? If not, I can supply more information, but apart from version numbers
I'm not sure what else I could find out.
Anyway, here's the output, please let me know if it means anything to anyone!
Thanks,
Adam.
Assertion failure in __journal_unfile_buffer() at transaction.c:1522:
"jh->b_jlist < 9"
invalid operand: 0000
CPU: 0
EIP: 0010:[<c015d730>] Not tainted
EFLAGS: 00010286
eax: 0000005b ebx: cfa42c40 ecx: cfb34000 edx: 00000000
esi: c84784b0 edi: 00000000 ebp: c84784e0 esp: cfb35e64
ds: 0018 es: 0018...
2002 May 31
2
PATCH for filesys corruption in ext3 with data=journal
...sert_checkpoint(jh, commit_transaction);
JBUFFER_TRACE(jh, "refile for checkpoint writeback");
__journal_refile_buffer(jh);
} else {
+ clear_bit(BH_Freed, &bh->b_state);
J_ASSERT_BH(bh, !buffer_dirty(bh));
J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
__journal_unfile_buffer(jh);
--- ./fs/jbd/transaction.c 2002/05/26 23:13:05 1.2
+++ ./fs/jbd/transaction.c 2002/05/28 09:24:45
@@ -1834,6 +1834,7 @@
* running transaction if that is set, but nothing
* else. */
JBUFFER_TRACE(jh, "on committing transaction");
+ set_bit(BH_Freed, &bh->b_state);...