staging: lustre: lustre: libcfs: fail.c - fix sparse warnings EXPORT_SYMBOL

- this fixes "WARNING: EXPORT_SYMBOL(foo); should immediately follow its
  function/variable"

Signed-off-by: Anil Belur <askb23@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Anil Belur 2014-06-23 22:40:00 +10:00 committed by Greg Kroah-Hartman
parent dee2857e22
commit 0d2f6bb4b2

View File

@ -36,13 +36,15 @@
#include <linux/libcfs/libcfs.h>
unsigned long cfs_fail_loc = 0;
unsigned int cfs_fail_val = 0;
wait_queue_head_t cfs_race_waitq;
int cfs_race_state;
EXPORT_SYMBOL(cfs_fail_loc);
unsigned int cfs_fail_val = 0;
EXPORT_SYMBOL(cfs_fail_val);
wait_queue_head_t cfs_race_waitq;
EXPORT_SYMBOL(cfs_race_waitq);
int cfs_race_state;
EXPORT_SYMBOL(cfs_race_state);
int __cfs_fail_check_set(__u32 id, __u32 value, int set)