diff mbox series

ubifs: auth: add CONFIG_KEYS dependency

Message ID 20181102111129.276496-1-arnd@arndb.de
State Accepted
Headers show
Series ubifs: auth: add CONFIG_KEYS dependency | expand

Commit Message

Arnd Bergmann Nov. 2, 2018, 11:11 a.m. UTC
The new authentication support causes a build failure
when CONFIG_KEYS is disabled, so add a dependency.

fs/ubifs/auth.c: In function 'ubifs_init_authentication':
fs/ubifs/auth.c:249:16: error: implicit declaration of function 'request_key'; did you mean 'request_irq'? [-Werror=implicit-function-declaration]
  keyring_key = request_key(&key_type_logon, c->auth_key_name, NULL);

Fixes: d8a22773a12c ("ubifs: Enable authentication support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 fs/ubifs/Kconfig | 1 +
 1 file changed, 1 insertion(+)

Comments

Richard Weinberger Nov. 2, 2018, 12:23 p.m. UTC | #1
Am Freitag, 2. November 2018, 12:11:22 CET schrieb Arnd Bergmann:
> The new authentication support causes a build failure
> when CONFIG_KEYS is disabled, so add a dependency.
> 
> fs/ubifs/auth.c: In function 'ubifs_init_authentication':
> fs/ubifs/auth.c:249:16: error: implicit declaration of function 'request_key'; did you mean 'request_irq'? [-Werror=implicit-function-declaration]
>   keyring_key = request_key(&key_type_logon, c->auth_key_name, NULL);
> 
> Fixes: d8a22773a12c ("ubifs: Enable authentication support")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Applied!

Thanks,
//richard
diff mbox series

Patch

diff --git a/fs/ubifs/Kconfig b/fs/ubifs/Kconfig
index 529856fbccd0..406c88dc039e 100644
--- a/fs/ubifs/Kconfig
+++ b/fs/ubifs/Kconfig
@@ -89,6 +89,7 @@  config UBIFS_FS_SECURITY
 
 config UBIFS_FS_AUTHENTICATION
 	bool "UBIFS authentication support"
+	depends on KEYS
 	select CRYPTO_HMAC
 	help
 	  Enable authentication support for UBIFS. This feature offers protection