| Submitter | Julia Lawall |
|---|---|
| Date | Dec. 21, 2008, 3:37 p.m. |
| Message ID | <Pine.LNX.4.64.0812211637370.9555@pc-004.diku.dk> |
| Download | mbox | patch |
| Permalink | /patch/15151/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Julia Lawall <julia@diku.dk> Date: Sun, 21 Dec 2008 16:37:55 +0100 (CET) > In each case, vpage is checked not to be NULL just after it is initialized > at the beginning of each loop iteration. Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/ehea/ehea_qmr.c b/drivers/net/ehea/ehea_qmr.c index 3c0ec82..e8c952b 100644 --- a/drivers/net/ehea/ehea_qmr.c +++ b/drivers/net/ehea/ehea_qmr.c @@ -182,7 +182,7 @@ struct ehea_cq *ehea_create_cq(struct ehea_adapter *adapter, goto out_kill_hwq; } } else { - if ((hret != H_PAGE_REGISTERED) || (!vpage)) { + if (hret != H_PAGE_REGISTERED) { ehea_error("CQ: registration of page failed " "hret=%lx\n", hret); goto out_kill_hwq; @@ -303,7 +303,7 @@ struct ehea_eq *ehea_create_eq(struct ehea_adapter *adapter, goto out_kill_hwq; } else { - if ((hret != H_PAGE_REGISTERED) || (!vpage)) + if (hret != H_PAGE_REGISTERED) goto out_kill_hwq; }