aboutsummaryrefslogtreecommitdiffstats
path: root/net/rds/ib_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rds/ib_send.c')
-rw-r--r--net/rds/ib_send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/ib_send.c b/net/rds/ib_send.c
index 17fa80803ab0..0b0090d2ee01 100644
--- a/net/rds/ib_send.c
+++ b/net/rds/ib_send.c
@@ -86,7 +86,7 @@ static void rds_ib_send_unmap_rm(struct rds_ib_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_ib_send_unmap_rdma(ic, rm->m_rdma_op); 90 rds_ib_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
@@ -525,7 +525,7 @@ int rds_ib_xmit(struct rds_connection *conn, struct rds_message *rm,
525 } 525 }
526 526
527 /* map the message the first time we see it */ 527 /* map the message the first time we see it */
528 if (ic->i_rm == NULL) { 528 if (!ic->i_rm) {
529 /* 529 /*
530 printk(KERN_NOTICE "rds_ib_xmit prep msg dport=%u flags=0x%x len=%d\n", 530 printk(KERN_NOTICE "rds_ib_xmit prep msg dport=%u flags=0x%x len=%d\n",
531 be16_to_cpu(rm->m_inc.i_hdr.h_dport), 531 be16_to_cpu(rm->m_inc.i_hdr.h_dport),