aboutsummaryrefslogtreecommitdiff
path: root/fs/dlm/memory.c
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2006-08-08 17:03:30 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2006-08-09 09:44:54 -0400
commit5ff519112af6a6dab0ad7f6b0b0a2dcfff273e5b (patch)
tree10c1178389f4f4e1d47be446c698830459eca330 /fs/dlm/memory.c
parentf4387149ec71fed11535b49400bad17d22fdc935 (diff)
[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>
Diffstat (limited to 'fs/dlm/memory.c')
-rw-r--r--fs/dlm/memory.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/dlm/memory.c b/fs/dlm/memory.c
index 48dfc27861f..989b608fd83 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)