aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gleixner <[email protected]>2014-07-16 21:04:46 +0000
committerJohn Stultz <[email protected]>2014-07-23 15:01:44 -0700
commit5eaaed4fe23247f0784edc2973f04134f8180251 (patch)
treefe0922873243243ca8c1a3e5412396fbb1f8a546
parent14a7004671246d1b799f545335995a9897de1268 (diff)
fs: lockd: Use ktime_get_ns()
Replace the ever recurring: ts = ktime_get_ts(); ns = timespec_to_ns(&ts); with ns = ktime_get_ns(); Signed-off-by: Thomas Gleixner <[email protected]> Acked-by: Trond Myklebust <[email protected]> Cc: "J. Bruce Fields" <[email protected]> Signed-off-by: John Stultz <[email protected]>
-rw-r--r--fs/lockd/mon.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c
index 1812f026960c..daa8e7514eae 100644
--- a/fs/lockd/mon.c
+++ b/fs/lockd/mon.c
@@ -306,11 +306,9 @@ static struct nsm_handle *nsm_lookup_priv(const struct nsm_private *priv)
static void nsm_init_private(struct nsm_handle *nsm)
{
u64 *p = (u64 *)&nsm->sm_priv.data;
- struct timespec ts;
s64 ns;
- ktime_get_ts(&ts);
- ns = timespec_to_ns(&ts);
+ ns = ktime_get_ns();
put_unaligned(ns, p);
put_unaligned((unsigned long)nsm, p + 1);
}