kernel/modsign_pubkey.c: fix init const for module signing code
const has to use __initconst, not __initdata Signed-off-by: Andi Kleen <ak@linux.intel.com> Acked-by: David Howells <dhowells@redhat.com> Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3ddc5b46a8
commit
54a33b1b14
|
@ -18,14 +18,14 @@
|
||||||
|
|
||||||
struct key *modsign_keyring;
|
struct key *modsign_keyring;
|
||||||
|
|
||||||
extern __initdata const u8 modsign_certificate_list[];
|
extern __initconst const u8 modsign_certificate_list[];
|
||||||
extern __initdata const u8 modsign_certificate_list_end[];
|
extern __initconst const u8 modsign_certificate_list_end[];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to make sure ccache doesn't cache the .o file as it doesn't notice
|
* We need to make sure ccache doesn't cache the .o file as it doesn't notice
|
||||||
* if modsign.pub changes.
|
* if modsign.pub changes.
|
||||||
*/
|
*/
|
||||||
static __initdata const char annoy_ccache[] = __TIME__ "foo";
|
static __initconst const char annoy_ccache[] = __TIME__ "foo";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Load the compiled-in keys
|
* Load the compiled-in keys
|
||||||
|
|
Loading…
Reference in New Issue