|
@@ -264,7 +264,10 @@ 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);
|
|
|
|
|
|
-#define key_serial(key) ((key) ? (key)->serial : 0)
|
|
|
|
|
|
+static inline key_serial_t key_serial(struct key *key)
|
|
|
|
+{
|
|
|
|
+ return key ? key->serial : 0;
|
|
|
|
+}
|
|
|
|
|
|
#ifdef CONFIG_SYSCTL
|
|
#ifdef CONFIG_SYSCTL
|
|
extern ctl_table key_sysctls[];
|
|
extern ctl_table key_sysctls[];
|