summaryrefslogtreecommitdiff
path: root/include/linux/hyperv.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-10-11 08:47:32 -0600
committerGreg Kroah-Hartman <gregkh@suse.de>2011-10-11 08:49:19 -0600
commita832a1eba94096513bc42c96f33957cc46c5f2bf (patch)
tree030261350ba24e9c55e3d1ddf73ef0574c9fa3e2 /include/linux/hyperv.h
parentda0e96315ca703ab6540cc7665549622f71c155f (diff)
hv: remove a bunch of unused debug macros from hyperv.h
These aren't used by anyone anymore, so remove them before someone tries to use them again. Cc: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/hyperv.h')
-rw-r--r--include/linux/hyperv.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h
index 98a57a51acf..2229073874b 100644
--- a/include/linux/hyperv.h
+++ b/include/linux/hyperv.h
@@ -721,11 +721,8 @@ extern void vmbus_ontimer(unsigned long data);
BLKVSC_DRV)
/* Logging Level */
-#define ERROR_LVL 3
#define WARNING_LVL 4
#define INFO_LVL 6
-#define DEBUG_LVL 7
-#define DEBUG_LVL_ENTEREXIT 8
#define DEBUG_RING_LVL 9
extern unsigned int vmbus_loglevel;
@@ -736,33 +733,12 @@ extern unsigned int vmbus_loglevel;
printk(KERN_DEBUG #mod": %s() " fmt "\n", __func__, ## args);\
} while (0)
-#define DPRINT_DBG(mod, fmt, args...) do {\
- if ((mod & (HIWORD(vmbus_loglevel))) && \
- (DEBUG_LVL <= LOWORD(vmbus_loglevel))) \
- printk(KERN_DEBUG #mod": %s() " fmt "\n", __func__, ## args);\
- } while (0)
-
-#define DPRINT_INFO(mod, fmt, args...) do {\
- if ((mod & (HIWORD(vmbus_loglevel))) && \
- (INFO_LVL <= LOWORD(vmbus_loglevel))) \
- printk(KERN_INFO #mod": " fmt "\n", ## args);\
- } while (0)
-
#define DPRINT_WARN(mod, fmt, args...) do {\
if ((mod & (HIWORD(vmbus_loglevel))) && \
(WARNING_LVL <= LOWORD(vmbus_loglevel))) \
printk(KERN_WARNING #mod": WARNING! " fmt "\n", ## args);\
} while (0)
-#define DPRINT_ERR(mod, fmt, args...) do {\
- if ((mod & (HIWORD(vmbus_loglevel))) && \
- (ERROR_LVL <= LOWORD(vmbus_loglevel))) \
- printk(KERN_ERR #mod": %s() ERROR!! " fmt "\n", \
- __func__, ## args);\
- } while (0)
-
-
-
struct hv_driver;
struct hv_device;