diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2008-10-13 12:13:56 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-10-13 12:13:56 -0400 |
commit | e758936e02700ff88a0b08b722a3847b95283ef2 (patch) | |
tree | 50c919bef1b459a778b85159d5929de95b6c4a01 /net/sctp/ulpqueue.c | |
parent | 239cfbde1f5843c4a24199f117d5f67f637d72d5 (diff) | |
parent | 4480f15b3306f43bbb0310d461142b4e897ca45b (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
include/asm-x86/statfs.h
Diffstat (limited to 'net/sctp/ulpqueue.c')
-rw-r--r-- | net/sctp/ulpqueue.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c index 5061a26c5028..7b23803343cc 100644 --- a/net/sctp/ulpqueue.c +++ b/net/sctp/ulpqueue.c | |||
@@ -317,7 +317,7 @@ static void sctp_ulpq_store_reasm(struct sctp_ulpq *ulpq, | |||
317 | } | 317 | } |
318 | 318 | ||
319 | /* Insert before pos. */ | 319 | /* Insert before pos. */ |
320 | __skb_insert(sctp_event2skb(event), pos->prev, pos, &ulpq->reasm); | 320 | __skb_queue_before(&ulpq->reasm, pos, sctp_event2skb(event)); |
321 | 321 | ||
322 | } | 322 | } |
323 | 323 | ||
@@ -825,8 +825,7 @@ static void sctp_ulpq_store_ordered(struct sctp_ulpq *ulpq, | |||
825 | 825 | ||
826 | 826 | ||
827 | /* Insert before pos. */ | 827 | /* Insert before pos. */ |
828 | __skb_insert(sctp_event2skb(event), pos->prev, pos, &ulpq->lobby); | 828 | __skb_queue_before(&ulpq->lobby, pos, sctp_event2skb(event)); |
829 | |||
830 | } | 829 | } |
831 | 830 | ||
832 | static struct sctp_ulpevent *sctp_ulpq_order(struct sctp_ulpq *ulpq, | 831 | static struct sctp_ulpevent *sctp_ulpq_order(struct sctp_ulpq *ulpq, |