|
@@ -1020,19 +1020,13 @@ static void sctp_cmd_t1_timer_update(struct sctp_association *asoc,
|
|
* This way the whole message is queued up and bundling if
|
|
* This way the whole message is queued up and bundling if
|
|
* encouraged for small fragments.
|
|
* encouraged for small fragments.
|
|
*/
|
|
*/
|
|
-static int sctp_cmd_send_msg(struct sctp_association *asoc,
|
|
|
|
- struct sctp_datamsg *msg, gfp_t gfp)
|
|
|
|
|
|
+static void sctp_cmd_send_msg(struct sctp_association *asoc,
|
|
|
|
+ struct sctp_datamsg *msg, gfp_t gfp)
|
|
{
|
|
{
|
|
struct sctp_chunk *chunk;
|
|
struct sctp_chunk *chunk;
|
|
- int error = 0;
|
|
|
|
-
|
|
|
|
- list_for_each_entry(chunk, &msg->chunks, frag_list) {
|
|
|
|
- error = sctp_outq_tail(&asoc->outqueue, chunk, gfp);
|
|
|
|
- if (error)
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
|
|
|
|
- return error;
|
|
|
|
|
|
+ list_for_each_entry(chunk, &msg->chunks, frag_list)
|
|
|
|
+ sctp_outq_tail(&asoc->outqueue, chunk, gfp);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -1709,7 +1703,7 @@ static int sctp_cmd_interpreter(sctp_event_t event_type,
|
|
sctp_outq_cork(&asoc->outqueue);
|
|
sctp_outq_cork(&asoc->outqueue);
|
|
local_cork = 1;
|
|
local_cork = 1;
|
|
}
|
|
}
|
|
- error = sctp_cmd_send_msg(asoc, cmd->obj.msg, gfp);
|
|
|
|
|
|
+ sctp_cmd_send_msg(asoc, cmd->obj.msg, gfp);
|
|
break;
|
|
break;
|
|
case SCTP_CMD_SEND_NEXT_ASCONF:
|
|
case SCTP_CMD_SEND_NEXT_ASCONF:
|
|
sctp_cmd_send_asconf(asoc);
|
|
sctp_cmd_send_asconf(asoc);
|