diff options
author | Scott Mayhew <smayhew@redhat.com> | 2019-11-12 14:01:55 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-17 19:48:47 +0100 |
commit | b09ed814264c1fdaa7613fe65a38934ff9580909 (patch) | |
tree | 6764edc99cd85c4c632e491f8c2ace18060bbd75 /fs/nfsd | |
parent | 0efb7388f085491b5cf17e81ff6b8ff89ac01521 (diff) | |
download | linux-stable-b09ed814264c1fdaa7613fe65a38934ff9580909.tar.gz linux-stable-b09ed814264c1fdaa7613fe65a38934ff9580909.tar.bz2 linux-stable-b09ed814264c1fdaa7613fe65a38934ff9580909.zip |
nfsd: v4 support requires CRYPTO_SHA256
commit a2e2f2dc77a18d2b0f450fb7fcb4871c9f697822 upstream.
The new nfsdcld client tracking operations use sha256 to compute hashes
of the kerberos principals, so make sure CRYPTO_SHA256 is enabled.
Fixes: 6ee95d1c8991 ("nfsd: add support for upcall version 2")
Reported-by: Jamie Heilman <jamie@audible.transient.net>
Signed-off-by: Scott Mayhew <smayhew@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/Kconfig b/fs/nfsd/Kconfig index 10cefb0c07c7..c4b1a89b8845 100644 --- a/fs/nfsd/Kconfig +++ b/fs/nfsd/Kconfig @@ -73,7 +73,7 @@ config NFSD_V4 select NFSD_V3 select FS_POSIX_ACL select SUNRPC_GSS - select CRYPTO + select CRYPTO_SHA256 select GRACE_PERIOD help This option enables support in your system's NFS server for |