NVMe: Mark CMD_CTX_CANCELLED as being unlikely
authorMatthew Wilcox <matthew.r.wilcox@intel.com>
Tue, 22 Feb 2011 19:15:34 +0000 (14:15 -0500)
committerMatthew Wilcox <matthew.r.wilcox@intel.com>
Fri, 4 Nov 2011 19:52:59 +0000 (15:52 -0400)
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
drivers/block/nvme.c

index af45e28..ce919b4 100644 (file)
@@ -518,7 +518,7 @@ static void sync_completion(struct nvme_queue *nvmeq, void *ctx,
                                                struct nvme_completion *cqe)
 {
        struct sync_cmd_info *cmdinfo = ctx;
-       if ((unsigned long)cmdinfo == CMD_CTX_CANCELLED)
+       if (unlikely((unsigned long)cmdinfo == CMD_CTX_CANCELLED))
                return;
        if (unlikely((unsigned long)cmdinfo == CMD_CTX_COMPLETED)) {
                dev_warn(nvmeq->q_dmadev,