Displaying 4 results from an estimated 4 matches for "bh_temp".
Did you mean:
_temp
2001 Apr 19
1
0.0.6b conflict with raid patch
...001
+++ linux-2.2.19pre14.ext3-0.0.6b/include/linux/fs.h Wed Feb 21 20:02:45 2001
@@ -191,6 +197,25 @@
#define BH_Req 3 /* 0 if the buffer has been invalidated */
#define BH_Protected 6 /* 1 if the buffer is protected */
#define BH_Wait_IO 7 /* 1 if we should throttle on this buffer */
+#define BH_Temp 8 /* 1 if the buffer is temporary (unlinked) */
+#define BH_JWrite 9 /* 1 if being written to log (@@@ DEBUGGING) */
+#define BH_QuickFree 10 /* 1 if alloced and freed quickly (see below)*/
+#define BH_Alloced 11 /* 1 if buffer has been allocated */
+#define BH_Freed 12 /* 1 if buffer has been fre...
2001 Jul 13
0
0.0.7a + rh2.2.19: help solve rejects
...+ J_ASSERT(buf->b_count > 0);
}
===== redhat latest 2.2.19
if (buf->b_count) {
buf->b_count--;
return;
}
printk("VFS: brelse: Trying to free free buffer\n");
*(int *)0 = 0;
}
2)
include/linux/fs.h
Can I still just increase by one from BH_Temp on as advised here
https://listman.redhat.com/pipermail/ext3-users/2001-April/000448.html
===== ext3 patch
--- 197,221 ----
#define BH_Req 3 /* 0 if the buffer has been invalidated */
#define BH_Protected 6 /* 1 if the buffer is protected */
#define BH_Req 3 /* 0 if the...
2001 Jun 14
2
Assertion in buffer.c:1122 __refile_buffer
Started with buffer.c v1.19. Reversing change works for me in
linux-2.4.6.
Loaded 16705 symbols from /lib/modules/2.4.6-pre3/System.map.
Symbols match kernel version 2.4.6.
Loaded 256 symbols from 12 modules.
Linux version 2.4.6-pre3 (root@home1) (gcc version 2.95.3 20010315 (release)) #2 Wed Jun 13 19:53:28 EDT 2001
----- SNIP -------
VFS: Disk change detected on device ide1(22,64)
Assertion
2001 Jul 29
1
2.2.19/0.0.7a: bonnie -> VM problems
...ose to put J_ASSERT before it
}
2)
+1 to all added stuff
include/linux/fs.h
@@ -192,6 +192,25 @@
#define BH_Protected 6 /* 1 if the buffer is protected */
#define BH_Wait_IO 7 /* 1 if we should throttle on this buffer */
#define BH_LowPrio 8 /* 1 if the buffer is lowprio */
+#define BH_Temp 9 /* 1 if the buffer is temporary (unlinked) */
+#define BH_JWrite 10 /* 1 if being written to log (@@@ DEBUGGING) */
+#define BH_QuickFree 11 /* 1 if alloced and freed quickly (see below)*/
+#define BH_Alloced 12 /* 1 if buffer has been allocated */
+#define BH_Freed 13 /* 1 if b...