Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755569Ab3DVJZO (ORCPT ); Mon, 22 Apr 2013 05:25:14 -0400 Received: from ozlabs.org ([203.10.76.45]:41243 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755488Ab3DVJZM (ORCPT ); Mon, 22 Apr 2013 05:25:12 -0400 From: Rusty Russell To: Andi Kleen Cc: linux-kernel@vger.kernel.org, dhowells@redhat.com, Andi Kleen Subject: Re: [PATCH] initconst fixes for module signing In-Reply-To: <1366515778-18039-1-git-send-email-andi@firstfloor.org> References: <1366515778-18039-1-git-send-email-andi@firstfloor.org> User-Agent: Notmuch/0.14 (http://notmuchmail.org) Emacs/23.4.1 (i686-pc-linux-gnu) Date: Mon, 22 Apr 2013 14:35:13 +0930 Message-ID: <87obd79muu.fsf@rustcorp.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1178 Lines: 37 Andi Kleen writes: > From: Andi Kleen > > Signed-off-by: Andi Kleen Thanks, applied. Cheers, Rusty. > diff --git a/kernel/modsign_pubkey.c b/kernel/modsign_pubkey.c > index 2b6e699..7cbd450 100644 > --- a/kernel/modsign_pubkey.c > +++ b/kernel/modsign_pubkey.c > @@ -18,14 +18,14 @@ > > struct key *modsign_keyring; > > -extern __initdata const u8 modsign_certificate_list[]; > -extern __initdata const u8 modsign_certificate_list_end[]; > +extern __initconst const u8 modsign_certificate_list[]; > +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 > * 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/