diff options
author | Arnaldo Carvalho de Melo <acme@ghostprotocols.net> | 2007-08-19 17:17:25 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:48:14 -0700 |
commit | b8bda9d70842dab7902f0681e1297dcf0460fc94 (patch) | |
tree | 346b84f8a182f20de46b569270528e64c1455196 /net/dccp/ackvec.h | |
parent | 668348a4232d3dd0ee48b3dc13228b5a7eb57565 (diff) | |
download | linux-3.10-b8bda9d70842dab7902f0681e1297dcf0460fc94.tar.gz linux-3.10-b8bda9d70842dab7902f0681e1297dcf0460fc94.tar.bz2 linux-3.10-b8bda9d70842dab7902f0681e1297dcf0460fc94.zip |
[DCCP] ackvec: Convert to ktime_t
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ackvec.h')
-rw-r--r-- | net/dccp/ackvec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/dccp/ackvec.h b/net/dccp/ackvec.h index 96504a3b16e..9ef0737043e 100644 --- a/net/dccp/ackvec.h +++ b/net/dccp/ackvec.h @@ -12,8 +12,8 @@ */ #include <linux/compiler.h> +#include <linux/ktime.h> #include <linux/list.h> -#include <linux/time.h> #include <linux/types.h> /* Read about the ECN nonce to see why it is 253 */ @@ -52,7 +52,7 @@ struct dccp_ackvec { u64 dccpav_buf_ackno; struct list_head dccpav_records; - struct timeval dccpav_time; + ktime_t dccpav_time; u16 dccpav_buf_head; u16 dccpav_vec_len; u8 dccpav_buf_nonce; |