aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/staging/lustre/lustre/libcfs/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lustre/libcfs/debug.c b/drivers/staging/lustre/lustre/libcfs/debug.c
index 717008867f6b..76c62e87a415 100644
--- a/drivers/staging/lustre/lustre/libcfs/debug.c
+++ b/drivers/staging/lustre/lustre/libcfs/debug.c
@@ -57,7 +57,7 @@ module_param(libcfs_debug, int, 0644);
57MODULE_PARM_DESC(libcfs_debug, "Lustre kernel debug mask"); 57MODULE_PARM_DESC(libcfs_debug, "Lustre kernel debug mask");
58EXPORT_SYMBOL(libcfs_debug); 58EXPORT_SYMBOL(libcfs_debug);
59 59
60unsigned int libcfs_debug_mb = 0; 60static unsigned int libcfs_debug_mb;
61module_param(libcfs_debug_mb, uint, 0644); 61module_param(libcfs_debug_mb, uint, 0644);
62MODULE_PARM_DESC(libcfs_debug_mb, "Total debug buffer size."); 62MODULE_PARM_DESC(libcfs_debug_mb, "Total debug buffer size.");
63EXPORT_SYMBOL(libcfs_debug_mb); 63EXPORT_SYMBOL(libcfs_debug_mb);
@@ -93,7 +93,7 @@ EXPORT_SYMBOL(libcfs_debug_binary);
93unsigned int libcfs_stack = 3 * THREAD_SIZE / 4; 93unsigned int libcfs_stack = 3 * THREAD_SIZE / 4;
94EXPORT_SYMBOL(libcfs_stack); 94EXPORT_SYMBOL(libcfs_stack);
95 95
96unsigned int portal_enter_debugger; 96static unsigned int portal_enter_debugger;
97EXPORT_SYMBOL(portal_enter_debugger); 97EXPORT_SYMBOL(portal_enter_debugger);
98 98
99unsigned int libcfs_catastrophe; 99unsigned int libcfs_catastrophe;