Re: [PATCH] drivers: infiniband: sw: rxe: fix kconfig dependency on CRYPTO

From: Arnd Bergmann
Date: Tue Feb 23 2021 - 15:42:19 EST


On Tue, Feb 23, 2021 at 9:36 PM Arnd Bergmann <arnd@xxxxxxxxxx> wrote:
>
> For the specific case of CRC32, it might actually a good idea to change
> the code to call into the CRC32 code directly instead of the CRYPTO_CRC32
> abstraction. Would that work for RDMA_RXE?

On the more general question of whether a driver should 'select CRYPTO',
this is how it's currently done for the other users, but I don't
actually like this,
and in general recommend against force-enabling another subsystem when
a particular driver is enabled.

My preference would be to change all drivers that require crypto services
of some kind to use 'depends on CRYPTO' in combination with 'select CRYPTO_*',
as this is what we do for other cross-subsystem dependencies. However,
it seems unlikely that we can change it anytime soon, as the current method
is widespread and changing the dependencies would break users that do
'make oldconfig' on an old configuration.

Arnd