Skip to content

Commit

Permalink
sctp: factor out stream->in allocation
Browse files Browse the repository at this point in the history
There is 1 place allocating it and another reallocating. Move such
procedures to a common function.

v2: updated changelog

Tested-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Marcelo Ricardo Leitner authored and David S. Miller committed Oct 3, 2017
1 parent e090abd commit 1fdb8d8
Showing 1 changed file with 28 additions and 8 deletions.
36 changes: 28 additions & 8 deletions net/sctp/stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,31 @@ static int sctp_stream_alloc_out(struct sctp_stream *stream, __u16 outcnt,
return 0;
}

static int sctp_stream_alloc_in(struct sctp_stream *stream, __u16 incnt,
gfp_t gfp)
{
struct sctp_stream_in *in;

in = kmalloc_array(incnt, sizeof(*stream->in), gfp);

if (!in)
return -ENOMEM;

if (stream->in) {
memcpy(in, stream->in, min(incnt, stream->incnt) *
sizeof(*in));
kfree(stream->in);
}

if (incnt > stream->incnt)
memset(in + stream->incnt, 0,
(incnt - stream->incnt) * sizeof(*in));

stream->in = in;

return 0;
}

int sctp_stream_init(struct sctp_stream *stream, __u16 outcnt, __u16 incnt,
gfp_t gfp)
{
Expand All @@ -84,8 +109,8 @@ int sctp_stream_init(struct sctp_stream *stream, __u16 outcnt, __u16 incnt,
if (!incnt)
return 0;

stream->in = kcalloc(incnt, sizeof(*stream->in), gfp);
if (!stream->in) {
i = sctp_stream_alloc_in(stream, incnt, gfp);
if (i) {
kfree(stream->out);
stream->out = NULL;
return -ENOMEM;
Expand Down Expand Up @@ -623,7 +648,6 @@ struct sctp_chunk *sctp_process_strreset_addstrm_out(
struct sctp_strreset_addstrm *addstrm = param.v;
struct sctp_stream *stream = &asoc->stream;
__u32 result = SCTP_STRRESET_DENIED;
struct sctp_stream_in *streamin;
__u32 request_seq, incnt;
__u16 in, i;

Expand Down Expand Up @@ -670,13 +694,9 @@ struct sctp_chunk *sctp_process_strreset_addstrm_out(
if (!in || incnt > SCTP_MAX_STREAM)
goto out;

streamin = krealloc(stream->in, incnt * sizeof(*streamin),
GFP_ATOMIC);
if (!streamin)
if (sctp_stream_alloc_in(stream, incnt, GFP_ATOMIC))
goto out;

memset(streamin + stream->incnt, 0, in * sizeof(*streamin));
stream->in = streamin;
stream->incnt = incnt;

result = SCTP_STRRESET_PERFORMED;
Expand Down

0 comments on commit 1fdb8d8

Please sign in to comment.