diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-13 23:29:38 +0200 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2008-04-21 11:18:01 -0500 |
commit | 170e19ab2900b7c959d7a0e627fd12f383efcfa1 (patch) | |
tree | d34d48eb0fc5c1bb7bd99e4613ce4cc6092010a8 /fs/dlm | |
parent | 5416b704aef0b7350073421f4f6ac1a21bc213e7 (diff) | |
download | linux-170e19ab2900b7c959d7a0e627fd12f383efcfa1.tar.bz2 |
dlm: make dlm_print_rsb() static
dlm_print_rsb() can now become static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/lock.c | 2 | ||||
-rw-r--r-- | fs/dlm/lock.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index 8f250ac8b928..1e9e8ebee251 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -165,7 +165,7 @@ void dlm_print_lkb(struct dlm_lkb *lkb) lkb->lkb_grmode, lkb->lkb_wait_type, lkb->lkb_ast_type); } -void dlm_print_rsb(struct dlm_rsb *r) +static void dlm_print_rsb(struct dlm_rsb *r) { printk(KERN_ERR "rsb: nodeid %d flags %lx first %x rlc %d name %s\n", r->res_nodeid, r->res_flags, r->res_first_lkid, diff --git a/fs/dlm/lock.h b/fs/dlm/lock.h index 05d9c82e646b..88e93c80cc22 100644 --- a/fs/dlm/lock.h +++ b/fs/dlm/lock.h @@ -13,7 +13,6 @@ #ifndef __LOCK_DOT_H__ #define __LOCK_DOT_H__ -void dlm_print_rsb(struct dlm_rsb *r); void dlm_dump_rsb(struct dlm_rsb *r); void dlm_print_lkb(struct dlm_lkb *lkb); void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms); |