summaryrefslogtreecommitdiffstats
path: root/fs/cifs/transport.c
diff options
context:
space:
mode:
authorAndy Shevchenko2014-08-27 15:49:44 +0200
committerSteve French2014-12-08 05:48:07 +0100
commit0b456f04bcdf5b1151136adaada158bfc26f1be7 (patch)
treec9ba14522dc965b4649c64fed7dec7cf77dcdb1e /fs/cifs/transport.c
parentcifs: convert to print_hex_dump() instead of custom implementation (diff)
downloadkernel-qcow2-linux-0b456f04bcdf5b1151136adaada158bfc26f1be7.tar.gz
kernel-qcow2-linux-0b456f04bcdf5b1151136adaada158bfc26f1be7.tar.xz
kernel-qcow2-linux-0b456f04bcdf5b1151136adaada158bfc26f1be7.zip
cifs: convert printk(LEVEL...) to pr_<level>
The useful macros embed message level in the name. Thus, it cleans up the code a bit. In cases when it was plain printk() the conversion was done to info level. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Steve French <steve.french@primarydata.com>
Diffstat (limited to 'fs/cifs/transport.c')
-rw-r--r--fs/cifs/transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c
index 9d087f4e7d4e..126f46b887cc 100644
--- a/fs/cifs/transport.c
+++ b/fs/cifs/transport.c
@@ -99,9 +99,9 @@ DeleteMidQEntry(struct mid_q_entry *midEntry)
something is wrong, unless it is quite a slow link or server */
if ((now - midEntry->when_alloc) > HZ) {
if ((cifsFYI & CIFS_TIMER) && (midEntry->command != command)) {
- printk(KERN_DEBUG " CIFS slow rsp: cmd %d mid %llu",
+ pr_debug(" CIFS slow rsp: cmd %d mid %llu",
midEntry->command, midEntry->mid);
- printk(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
+ pr_info(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
now - midEntry->when_alloc,
now - midEntry->when_sent,
now - midEntry->when_received);