Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006 Oracle. All rights reserved. |
| 3 | * |
| 4 | * This software is available to you under a choice of one of two |
| 5 | * licenses. You may choose to be licensed under the terms of the GNU |
| 6 | * General Public License (GPL) Version 2, available from the file |
| 7 | * COPYING in the main directory of this source tree, or the |
| 8 | * OpenIB.org BSD license below: |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or |
| 11 | * without modification, are permitted provided that the following |
| 12 | * conditions are met: |
| 13 | * |
| 14 | * - Redistributions of source code must retain the above |
| 15 | * copyright notice, this list of conditions and the following |
| 16 | * disclaimer. |
| 17 | * |
| 18 | * - Redistributions in binary form must reproduce the above |
| 19 | * copyright notice, this list of conditions and the following |
| 20 | * disclaimer in the documentation and/or other materials |
| 21 | * provided with the distribution. |
| 22 | * |
| 23 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 24 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 25 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 26 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 27 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 28 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 29 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 30 | * SOFTWARE. |
| 31 | * |
| 32 | */ |
| 33 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/gfp.h> |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 35 | #include <net/sock.h> |
| 36 | #include <linux/in.h> |
| 37 | #include <linux/list.h> |
| 38 | |
| 39 | #include "rds.h" |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 40 | |
| 41 | /* When transmitting messages in rds_send_xmit, we need to emerge from |
| 42 | * time to time and briefly release the CPU. Otherwise the softlock watchdog |
| 43 | * will kick our shin. |
| 44 | * Also, it seems fairer to not let one busy connection stall all the |
| 45 | * others. |
| 46 | * |
| 47 | * send_batch_count is the number of times we'll loop in send_xmit. Setting |
| 48 | * it to 0 will restore the old behavior (where we looped until we had |
| 49 | * drained the queue). |
| 50 | */ |
| 51 | static int send_batch_count = 64; |
| 52 | module_param(send_batch_count, int, 0444); |
| 53 | MODULE_PARM_DESC(send_batch_count, " batch factor when working the send queue"); |
| 54 | |
| 55 | /* |
| 56 | * Reset the send state. Caller must hold c_send_lock when calling here. |
| 57 | */ |
| 58 | void rds_send_reset(struct rds_connection *conn) |
| 59 | { |
| 60 | struct rds_message *rm, *tmp; |
| 61 | unsigned long flags; |
| 62 | |
| 63 | if (conn->c_xmit_rm) { |
| 64 | /* Tell the user the RDMA op is no longer mapped by the |
| 65 | * transport. This isn't entirely true (it's flushed out |
| 66 | * independently) but as the connection is down, there's |
| 67 | * no ongoing RDMA to/from that memory */ |
| 68 | rds_message_unmapped(conn->c_xmit_rm); |
| 69 | rds_message_put(conn->c_xmit_rm); |
| 70 | conn->c_xmit_rm = NULL; |
| 71 | } |
| 72 | conn->c_xmit_sg = 0; |
| 73 | conn->c_xmit_hdr_off = 0; |
| 74 | conn->c_xmit_data_off = 0; |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 75 | conn->c_xmit_atomic_sent = 0; |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 76 | conn->c_xmit_rdma_sent = 0; |
| 77 | conn->c_xmit_data_sent = 0; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 78 | |
| 79 | conn->c_map_queued = 0; |
| 80 | |
| 81 | conn->c_unacked_packets = rds_sysctl_max_unacked_packets; |
| 82 | conn->c_unacked_bytes = rds_sysctl_max_unacked_bytes; |
| 83 | |
| 84 | /* Mark messages as retransmissions, and move them to the send q */ |
| 85 | spin_lock_irqsave(&conn->c_lock, flags); |
| 86 | list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) { |
| 87 | set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags); |
| 88 | set_bit(RDS_MSG_RETRANSMITTED, &rm->m_flags); |
| 89 | } |
| 90 | list_splice_init(&conn->c_retrans, &conn->c_send_queue); |
| 91 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 92 | } |
| 93 | |
| 94 | /* |
| 95 | * We're making the concious trade-off here to only send one message |
| 96 | * down the connection at a time. |
| 97 | * Pro: |
| 98 | * - tx queueing is a simple fifo list |
| 99 | * - reassembly is optional and easily done by transports per conn |
| 100 | * - no per flow rx lookup at all, straight to the socket |
| 101 | * - less per-frag memory and wire overhead |
| 102 | * Con: |
| 103 | * - queued acks can be delayed behind large messages |
| 104 | * Depends: |
| 105 | * - small message latency is higher behind queued large messages |
| 106 | * - large message latency isn't starved by intervening small sends |
| 107 | */ |
| 108 | int rds_send_xmit(struct rds_connection *conn) |
| 109 | { |
| 110 | struct rds_message *rm; |
| 111 | unsigned long flags; |
| 112 | unsigned int tmp; |
| 113 | unsigned int send_quota = send_batch_count; |
| 114 | struct scatterlist *sg; |
| 115 | int ret = 0; |
| 116 | int was_empty = 0; |
| 117 | LIST_HEAD(to_be_dropped); |
| 118 | |
| 119 | /* |
| 120 | * sendmsg calls here after having queued its message on the send |
| 121 | * queue. We only have one task feeding the connection at a time. If |
| 122 | * another thread is already feeding the queue then we back off. This |
| 123 | * avoids blocking the caller and trading per-connection data between |
| 124 | * caches per message. |
| 125 | * |
| 126 | * The sem holder will issue a retry if they notice that someone queued |
| 127 | * a message after they stopped walking the send queue but before they |
| 128 | * dropped the sem. |
| 129 | */ |
| 130 | if (!mutex_trylock(&conn->c_send_lock)) { |
| 131 | rds_stats_inc(s_send_sem_contention); |
| 132 | ret = -ENOMEM; |
| 133 | goto out; |
| 134 | } |
| 135 | |
| 136 | if (conn->c_trans->xmit_prepare) |
| 137 | conn->c_trans->xmit_prepare(conn); |
| 138 | |
| 139 | /* |
| 140 | * spin trying to push headers and data down the connection until |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 141 | * the connection doesn't make forward progress. |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 142 | */ |
| 143 | while (--send_quota) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 144 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 145 | rm = conn->c_xmit_rm; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 146 | |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 147 | /* |
| 148 | * If between sending messages, we can send a pending congestion |
| 149 | * map update. |
| 150 | * |
| 151 | * Transports either define a special xmit_cong_map function, |
| 152 | * or we allocate a cong_map message and treat it just like any |
| 153 | * other send. |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 154 | */ |
Andy Grover | 8690bfa | 2010-01-12 11:56:44 -0800 | [diff] [blame] | 155 | if (!rm && test_and_clear_bit(0, &conn->c_map_queued)) { |
| 156 | if (conn->c_trans->xmit_cong_map) { |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 157 | unsigned long map_offset = 0; |
| 158 | unsigned long map_bytes = sizeof(struct rds_header) + |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 159 | RDS_CONG_MAP_BYTES; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 160 | |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 161 | while (map_bytes) { |
| 162 | ret = conn->c_trans->xmit_cong_map(conn, conn->c_lcong, |
| 163 | map_offset); |
| 164 | if (ret <= 0) { |
| 165 | /* too far down the rabbithole! */ |
| 166 | mutex_unlock(&conn->c_send_lock); |
| 167 | rds_conn_error(conn, "Cong map xmit failed\n"); |
| 168 | goto out; |
| 169 | } |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 170 | |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 171 | map_offset += ret; |
| 172 | map_bytes -= ret; |
| 173 | } |
| 174 | } else { |
| 175 | /* send cong update like a normal rm */ |
| 176 | rm = rds_cong_update_alloc(conn); |
| 177 | if (IS_ERR(rm)) { |
| 178 | ret = PTR_ERR(rm); |
| 179 | break; |
| 180 | } |
| 181 | rm->data.op_active = 1; |
| 182 | |
| 183 | conn->c_xmit_rm = rm; |
| 184 | } |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /* |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 188 | * If not already working on one, grab the next message. |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 189 | * |
| 190 | * c_xmit_rm holds a ref while we're sending this message down |
| 191 | * the connction. We can use this ref while holding the |
| 192 | * send_sem.. rds_send_reset() is serialized with it. |
| 193 | */ |
Andy Grover | 8690bfa | 2010-01-12 11:56:44 -0800 | [diff] [blame] | 194 | if (!rm) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 195 | unsigned int len; |
| 196 | |
| 197 | spin_lock_irqsave(&conn->c_lock, flags); |
| 198 | |
| 199 | if (!list_empty(&conn->c_send_queue)) { |
| 200 | rm = list_entry(conn->c_send_queue.next, |
| 201 | struct rds_message, |
| 202 | m_conn_item); |
| 203 | rds_message_addref(rm); |
| 204 | |
| 205 | /* |
| 206 | * Move the message from the send queue to the retransmit |
| 207 | * list right away. |
| 208 | */ |
| 209 | list_move_tail(&rm->m_conn_item, &conn->c_retrans); |
| 210 | } |
| 211 | |
| 212 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 213 | |
Andy Grover | 8690bfa | 2010-01-12 11:56:44 -0800 | [diff] [blame] | 214 | if (!rm) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 215 | was_empty = 1; |
| 216 | break; |
| 217 | } |
| 218 | |
| 219 | /* Unfortunately, the way Infiniband deals with |
| 220 | * RDMA to a bad MR key is by moving the entire |
| 221 | * queue pair to error state. We cold possibly |
| 222 | * recover from that, but right now we drop the |
| 223 | * connection. |
| 224 | * Therefore, we never retransmit messages with RDMA ops. |
| 225 | */ |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 226 | if (rm->rdma.op_active && |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 227 | test_bit(RDS_MSG_RETRANSMITTED, &rm->m_flags)) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 228 | spin_lock_irqsave(&conn->c_lock, flags); |
| 229 | if (test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags)) |
| 230 | list_move(&rm->m_conn_item, &to_be_dropped); |
| 231 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 232 | rds_message_put(rm); |
| 233 | continue; |
| 234 | } |
| 235 | |
| 236 | /* Require an ACK every once in a while */ |
| 237 | len = ntohl(rm->m_inc.i_hdr.h_len); |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 238 | if (conn->c_unacked_packets == 0 || |
| 239 | conn->c_unacked_bytes < len) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 240 | __set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags); |
| 241 | |
| 242 | conn->c_unacked_packets = rds_sysctl_max_unacked_packets; |
| 243 | conn->c_unacked_bytes = rds_sysctl_max_unacked_bytes; |
| 244 | rds_stats_inc(s_send_ack_required); |
| 245 | } else { |
| 246 | conn->c_unacked_bytes -= len; |
| 247 | conn->c_unacked_packets--; |
| 248 | } |
| 249 | |
| 250 | conn->c_xmit_rm = rm; |
| 251 | } |
| 252 | |
Andy Grover | 2c3a5f9 | 2010-03-01 16:10:40 -0800 | [diff] [blame] | 253 | /* The transport either sends the whole rdma or none of it */ |
| 254 | if (rm->rdma.op_active && !conn->c_xmit_rdma_sent) { |
| 255 | ret = conn->c_trans->xmit_rdma(conn, &rm->rdma); |
| 256 | if (ret) |
| 257 | break; |
| 258 | conn->c_xmit_rdma_sent = 1; |
| 259 | |
| 260 | /* The transport owns the mapped memory for now. |
| 261 | * You can't unmap it while it's on the send queue */ |
| 262 | set_bit(RDS_MSG_MAPPED, &rm->m_flags); |
| 263 | } |
| 264 | |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 265 | if (rm->atomic.op_active && !conn->c_xmit_atomic_sent) { |
Andy Grover | 241eef3 | 2010-01-19 21:25:26 -0800 | [diff] [blame] | 266 | ret = conn->c_trans->xmit_atomic(conn, rm); |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 267 | if (ret) |
| 268 | break; |
| 269 | conn->c_xmit_atomic_sent = 1; |
| 270 | /* The transport owns the mapped memory for now. |
| 271 | * You can't unmap it while it's on the send queue */ |
| 272 | set_bit(RDS_MSG_MAPPED, &rm->m_flags); |
| 273 | } |
| 274 | |
Andy Grover | 2c3a5f9 | 2010-03-01 16:10:40 -0800 | [diff] [blame] | 275 | /* |
| 276 | * A number of cases require an RDS header to be sent |
| 277 | * even if there is no data. |
| 278 | * We permit 0-byte sends; rds-ping depends on this. |
| 279 | * However, if there are exclusively attached silent ops, |
| 280 | * we skip the hdr/data send, to enable silent operation. |
| 281 | */ |
| 282 | if (rm->data.op_nents == 0) { |
| 283 | int ops_present; |
| 284 | int all_ops_are_silent = 1; |
Andy Grover | 241eef3 | 2010-01-19 21:25:26 -0800 | [diff] [blame] | 285 | |
Andy Grover | 2c3a5f9 | 2010-03-01 16:10:40 -0800 | [diff] [blame] | 286 | ops_present = (rm->atomic.op_active || rm->rdma.op_active); |
| 287 | if (rm->atomic.op_active && !rm->atomic.op_silent) |
| 288 | all_ops_are_silent = 0; |
| 289 | if (rm->rdma.op_active && !rm->rdma.op_silent) |
| 290 | all_ops_are_silent = 0; |
Andy Grover | 241eef3 | 2010-01-19 21:25:26 -0800 | [diff] [blame] | 291 | |
Andy Grover | 2c3a5f9 | 2010-03-01 16:10:40 -0800 | [diff] [blame] | 292 | if (ops_present && all_ops_are_silent |
| 293 | && !rm->m_rdma_cookie) |
| 294 | rm->data.op_active = 0; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 297 | if (rm->data.op_active && !conn->c_xmit_data_sent) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 298 | ret = conn->c_trans->xmit(conn, rm, |
| 299 | conn->c_xmit_hdr_off, |
| 300 | conn->c_xmit_sg, |
| 301 | conn->c_xmit_data_off); |
| 302 | if (ret <= 0) |
| 303 | break; |
| 304 | |
| 305 | if (conn->c_xmit_hdr_off < sizeof(struct rds_header)) { |
| 306 | tmp = min_t(int, ret, |
| 307 | sizeof(struct rds_header) - |
| 308 | conn->c_xmit_hdr_off); |
| 309 | conn->c_xmit_hdr_off += tmp; |
| 310 | ret -= tmp; |
| 311 | } |
| 312 | |
Andy Grover | 6c7cc6e | 2010-01-27 18:04:18 -0800 | [diff] [blame] | 313 | sg = &rm->data.op_sg[conn->c_xmit_sg]; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 314 | while (ret) { |
| 315 | tmp = min_t(int, ret, sg->length - |
| 316 | conn->c_xmit_data_off); |
| 317 | conn->c_xmit_data_off += tmp; |
| 318 | ret -= tmp; |
| 319 | if (conn->c_xmit_data_off == sg->length) { |
| 320 | conn->c_xmit_data_off = 0; |
| 321 | sg++; |
| 322 | conn->c_xmit_sg++; |
| 323 | BUG_ON(ret != 0 && |
Andy Grover | 6c7cc6e | 2010-01-27 18:04:18 -0800 | [diff] [blame] | 324 | conn->c_xmit_sg == rm->data.op_nents); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 325 | } |
| 326 | } |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 327 | |
| 328 | if (conn->c_xmit_hdr_off == sizeof(struct rds_header) && |
| 329 | (conn->c_xmit_sg == rm->data.op_nents)) |
| 330 | conn->c_xmit_data_sent = 1; |
| 331 | } |
| 332 | |
| 333 | /* |
| 334 | * A rm will only take multiple times through this loop |
| 335 | * if there is a data op. Thus, if the data is sent (or there was |
| 336 | * none), then we're done with the rm. |
| 337 | */ |
| 338 | if (!rm->data.op_active || conn->c_xmit_data_sent) { |
| 339 | conn->c_xmit_rm = NULL; |
| 340 | conn->c_xmit_sg = 0; |
| 341 | conn->c_xmit_hdr_off = 0; |
| 342 | conn->c_xmit_data_off = 0; |
| 343 | conn->c_xmit_rdma_sent = 0; |
| 344 | conn->c_xmit_atomic_sent = 0; |
| 345 | conn->c_xmit_data_sent = 0; |
| 346 | |
| 347 | rds_message_put(rm); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 348 | } |
| 349 | } |
| 350 | |
| 351 | /* Nuke any messages we decided not to retransmit. */ |
| 352 | if (!list_empty(&to_be_dropped)) |
| 353 | rds_send_remove_from_sock(&to_be_dropped, RDS_RDMA_DROPPED); |
| 354 | |
| 355 | if (conn->c_trans->xmit_complete) |
| 356 | conn->c_trans->xmit_complete(conn); |
| 357 | |
| 358 | /* |
| 359 | * We might be racing with another sender who queued a message but |
| 360 | * backed off on noticing that we held the c_send_lock. If we check |
| 361 | * for queued messages after dropping the sem then either we'll |
| 362 | * see the queued message or the queuer will get the sem. If we |
| 363 | * notice the queued message then we trigger an immediate retry. |
| 364 | * |
| 365 | * We need to be careful only to do this when we stopped processing |
| 366 | * the send queue because it was empty. It's the only way we |
| 367 | * stop processing the loop when the transport hasn't taken |
| 368 | * responsibility for forward progress. |
| 369 | */ |
| 370 | mutex_unlock(&conn->c_send_lock); |
| 371 | |
Andy Grover | 5b2366b | 2010-02-03 19:36:44 -0800 | [diff] [blame] | 372 | if (send_quota == 0 && !was_empty) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 373 | /* We exhausted the send quota, but there's work left to |
| 374 | * do. Return and (re-)schedule the send worker. |
| 375 | */ |
| 376 | ret = -EAGAIN; |
| 377 | } |
| 378 | |
| 379 | if (ret == 0 && was_empty) { |
| 380 | /* A simple bit test would be way faster than taking the |
| 381 | * spin lock */ |
| 382 | spin_lock_irqsave(&conn->c_lock, flags); |
| 383 | if (!list_empty(&conn->c_send_queue)) { |
| 384 | rds_stats_inc(s_send_sem_queue_raced); |
| 385 | ret = -EAGAIN; |
| 386 | } |
| 387 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 388 | } |
| 389 | out: |
| 390 | return ret; |
| 391 | } |
| 392 | |
| 393 | static void rds_send_sndbuf_remove(struct rds_sock *rs, struct rds_message *rm) |
| 394 | { |
| 395 | u32 len = be32_to_cpu(rm->m_inc.i_hdr.h_len); |
| 396 | |
| 397 | assert_spin_locked(&rs->rs_lock); |
| 398 | |
| 399 | BUG_ON(rs->rs_snd_bytes < len); |
| 400 | rs->rs_snd_bytes -= len; |
| 401 | |
| 402 | if (rs->rs_snd_bytes == 0) |
| 403 | rds_stats_inc(s_send_queue_empty); |
| 404 | } |
| 405 | |
| 406 | static inline int rds_send_is_acked(struct rds_message *rm, u64 ack, |
| 407 | is_acked_func is_acked) |
| 408 | { |
| 409 | if (is_acked) |
| 410 | return is_acked(rm, ack); |
| 411 | return be64_to_cpu(rm->m_inc.i_hdr.h_sequence) <= ack; |
| 412 | } |
| 413 | |
| 414 | /* |
| 415 | * Returns true if there are no messages on the send and retransmit queues |
| 416 | * which have a sequence number greater than or equal to the given sequence |
| 417 | * number. |
| 418 | */ |
| 419 | int rds_send_acked_before(struct rds_connection *conn, u64 seq) |
| 420 | { |
| 421 | struct rds_message *rm, *tmp; |
| 422 | int ret = 1; |
| 423 | |
| 424 | spin_lock(&conn->c_lock); |
| 425 | |
| 426 | list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) { |
| 427 | if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq) |
| 428 | ret = 0; |
| 429 | break; |
| 430 | } |
| 431 | |
| 432 | list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) { |
| 433 | if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq) |
| 434 | ret = 0; |
| 435 | break; |
| 436 | } |
| 437 | |
| 438 | spin_unlock(&conn->c_lock); |
| 439 | |
| 440 | return ret; |
| 441 | } |
| 442 | |
| 443 | /* |
| 444 | * This is pretty similar to what happens below in the ACK |
| 445 | * handling code - except that we call here as soon as we get |
| 446 | * the IB send completion on the RDMA op and the accompanying |
| 447 | * message. |
| 448 | */ |
| 449 | void rds_rdma_send_complete(struct rds_message *rm, int status) |
| 450 | { |
| 451 | struct rds_sock *rs = NULL; |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 452 | struct rm_rdma_op *ro; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 453 | struct rds_notifier *notifier; |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 454 | unsigned long flags; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 455 | |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 456 | spin_lock_irqsave(&rm->m_rs_lock, flags); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 457 | |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 458 | ro = &rm->rdma; |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 459 | if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) && |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 460 | ro->op_active && ro->op_notify && ro->op_notifier) { |
| 461 | notifier = ro->op_notifier; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 462 | rs = rm->m_rs; |
| 463 | sock_hold(rds_rs_to_sk(rs)); |
| 464 | |
| 465 | notifier->n_status = status; |
| 466 | spin_lock(&rs->rs_lock); |
| 467 | list_add_tail(¬ifier->n_list, &rs->rs_notify_queue); |
| 468 | spin_unlock(&rs->rs_lock); |
| 469 | |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 470 | ro->op_notifier = NULL; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 473 | spin_unlock_irqrestore(&rm->m_rs_lock, flags); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 474 | |
| 475 | if (rs) { |
| 476 | rds_wake_sk_sleep(rs); |
| 477 | sock_put(rds_rs_to_sk(rs)); |
| 478 | } |
| 479 | } |
Andy Grover | 616b757 | 2009-08-21 12:28:32 +0000 | [diff] [blame] | 480 | EXPORT_SYMBOL_GPL(rds_rdma_send_complete); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 481 | |
| 482 | /* |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 483 | * Just like above, except looks at atomic op |
| 484 | */ |
| 485 | void rds_atomic_send_complete(struct rds_message *rm, int status) |
| 486 | { |
| 487 | struct rds_sock *rs = NULL; |
| 488 | struct rm_atomic_op *ao; |
| 489 | struct rds_notifier *notifier; |
| 490 | |
| 491 | spin_lock(&rm->m_rs_lock); |
| 492 | |
| 493 | ao = &rm->atomic; |
| 494 | if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) |
| 495 | && ao->op_active && ao->op_notify && ao->op_notifier) { |
| 496 | notifier = ao->op_notifier; |
| 497 | rs = rm->m_rs; |
| 498 | sock_hold(rds_rs_to_sk(rs)); |
| 499 | |
| 500 | notifier->n_status = status; |
| 501 | spin_lock(&rs->rs_lock); |
| 502 | list_add_tail(¬ifier->n_list, &rs->rs_notify_queue); |
| 503 | spin_unlock(&rs->rs_lock); |
| 504 | |
| 505 | ao->op_notifier = NULL; |
| 506 | } |
| 507 | |
| 508 | spin_unlock(&rm->m_rs_lock); |
| 509 | |
| 510 | if (rs) { |
| 511 | rds_wake_sk_sleep(rs); |
| 512 | sock_put(rds_rs_to_sk(rs)); |
| 513 | } |
| 514 | } |
| 515 | EXPORT_SYMBOL_GPL(rds_atomic_send_complete); |
| 516 | |
| 517 | /* |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 518 | * This is the same as rds_rdma_send_complete except we |
| 519 | * don't do any locking - we have all the ingredients (message, |
| 520 | * socket, socket lock) and can just move the notifier. |
| 521 | */ |
| 522 | static inline void |
Andy Grover | 940786e | 2010-02-19 18:04:58 -0800 | [diff] [blame] | 523 | __rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status) |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 524 | { |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 525 | struct rm_rdma_op *ro; |
Andy Grover | 940786e | 2010-02-19 18:04:58 -0800 | [diff] [blame] | 526 | struct rm_atomic_op *ao; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 527 | |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 528 | ro = &rm->rdma; |
| 529 | if (ro->op_active && ro->op_notify && ro->op_notifier) { |
| 530 | ro->op_notifier->n_status = status; |
| 531 | list_add_tail(&ro->op_notifier->n_list, &rs->rs_notify_queue); |
| 532 | ro->op_notifier = NULL; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 533 | } |
| 534 | |
Andy Grover | 940786e | 2010-02-19 18:04:58 -0800 | [diff] [blame] | 535 | ao = &rm->atomic; |
| 536 | if (ao->op_active && ao->op_notify && ao->op_notifier) { |
| 537 | ao->op_notifier->n_status = status; |
| 538 | list_add_tail(&ao->op_notifier->n_list, &rs->rs_notify_queue); |
| 539 | ao->op_notifier = NULL; |
| 540 | } |
| 541 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 542 | /* No need to wake the app - caller does this */ |
| 543 | } |
| 544 | |
| 545 | /* |
| 546 | * This is called from the IB send completion when we detect |
| 547 | * a RDMA operation that failed with remote access error. |
| 548 | * So speed is not an issue here. |
| 549 | */ |
| 550 | struct rds_message *rds_send_get_message(struct rds_connection *conn, |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 551 | struct rm_rdma_op *op) |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 552 | { |
| 553 | struct rds_message *rm, *tmp, *found = NULL; |
| 554 | unsigned long flags; |
| 555 | |
| 556 | spin_lock_irqsave(&conn->c_lock, flags); |
| 557 | |
| 558 | list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) { |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 559 | if (&rm->rdma == op) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 560 | atomic_inc(&rm->m_refcount); |
| 561 | found = rm; |
| 562 | goto out; |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) { |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 567 | if (&rm->rdma == op) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 568 | atomic_inc(&rm->m_refcount); |
| 569 | found = rm; |
| 570 | break; |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | out: |
| 575 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 576 | |
| 577 | return found; |
| 578 | } |
Andy Grover | 616b757 | 2009-08-21 12:28:32 +0000 | [diff] [blame] | 579 | EXPORT_SYMBOL_GPL(rds_send_get_message); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 580 | |
| 581 | /* |
| 582 | * This removes messages from the socket's list if they're on it. The list |
| 583 | * argument must be private to the caller, we must be able to modify it |
| 584 | * without locks. The messages must have a reference held for their |
| 585 | * position on the list. This function will drop that reference after |
| 586 | * removing the messages from the 'messages' list regardless of if it found |
| 587 | * the messages on the socket list or not. |
| 588 | */ |
| 589 | void rds_send_remove_from_sock(struct list_head *messages, int status) |
| 590 | { |
Andy Grover | 561c7df | 2010-03-11 13:50:06 +0000 | [diff] [blame] | 591 | unsigned long flags; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 592 | struct rds_sock *rs = NULL; |
| 593 | struct rds_message *rm; |
| 594 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 595 | while (!list_empty(messages)) { |
Andy Grover | 561c7df | 2010-03-11 13:50:06 +0000 | [diff] [blame] | 596 | int was_on_sock = 0; |
| 597 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 598 | rm = list_entry(messages->next, struct rds_message, |
| 599 | m_conn_item); |
| 600 | list_del_init(&rm->m_conn_item); |
| 601 | |
| 602 | /* |
| 603 | * If we see this flag cleared then we're *sure* that someone |
| 604 | * else beat us to removing it from the sock. If we race |
| 605 | * with their flag update we'll get the lock and then really |
| 606 | * see that the flag has been cleared. |
| 607 | * |
| 608 | * The message spinlock makes sure nobody clears rm->m_rs |
| 609 | * while we're messing with it. It does not prevent the |
| 610 | * message from being removed from the socket, though. |
| 611 | */ |
Andy Grover | 561c7df | 2010-03-11 13:50:06 +0000 | [diff] [blame] | 612 | spin_lock_irqsave(&rm->m_rs_lock, flags); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 613 | if (!test_bit(RDS_MSG_ON_SOCK, &rm->m_flags)) |
| 614 | goto unlock_and_drop; |
| 615 | |
| 616 | if (rs != rm->m_rs) { |
| 617 | if (rs) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 618 | rds_wake_sk_sleep(rs); |
| 619 | sock_put(rds_rs_to_sk(rs)); |
| 620 | } |
| 621 | rs = rm->m_rs; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 622 | sock_hold(rds_rs_to_sk(rs)); |
| 623 | } |
Tina Yang | 048c15e | 2010-03-11 13:50:00 +0000 | [diff] [blame] | 624 | spin_lock(&rs->rs_lock); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 625 | |
| 626 | if (test_and_clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags)) { |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 627 | struct rm_rdma_op *ro = &rm->rdma; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 628 | struct rds_notifier *notifier; |
| 629 | |
| 630 | list_del_init(&rm->m_sock_item); |
| 631 | rds_send_sndbuf_remove(rs, rm); |
| 632 | |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 633 | if (ro->op_active && ro->op_notifier && |
| 634 | (ro->op_notify || (ro->op_recverr && status))) { |
| 635 | notifier = ro->op_notifier; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 636 | list_add_tail(¬ifier->n_list, |
| 637 | &rs->rs_notify_queue); |
| 638 | if (!notifier->n_status) |
| 639 | notifier->n_status = status; |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 640 | rm->rdma.op_notifier = NULL; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 641 | } |
Andy Grover | 561c7df | 2010-03-11 13:50:06 +0000 | [diff] [blame] | 642 | was_on_sock = 1; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 643 | rm->m_rs = NULL; |
| 644 | } |
Tina Yang | 048c15e | 2010-03-11 13:50:00 +0000 | [diff] [blame] | 645 | spin_unlock(&rs->rs_lock); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 646 | |
| 647 | unlock_and_drop: |
Andy Grover | 561c7df | 2010-03-11 13:50:06 +0000 | [diff] [blame] | 648 | spin_unlock_irqrestore(&rm->m_rs_lock, flags); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 649 | rds_message_put(rm); |
Andy Grover | 561c7df | 2010-03-11 13:50:06 +0000 | [diff] [blame] | 650 | if (was_on_sock) |
| 651 | rds_message_put(rm); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | if (rs) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 655 | rds_wake_sk_sleep(rs); |
| 656 | sock_put(rds_rs_to_sk(rs)); |
| 657 | } |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 658 | } |
| 659 | |
| 660 | /* |
| 661 | * Transports call here when they've determined that the receiver queued |
| 662 | * messages up to, and including, the given sequence number. Messages are |
| 663 | * moved to the retrans queue when rds_send_xmit picks them off the send |
| 664 | * queue. This means that in the TCP case, the message may not have been |
| 665 | * assigned the m_ack_seq yet - but that's fine as long as tcp_is_acked |
| 666 | * checks the RDS_MSG_HAS_ACK_SEQ bit. |
| 667 | * |
| 668 | * XXX It's not clear to me how this is safely serialized with socket |
| 669 | * destruction. Maybe it should bail if it sees SOCK_DEAD. |
| 670 | */ |
| 671 | void rds_send_drop_acked(struct rds_connection *conn, u64 ack, |
| 672 | is_acked_func is_acked) |
| 673 | { |
| 674 | struct rds_message *rm, *tmp; |
| 675 | unsigned long flags; |
| 676 | LIST_HEAD(list); |
| 677 | |
| 678 | spin_lock_irqsave(&conn->c_lock, flags); |
| 679 | |
| 680 | list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) { |
| 681 | if (!rds_send_is_acked(rm, ack, is_acked)) |
| 682 | break; |
| 683 | |
| 684 | list_move(&rm->m_conn_item, &list); |
| 685 | clear_bit(RDS_MSG_ON_CONN, &rm->m_flags); |
| 686 | } |
| 687 | |
| 688 | /* order flag updates with spin locks */ |
| 689 | if (!list_empty(&list)) |
| 690 | smp_mb__after_clear_bit(); |
| 691 | |
| 692 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 693 | |
| 694 | /* now remove the messages from the sock list as needed */ |
| 695 | rds_send_remove_from_sock(&list, RDS_RDMA_SUCCESS); |
| 696 | } |
Andy Grover | 616b757 | 2009-08-21 12:28:32 +0000 | [diff] [blame] | 697 | EXPORT_SYMBOL_GPL(rds_send_drop_acked); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 698 | |
| 699 | void rds_send_drop_to(struct rds_sock *rs, struct sockaddr_in *dest) |
| 700 | { |
| 701 | struct rds_message *rm, *tmp; |
| 702 | struct rds_connection *conn; |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 703 | unsigned long flags; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 704 | LIST_HEAD(list); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 705 | |
| 706 | /* get all the messages we're dropping under the rs lock */ |
| 707 | spin_lock_irqsave(&rs->rs_lock, flags); |
| 708 | |
| 709 | list_for_each_entry_safe(rm, tmp, &rs->rs_send_queue, m_sock_item) { |
| 710 | if (dest && (dest->sin_addr.s_addr != rm->m_daddr || |
| 711 | dest->sin_port != rm->m_inc.i_hdr.h_dport)) |
| 712 | continue; |
| 713 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 714 | list_move(&rm->m_sock_item, &list); |
| 715 | rds_send_sndbuf_remove(rs, rm); |
| 716 | clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | /* order flag updates with the rs lock */ |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 720 | smp_mb__after_clear_bit(); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 721 | |
| 722 | spin_unlock_irqrestore(&rs->rs_lock, flags); |
| 723 | |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 724 | if (list_empty(&list)) |
| 725 | return; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 726 | |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 727 | /* Remove the messages from the conn */ |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 728 | list_for_each_entry(rm, &list, m_sock_item) { |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 729 | |
| 730 | conn = rm->m_inc.i_conn; |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 731 | |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 732 | spin_lock_irqsave(&conn->c_lock, flags); |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 733 | /* |
| 734 | * Maybe someone else beat us to removing rm from the conn. |
| 735 | * If we race with their flag update we'll get the lock and |
| 736 | * then really see that the flag has been cleared. |
| 737 | */ |
| 738 | if (!test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags)) { |
| 739 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 740 | continue; |
| 741 | } |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 742 | list_del_init(&rm->m_conn_item); |
| 743 | spin_unlock_irqrestore(&conn->c_lock, flags); |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 744 | |
| 745 | /* |
| 746 | * Couldn't grab m_rs_lock in top loop (lock ordering), |
| 747 | * but we can now. |
| 748 | */ |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 749 | spin_lock_irqsave(&rm->m_rs_lock, flags); |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 750 | |
Tina Yang | 550a800 | 2010-03-11 13:50:03 +0000 | [diff] [blame] | 751 | spin_lock(&rs->rs_lock); |
Andy Grover | 940786e | 2010-02-19 18:04:58 -0800 | [diff] [blame] | 752 | __rds_send_complete(rs, rm, RDS_RDMA_CANCELED); |
Tina Yang | 550a800 | 2010-03-11 13:50:03 +0000 | [diff] [blame] | 753 | spin_unlock(&rs->rs_lock); |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 754 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 755 | rm->m_rs = NULL; |
Andy Grover | 9de0864 | 2010-03-29 16:50:54 -0700 | [diff] [blame] | 756 | spin_unlock_irqrestore(&rm->m_rs_lock, flags); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 757 | |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 758 | rds_message_put(rm); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Andy Grover | 7c82eaf | 2010-02-19 18:01:41 -0800 | [diff] [blame] | 761 | rds_wake_sk_sleep(rs); |
Tina Yang | 550a800 | 2010-03-11 13:50:03 +0000 | [diff] [blame] | 762 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 763 | while (!list_empty(&list)) { |
| 764 | rm = list_entry(list.next, struct rds_message, m_sock_item); |
| 765 | list_del_init(&rm->m_sock_item); |
| 766 | |
| 767 | rds_message_wait(rm); |
| 768 | rds_message_put(rm); |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | /* |
| 773 | * we only want this to fire once so we use the callers 'queued'. It's |
| 774 | * possible that another thread can race with us and remove the |
| 775 | * message from the flow with RDS_CANCEL_SENT_TO. |
| 776 | */ |
| 777 | static int rds_send_queue_rm(struct rds_sock *rs, struct rds_connection *conn, |
| 778 | struct rds_message *rm, __be16 sport, |
| 779 | __be16 dport, int *queued) |
| 780 | { |
| 781 | unsigned long flags; |
| 782 | u32 len; |
| 783 | |
| 784 | if (*queued) |
| 785 | goto out; |
| 786 | |
| 787 | len = be32_to_cpu(rm->m_inc.i_hdr.h_len); |
| 788 | |
| 789 | /* this is the only place which holds both the socket's rs_lock |
| 790 | * and the connection's c_lock */ |
| 791 | spin_lock_irqsave(&rs->rs_lock, flags); |
| 792 | |
| 793 | /* |
| 794 | * If there is a little space in sndbuf, we don't queue anything, |
| 795 | * and userspace gets -EAGAIN. But poll() indicates there's send |
| 796 | * room. This can lead to bad behavior (spinning) if snd_bytes isn't |
| 797 | * freed up by incoming acks. So we check the *old* value of |
| 798 | * rs_snd_bytes here to allow the last msg to exceed the buffer, |
| 799 | * and poll() now knows no more data can be sent. |
| 800 | */ |
| 801 | if (rs->rs_snd_bytes < rds_sk_sndbuf(rs)) { |
| 802 | rs->rs_snd_bytes += len; |
| 803 | |
| 804 | /* let recv side know we are close to send space exhaustion. |
| 805 | * This is probably not the optimal way to do it, as this |
| 806 | * means we set the flag on *all* messages as soon as our |
| 807 | * throughput hits a certain threshold. |
| 808 | */ |
| 809 | if (rs->rs_snd_bytes >= rds_sk_sndbuf(rs) / 2) |
| 810 | __set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags); |
| 811 | |
| 812 | list_add_tail(&rm->m_sock_item, &rs->rs_send_queue); |
| 813 | set_bit(RDS_MSG_ON_SOCK, &rm->m_flags); |
| 814 | rds_message_addref(rm); |
| 815 | rm->m_rs = rs; |
| 816 | |
| 817 | /* The code ordering is a little weird, but we're |
| 818 | trying to minimize the time we hold c_lock */ |
| 819 | rds_message_populate_header(&rm->m_inc.i_hdr, sport, dport, 0); |
| 820 | rm->m_inc.i_conn = conn; |
| 821 | rds_message_addref(rm); |
| 822 | |
| 823 | spin_lock(&conn->c_lock); |
| 824 | rm->m_inc.i_hdr.h_sequence = cpu_to_be64(conn->c_next_tx_seq++); |
| 825 | list_add_tail(&rm->m_conn_item, &conn->c_send_queue); |
| 826 | set_bit(RDS_MSG_ON_CONN, &rm->m_flags); |
| 827 | spin_unlock(&conn->c_lock); |
| 828 | |
| 829 | rdsdebug("queued msg %p len %d, rs %p bytes %d seq %llu\n", |
| 830 | rm, len, rs, rs->rs_snd_bytes, |
| 831 | (unsigned long long)be64_to_cpu(rm->m_inc.i_hdr.h_sequence)); |
| 832 | |
| 833 | *queued = 1; |
| 834 | } |
| 835 | |
| 836 | spin_unlock_irqrestore(&rs->rs_lock, flags); |
| 837 | out: |
| 838 | return *queued; |
| 839 | } |
| 840 | |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 841 | /* |
| 842 | * rds_message is getting to be quite complicated, and we'd like to allocate |
| 843 | * it all in one go. This figures out how big it needs to be up front. |
| 844 | */ |
| 845 | static int rds_rm_size(struct msghdr *msg, int data_len) |
| 846 | { |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 847 | struct cmsghdr *cmsg; |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 848 | int size = 0; |
Andy Grover | aa0a4ef | 2010-04-13 12:00:35 -0700 | [diff] [blame^] | 849 | int cmsg_groups = 0; |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 850 | int retval; |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 851 | |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 852 | for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) { |
| 853 | if (!CMSG_OK(msg, cmsg)) |
| 854 | return -EINVAL; |
| 855 | |
| 856 | if (cmsg->cmsg_level != SOL_RDS) |
| 857 | continue; |
| 858 | |
| 859 | switch (cmsg->cmsg_type) { |
| 860 | case RDS_CMSG_RDMA_ARGS: |
Andy Grover | aa0a4ef | 2010-04-13 12:00:35 -0700 | [diff] [blame^] | 861 | cmsg_groups |= 1; |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 862 | retval = rds_rdma_extra_size(CMSG_DATA(cmsg)); |
| 863 | if (retval < 0) |
| 864 | return retval; |
| 865 | size += retval; |
Andy Grover | aa0a4ef | 2010-04-13 12:00:35 -0700 | [diff] [blame^] | 866 | |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 867 | break; |
| 868 | |
| 869 | case RDS_CMSG_RDMA_DEST: |
| 870 | case RDS_CMSG_RDMA_MAP: |
Andy Grover | aa0a4ef | 2010-04-13 12:00:35 -0700 | [diff] [blame^] | 871 | cmsg_groups |= 2; |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 872 | /* these are valid but do no add any size */ |
| 873 | break; |
| 874 | |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 875 | case RDS_CMSG_ATOMIC_CSWP: |
| 876 | case RDS_CMSG_ATOMIC_FADD: |
Andy Grover | aa0a4ef | 2010-04-13 12:00:35 -0700 | [diff] [blame^] | 877 | cmsg_groups |= 1; |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 878 | size += sizeof(struct scatterlist); |
| 879 | break; |
| 880 | |
Andy Grover | ff87e97 | 2010-01-12 14:13:15 -0800 | [diff] [blame] | 881 | default: |
| 882 | return -EINVAL; |
| 883 | } |
| 884 | |
| 885 | } |
| 886 | |
| 887 | size += ceil(data_len, PAGE_SIZE) * sizeof(struct scatterlist); |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 888 | |
Andy Grover | aa0a4ef | 2010-04-13 12:00:35 -0700 | [diff] [blame^] | 889 | /* Ensure (DEST, MAP) are never used with (ARGS, ATOMIC) */ |
| 890 | if (cmsg_groups == 3) |
| 891 | return -EINVAL; |
| 892 | |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 893 | return size; |
| 894 | } |
| 895 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 896 | static int rds_cmsg_send(struct rds_sock *rs, struct rds_message *rm, |
| 897 | struct msghdr *msg, int *allocated_mr) |
| 898 | { |
| 899 | struct cmsghdr *cmsg; |
| 900 | int ret = 0; |
| 901 | |
| 902 | for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) { |
| 903 | if (!CMSG_OK(msg, cmsg)) |
| 904 | return -EINVAL; |
| 905 | |
| 906 | if (cmsg->cmsg_level != SOL_RDS) |
| 907 | continue; |
| 908 | |
| 909 | /* As a side effect, RDMA_DEST and RDMA_MAP will set |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 910 | * rm->rdma.m_rdma_cookie and rm->rdma.m_rdma_mr. |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 911 | */ |
| 912 | switch (cmsg->cmsg_type) { |
| 913 | case RDS_CMSG_RDMA_ARGS: |
| 914 | ret = rds_cmsg_rdma_args(rs, rm, cmsg); |
| 915 | break; |
| 916 | |
| 917 | case RDS_CMSG_RDMA_DEST: |
| 918 | ret = rds_cmsg_rdma_dest(rs, rm, cmsg); |
| 919 | break; |
| 920 | |
| 921 | case RDS_CMSG_RDMA_MAP: |
| 922 | ret = rds_cmsg_rdma_map(rs, rm, cmsg); |
| 923 | if (!ret) |
| 924 | *allocated_mr = 1; |
| 925 | break; |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 926 | case RDS_CMSG_ATOMIC_CSWP: |
| 927 | case RDS_CMSG_ATOMIC_FADD: |
| 928 | ret = rds_cmsg_atomic(rs, rm, cmsg); |
| 929 | break; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 930 | |
| 931 | default: |
| 932 | return -EINVAL; |
| 933 | } |
| 934 | |
| 935 | if (ret) |
| 936 | break; |
| 937 | } |
| 938 | |
| 939 | return ret; |
| 940 | } |
| 941 | |
| 942 | int rds_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, |
| 943 | size_t payload_len) |
| 944 | { |
| 945 | struct sock *sk = sock->sk; |
| 946 | struct rds_sock *rs = rds_sk_to_rs(sk); |
| 947 | struct sockaddr_in *usin = (struct sockaddr_in *)msg->msg_name; |
| 948 | __be32 daddr; |
| 949 | __be16 dport; |
| 950 | struct rds_message *rm = NULL; |
| 951 | struct rds_connection *conn; |
| 952 | int ret = 0; |
| 953 | int queued = 0, allocated_mr = 0; |
| 954 | int nonblock = msg->msg_flags & MSG_DONTWAIT; |
Andy Grover | 1123fd7 | 2010-03-11 13:49:56 +0000 | [diff] [blame] | 955 | long timeo = sock_sndtimeo(sk, nonblock); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 956 | |
| 957 | /* Mirror Linux UDP mirror of BSD error message compatibility */ |
| 958 | /* XXX: Perhaps MSG_MORE someday */ |
| 959 | if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_CMSG_COMPAT)) { |
| 960 | printk(KERN_INFO "msg_flags 0x%08X\n", msg->msg_flags); |
| 961 | ret = -EOPNOTSUPP; |
| 962 | goto out; |
| 963 | } |
| 964 | |
| 965 | if (msg->msg_namelen) { |
| 966 | /* XXX fail non-unicast destination IPs? */ |
| 967 | if (msg->msg_namelen < sizeof(*usin) || usin->sin_family != AF_INET) { |
| 968 | ret = -EINVAL; |
| 969 | goto out; |
| 970 | } |
| 971 | daddr = usin->sin_addr.s_addr; |
| 972 | dport = usin->sin_port; |
| 973 | } else { |
| 974 | /* We only care about consistency with ->connect() */ |
| 975 | lock_sock(sk); |
| 976 | daddr = rs->rs_conn_addr; |
| 977 | dport = rs->rs_conn_port; |
| 978 | release_sock(sk); |
| 979 | } |
| 980 | |
| 981 | /* racing with another thread binding seems ok here */ |
| 982 | if (daddr == 0 || rs->rs_bound_addr == 0) { |
| 983 | ret = -ENOTCONN; /* XXX not a great errno */ |
| 984 | goto out; |
| 985 | } |
| 986 | |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 987 | /* size of rm including all sgs */ |
| 988 | ret = rds_rm_size(msg, payload_len); |
| 989 | if (ret < 0) |
| 990 | goto out; |
| 991 | |
| 992 | rm = rds_message_alloc(ret, GFP_KERNEL); |
| 993 | if (!rm) { |
| 994 | ret = -ENOMEM; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 995 | goto out; |
| 996 | } |
| 997 | |
Andy Grover | 372cd7d | 2010-02-03 19:40:32 -0800 | [diff] [blame] | 998 | /* Attach data to the rm */ |
| 999 | if (payload_len) { |
| 1000 | rm->data.op_sg = rds_message_alloc_sgs(rm, ceil(payload_len, PAGE_SIZE)); |
| 1001 | ret = rds_message_copy_from_user(rm, msg->msg_iov, payload_len); |
| 1002 | if (ret) |
| 1003 | goto out; |
| 1004 | } |
| 1005 | rm->data.op_active = 1; |
Andy Grover | fc44508 | 2010-01-12 12:56:06 -0800 | [diff] [blame] | 1006 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1007 | rm->m_daddr = daddr; |
| 1008 | |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1009 | /* rds_conn_create has a spinlock that runs with IRQ off. |
| 1010 | * Caching the conn in the socket helps a lot. */ |
| 1011 | if (rs->rs_conn && rs->rs_conn->c_faddr == daddr) |
| 1012 | conn = rs->rs_conn; |
| 1013 | else { |
| 1014 | conn = rds_conn_create_outgoing(rs->rs_bound_addr, daddr, |
| 1015 | rs->rs_transport, |
| 1016 | sock->sk->sk_allocation); |
| 1017 | if (IS_ERR(conn)) { |
| 1018 | ret = PTR_ERR(conn); |
| 1019 | goto out; |
| 1020 | } |
| 1021 | rs->rs_conn = conn; |
| 1022 | } |
| 1023 | |
Andy Grover | 49f6969 | 2009-04-09 14:09:41 +0000 | [diff] [blame] | 1024 | /* Parse any control messages the user may have included. */ |
| 1025 | ret = rds_cmsg_send(rs, rm, msg, &allocated_mr); |
| 1026 | if (ret) |
| 1027 | goto out; |
| 1028 | |
Andy Grover | 2c3a5f9 | 2010-03-01 16:10:40 -0800 | [diff] [blame] | 1029 | if (rm->rdma.op_active && !conn->c_trans->xmit_rdma) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1030 | if (printk_ratelimit()) |
| 1031 | printk(KERN_NOTICE "rdma_op %p conn xmit_rdma %p\n", |
Andy Grover | f8b3aaf | 2010-03-01 14:11:53 -0800 | [diff] [blame] | 1032 | &rm->rdma, conn->c_trans->xmit_rdma); |
Andy Grover | 15133f6 | 2010-01-12 14:33:38 -0800 | [diff] [blame] | 1033 | ret = -EOPNOTSUPP; |
| 1034 | goto out; |
| 1035 | } |
| 1036 | |
| 1037 | if (rm->atomic.op_active && !conn->c_trans->xmit_atomic) { |
| 1038 | if (printk_ratelimit()) |
| 1039 | printk(KERN_NOTICE "atomic_op %p conn xmit_atomic %p\n", |
| 1040 | &rm->atomic, conn->c_trans->xmit_atomic); |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1041 | ret = -EOPNOTSUPP; |
| 1042 | goto out; |
| 1043 | } |
| 1044 | |
| 1045 | /* If the connection is down, trigger a connect. We may |
| 1046 | * have scheduled a delayed reconnect however - in this case |
| 1047 | * we should not interfere. |
| 1048 | */ |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 1049 | if (rds_conn_state(conn) == RDS_CONN_DOWN && |
| 1050 | !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags)) |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1051 | queue_delayed_work(rds_wq, &conn->c_conn_w, 0); |
| 1052 | |
| 1053 | ret = rds_cong_wait(conn->c_fcong, dport, nonblock, rs); |
Andy Grover | b98ba52 | 2010-03-11 13:50:04 +0000 | [diff] [blame] | 1054 | if (ret) { |
| 1055 | rs->rs_seen_congestion = 1; |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1056 | goto out; |
Andy Grover | b98ba52 | 2010-03-11 13:50:04 +0000 | [diff] [blame] | 1057 | } |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1058 | |
| 1059 | while (!rds_send_queue_rm(rs, conn, rm, rs->rs_bound_port, |
| 1060 | dport, &queued)) { |
| 1061 | rds_stats_inc(s_send_queue_full); |
| 1062 | /* XXX make sure this is reasonable */ |
| 1063 | if (payload_len > rds_sk_sndbuf(rs)) { |
| 1064 | ret = -EMSGSIZE; |
| 1065 | goto out; |
| 1066 | } |
| 1067 | if (nonblock) { |
| 1068 | ret = -EAGAIN; |
| 1069 | goto out; |
| 1070 | } |
| 1071 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 1072 | timeo = wait_event_interruptible_timeout(*sk_sleep(sk), |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1073 | rds_send_queue_rm(rs, conn, rm, |
| 1074 | rs->rs_bound_port, |
| 1075 | dport, |
| 1076 | &queued), |
| 1077 | timeo); |
| 1078 | rdsdebug("sendmsg woke queued %d timeo %ld\n", queued, timeo); |
| 1079 | if (timeo > 0 || timeo == MAX_SCHEDULE_TIMEOUT) |
| 1080 | continue; |
| 1081 | |
| 1082 | ret = timeo; |
| 1083 | if (ret == 0) |
| 1084 | ret = -ETIMEDOUT; |
| 1085 | goto out; |
| 1086 | } |
| 1087 | |
| 1088 | /* |
| 1089 | * By now we've committed to the send. We reuse rds_send_worker() |
| 1090 | * to retry sends in the rds thread if the transport asks us to. |
| 1091 | */ |
| 1092 | rds_stats_inc(s_send_queued); |
| 1093 | |
| 1094 | if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags)) |
| 1095 | rds_send_worker(&conn->c_send_w.work); |
| 1096 | |
| 1097 | rds_message_put(rm); |
| 1098 | return payload_len; |
| 1099 | |
| 1100 | out: |
| 1101 | /* If the user included a RDMA_MAP cmsg, we allocated a MR on the fly. |
| 1102 | * If the sendmsg goes through, we keep the MR. If it fails with EAGAIN |
| 1103 | * or in any other way, we need to destroy the MR again */ |
| 1104 | if (allocated_mr) |
| 1105 | rds_rdma_unuse(rs, rds_rdma_cookie_key(rm->m_rdma_cookie), 1); |
| 1106 | |
| 1107 | if (rm) |
| 1108 | rds_message_put(rm); |
| 1109 | return ret; |
| 1110 | } |
| 1111 | |
| 1112 | /* |
| 1113 | * Reply to a ping packet. |
| 1114 | */ |
| 1115 | int |
| 1116 | rds_send_pong(struct rds_connection *conn, __be16 dport) |
| 1117 | { |
| 1118 | struct rds_message *rm; |
| 1119 | unsigned long flags; |
| 1120 | int ret = 0; |
| 1121 | |
| 1122 | rm = rds_message_alloc(0, GFP_ATOMIC); |
Andy Grover | 8690bfa | 2010-01-12 11:56:44 -0800 | [diff] [blame] | 1123 | if (!rm) { |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1124 | ret = -ENOMEM; |
| 1125 | goto out; |
| 1126 | } |
| 1127 | |
| 1128 | rm->m_daddr = conn->c_faddr; |
| 1129 | |
| 1130 | /* If the connection is down, trigger a connect. We may |
| 1131 | * have scheduled a delayed reconnect however - in this case |
| 1132 | * we should not interfere. |
| 1133 | */ |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 1134 | if (rds_conn_state(conn) == RDS_CONN_DOWN && |
| 1135 | !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags)) |
Andy Grover | 5c11559 | 2009-02-24 15:30:27 +0000 | [diff] [blame] | 1136 | queue_delayed_work(rds_wq, &conn->c_conn_w, 0); |
| 1137 | |
| 1138 | ret = rds_cong_wait(conn->c_fcong, dport, 1, NULL); |
| 1139 | if (ret) |
| 1140 | goto out; |
| 1141 | |
| 1142 | spin_lock_irqsave(&conn->c_lock, flags); |
| 1143 | list_add_tail(&rm->m_conn_item, &conn->c_send_queue); |
| 1144 | set_bit(RDS_MSG_ON_CONN, &rm->m_flags); |
| 1145 | rds_message_addref(rm); |
| 1146 | rm->m_inc.i_conn = conn; |
| 1147 | |
| 1148 | rds_message_populate_header(&rm->m_inc.i_hdr, 0, dport, |
| 1149 | conn->c_next_tx_seq); |
| 1150 | conn->c_next_tx_seq++; |
| 1151 | spin_unlock_irqrestore(&conn->c_lock, flags); |
| 1152 | |
| 1153 | rds_stats_inc(s_send_queued); |
| 1154 | rds_stats_inc(s_send_pong); |
| 1155 | |
| 1156 | queue_delayed_work(rds_wq, &conn->c_send_w, 0); |
| 1157 | rds_message_put(rm); |
| 1158 | return 0; |
| 1159 | |
| 1160 | out: |
| 1161 | if (rm) |
| 1162 | rds_message_put(rm); |
| 1163 | return ret; |
| 1164 | } |