From: Greg KH <gregkh@linuxfoundation.org>
To: Shyam Prasad N <nspmangalore@gmail.com>
Cc: Rishabh Bhatnagar <risbhat@amazon.com>,
pc@cjr.nz, stable@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-cifs@vger.kernel.org, Aurelien Aptel <aaptel@suse.com>,
Steve French <stfrench@microsoft.com>
Subject: Re: [PATCH 5.4 3/5] cifs: Introduce helpers for finding TCP connection
Date: Mon, 26 Jun 2023 08:13:49 +0200 [thread overview]
Message-ID: <2023062626-bless-cytoplast-a147@gregkh> (raw)
In-Reply-To: <CANT5p=o3KqnxfLEuJ+veVaK1EdYJapevP60oCSS76-UhuQ101w@mail.gmail.com>
On Mon, Jun 26, 2023 at 11:34:44AM +0530, Shyam Prasad N wrote:
> On Sat, Jun 24, 2023 at 3:14 AM Rishabh Bhatnagar <risbhat@amazon.com> wrote:
> >
> > From: "Paulo Alcantara (SUSE)" <pc@cjr.nz>
> >
> > commit 345c1a4a9e09dc5842b7bbb6728a77910db69c52 upstream.
> >
> > Add helpers for finding TCP connections that are good candidates for
> > being used by DFS refresh worker.
> >
> > Signed-off-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
> > Reviewed-by: Aurelien Aptel <aaptel@suse.com>
> > Signed-off-by: Steve French <stfrench@microsoft.com>
> > Signed-off-by: Rishabh Bhatnagar <risbhat@amazon.com>
> > ---
> > fs/cifs/dfs_cache.c | 44 +++++++++++++++++++++++++++++++-------------
> > 1 file changed, 31 insertions(+), 13 deletions(-)
> >
> > diff --git a/fs/cifs/dfs_cache.c b/fs/cifs/dfs_cache.c
> > index 3ca65051b55c..31b3dc09e109 100644
> > --- a/fs/cifs/dfs_cache.c
> > +++ b/fs/cifs/dfs_cache.c
> > @@ -1305,6 +1305,30 @@ static char *get_dfs_root(const char *path)
> > return npath;
> > }
> >
> > +static inline void put_tcp_server(struct TCP_Server_Info *server)
> > +{
> > + cifs_put_tcp_session(server, 0);
> > +}
> > +
> > +static struct TCP_Server_Info *get_tcp_server(struct smb_vol *vol)
> > +{
> > + struct TCP_Server_Info *server;
> > +
> > + server = cifs_find_tcp_session(vol);
> > + if (IS_ERR_OR_NULL(server))
> > + return NULL;
> > +
> > + spin_lock(&GlobalMid_Lock);
> > + if (server->tcpStatus != CifsGood) {
> > + spin_unlock(&GlobalMid_Lock);
> > + put_tcp_server(server);
> > + return NULL;
> > + }
> > + spin_unlock(&GlobalMid_Lock);
>
> We've moved away from using GlobalMid_Lock for anything other than MIDs.
> Please use server->srv_lock instead.
This is just a backport of a commit that showed up in the 5.6 release.
It's not new development.
thanks,
greg k-h
next prev parent reply other threads:[~2023-06-26 6:14 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-23 21:34 [PATCH 5.4 0/5] CIFS DFS fixes for 5.4 Rishabh Bhatnagar
2023-06-23 21:34 ` [PATCH 5.4 1/5] cifs: Clean up DFS referral cache Rishabh Bhatnagar
2023-06-23 21:34 ` [PATCH 5.4 2/5] cifs: Get rid of kstrdup_const()'d paths Rishabh Bhatnagar
2023-06-25 15:38 ` David Laight
2023-06-25 16:58 ` Paulo Alcantara
2023-06-23 21:34 ` [PATCH 5.4 3/5] cifs: Introduce helpers for finding TCP connection Rishabh Bhatnagar
2023-06-26 6:04 ` Shyam Prasad N
2023-06-26 6:13 ` Greg KH [this message]
2023-06-26 6:30 ` Shyam Prasad N
2023-06-23 21:34 ` [PATCH 5.4 4/5] cifs: Merge is_path_valid() into get_normalized_path() Rishabh Bhatnagar
2023-06-23 21:34 ` [PATCH 5.4 5/5] cifs: Fix potential deadlock when updating vol in cifs_reconnect() Rishabh Bhatnagar
2023-06-23 22:08 ` [PATCH 5.4 0/5] CIFS DFS fixes for 5.4 Paulo Alcantara
2023-06-24 14:10 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2023062626-bless-cytoplast-a147@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=aaptel@suse.com \
--cc=linux-cifs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nspmangalore@gmail.com \
--cc=pc@cjr.nz \
--cc=risbhat@amazon.com \
--cc=stable@vger.kernel.org \
--cc=stfrench@microsoft.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.