aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid3.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@mandriva.com>2005-08-28 01:00:28 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 19:13:17 -0400
commit29e4f8b3c340c4b2a0c6dd197b985e03826afd13 (patch)
treea8a66f054d7c912f3b6b0d10d86d137a203b0ed2 /net/dccp/ccids/ccid3.c
parent072ab6c68e3dd158b68d97eaff16734474d2f8f8 (diff)
[CCID3]: Move ccid3_hc_rx_detect_loss to packet_history.c
Renaming it to dccp_rx_hist_detect_loss. Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids/ccid3.c')
-rw-r--r--net/dccp/ccids/ccid3.c83
1 files changed, 4 insertions, 79 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c
index 849f5580efbd..4ff6ede0f07d 100644
--- a/net/dccp/ccids/ccid3.c
+++ b/net/dccp/ccids/ccid3.c
@@ -927,86 +927,11 @@ static void ccid3_hc_rx_detect_loss(struct sock *sk)
927{ 927{
928 struct dccp_sock *dp = dccp_sk(sk); 928 struct dccp_sock *dp = dccp_sk(sk);
929 struct ccid3_hc_rx_sock *hcrx = dp->dccps_hc_rx_ccid_private; 929 struct ccid3_hc_rx_sock *hcrx = dp->dccps_hc_rx_ccid_private;
930 struct dccp_rx_hist_entry *entry, *next, *packet; 930 u8 win_loss;
931 struct dccp_rx_hist_entry *a_loss = NULL; 931 const u64 seq_loss = dccp_rx_hist_detect_loss(&hcrx->ccid3hcrx_hist,
932 struct dccp_rx_hist_entry *b_loss = NULL; 932 &hcrx->ccid3hcrx_li_hist,
933 u64 seq_loss = DCCP_MAX_SEQNO + 1; 933 &win_loss);
934 u8 win_loss = 0;
935 u8 num_later = TFRC_RECV_NUM_LATE_LOSS;
936 934
937 list_for_each_entry_safe(entry, next, &hcrx->ccid3hcrx_hist,
938 dccphrx_node) {
939 if (num_later == 0) {
940 b_loss = entry;
941 break;
942 } else if (dccp_rx_hist_entry_data_packet(entry))
943 --num_later;
944 }
945
946 if (b_loss == NULL)
947 goto out_update_li;
948
949 num_later = 1;
950
951 list_for_each_entry_safe_continue(entry, next, &hcrx->ccid3hcrx_hist,
952 dccphrx_node) {
953 if (num_later == 0) {
954 a_loss = entry;
955 break;
956 } else if (dccp_rx_hist_entry_data_packet(entry))
957 --num_later;
958 }
959
960 if (a_loss == NULL) {
961 if (list_empty(&hcrx->ccid3hcrx_li_hist)) {
962 /* no loss event have occured yet */
963 LIMIT_NETDEBUG("%s: TODO: find a lost data packet by "
964 "comparing to initial seqno\n",
965 dccp_role(sk));
966 goto out_update_li;
967 } else {
968 pr_info("%s: %s, sk=%p, ERROR! Less than 4 data "
969 "packets in history",
970 __FUNCTION__, dccp_role(sk), sk);
971 return;
972 }
973 }
974
975 /* Locate a lost data packet */
976 entry = packet = b_loss;
977 list_for_each_entry_safe_continue(entry, next, &hcrx->ccid3hcrx_hist,
978 dccphrx_node) {
979 u64 delta = dccp_delta_seqno(entry->dccphrx_seqno,
980 packet->dccphrx_seqno);
981
982 if (delta != 0) {
983 if (dccp_rx_hist_entry_data_packet(packet))
984 --delta;
985 /*
986 * FIXME: check this, probably this % usage is because
987 * in earlier drafts the ndp count was just 8 bits
988 * long, but now it cam be up to 24 bits long.
989 */
990#if 0
991 if (delta % DCCP_NDP_LIMIT !=
992 (packet->dccphrx_ndp -
993 entry->dccphrx_ndp) % DCCP_NDP_LIMIT)
994#endif
995 if (delta !=
996 packet->dccphrx_ndp - entry->dccphrx_ndp) {
997 seq_loss = entry->dccphrx_seqno;
998 dccp_inc_seqno(&seq_loss);
999 }
1000 }
1001 packet = entry;
1002 if (packet == a_loss)
1003 break;
1004 }
1005
1006 if (seq_loss != DCCP_MAX_SEQNO + 1)
1007 win_loss = a_loss->dccphrx_ccval;
1008
1009out_update_li:
1010 ccid3_hc_rx_update_li(sk, seq_loss, win_loss); 935 ccid3_hc_rx_update_li(sk, seq_loss, win_loss);
1011} 936}
1012 937