|
@@ -56,7 +56,7 @@
|
|
|
* Allocate a new log or catalog handle
|
|
|
* Used inside llog_open().
|
|
|
*/
|
|
|
-struct llog_handle *llog_alloc_handle(void)
|
|
|
+static struct llog_handle *llog_alloc_handle(void)
|
|
|
{
|
|
|
struct llog_handle *loghandle;
|
|
|
|
|
@@ -75,7 +75,7 @@ struct llog_handle *llog_alloc_handle(void)
|
|
|
/*
|
|
|
* Free llog handle and header data if exists. Used in llog_close() only
|
|
|
*/
|
|
|
-void llog_free_handle(struct llog_handle *loghandle)
|
|
|
+static void llog_free_handle(struct llog_handle *loghandle)
|
|
|
{
|
|
|
LASSERT(loghandle != NULL);
|
|
|
|