// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2015 Juniper Networks, Inc. * * Author: * Petko Manolov <[email protected]> */ #include <linux/export.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/cred.h> #include <linux/err.h> #include <linux/init.h> #include <linux/slab.h> #include <keys/system_keyring.h> struct key *ima_blacklist_keyring; /* * Allocate the IMA blacklist keyring */ static __init int ima_mok_init(void) { … } device_initcall(ima_mok_init);