Browse Source

staging: lustre: lnet: lib-ptl.c: sparsa warning: symbol not declared

fixed sparse warning of following symbol not declared:
warning: symbol 'lnet_ptl_cleanup' was not declared. Should it be static?
warning: symbol 'lnet_ptl_setup' was not declared. Should it be static?

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Sudip Mukherjee 11 years ago
parent
commit
3ace5213e4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/staging/lustre/lnet/lnet/lib-ptl.c

+ 2 - 2
drivers/staging/lustre/lnet/lnet/lib-ptl.c

@@ -712,7 +712,7 @@ lnet_ptl_attach_md(lnet_me_t *me, lnet_libmd_t *md,
 	lnet_ptl_unlock(ptl);
 	lnet_ptl_unlock(ptl);
 }
 }
 
 
-void
+static void
 lnet_ptl_cleanup(struct lnet_portal *ptl)
 lnet_ptl_cleanup(struct lnet_portal *ptl)
 {
 {
 	struct lnet_match_table	*mtable;
 	struct lnet_match_table	*mtable;
@@ -750,7 +750,7 @@ lnet_ptl_cleanup(struct lnet_portal *ptl)
 	ptl->ptl_mtables = NULL;
 	ptl->ptl_mtables = NULL;
 }
 }
 
 
-int
+static int
 lnet_ptl_setup(struct lnet_portal *ptl, int index)
 lnet_ptl_setup(struct lnet_portal *ptl, int index)
 {
 {
 	struct lnet_match_table	*mtable;
 	struct lnet_match_table	*mtable;