diff options
Diffstat (limited to 'net/ipv4')
| -rw-r--r-- | net/ipv4/icmp.c | 10 | ||||
| -rw-r--r-- | net/ipv4/ip_options.c | 12 | ||||
| -rw-r--r-- | net/ipv4/tcp.c | 2 | ||||
| -rw-r--r-- | net/ipv4/tcp_input.c | 2 |
4 files changed, 13 insertions, 13 deletions
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c index f064031f2031..c67d00e8c600 100644 --- a/net/ipv4/icmp.c +++ b/net/ipv4/icmp.c | |||
| @@ -847,7 +847,7 @@ static void icmp_echo(struct sk_buff *skb) | |||
| 847 | */ | 847 | */ |
| 848 | static void icmp_timestamp(struct sk_buff *skb) | 848 | static void icmp_timestamp(struct sk_buff *skb) |
| 849 | { | 849 | { |
| 850 | struct timeval tv; | 850 | struct timespec tv; |
| 851 | struct icmp_bxm icmp_param; | 851 | struct icmp_bxm icmp_param; |
| 852 | /* | 852 | /* |
| 853 | * Too short. | 853 | * Too short. |
| @@ -858,9 +858,9 @@ static void icmp_timestamp(struct sk_buff *skb) | |||
| 858 | /* | 858 | /* |
| 859 | * Fill in the current time as ms since midnight UT: | 859 | * Fill in the current time as ms since midnight UT: |
| 860 | */ | 860 | */ |
| 861 | do_gettimeofday(&tv); | 861 | getnstimeofday(&tv); |
| 862 | icmp_param.data.times[1] = htonl((tv.tv_sec % 86400) * 1000 + | 862 | icmp_param.data.times[1] = htonl((tv.tv_sec % 86400) * MSEC_PER_SEC + |
| 863 | tv.tv_usec / 1000); | 863 | tv.tv_nsec / NSEC_PER_MSEC); |
| 864 | icmp_param.data.times[2] = icmp_param.data.times[1]; | 864 | icmp_param.data.times[2] = icmp_param.data.times[1]; |
| 865 | if (skb_copy_bits(skb, 0, &icmp_param.data.times[0], 4)) | 865 | if (skb_copy_bits(skb, 0, &icmp_param.data.times[0], 4)) |
| 866 | BUG(); | 866 | BUG(); |
| @@ -1144,7 +1144,7 @@ static void __net_exit icmp_sk_exit(struct net *net) | |||
| 1144 | net->ipv4.icmp_sk = NULL; | 1144 | net->ipv4.icmp_sk = NULL; |
| 1145 | } | 1145 | } |
| 1146 | 1146 | ||
| 1147 | int __net_init icmp_sk_init(struct net *net) | 1147 | static int __net_init icmp_sk_init(struct net *net) |
| 1148 | { | 1148 | { |
| 1149 | int i, err; | 1149 | int i, err; |
| 1150 | 1150 | ||
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index d107543d3f81..33126ad2cfdc 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c | |||
| @@ -55,10 +55,10 @@ void ip_options_build(struct sk_buff * skb, struct ip_options * opt, | |||
| 55 | if (opt->ts_needaddr) | 55 | if (opt->ts_needaddr) |
| 56 | ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, rt); | 56 | ip_rt_get_source(iph+opt->ts+iph[opt->ts+2]-9, rt); |
| 57 | if (opt->ts_needtime) { | 57 | if (opt->ts_needtime) { |
| 58 | struct timeval tv; | 58 | struct timespec tv; |
| 59 | __be32 midtime; | 59 | __be32 midtime; |
| 60 | do_gettimeofday(&tv); | 60 | getnstimeofday(&tv); |
| 61 | midtime = htonl((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000); | 61 | midtime = htonl((tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC); |
| 62 | memcpy(iph+opt->ts+iph[opt->ts+2]-5, &midtime, 4); | 62 | memcpy(iph+opt->ts+iph[opt->ts+2]-5, &midtime, 4); |
| 63 | } | 63 | } |
| 64 | return; | 64 | return; |
| @@ -406,10 +406,10 @@ int ip_options_compile(struct net *net, | |||
| 406 | break; | 406 | break; |
| 407 | } | 407 | } |
| 408 | if (timeptr) { | 408 | if (timeptr) { |
| 409 | struct timeval tv; | 409 | struct timespec tv; |
| 410 | __be32 midtime; | 410 | __be32 midtime; |
| 411 | do_gettimeofday(&tv); | 411 | getnstimeofday(&tv); |
| 412 | midtime = htonl((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000); | 412 | midtime = htonl((tv.tv_sec % 86400) * MSEC_PER_SEC + tv.tv_nsec / NSEC_PER_MSEC); |
| 413 | memcpy(timeptr, &midtime, sizeof(__be32)); | 413 | memcpy(timeptr, &midtime, sizeof(__be32)); |
| 414 | opt->is_changed = 1; | 414 | opt->is_changed = 1; |
| 415 | } | 415 | } |
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 58ac838bf460..f88653138621 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
| @@ -1722,7 +1722,7 @@ static int tcp_close_state(struct sock *sk) | |||
| 1722 | 1722 | ||
| 1723 | /* | 1723 | /* |
| 1724 | * Shutdown the sending side of a connection. Much like close except | 1724 | * Shutdown the sending side of a connection. Much like close except |
| 1725 | * that we don't receive shut down or set_sock_flag(sk, SOCK_DEAD). | 1725 | * that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD). |
| 1726 | */ | 1726 | */ |
| 1727 | 1727 | ||
| 1728 | void tcp_shutdown(struct sock *sk, int how) | 1728 | void tcp_shutdown(struct sock *sk, int how) |
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index cdc051bfdb4d..ac9b8482f702 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
| @@ -2298,7 +2298,7 @@ static inline int tcp_packet_delayed(struct tcp_sock *tp) | |||
| 2298 | { | 2298 | { |
| 2299 | return !tp->retrans_stamp || | 2299 | return !tp->retrans_stamp || |
| 2300 | (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr && | 2300 | (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr && |
| 2301 | (__s32)(tp->rx_opt.rcv_tsecr - tp->retrans_stamp) < 0); | 2301 | before(tp->rx_opt.rcv_tsecr, tp->retrans_stamp)); |
| 2302 | } | 2302 | } |
| 2303 | 2303 | ||
| 2304 | /* Undo procedures. */ | 2304 | /* Undo procedures. */ |
