[DCCP]: Reuse ktime_get_real() calls again
authorGerrit Renker <gerrit@erg.abdn.ac.uk>
Wed, 26 Sep 2007 05:39:16 +0000 (22:39 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:52:34 +0000 (16:52 -0700)
commitaa97efd97acefb7d3dcd864adb878c7ce34061b3
tree1cad4e0193364c6b601c1ebc2ec8bc4aa8f600ae
parente0eb68596232788bc352368f2fbc3cb088e42e41
[DCCP]: Reuse ktime_get_real() calls again

This patch reduces the number of timestamps taken in the receive path
for each packet.

The ccid3_hc_tx_update_x() routine is called in
 * the receive path for each CCID3-controlled packet
 * for the nofeedback timer (if no feedback arrives during 4 RTT)

Currently, when there is no loss, each packet gets timestamped twice.
The patch resolves this by recycling the first timestamp taken on packet
reception for RTT sampling.

When the no_feedback_timer() is called, then the timestamp argument is
simply set to NULL - so that ccid3_hc_tx_update_x() takes care of the logic.

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dccp/ccids/ccid3.c