Skip to content

Commit

Permalink
ocfs2: dlm_print_one_mle() needs to be defined
Browse files Browse the repository at this point in the history
Fixes compile breakage.

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
  • Loading branch information
Mark Fasheh committed Jun 26, 2006
1 parent 0032abd commit 8a9343f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fs/ocfs2/dlm/dlmmaster.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,8 @@ static inline int dlm_mle_equal(struct dlm_ctxt *dlm,
return 1;
}

#if 0
/* Code here is included but defined out as it aids debugging */

#define dlm_print_nodemap(m) _dlm_print_nodemap(m,#m)
void _dlm_print_nodemap(unsigned long *map, const char *mapname)
static void _dlm_print_nodemap(unsigned long *map, const char *mapname)
{
int i;
printk("%s=[ ", mapname);
Expand All @@ -142,7 +139,7 @@ void _dlm_print_nodemap(unsigned long *map, const char *mapname)
printk("]");
}

void dlm_print_one_mle(struct dlm_master_list_entry *mle)
static void dlm_print_one_mle(struct dlm_master_list_entry *mle)
{
int refs;
char *type;
Expand Down Expand Up @@ -189,6 +186,9 @@ void dlm_print_one_mle(struct dlm_master_list_entry *mle)
printk("\n");
}

#if 0
/* Code here is included but defined out as it aids debugging */

static void dlm_dump_mles(struct dlm_ctxt *dlm)
{
struct dlm_master_list_entry *mle;
Expand Down Expand Up @@ -943,7 +943,7 @@ struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm,
dlm->name, res->lockname.len,
res->lockname.name, blocked);
dlm_print_one_lock_resource(res);
/* dlm_print_one_mle(mle); */
dlm_print_one_mle(mle);
tries = 0;
}
goto redo_request;
Expand Down

0 comments on commit 8a9343f

Please sign in to comment.