diff options
author | Ed L. Cashin <ecashin@coraid.com> | 2006-09-20 14:36:49 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-10-18 15:53:50 -0400 |
commit | 6bb6285fdb948cedee586c6bebc9ebc5e32a5c35 (patch) | |
tree | 775bff808343ef52d1b254a9e33144f13a197a45 /drivers/block/aoe/aoe.h | |
parent | 19bf26353c50bc2be375109ec73f2f0bbd616ed1 (diff) |
aoe: clean up printks via macros
Use simple macros to clean up the printks.
(This patch is reverted by the 14th patch to follow.)
Signed-off-by: "Ed L. Cashin" <ecashin@coraid.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/block/aoe/aoe.h')
-rw-r--r-- | drivers/block/aoe/aoe.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/block/aoe/aoe.h b/drivers/block/aoe/aoe.h index 1cec19986c4..4d79f1eaf70 100644 --- a/drivers/block/aoe/aoe.h +++ b/drivers/block/aoe/aoe.h | |||
@@ -10,6 +10,11 @@ | |||
10 | #define AOE_PARTITIONS (16) | 10 | #define AOE_PARTITIONS (16) |
11 | #endif | 11 | #endif |
12 | 12 | ||
13 | #define xprintk(L, fmt, arg...) printk(L "aoe: " "%s: " fmt, __func__, ## arg) | ||
14 | #define iprintk(fmt, arg...) xprintk(KERN_INFO, fmt, ## arg) | ||
15 | #define eprintk(fmt, arg...) xprintk(KERN_ERR, fmt, ## arg) | ||
16 | #define dprintk(fmt, arg...) xprintk(KERN_DEBUG, fmt, ## arg) | ||
17 | |||
13 | #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor)) | 18 | #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor)) |
14 | #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF) | 19 | #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF) |
15 | #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF) | 20 | #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF) |