All of lore.kernel.org
 help / color / mirror / Atom feed
From: Benjamin Marzinski <bmarzins@redhat.com>
To: Martin Wilck <martin.wilck@suse.com>
Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>,
	device-mapper development <dm-devel@lists.linux.dev>
Subject: Re: [PATCH v2 19/22] libmultipath: add libcheck_need_wait checker function
Date: Tue, 8 Oct 2024 15:33:26 -0400	[thread overview]
Message-ID: <ZwWJBhwOnrUmtEa_@redhat.com> (raw)
In-Reply-To: <e46270826de9a255d6e16bcae56e984dfde346ac.camel@suse.com>

On Thu, Oct 03, 2024 at 11:15:21PM +0200, Martin Wilck wrote:
> On Thu, 2024-09-12 at 17:49 -0400, Benjamin Marzinski wrote:
> > Add a new optional checker class function, libcheck_need_wait() and a
> > new function to call it, checker_need_wait(). This can be used to see
> > if
> > a path_checker is currently running. This will be used to determine
> > if
> > there are pending checkers that need to be waited for.
> > 
> > Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
> > ---
> >  libmultipath/checkers.c          | 12 +++++++++++-
> >  libmultipath/checkers.h          |  4 +++-
> >  libmultipath/checkers/directio.c | 10 ++++++++++
> >  libmultipath/checkers/tur.c      | 10 ++++++++++
> >  4 files changed, 34 insertions(+), 2 deletions(-)
> > 
> > diff --git a/libmultipath/checkers.c b/libmultipath/checkers.c
> > index f3e98352..e2eda58d 100644
> > --- a/libmultipath/checkers.c
> > +++ b/libmultipath/checkers.c
> > @@ -27,6 +27,7 @@ struct checker_class {
> >  	void (*reset)(void);		     /* to reset the global
> > variables */
> >  	void *(*thread)(void *);	     /* async thread entry
> > point */
> >  	int (*pending)(struct checker *);    /* to recheck pending
> > paths */
> > +	bool (*need_wait)(struct checker *); /* checker needs
> > waiting for */
> >  	const char **msgtable;
> >  	short msgtable_size;
> >  };
> > @@ -182,7 +183,8 @@ static struct checker_class
> > *add_checker_class(const char *name)
> >  	c->reset = (void (*)(void)) dlsym(c->handle,
> > "libcheck_reset");
> >  	c->thread = (void *(*)(void*)) dlsym(c->handle,
> > "libcheck_thread");
> >  	c->pending = (int (*)(struct checker *)) dlsym(c->handle,
> > "libcheck_pending");
> > -	/* These 4 functions can be NULL. call dlerror() to clear
> > out any
> > +	c->need_wait = (bool (*)(struct checker *)) dlsym(c->handle,
> > "libcheck_need_wait");
> > +	/* These 5 functions can be NULL. call dlerror() to clear
> > out any
> >  	 * error string */
> >  	dlerror();
> >  
> > @@ -313,6 +315,14 @@ int checker_get_state(struct checker *c)
> >  	return c->path_state;
> >  }
> >  
> > +bool checker_need_wait(struct checker *c)
> > +{
> > +	if (!c || !c->cls || c->path_state != PATH_PENDING ||
> > +	    !c->cls->need_wait)
> > +		return false;
> > +	return c->cls->need_wait(c);
> > +}
> > +
> >  void checker_check (struct checker * c, int path_state)
> >  {
> >  	if (!c)
> > diff --git a/libmultipath/checkers.h b/libmultipath/checkers.h
> > index b2342a1b..da91f499 100644
> > --- a/libmultipath/checkers.h
> > +++ b/libmultipath/checkers.h
> > @@ -2,6 +2,7 @@
> >  #define CHECKERS_H_INCLUDED
> >  
> >  #include <pthread.h>
> > +#include <stdbool.h>
> >  #include "list.h"
> >  #include "defaults.h"
> >  
> > @@ -171,6 +172,7 @@ struct checker_context {
> >  int start_checker_thread (pthread_t *thread, const pthread_attr_t
> > *attr,
> >  			  struct checker_context *ctx);
> >  int checker_get_state(struct checker *c);
> > +bool checker_need_wait(struct checker *c);
> >  void checker_check (struct checker *, int);
> >  int checker_is_sync(const struct checker *);
> >  const char *checker_name (const struct checker *);
> > @@ -191,7 +193,7 @@ void *libcheck_thread(struct checker_context
> > *ctx);
> >  void libcheck_reset(void);
> >  int libcheck_mp_init(struct checker *);
> >  int libcheck_pending(struct checker *c);
> > -
> > +bool libcheck_need_wait(struct checker *c);
> >  
> >  /*
> >   * msgid => message map.
> > diff --git a/libmultipath/checkers/directio.c
> > b/libmultipath/checkers/directio.c
> > index 904e3071..4beed02e 100644
> > --- a/libmultipath/checkers/directio.c
> > +++ b/libmultipath/checkers/directio.c
> > @@ -65,6 +65,7 @@ struct directio_context {
> >  	struct aio_group *aio_grp;
> >  	struct async_req *req;
> >  	struct timespec endtime;
> > +	bool waited_for;
> >  };
> >  
> >  static struct aio_group *
> > @@ -295,6 +296,7 @@ check_pending(struct directio_context *ct, struct
> > timespec endtime)
> >  	int r;
> >  	struct timespec currtime, timeout;
> >  
> > +	ct->waited_for = true;
> 
> Not sure if it's important, but strictly speaking, we have only waited
> for the checker if the endtime was in the future, which is often not
> the case. Otherwise we'd just have polled.

But we always set the endtime in the future when we're starting a new
request, so the first time the we call check_pending() we don't return
till we either get an answer or endtime has passed, which is what we
want waited_for to check (that we've give the checker till endtime to
respond).

-Ben

> 
> Martin
> 
> 
> >  	while(1) {
> >  		get_monotonic_time(&currtime);
> >  		timespecsub(&endtime, &currtime, &timeout);
> > @@ -346,6 +348,7 @@ check_state(int fd, struct directio_context *ct,
> > int sync, int timeout_secs)
> >  		get_monotonic_time(&ct->endtime);
> >  		ct->endtime.tv_nsec += 1000 * 1000;
> >  		normalize_timespec(&ct->endtime);
> > +		ct->waited_for = false;
> >  	}
> >  	ct->running++;
> >  	if (!sync)
> > @@ -386,6 +389,13 @@ static void set_msgid(struct checker *c, int
> > state)
> >  	}
> >  }
> >  
> > +bool libcheck_need_wait(struct checker *c)
> > +{
> > +	struct directio_context *ct = (struct directio_context *)c-
> > >context;
> > +	return (ct && ct->running && ct->req->state == PATH_PENDING
> > &&
> > +		!ct->waited_for);
> > +}
> > +
> >  int libcheck_pending(struct checker *c)
> >  {
> >  	int rc;
> > diff --git a/libmultipath/checkers/tur.c
> > b/libmultipath/checkers/tur.c
> > index 81db565b..41d6b9c3 100644
> > --- a/libmultipath/checkers/tur.c
> > +++ b/libmultipath/checkers/tur.c
> > @@ -59,6 +59,7 @@ struct tur_checker_context {
> >  	struct checker_context ctx;
> >  	unsigned int nr_timeouts;
> >  	struct timespec endtime;
> > +	bool waited_for;
> >  };
> >  
> >  int libcheck_init (struct checker * c)
> > @@ -351,9 +352,17 @@ int check_pending(struct checker *c)
> >  		ct->thread = 0;
> >  	}
> >  
> > +	ct->waited_for = true;
> >  	return tur_status;
> >  }
> >  
> > +bool libcheck_need_wait(struct checker *c)
> > +{
> > +	struct tur_checker_context *ct = c->context;
> > +	return (ct && ct->thread && uatomic_read(&ct->running) != 0
> > &&
> > +		!ct->waited_for);
> > +}
> > +
> >  int libcheck_pending(struct checker *c)
> >  {
> >  	struct tur_checker_context *ct = c->context;
> > @@ -463,6 +472,7 @@ int libcheck_check(struct checker * c)
> >  		pthread_mutex_unlock(&ct->lock);
> >  		ct->fd = c->fd;
> >  		ct->timeout = c->timeout;
> > +		ct->waited_for = false;
> >  		uatomic_add(&ct->holders, 1);
> >  		uatomic_set(&ct->running, 1);
> >  		tur_set_async_timeout(c);


  reply	other threads:[~2024-10-08 19:33 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-12 21:49 [PATCH v2 00/22] Yet Another path checker refactor Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 01/22] libmultipath: store checker_check() result in checker struct Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 02/22] libmultipath: add missing checker function prototypes Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 03/22] libmultipath: split out the code to wait for pending checkers Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 04/22] libmultipath: remove pending wait code from libcheck_check calls Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 05/22] multipath-tools tests: fix up directio tests Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 06/22] libmultipath: split get_state into two functions Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 07/22] libmultipath: change path_offline to path_sysfs_state Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 08/22] multipathd: split check_path_state into two functions Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 09/22] multipathd: split do_checker_path Benjamin Marzinski
2024-10-03 20:23   ` Martin Wilck
2024-10-08 18:18     ` Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 10/22] multipathd: split check_path into two functions Benjamin Marzinski
2024-10-03 20:23   ` Martin Wilck
2024-10-08 18:29     ` Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 11/22] multipathd: split handle_uninitialized_path " Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 12/22] multipathd: split check_paths " Benjamin Marzinski
2024-10-03 20:41   ` Martin Wilck
2024-10-08 19:16     ` Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 13/22] multipathd: fix "fail path" and "reinstate path" commands Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 14/22] multipathd: update priority once after updating all paths Benjamin Marzinski
2024-10-03 21:00   ` Martin Wilck
2024-10-08 19:17     ` Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 15/22] multipathd: simplify checking for followover_should_failback Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 16/22] multipathd: only refresh prios on PATH_UP and PATH_GHOST Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 17/22] multipathd: remove pointless check Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 18/22] multipathd: fix deferred_failback_tick for reload removes Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 19/22] libmultipath: add libcheck_need_wait checker function Benjamin Marzinski
2024-10-03 21:15   ` Martin Wilck
2024-10-08 19:33     ` Benjamin Marzinski [this message]
2024-10-09 15:49       ` Martin Wilck
2024-10-14 17:48         ` Benjamin Marzinski
2024-10-14 21:08           ` Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 20/22] libmultipath: don't wait in libcheck_pending Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 21/22] multipathd: wait for checkers to complete Benjamin Marzinski
2024-09-12 21:49 ` [PATCH v2 22/22] multipath-tools tests: fix up directio tests Benjamin Marzinski
2024-09-13  9:30 ` [PATCH v2 00/22] Yet Another path checker refactor Martin Wilck
2024-09-16 21:11   ` Benjamin Marzinski
2024-09-17 10:13     ` Martin Wilck
2024-10-03 21:23 ` Martin Wilck

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=ZwWJBhwOnrUmtEa_@redhat.com \
    --to=bmarzins@redhat.com \
    --cc=christophe.varoqui@opensvc.com \
    --cc=dm-devel@lists.linux.dev \
    --cc=martin.wilck@suse.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.