From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8ACC4C433E0 for ; Tue, 16 Jun 2020 16:00:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 647FD2071A for ; Tue, 16 Jun 2020 16:00:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592323252; bh=9/f0wi49iItWo3HVGU0BxHoshxsiC38fZ6j+hzA7fI0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=inU8Qq6sqB5uIsbP7GN/N+LhzPxOug5ffAQ5ogLKV7Cm8Pww7ZgwjtSmXzmf8FBsV ZJsD8nJ2vv8CWIa4mi20kR9NlFruU9yqcObCCpitjPGvNJ7n3POQbR705xBABRW6DC lihya6ePa5HTMHsYgfeF2JgphlNKgfQpKikHHiEk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731728AbgFPQAs (ORCPT ); Tue, 16 Jun 2020 12:00:48 -0400 Received: from mail.kernel.org ([198.145.29.99]:50274 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732748AbgFPPwl (ORCPT ); Tue, 16 Jun 2020 11:52:41 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A7592207C4; Tue, 16 Jun 2020 15:52:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592322761; bh=9/f0wi49iItWo3HVGU0BxHoshxsiC38fZ6j+hzA7fI0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ya/qYjlM9JDhxqYETjWj8+2Q/h5NMLbaL3szAEYaWnyKOaVtMxLxa6zlyaQBZ3bbC H+AXcTXTFpZXChi3gIc/PC5SY/NiU+o5QLXQIaGeEI/4oxsxsFine4IZPf3uxj4R60 FqmhwWWtXbduNY4DK9u3Q9S0WCRvmWCnIt1VLBNI= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Steve French , Shyam Prasad N Subject: [PATCH 5.6 066/161] smb3: fix typo in mount options displayed in /proc/mounts Date: Tue, 16 Jun 2020 17:34:16 +0200 Message-Id: <20200616153109.524240065@linuxfoundation.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200616153106.402291280@linuxfoundation.org> References: <20200616153106.402291280@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Steve French commit 7866c177a03b18be3d83175014c643546e5b53c6 upstream. Missing the final 's' in "max_channels" mount option when displayed in /proc/mounts (or by mount command) CC: Stable Signed-off-by: Steve French Reviewed-by: Shyam Prasad N Signed-off-by: Greg Kroah-Hartman --- fs/cifs/cifsfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -621,7 +621,7 @@ cifs_show_options(struct seq_file *s, st seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ); if (tcon->ses->chan_max > 1) - seq_printf(s, ",multichannel,max_channel=%zu", + seq_printf(s, ",multichannel,max_channels=%zu", tcon->ses->chan_max); return 0;