summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
diff options
context:
space:
mode:
authorSalym Senyonga2014-01-13 14:41:07 +0100
committerGreg Kroah-Hartman2014-01-14 00:39:22 +0100
commite6ee5f4bb40016a6acc584739ccc3ef69cf3f10b (patch)
tree2c2f7da7e24899c64b9c5743d8ad96171b326f7c /drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
parentstaging: lustre: libcfs_debug.h: Align backslashes in macros (diff)
downloadkernel-qcow2-linux-e6ee5f4bb40016a6acc584739ccc3ef69cf3f10b.tar.gz
kernel-qcow2-linux-e6ee5f4bb40016a6acc584739ccc3ef69cf3f10b.tar.xz
kernel-qcow2-linux-e6ee5f4bb40016a6acc584739ccc3ef69cf3f10b.zip
staging: lustre: libcfs_debug.h: remove extra blank lines
This patch removes consecutive blank lines. Signed-off-by: Salym Senyonga <salymsash@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h')
-rw-r--r--drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h b/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
index 0fb5e41ce641..ccde582668a9 100644
--- a/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
+++ b/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
@@ -82,7 +82,6 @@ struct ptldebug_header {
__u32 ph_line_num;
} __attribute__((packed));
-
#define PH_FLAG_FIRST_RECORD 1
/* Debugging subsystems (32 bits, non-overlapping) */
@@ -199,8 +198,6 @@ do { \
.msg_cdls = (cdls) }; \
dataname.msg_mask = (mask);
-
-
/**
* Filters out logging messages based on mask and subsystem.
*/
@@ -231,9 +228,6 @@ do { \
__CDEBUG(&cdls, mask, format, ## __VA_ARGS__); \
} while (0)
-
-
-
#define CWARN(format, ...) CDEBUG_LIMIT(D_WARNING, format, ## __VA_ARGS__)
#define CERROR(format, ...) CDEBUG_LIMIT(D_ERROR, format, ## __VA_ARGS__)
#define CNETERR(format, a...) CDEBUG_LIMIT(D_NETERROR, format, ## a)
@@ -248,7 +242,6 @@ do { \
#define LCONSOLE_EMERG(format, ...) CDEBUG(D_CONSOLE | D_EMERG, format, ## __VA_ARGS__)
-
void libcfs_log_goto(struct libcfs_debug_msg_data *, const char *, long_ptr_t);
#define GOTO(label, rc) \
do { \
@@ -261,7 +254,6 @@ do { \
goto label; \
} while (0)
-
extern int libcfs_debug_msg(struct libcfs_debug_msg_data *msgdata,
const char *format1, ...)
__attribute__ ((format (printf, 2, 3)));