Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A47DCC05027 for ; Mon, 30 Jan 2023 01:57:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230215AbjA3B52 (ORCPT ); Sun, 29 Jan 2023 20:57:28 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60770 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230206AbjA3B5Y (ORCPT ); Sun, 29 Jan 2023 20:57:24 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 81C0D1C30C; Sun, 29 Jan 2023 17:57:20 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 402A8B80D7C; Mon, 30 Jan 2023 01:57:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DF9A8C433EF; Mon, 30 Jan 2023 01:57:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675043837; bh=YHmT4MUA98weBZS7vacMYPV3iqY0ECu7epOQAGBvov0=; h=In-Reply-To:References:From:Date:Subject:To:Cc:From; b=YjCDvxjVnl6Fk/GnFbOhbxqd5y+Q3YD74Yv2hbV3E5tcGQHunWlVuOi3wygDvOaaQ MiYGEIP0kKM+8K08SlQvHkOQP5BGoPSe9du0Ld+fZ4oO5jkFBgKHbCtbxRJ8tAYVcd X60A2RrnOp7it4fO/O9qi6BIkHkz6Q7+AKLVZR0YkoFMxRMiZR993xrcpvDdp0mPi1 he3E5ezAG+wyXtPdft+NhXE9tokcY4ydsHOD6L59RBmbhN8uSRqd2yJ7PfkHCZHhpg SH5CdPVbJ6nGagqz13ZiS4wwSmzm8e/WyYkGby3B4J/H8kAaPdU9PZD16asU9eHqNp qpYKmcVT07Blw== Received: by mail-ot1-f43.google.com with SMTP id l3-20020a05683016c300b0068bba72c8bfso1701454otr.13; Sun, 29 Jan 2023 17:57:17 -0800 (PST) X-Gm-Message-State: AFqh2kp10xTffvgQiYsgOL/Bz0U6Fdhz/DxvFMoO7HaDSln64TtSSuQy noCpROBRPYDEcQYzglUO47kIJE+os8N53rMOK+0= X-Google-Smtp-Source: AMrXdXshhcc5ZYk6xro06djR669RC5tzE6Nqx/48tpv+MXvMaBeEnZS/yLSqghfFhjuXSi2CHZNCfoyB2GQAFlK9Zm0= X-Received: by 2002:a9d:6c4a:0:b0:684:e846:74db with SMTP id g10-20020a9d6c4a000000b00684e84674dbmr2923693otq.51.1675043836961; Sun, 29 Jan 2023 17:57:16 -0800 (PST) MIME-Version: 1.0 Received: by 2002:a8a:355:0:b0:4a5:1048:434b with HTTP; Sun, 29 Jan 2023 17:57:16 -0800 (PST) In-Reply-To: References: From: Namjae Jeon Date: Mon, 30 Jan 2023 10:57:16 +0900 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH][KSMBD] fix indentation in ksmbd config and note Kerberos support To: Steve French Cc: CIFS , LKML Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2023-01-30 9:01 GMT+09:00, Steve French : Hi Steve, > Fix indentation of server config options, and also since > support for very old, less secure, NTLM authentication was removed > (and quite a while ago), remove the mention of that in Kconfig, but > do note Kerberos (not just NTLMv2) which are supported and much > more secure. > > Signed-off-by: Steve French > --- > fs/ksmbd/Kconfig | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/fs/ksmbd/Kconfig b/fs/ksmbd/Kconfig > index e1fe17747ed6..4153e5491435 100644 > --- a/fs/ksmbd/Kconfig > +++ b/fs/ksmbd/Kconfig > @@ -33,17 +33,18 @@ config SMB_SERVER > in ksmbd-tools, available from > https://github.com/cifsd-team/ksmbd-tools. > More detail about how to run the ksmbd kernel server is > - available via README file > + available via the README file > (https://github.com/cifsd-team/ksmbd-tools/blob/master/README). > > ksmbd kernel server includes support for auto-negotiation, > Secure negotiate, Pre-authentication integrity, oplock/lease, > compound requests, multi-credit, packet signing, RDMA(smbdirect), > smb3 encryption, copy-offload, secure per-user session > - establishment via NTLM or NTLMv2. > + establishment via Kerberos or NTLMv2. > > config SMB_SERVER_SMBDIRECT > bool "Support for SMB Direct protocol" > + depends on SMB_SERVER I am wondering this change is needed in this patch ? There is no patch description for this change... Thanks! > depends on SMB_SERVER=m && INFINIBAND && INFINIBAND_ADDR_TRANS || > SMB_SERVER=y && INFINIBAND=y && INFINIBAND_ADDR_TRANS=y > select SG_POOL > default n > > -- > Thanks, > > Steve >