]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
cifs: fix typo in module parameter enable_gcm_256
authorSteve French <stfrench@microsoft.com>
Wed, 19 Jun 2024 19:46:48 +0000 (14:46 -0500)
committerSteve French <stfrench@microsoft.com>
Wed, 19 Jun 2024 19:57:11 +0000 (14:57 -0500)
enable_gcm_256 (which allows the server to require the strongest
encryption) is enabled by default, but the modinfo description
incorrectly showed it disabled by default. Fix the typo.

Cc: stable@vger.kernel.org
Fixes: fee742b50289 ("smb3.1.1: enable negotiating stronger encryption by default")
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/cifsfs.c

index bb86fc0641d83ab3757fd50fb074a082894ae088..6397fdefd876db2ebdd8b84b7e3a6335807af190 100644 (file)
@@ -134,7 +134,7 @@ module_param(enable_oplocks, bool, 0644);
 MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1");
 
 module_param(enable_gcm_256, bool, 0644);
-MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: n/N/0");
+MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: y/Y/0");
 
 module_param(require_gcm_256, bool, 0644);
 MODULE_PARM_DESC(require_gcm_256, "Require strongest (256 bit) GCM encryption. Default: n/N/0");