From patchwork Wed Jun 10 00:54:27 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve French X-Patchwork-Id: 11596777 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 9B9C460D for ; Wed, 10 Jun 2020 00:54:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7353B206C3 for ; Wed, 10 Jun 2020 00:54:42 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com header.b="IQB/eaX0" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725948AbgFJAyl (ORCPT ); Tue, 9 Jun 2020 20:54:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50670 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725944AbgFJAyl (ORCPT ); Tue, 9 Jun 2020 20:54:41 -0400 Received: from mail-yb1-xb43.google.com (mail-yb1-xb43.google.com [IPv6:2607:f8b0:4864:20::b43]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B9BD7C05BD1E for ; Tue, 9 Jun 2020 17:54:40 -0700 (PDT) Received: by mail-yb1-xb43.google.com with SMTP id b15so246005ybg.12 for ; Tue, 09 Jun 2020 17:54:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=BksAVh5CUmza5LFck2gxvUVleYd212qdvNTvNwU2IDU=; b=IQB/eaX0uohD/xVjOlrwzbbs2le73SnY8JHpb8g4MY9Q+UvbLeRmBajqzcvsAVghjW gP40AGZjWAuFbayvT99NCfcPfXPhvrzhbLNg28Qxldz2Yiv6yozO/0mwC5Ic9DBU/+Gn HN6qxDGODNcRU6N1/9VFm1YYVsnO5V+FHbVlWBjC9ZoMzXz2snsAh5i6RldzAjXjia6O hNyfYbRiLIAMPYSjJx/i8Fpf5nMXo+x75ulVsyi+BG7kMiCXa/4/wyCI49z5NyISzDjA ezl2cpaqWuVvNZJi+72j5uL6Ykeo6i8stiibrrwmpWJwA4dZu2TQ8tbV3RkVmrdPg7P6 11uw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=BksAVh5CUmza5LFck2gxvUVleYd212qdvNTvNwU2IDU=; b=bYYMOSJuDry4teRyMCn+6pxSFir1IL5PW7Y8Jhafn06+tJzrPmQMl2GyJE6LMpAxIC fiKED3XFym1HSIh9Y+uqz3hezoLd00L3l5AYprZfldD59pW2C4qkpAzWBVl5P9eVmeyb AEEHkDl+xfx8UyspmqwAfhTecQ8aviIYb4OCdIk6IlcSwmsAdyKGWHF9e2C4YlXw2vDh LpcZF7Mt80sl4DSaHmKoV9pNlmRJ4WeP5PU4VxbDaFqyMwxfgrRHRRKveO9vbPbxU57z v+7/db9wwA12A0sRZHqkizhowZbLvqYKHNE0uOFWxR5az6VWuOaegFEvH/h8gtOu3LUY Tcuw== X-Gm-Message-State: AOAM533n4VhkKJNLTkcfWn0fUT7mPuDBR4El0r8X19XAIIz6kr9JNnC7 D8WAQvavwTpTJIJi8qtJ9cAj2ieIKq7vmOierZYBTGDqtWU= X-Google-Smtp-Source: ABdhPJwikpJG99xN+F1TRIwebzjfwPoeyjHzRMD7hwqewNfN9vQH4A4LPTxUJ5zcKmmS2ylelhaeiaLQ4omp43Lf8YU= X-Received: by 2002:a25:4487:: with SMTP id r129mr1332232yba.14.1591750478348; Tue, 09 Jun 2020 17:54:38 -0700 (PDT) MIME-Version: 1.0 From: Steve French Date: Tue, 9 Jun 2020 19:54:27 -0500 Message-ID: Subject: [PATCH] smb3: fix typo in mount options displayed in /proc/mounts To: CIFS Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org 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 --- fs/cifs/cifsfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) From 1ecf0bef0169948849b828bc9412d77e954abf36 Mon Sep 17 00:00:00 2001 From: Steve French Date: Tue, 9 Jun 2020 19:50:40 -0500 Subject: [PATCH] smb3: fix typo in mount options displayed in /proc/mounts 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 --- fs/cifs/cifsfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 889f9c71049b..0fb99d25e8a8 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -623,7 +623,7 @@ cifs_show_options(struct seq_file *s, struct dentry *root) 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; -- 2.25.1