From 5ff519112af6a6dab0ad7f6b0b0a2dcfff273e5b Mon Sep 17 00:00:00 2001
From: David Teigland <teigland@redhat.com>
Date: Tue, 8 Aug 2006 17:03:30 -0500
Subject: [DLM] print bad length in assertion

Print the violating name length in the assertion.

Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
---
 fs/dlm/memory.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'fs')

diff --git a/fs/dlm/memory.c b/fs/dlm/memory.c
index 48dfc27861..989b608fd8 100644
--- a/fs/dlm/memory.c
+++ b/fs/dlm/memory.c
@@ -100,7 +100,8 @@ struct dlm_direntry *allocate_direntry(struct dlm_ls *ls, int namelen)
 {
 	struct dlm_direntry *de;
 
-	DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,);
+	DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,
+		   printk("namelen = %d\n", namelen););
 
 	de = kmalloc(sizeof(*de) + namelen, GFP_KERNEL);
 	if (de)
-- 
cgit v1.2.2