Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754375AbcK1IJQ (ORCPT ); Mon, 28 Nov 2016 03:09:16 -0500 Received: from mx-rz-2.rrze.uni-erlangen.de ([131.188.11.21]:55859 "EHLO mx-rz-2.rrze.uni-erlangen.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754159AbcK1IJI (ORCPT ); Mon, 28 Nov 2016 03:09:08 -0500 X-Greylist: delayed 560 seconds by postgrey-1.27 at vger.kernel.org; Mon, 28 Nov 2016 03:09:07 EST X-RRZE-Flag: Not-Spam X-RRZE-Submit-IP: 2001:638:a000:4142::ff10:d304 To: AKASHI Takahiro Cc: Kees Cook , Rusty Russell , Jessica Yu , linux-kernel In-Reply-To: From: Andreas Ziegler Subject: Re: [PATCH v3] module: extend 'rodata=off' boot cmdline parameter to module mappings X-Enigmail-Draft-Status: N1110 Message-ID: <95e7fd98-c477-0c8a-7195-932e04bba9bb@fau.de> Date: Mon, 28 Nov 2016 08:59:40 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 673 Lines: 17 Hi Akashi, your patch "module: extend 'rodata=off' boot cmdline parameter to module mappings" showed up in linux-next today, and I noticed a small error in it. The first modified #ifdef is fine, the second one, however, has a spelling mistake in it: the CONFIG_ variable should be CONFIG_DEBUG_SET_MODULE_RONX instead of CONFIG_SET_MODULE_RONX (note the missing DEBUG). I noticed it by running 'scripts/checkkconfigsymbols -f --force -f next-20161124..next-20161128', which is essentialy diffing the last two linux-next releases and looks for undefined/unknown Kconfig symbols. You can also run the script on single commits with -c to test them. Best regards, Andreas