mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
KEYS: Permit key_serial() to be called with a const key pointer
Permit key_serial() to be called with a const key pointer. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
parent
f6b24579d0
commit
456a8167e9
@ -271,7 +271,7 @@ extern int keyring_add_key(struct key *keyring,
|
|||||||
|
|
||||||
extern struct key *key_lookup(key_serial_t id);
|
extern struct key *key_lookup(key_serial_t id);
|
||||||
|
|
||||||
static inline key_serial_t key_serial(struct key *key)
|
static inline key_serial_t key_serial(const struct key *key)
|
||||||
{
|
{
|
||||||
return key ? key->serial : 0;
|
return key ? key->serial : 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user