summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2013-08-02 10:24:50 +0200
committerGreg Kroah-Hartman2013-08-02 10:24:50 +0200
commit20fbff1dfd9abcb15e368627986e1fed08b44ebe (patch)
treee04a69b75d6c86bcc73578b1f9aeeb35ec859f51 /drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
parentstaging: lustre: remove ll_invalidate_bdev() (diff)
downloadkernel-qcow2-linux-20fbff1dfd9abcb15e368627986e1fed08b44ebe.tar.gz
kernel-qcow2-linux-20fbff1dfd9abcb15e368627986e1fed08b44ebe.tar.xz
kernel-qcow2-linux-20fbff1dfd9abcb15e368627986e1fed08b44ebe.zip
staging: lustre: remove ENTRY/EXIT_NESTING stuff
These macros were empty, so remove them in anticipation of removing the entire ENTRY/EXIT macros. Cc: Peng Tao <tao.peng@emc.com> Cc: Andreas Dilger <andreas.dilger@intel.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.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h b/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
index dd8ac2f52c9f..07082dc6fd86 100644
--- a/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
+++ b/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
@@ -272,7 +272,6 @@ long libcfs_log_return(struct libcfs_debug_msg_data *, long rc);
#if BITS_PER_LONG > 32
#define RETURN(rc) \
do { \
- EXIT_NESTING; \
if (cfs_cdebug_show(D_TRACE, DEBUG_SUBSYSTEM)) { \
LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_TRACE, NULL); \
return (typeof(rc))libcfs_log_return(&msgdata, \
@@ -289,7 +288,6 @@ do { \
*/
#define RETURN(rc) \
do { \
- EXIT_NESTING; \
if (cfs_cdebug_show(D_TRACE, DEBUG_SUBSYSTEM)) { \
typeof(rc) __rc = (rc); \
LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_TRACE, NULL); \
@@ -305,7 +303,6 @@ do { \
#define RETURN(rc) \
do { \
CDEBUG(D_TRACE, "Process leaving.\n"); \
- EXIT_NESTING; \
return (rc); \
} while (0)
#else
@@ -313,7 +310,6 @@ do { \
#endif /* __GNUC__ */
#define ENTRY \
-ENTRY_NESTING; \
do { \
CDEBUG(D_TRACE, "Process entered\n"); \
} while (0)
@@ -321,7 +317,6 @@ do { \
#define EXIT \
do { \
CDEBUG(D_TRACE, "Process leaving\n"); \
- EXIT_NESTING; \
} while(0)
#define RETURN_EXIT \