aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/cluster/tcp_internal.h
diff options
context:
space:
mode:
authorSunil Mushran <sunil.mushran@oracle.com>2010-12-22 15:39:38 -0500
committerJoel Becker <joel.becker@oracle.com>2010-12-22 21:34:49 -0500
commit3f9c14fab0a2e90af9995f261a123f59e0b41141 (patch)
tree69a2a6a07d4c2144c06acd81cd2ff32b62879253 /fs/ocfs2/cluster/tcp_internal.h
parent8757241e32a295a2aa836e8f8b32912204d11fda (diff)
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.h6
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 {
220 u32 st_msg_type; 220 u32 st_msg_type;
221 u32 st_msg_key; 221 u32 st_msg_key;
222 u8 st_node; 222 u8 st_node;
223 struct timeval st_sock_time; 223 ktime_t st_sock_time;
224 struct timeval st_send_time; 224 ktime_t st_send_time;
225 struct timeval st_status_time; 225 ktime_t st_status_time;
226}; 226};
227#else 227#else
228struct o2net_send_tracking { 228struct o2net_send_tracking {