All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Arnd Bergmann <arnd@kernel.org>
Cc: Vinod Koul <vkoul@kernel.org>,
	ALSA Development Mailing List <alsa-devel@alsa-project.org>,
	Mark Brown <broonie@kernel.org>,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>,
	Arnd Bergmann <arnd@arndb.de>
Subject: Re: [PATCH 2/2] ASoC: SOF: SND_INTEL_DSP_CONFIG dependency
Date: Sat, 23 Jan 2021 09:08:37 +0100	[thread overview]
Message-ID: <s5hft2s6poa.wl-tiwai@suse.de> (raw)
In-Reply-To: <CAK8P3a1R3PPmjncmpjcWDHiMOw_LbK=s7Wqn6RQRkSB0RUaJ9Q@mail.gmail.com>

On Fri, 22 Jan 2021 19:33:27 +0100,
Arnd Bergmann wrote:
> 
> On Fri, Jan 22, 2021 at 4:38 PM Pierre-Louis Bossart
> <pierre-louis.bossart@linux.intel.com> wrote:
> > >> The sof-pci-dev driver fails to link when built into the kernel
> > >> and CONFIG_SND_INTEL_DSP_CONFIG is set to =m:
> > >>
> > >> arm-linux-gnueabi-ld: sound/soc/sof/sof-pci-dev.o: in function `sof_pci_probe':
> > >> sof-pci-dev.c:(.text+0x1c): undefined reference to `snd_intel_dsp_driver_probe'
> > >>
> > >> As a temporary fix, use IS_REACHABLE to prevent the problem from
> > >> happening. A more complete solution is to move this code to
> > >> Intel-specific parts, restructure the drivers and Kconfig as discussed
> > >> with Arnd Bergmann and Takashi Iwai.
> > >>
> > >> Fixes: 82d9d54a6c0e ("ALSA: hda: add Intel DSP configuration / probe code")
> > >> Reported-by: Arnd Bergmann <arnd@arndb.de>
> > >> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> > >
> > > This might not be good enough.  The code may still refer to the
> > > snd_intel_dsp_probe() symbol even if IS_REACHABLE() is false
> > > (although, practically seen, gcc should optimize it out).
> > >
> > > You need #if IS_REACHABLE() instead of the plain if.
> > > Then you don't need to change the indentation, and the patch will be
> > > eventually smaller, too :)
> >
> > I used the if() on purpose since in the past you mentioned #if/#endif
> > are ugly. There are plenty of other cases in the kernel code where if(
> > IF_REACHABLE(CONFIG_XYZ)) is used...
> 
> Dead-code-elimination in both gcc and clang is reliable for all supported
> versions (there were problems in gcc-4.1 and before), and generally the
> "if (IS_ENABLED())" form is nicer than the "#if IS_ENABLED()" form
> because it produces better compile-time coverage.

Heh, my trust to the compiler isn't that high, but other than that,
it's a matter of taste.  I agree that if() fits often better in
general, especially when the more code is involved.  But, in this
particular case, the covered area is small (hence optimization doesn't
matter) and we want to show it rather clearer as a temporary
workaround (that shall be deleted in the next kernel).  Finally, the
changes needed by #ifdef are smaller.  That's why I suggested #ifdef.

But that's nothing but a bike shed topic, and I don't mind either way
as long as the code really works in all cases.


thanks,

Takashi

  reply	other threads:[~2021-01-23  8:09 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-22  0:57 [PATCH 0/2] ASoC: SOF: partial fix to Kconfig issues Pierre-Louis Bossart
2021-01-22  0:57 ` [PATCH 1/2] ASoC: SOF: Intel: soundwire: fix select/depend unmet dependencies Pierre-Louis Bossart
2021-01-22  0:57 ` [PATCH 2/2] ASoC: SOF: SND_INTEL_DSP_CONFIG dependency Pierre-Louis Bossart
2021-01-22  5:26   ` Vinod Koul
2021-01-22  8:58   ` Takashi Iwai
2021-01-22 15:38     ` Pierre-Louis Bossart
2021-01-22 18:33       ` Arnd Bergmann
2021-01-23  8:08         ` Takashi Iwai [this message]
2021-01-25 14:17 ` [PATCH 0/2] ASoC: SOF: partial fix to Kconfig issues Mark Brown

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=s5hft2s6poa.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=arnd@arndb.de \
    --cc=arnd@kernel.org \
    --cc=broonie@kernel.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=vkoul@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.