* [Cluster-devel] [PATCH dlm/next 1/2] fs: dlm: use __func__ for function name @ 2022-07-20 1:15 Alexander Aring 2022-07-20 1:15 ` [Cluster-devel] [PATCH dlm/next 2/2] fs: dlm: handle -EINVAL as log_error() Alexander Aring 0 siblings, 1 reply; 3+ messages in thread From: Alexander Aring @ 2022-07-20 1:15 UTC (permalink / raw) To: cluster-devel.redhat.com There are several times of using hard-coded function names inside the format string. When changing code checkpatch will drop a warning about this. This patch prepares to not dropping a checkpatch warning when introduce the same log message for a different loglevel by using __func__ instead of a hard-coded function name. Signed-off-by: Alexander Aring <aahringo@redhat.com> --- fs/dlm/lock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index c23413da40f5..d8de4003ec6a 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -2901,7 +2901,7 @@ static int validate_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb, rv = 0; out: if (rv) - log_debug(ls, "validate_lock_args %d %x %x %x %d %d %s", + log_debug(ls, "%s %d %x %x %x %d %d %s", __func__, rv, lkb->lkb_id, lkb->lkb_flags, args->flags, lkb->lkb_status, lkb->lkb_wait_type, lkb->lkb_resource->res_name); @@ -3038,7 +3038,7 @@ static int validate_unlock_args(struct dlm_lkb *lkb, struct dlm_args *args) rv = 0; out: if (rv) - log_debug(ls, "validate_unlock_args %d %x %x %x %x %d %s", rv, + log_debug(ls, "%s %d %x %x %x %x %d %s", __func__, rv, lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags, args->flags, lkb->lkb_wait_type, lkb->lkb_resource->res_name); -- 2.31.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Cluster-devel] [PATCH dlm/next 2/2] fs: dlm: handle -EINVAL as log_error() 2022-07-20 1:15 [Cluster-devel] [PATCH dlm/next 1/2] fs: dlm: use __func__ for function name Alexander Aring @ 2022-07-20 1:15 ` Alexander Aring 2022-07-20 14:58 ` Alexander Aring 0 siblings, 1 reply; 3+ messages in thread From: Alexander Aring @ 2022-07-20 1:15 UTC (permalink / raw) To: cluster-devel.redhat.com If the user generates a -EINVAL it's probably because the user using DLM wrong. To give the user notice about that wrong behaviour we should always print -EINVAL errors on the proper loglevel. In case of other errors like -EBUSY it will be still printed on debug loglevel as the current API handles it as "retry again". Signed-off-by: Alexander Aring <aahringo@redhat.com> --- fs/dlm/lock.c | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index d8de4003ec6a..7d5f94867e45 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -2900,11 +2900,21 @@ static int validate_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb, #endif rv = 0; out: - if (rv) + switch (rv) { + case -EINVAL: + log_error(ls, "%s %d %x %x %x %d %d %s", __func__, + rv, lkb->lkb_id, lkb->lkb_flags, args->flags, + lkb->lkb_status, lkb->lkb_wait_type, + lkb->lkb_resource->res_name); + break; + default: log_debug(ls, "%s %d %x %x %x %d %d %s", __func__, rv, lkb->lkb_id, lkb->lkb_flags, args->flags, lkb->lkb_status, lkb->lkb_wait_type, lkb->lkb_resource->res_name); + break; + } + return rv; } @@ -3037,11 +3047,21 @@ static int validate_unlock_args(struct dlm_lkb *lkb, struct dlm_args *args) lkb->lkb_astparam = args->astparam; rv = 0; out: - if (rv) + switch (rv) { + case -EINVAL: + log_error(ls, "%s %d %x %x %x %x %d %s", __func__, rv, + lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags, + args->flags, lkb->lkb_wait_type, + lkb->lkb_resource->res_name); + break; + default: log_debug(ls, "%s %d %x %x %x %x %d %s", __func__, rv, lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags, args->flags, lkb->lkb_wait_type, lkb->lkb_resource->res_name); + break; + } + return rv; } -- 2.31.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Cluster-devel] [PATCH dlm/next 2/2] fs: dlm: handle -EINVAL as log_error() 2022-07-20 1:15 ` [Cluster-devel] [PATCH dlm/next 2/2] fs: dlm: handle -EINVAL as log_error() Alexander Aring @ 2022-07-20 14:58 ` Alexander Aring 0 siblings, 0 replies; 3+ messages in thread From: Alexander Aring @ 2022-07-20 14:58 UTC (permalink / raw) To: cluster-devel.redhat.com Hi, On Tue, Jul 19, 2022 at 9:15 PM Alexander Aring <aahringo@redhat.com> wrote: > > If the user generates a -EINVAL it's probably because the user using DLM > wrong. To give the user notice about that wrong behaviour we should > always print -EINVAL errors on the proper loglevel. In case of other > errors like -EBUSY it will be still printed on debug loglevel as the > current API handles it as "retry again". > > Signed-off-by: Alexander Aring <aahringo@redhat.com> > --- > fs/dlm/lock.c | 24 ++++++++++++++++++++++-- > 1 file changed, 22 insertions(+), 2 deletions(-) > > diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c > index d8de4003ec6a..7d5f94867e45 100644 > --- a/fs/dlm/lock.c > +++ b/fs/dlm/lock.c > @@ -2900,11 +2900,21 @@ static int validate_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb, > #endif > rv = 0; > out: > - if (rv) > + switch (rv) { > + case -EINVAL: > + log_error(ls, "%s %d %x %x %x %d %d %s", __func__, > + rv, lkb->lkb_id, lkb->lkb_flags, args->flags, > + lkb->lkb_status, lkb->lkb_wait_type, > + lkb->lkb_resource->res_name); > + break; > + default: > log_debug(ls, "%s %d %x %x %x %d %d %s", __func__, > rv, lkb->lkb_id, lkb->lkb_flags, args->flags, > lkb->lkb_status, lkb->lkb_wait_type, > lkb->lkb_resource->res_name); > + break; > + } > + > return rv; > } > > @@ -3037,11 +3047,21 @@ static int validate_unlock_args(struct dlm_lkb *lkb, struct dlm_args *args) > lkb->lkb_astparam = args->astparam; > rv = 0; > out: > - if (rv) > + switch (rv) { > + case -EINVAL: > + log_error(ls, "%s %d %x %x %x %x %d %s", __func__, rv, > + lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags, > + args->flags, lkb->lkb_wait_type, > + lkb->lkb_resource->res_name); > + break; > + default: > log_debug(ls, "%s %d %x %x %x %x %d %s", __func__, rv, > lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags, > args->flags, lkb->lkb_wait_type, > lkb->lkb_resource->res_name); > + break; > + } > + there need to be a case 0: which does nothing of course... will send a v2. - Alex ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-20 14:58 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-07-20 1:15 [Cluster-devel] [PATCH dlm/next 1/2] fs: dlm: use __func__ for function name Alexander Aring 2022-07-20 1:15 ` [Cluster-devel] [PATCH dlm/next 2/2] fs: dlm: handle -EINVAL as log_error() Alexander Aring 2022-07-20 14:58 ` Alexander Aring
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).