summaryrefslogtreecommitdiffstats
path: root/include/linux/mlx5
diff options
context:
space:
mode:
authorThomas Gleixner2014-07-16 23:04:44 +0200
committerJohn Stultz2014-07-24 00:01:43 +0200
commit14a7004671246d1b799f545335995a9897de1268 (patch)
tree877426f4f8798fdbe198095dcc46ceb36f96f0ee /include/linux/mlx5
parentmisc: ioc4: Use ktime_get_ns() (diff)
downloadkernel-qcow2-linux-14a7004671246d1b799f545335995a9897de1268.tar.gz
kernel-qcow2-linux-14a7004671246d1b799f545335995a9897de1268.tar.xz
kernel-qcow2-linux-14a7004671246d1b799f545335995a9897de1268.zip
net: mlx5: Use ktime_get_ns()
This code is beyond silly: struct timespec ts = ktime_get_ts(); ktime_t ktime = timespec_to_ktime(ts); Further down the code builds the delta of two ktime_t values and converts the result to nanoseconds. Use ktime_get_ns() and replace all the nonsense. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Eli Cohen <eli@mellanox.com> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/mlx5')
-rw-r--r--include/linux/mlx5/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mlx5/driver.h b/include/linux/mlx5/driver.h
index 2bce4aad2570..52d631ca32cf 100644
--- a/include/linux/mlx5/driver.h
+++ b/include/linux/mlx5/driver.h
@@ -604,8 +604,8 @@ struct mlx5_cmd_work_ent {
int page_queue;
u8 status;
u8 token;
- struct timespec ts1;
- struct timespec ts2;
+ u64 ts1;
+ u64 ts2;
u16 op;
};