aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew.r.wilcox@intel.com>2013-06-24 11:56:42 -0400
committerMatthew Wilcox <matthew.r.wilcox@intel.com>2013-06-24 13:57:08 -0400
commitbc57a0f7a44cfcf3e9873f6c6b8dcecdca486b1f (patch)
treea8fbc1ebad63f840a606a9fa570b94536ff1af42 /drivers
parente9539f47525ecee05c9f22c3565885f3e9492c52 (diff)
NVMe: Remove "process_cq did something" message
I was originally intending to log the fact that the kthread had done some work since it might help us find interrupt handling problems, but that hasn't been done yet, and spamming the logs with this message is just rude. Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/block/nvme-core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/block/nvme-core.c b/drivers/block/nvme-core.c
index 88a95747494c..eb4a91f3bf41 100644
--- a/drivers/block/nvme-core.c
+++ b/drivers/block/nvme-core.c
@@ -1538,8 +1538,7 @@ static int nvme_kthread(void *data)
1538 if (!nvmeq) 1538 if (!nvmeq)
1539 continue; 1539 continue;
1540 spin_lock_irq(&nvmeq->q_lock); 1540 spin_lock_irq(&nvmeq->q_lock);
1541 if (nvme_process_cq(nvmeq)) 1541 nvme_process_cq(nvmeq);
1542 printk("process_cq did something\n");
1543 nvme_cancel_ios(nvmeq, true); 1542 nvme_cancel_ios(nvmeq, true);
1544 nvme_resubmit_bios(nvmeq); 1543 nvme_resubmit_bios(nvmeq);
1545 spin_unlock_irq(&nvmeq->q_lock); 1544 spin_unlock_irq(&nvmeq->q_lock);