From: David Howells Date: Thu, 14 Feb 2019 16:20:37 +0000 (+0000) Subject: keys: Timestamp new keys X-Git-Tag: v5.0-rc8~22^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=7c1857bdbdf1e4c541e45eab477ee23ed4333ea4;p=linux-2.6-block.git keys: Timestamp new keys Set the timestamp on new keys rather than leaving it unset. Fixes: 31d5a79d7f3d ("KEYS: Do LRU discard in full keyrings") Signed-off-by: David Howells Signed-off-by: James Morris --- diff --git a/security/keys/key.c b/security/keys/key.c index 0ec9322af4f9..696f1c092c50 100644 --- a/security/keys/key.c +++ b/security/keys/key.c @@ -297,6 +297,7 @@ struct key *key_alloc(struct key_type *type, const char *desc, key->gid = gid; key->perm = perm; key->restrict_link = restrict_link; + key->last_used_at = ktime_get_real_seconds(); if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) key->flags |= 1 << KEY_FLAG_IN_QUOTA;