Displaying 2 results from an estimated 2 matches for "3f66137".
Did you mean:
376137
2009 Jun 19
1
[PATCH] ocfs2: Provide the ocfs2_dlm_lvb_valid() stack API.
...com>
---
fs/ocfs2/stack_o2cb.c | 11 +++++++++++
fs/ocfs2/stack_user.c | 8 ++++++++
fs/ocfs2/stackglue.c | 13 +++++++------
fs/ocfs2/stackglue.h | 6 ++++++
4 files changed, 32 insertions(+), 6 deletions(-)
diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c
index fcd120f..3f66137 100644
--- a/fs/ocfs2/stack_o2cb.c
+++ b/fs/ocfs2/stack_o2cb.c
@@ -236,6 +236,16 @@ static int o2cb_dlm_lock_status(union ocfs2_dlm_lksb *lksb)
return dlm_status_to_errno(lksb->lksb_o2dlm.status);
}
+/*
+ * o2dlm aways has a "valid" LVB. If the dlm loses track of the LVB
+ * conte...
2009 Jul 23
0
[PATCH] ocfs2: Keep index within status_map
Do not exceed array status_map[]
Signed-off-by: Roel Kluin <roel.kluin at gmail.com>
---
diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c
index 3f66137..e49c410 100644
--- a/fs/ocfs2/stack_o2cb.c
+++ b/fs/ocfs2/stack_o2cb.c
@@ -17,6 +17,7 @@
* General Public License for more details.
*/
+#include <linux/kernel.h>
#include <linux/crc32.h>
#include <linux/module.h>
@@ -153,7 +154,7 @@ static int status_map[] = {
static...