linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ceph: if we are blacklisted, __do_request returns directly
@ 2020-04-17  8:34 Yanhu Cao
  2020-04-17  9:18 ` Yanhu Cao
  0 siblings, 1 reply; 2+ messages in thread
From: Yanhu Cao @ 2020-04-17  8:34 UTC (permalink / raw)
  To: jlayton; +Cc: sage, idryomov, ceph-devel, linux-kernel, Yanhu Cao

Signed-off-by: Yanhu Cao <gmayyyha@gmail.com>
---
 fs/ceph/mds_client.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 486f91f9685b..d2ea755b7c02 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -2708,6 +2708,11 @@ static void __do_request(struct ceph_mds_client *mdsc,
 
 	put_request_session(req);
 
+	if (mdsc->fsc->blacklisted) {
+		err = -EACCES;
+		goto finish;
+	}
+
 	mds = __choose_mds(mdsc, req, &random);
 	if (mds < 0 ||
 	    ceph_mdsmap_get_state(mdsc->mdsmap, mds) < CEPH_MDS_STATE_ACTIVE) {
-- 
2.24.2 (Apple Git-127)


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ceph: if we are blacklisted, __do_request returns directly
  2020-04-17  8:34 [PATCH] ceph: if we are blacklisted, __do_request returns directly Yanhu Cao
@ 2020-04-17  9:18 ` Yanhu Cao
  0 siblings, 0 replies; 2+ messages in thread
From: Yanhu Cao @ 2020-04-17  9:18 UTC (permalink / raw)
  To: Jeff Layton; +Cc: Sage Weil, Ilya Dryomov, ceph-devel, LKML

DNM. will add test mount option recover_session.

On Fri, Apr 17, 2020 at 4:35 PM Yanhu Cao <gmayyyha@gmail.com> wrote:
>
> Signed-off-by: Yanhu Cao <gmayyyha@gmail.com>
> ---
>  fs/ceph/mds_client.c | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
> index 486f91f9685b..d2ea755b7c02 100644
> --- a/fs/ceph/mds_client.c
> +++ b/fs/ceph/mds_client.c
> @@ -2708,6 +2708,11 @@ static void __do_request(struct ceph_mds_client *mdsc,
>
>         put_request_session(req);
>
> +       if (mdsc->fsc->blacklisted) {
> +               err = -EACCES;
> +               goto finish;
> +       }
> +
>         mds = __choose_mds(mdsc, req, &random);
>         if (mds < 0 ||
>             ceph_mdsmap_get_state(mdsc->mdsmap, mds) < CEPH_MDS_STATE_ACTIVE) {
> --
> 2.24.2 (Apple Git-127)
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-17  9:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-17  8:34 [PATCH] ceph: if we are blacklisted, __do_request returns directly Yanhu Cao
2020-04-17  9:18 ` Yanhu Cao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).