diff options
author | Sunil Mushran <sunil.mushran@oracle.com> | 2010-12-22 12:39:38 -0800 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2010-12-22 18:34:49 -0800 |
commit | 3f9c14fab0a2e90af9995f261a123f59e0b41141 (patch) | |
tree | 69a2a6a07d4c2144c06acd81cd2ff32b62879253 /fs/ocfs2/cluster/tcp_internal.h | |
parent | 8757241e32a295a2aa836e8f8b32912204d11fda (diff) | |
download | linux-stable-3f9c14fab0a2e90af9995f261a123f59e0b41141.tar.gz linux-stable-3f9c14fab0a2e90af9995f261a123f59e0b41141.tar.bz2 linux-stable-3f9c14fab0a2e90af9995f261a123f59e0b41141.zip |
ocfs2/cluster: Replace timeval with ktime in struct o2net_send_tracking
Replace time trackers in struct o2net_send_tracking from struct timeval to
union ktime.
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/cluster/tcp_internal.h')
-rw-r--r-- | fs/ocfs2/cluster/tcp_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ocfs2/cluster/tcp_internal.h b/fs/ocfs2/cluster/tcp_internal.h index 15fdbdf9eb4b..b613aaaf3e5c 100644 --- a/fs/ocfs2/cluster/tcp_internal.h +++ b/fs/ocfs2/cluster/tcp_internal.h @@ -220,9 +220,9 @@ struct o2net_send_tracking { u32 st_msg_type; u32 st_msg_key; u8 st_node; - struct timeval st_sock_time; - struct timeval st_send_time; - struct timeval st_status_time; + ktime_t st_sock_time; + ktime_t st_send_time; + ktime_t st_status_time; }; #else struct o2net_send_tracking { |