From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 70230C43334 for ; Wed, 29 Jun 2022 08:25:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232577AbiF2IZg (ORCPT ); Wed, 29 Jun 2022 04:25:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39384 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232572AbiF2IZ1 (ORCPT ); Wed, 29 Jun 2022 04:25:27 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AC9D93BFA0; Wed, 29 Jun 2022 01:25:24 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 480A161D69; Wed, 29 Jun 2022 08:25:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 45557C34114; Wed, 29 Jun 2022 08:25:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1656491123; bh=/fEG8o56X8CR58XzBeCiViZTlPIDG3OwyZ/UgWpIrp4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=reDPLsOiXwvihxd/6ECgf2vvHyj/Nwb1s+ziqvznumgQi/VuGApy87VcgXSm6Do2C 04vvU3b7Uj+PDspM0Xp8mnDSroRyA6VF9Ml5PJqFvB0Z0Zs95x+IXtqOnSL63qkHtx 5o89CGLH2HZWj/NZcg5zYmVZUTTcu+QY3ab6mTpo= Date: Wed, 29 Jun 2022 10:25:19 +0200 From: Greg Kroah-Hartman To: Jari Ruusu Cc: "stable@vger.kernel.org" , "linux-kernel@vger.kernel.org" , Masahiro Yamada Subject: Re: linux-5.10.127 modpost warning Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 29, 2022 at 08:18:04AM +0000, Jari Ruusu wrote: > This shows up when building linux-5.10.127 > > LD vmlinux.o > MODPOST vmlinux.symvers > WARNING: modpost: vmlinux.o(___ksymtab+drm_fb_helper_modinit+0x0): Section mismatch in reference from the variable __ksymtab_drm_fb_helper_modinit to the function .init.text:drm_fb_helper_modinit() > The symbol drm_fb_helper_modinit is exported and annotated __init > Fix this by removing the __init annotation of drm_fb_helper_modinit or drop the export. Known issue, see the stable list, I'll be fixing this up for the next release, thanks. greg k-h