diff options
| author | Jon Grimm <jgrimm@touki.austin.ibm.com> | 2003-04-16 22:44:25 -0500 |
|---|---|---|
| committer | Jon Grimm <jgrimm@touki.austin.ibm.com> | 2003-04-16 22:44:25 -0500 |
| commit | eb643da0d84e9875309af8ac9ede6609df551b04 (patch) | |
| tree | 0b82521f1ea237258f2d3d1edf6d76d0a49adf4b /net/sctp/ulpqueue.c | |
| parent | 2dd53b84231687edf6040fcb7a33bd2438ec48a4 (diff) | |
[SCTP] More typedef removals.
Continue typedef removal. Also, change sctp_chunk.num_times_sent
counter to a resent flag. There was a rather obscure, unlikely,
and in the end fairly benign bug sitting there if num_times_sent
wrapped. However, there's no need to keep this counter, as its
use was really just to know if we'd ever resent this chunk.
Diffstat (limited to 'net/sctp/ulpqueue.c')
| -rw-r--r-- | net/sctp/ulpqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c index ae5cd8fc3b27..55025d15dc38 100644 --- a/net/sctp/ulpqueue.c +++ b/net/sctp/ulpqueue.c @@ -118,7 +118,7 @@ void sctp_ulpq_free(struct sctp_ulpq *ulpq) } /* Process an incoming DATA chunk. */ -int sctp_ulpq_tail_data(struct sctp_ulpq *ulpq, sctp_chunk_t *chunk, +int sctp_ulpq_tail_data(struct sctp_ulpq *ulpq, struct sctp_chunk *chunk, int gfp) { struct sk_buff_head temp; |
