aboutsummaryrefslogtreecommitdiffstats
path: root/net/rds/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rds/bind.c')
-rw-r--r--net/rds/bind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/bind.c b/net/rds/bind.c
index 5d95fc007f1a..65de5cbdb576 100644
--- a/net/rds/bind.c
+++ b/net/rds/bind.c
@@ -121,7 +121,7 @@ static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
121 do { 121 do {
122 if (rover == 0) 122 if (rover == 0)
123 rover++; 123 rover++;
124 if (rds_bind_tree_walk(addr, cpu_to_be16(rover), rs) == NULL) { 124 if (!rds_bind_tree_walk(addr, cpu_to_be16(rover), rs)) {
125 *port = cpu_to_be16(rover); 125 *port = cpu_to_be16(rover);
126 ret = 0; 126 ret = 0;
127 break; 127 break;
@@ -184,7 +184,7 @@ int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
184 goto out; 184 goto out;
185 185
186 trans = rds_trans_get_preferred(sin->sin_addr.s_addr); 186 trans = rds_trans_get_preferred(sin->sin_addr.s_addr);
187 if (trans == NULL) { 187 if (!trans) {
188 ret = -EADDRNOTAVAIL; 188 ret = -EADDRNOTAVAIL;
189 rds_remove_bound(rs); 189 rds_remove_bound(rs);
190 if (printk_ratelimit()) 190 if (printk_ratelimit())