Re: [PATCH 9/9] drivers/infiniband/hw/ehca: Drop unnecessary null test

2010-08-05 Thread Alexander Schmidt
On Wed, 04 Aug 2010 11:50:05 -0700 Roland Dreier rdre...@cisco.com wrote: Looks fine to me. ehca guys, any objection? We don't have any objections. Acked-by: Alexander Schmidt al...@linux.vnet.ibm.com -- To unsubscribe from this list: send the line unsubscribe linux-rdma in the body of a

Re: [PATCH 9/9] drivers/infiniband/hw/ehca: Drop unnecessary null test

2010-08-05 Thread Roland Dreier
thanks, applied -- Roland Dreier rola...@cisco.com || For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/index.html -- To unsubscribe from this list: send the line unsubscribe linux-rdma in the body of a message to majord...@vger.kernel.org More

Re: [PATCH 9/9] drivers/infiniband/hw/ehca: Drop unnecessary null test

2010-08-04 Thread Roland Dreier
Looks fine to me. ehca guys, any objection? -- Roland Dreier rola...@cisco.com || For corporate legal information go to: http://www.cisco.com/web/about/doing_business/legal/cri/index.html -- To unsubscribe from this list: send the line unsubscribe linux-rdma in the body of a message to

[PATCH 9/9] drivers/infiniband/hw/ehca: Drop unnecessary null test

2010-08-03 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk list_for_each_entry binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // smpl @@ iterator I; expression x;