patch-2.4.22 linux-2.4.22/fs/reiserfs/buffer2.c
Next file: linux-2.4.22/fs/reiserfs/dir.c
Previous file: linux-2.4.22/fs/reiserfs/bitmap.c
Back to the patch index
Back to the overall index
- Lines: 36
- Date:
2003-08-25 04:44:43.000000000 -0700
- Orig file:
linux-2.4.21/fs/reiserfs/buffer2.c
- Orig date:
2002-11-28 15:53:15.000000000 -0800
diff -urN linux-2.4.21/fs/reiserfs/buffer2.c linux-2.4.22/fs/reiserfs/buffer2.c
@@ -28,7 +28,7 @@
while (atomic_read (&(bh->b_count)) > 1) {
if ( !(++repeat_counter % 30000000) ) {
- reiserfs_warning ("vs-3050: wait_buffer_until_released: nobody releases buffer (%b). Still waiting (%d) %cJDIRTY %cJWAIT\n",
+ reiserfs_warning (NULL, "vs-3050: wait_buffer_until_released: nobody releases buffer (%b). Still waiting (%d) %cJDIRTY %cJWAIT\n",
bh, repeat_counter, buffer_journaled(bh) ? ' ' : '!',
buffer_journal_dirty(bh) ? ' ' : '!');
}
@@ -36,7 +36,7 @@
yield();
}
if (repeat_counter > 30000000) {
- reiserfs_warning("vs-3051: done waiting, ignore vs-3050 messages for (%b)\n", bh) ;
+ reiserfs_warning(NULL, "vs-3051: done waiting, ignore vs-3050 messages for (%b)\n", bh) ;
}
}
@@ -60,3 +60,17 @@
return result;
}
+struct buffer_head * journal_bread (struct super_block *s, int block)
+{
+ return bread (SB_JOURNAL_DEV(s), block, s->s_blocksize );
+}
+
+struct buffer_head * journal_getblk (struct super_block *s, int block)
+{
+ return getblk (SB_JOURNAL_DEV(s), block, s->s_blocksize );
+}
+
+struct buffer_head * journal_get_hash_table (struct super_block *s, int block)
+{
+ return get_hash_table (SB_JOURNAL_DEV(s), block, s->s_blocksize );
+}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)