diff options
author | Andy Grover <andy.grover@oracle.com> | 2010-01-12 14:56:44 -0500 |
---|---|---|
committer | Andy Grover <andy.grover@oracle.com> | 2010-09-08 21:11:32 -0400 |
commit | 8690bfa17aea4c42da1bcf90a7af93d161eca624 (patch) | |
tree | 88c4c5fa63aab0c18cf13228c4b3a6f980aa74be /net/rds/iw_send.c | |
parent | 2dc393573430f853e56e25bf4b41c34ba2aa8fd6 (diff) |
RDS: cleanup: remove "== NULL"s and "!= NULL"s in ptr comparisons
Favor "if (foo)" style over "if (foo != NULL)".
Signed-off-by: Andy Grover <andy.grover@oracle.com>
Diffstat (limited to 'net/rds/iw_send.c')
-rw-r--r-- | net/rds/iw_send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/iw_send.c b/net/rds/iw_send.c index 52182ff7519e..dced532f9cfb 100644 --- a/net/rds/iw_send.c +++ b/net/rds/iw_send.c | |||
@@ -86,7 +86,7 @@ static void rds_iw_send_unmap_rm(struct rds_iw_connection *ic, | |||
86 | rm->m_sg, rm->m_nents, | 86 | rm->m_sg, rm->m_nents, |
87 | DMA_TO_DEVICE); | 87 | DMA_TO_DEVICE); |
88 | 88 | ||
89 | if (rm->m_rdma_op != NULL) { | 89 | if (rm->m_rdma_op) { |
90 | rds_iw_send_unmap_rdma(ic, rm->m_rdma_op); | 90 | rds_iw_send_unmap_rdma(ic, rm->m_rdma_op); |
91 | 91 | ||
92 | /* If the user asked for a completion notification on this | 92 | /* If the user asked for a completion notification on this |
@@ -556,7 +556,7 @@ int rds_iw_xmit(struct rds_connection *conn, struct rds_message *rm, | |||
556 | } | 556 | } |
557 | 557 | ||
558 | /* map the message the first time we see it */ | 558 | /* map the message the first time we see it */ |
559 | if (ic->i_rm == NULL) { | 559 | if (!ic->i_rm) { |
560 | /* | 560 | /* |
561 | printk(KERN_NOTICE "rds_iw_xmit prep msg dport=%u flags=0x%x len=%d\n", | 561 | printk(KERN_NOTICE "rds_iw_xmit prep msg dport=%u flags=0x%x len=%d\n", |
562 | be16_to_cpu(rm->m_inc.i_hdr.h_dport), | 562 | be16_to_cpu(rm->m_inc.i_hdr.h_dport), |