Linux SCSI subsystem development
 help / color / mirror / Atom feed
From: Bart Van Assche <bvanassche@acm.org>
To: Bean Huo <beanhuo@iokpp.de>,
	"Martin K. Petersen" <martin.petersen@oracle.com>
Cc: avri.altman@sandisk.com, alim.akhtar@samsung.com,
	jejb@linux.ibm.com, can.guo@oss.qualcomm.com, beanhuo@micron.com,
	linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org,
	kernel test robot <lkp@intel.com>
Subject: Re: [PATCH] scsi: ufs: core: Fix link error when CONFIG_RPMB=m
Date: Mon, 1 Dec 2025 16:53:42 -0800	[thread overview]
Message-ID: <ef4f3e29-95ad-4094-9742-c37742da26e9@acm.org> (raw)
In-Reply-To: <251eb7e20d91ae9c539bde847ea102a53af82b94.camel@iokpp.de>

On 12/1/25 2:42 PM, Bean Huo wrote:
> On Mon, 2025-12-01 at 12:25 -0500, Martin K. Petersen wrote:
>>> When CONFIG_SCSI_UFSHCD=y and CONFIG_RPMB=m, the kernel fails to link
>>> with undefined references to ufs_rpmb_probe() and ufs_rpmb_remove():
>>>
>>>    ld: drivers/ufs/core/ufshcd.c:8950: undefined reference to
>>> `ufs_rpmb_probe'
>>>    ld: drivers/ufs/core/ufshcd.c:10505: undefined reference to
>>> `ufs_rpmb_remove'
>>>
>>> The issue occurs because IS_ENABLED(CONFIG_RPMB) evaluates to true
>>> when CONFIG_RPMB=m, causing the header to declare the real function
>>> prototypes.
>>
>> This now breaks the modular build for me.
> 
> I tested both IS_BUILTIN and IS_REACHABLE for the RPMB dependencies both work
> correctly in my configuration.
> 
> IS_REACHABLE would provide more flexibility for module configurations, but in
> practice, I don't have experience with UFS being used as a module.
> 
> Would you prefer IS_REACHABLE for theoretical flexibility, or is IS_BUILTIN
> acceptable given the typical UFS built-in configuration?

Hi Martin and Bean,

Unless someone comes up with a better solution, I propose to apply this
patch before sending a pull request to Linus and look into making RPMB
tristate again at a later time:

diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig
index 9d1de68dee27..e0b7f8fb6ecb 100644
--- a/drivers/misc/Kconfig
+++ b/drivers/misc/Kconfig
@@ -105,7 +105,7 @@ config PHANTOM
  	  say N here.

  config RPMB
-	tristate "RPMB partition interface"
+	bool "RPMB partition interface"
  	depends on MMC || SCSI_UFSHCD
  	help
  	  Unified RPMB unit interface for RPMB capable devices such as eMMC and

Thanks,

Bart.

  reply	other threads:[~2025-12-02  0:53 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-30 15:15 [PATCH] scsi: ufs: core: Fix link error when CONFIG_RPMB=m Bean Huo
2025-12-01 17:25 ` Martin K. Petersen
2025-12-01 22:42   ` Bean Huo
2025-12-02  0:53     ` Bart Van Assche [this message]
2025-12-02  9:12       ` Bean Huo
2025-12-02 11:41         ` Jens Wiklander
2025-12-02 12:17           ` Bean Huo
2025-12-02 13:17             ` Jens Wiklander
2025-12-02 13:25               ` Arnd Bergmann
2025-12-02 14:59                 ` Bean Huo
2025-12-02 15:47                   ` Arnd Bergmann
2025-12-02 15:57                     ` Bean Huo
2025-12-02 14:17               ` Bean Huo
2025-12-03  6:15 ` kernel test robot
2025-12-03 14:39   ` Arnd Bergmann
2025-12-03 16:23     ` Bean Huo
2025-12-03 20:31       ` Arnd Bergmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ef4f3e29-95ad-4094-9742-c37742da26e9@acm.org \
    --to=bvanassche@acm.org \
    --cc=alim.akhtar@samsung.com \
    --cc=avri.altman@sandisk.com \
    --cc=beanhuo@iokpp.de \
    --cc=beanhuo@micron.com \
    --cc=can.guo@oss.qualcomm.com \
    --cc=jejb@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=martin.petersen@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox