Commit 86dce445 authored by Joachim Fenkes's avatar Joachim Fenkes Committed by Roland Dreier

IB/ehca: ehca_gen_warn() should always print

Signed-off-by: default avatarJoachim Fenkes <fenkes@de.ibm.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent e3722192
...@@ -98,15 +98,12 @@ extern int ehca_debug_level; ...@@ -98,15 +98,12 @@ extern int ehca_debug_level;
} while (0) } while (0)
#define ehca_gen_warn(format, arg...) \ #define ehca_gen_warn(format, arg...) \
do { \ printk(KERN_INFO "PU%04x EHCA_WARN:%s " format "\n", \
if (unlikely(ehca_debug_level)) \ get_paca()->paca_index, __FUNCTION__, ## arg)
printk(KERN_INFO "PU%04x EHCA_WARN:%s " format "\n", \
get_paca()->paca_index, __FUNCTION__, ## arg); \
} while (0)
#define ehca_gen_err(format, arg...) \ #define ehca_gen_err(format, arg...) \
printk(KERN_ERR "PU%04x EHCA_ERR:%s " format "\n", \ printk(KERN_ERR "PU%04x EHCA_ERR:%s " format "\n", \
get_paca()->paca_index, __FUNCTION__, ## arg) get_paca()->paca_index, __FUNCTION__, ## arg)
/** /**
* ehca_dmp - printk a memory block, whose length is n*8 bytes. * ehca_dmp - printk a memory block, whose length is n*8 bytes.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment