From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Marcus Folkesson <marcus.folkesson@gmail.com>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] Input: pxrc - simplify mutex handling with guard macro
Date: Fri, 1 Dec 2023 15:35:16 -0800 [thread overview]
Message-ID: <ZWpttAT6az4yYb91@google.com> (raw)
In-Reply-To: <20231201-pxrc-guard-v2-1-714779672bc8@gmail.com>
On Fri, Dec 01, 2023 at 02:17:13PM +0100, Marcus Folkesson wrote:
> Use the guard(mutex) macro for handle mutex lock/unlocks.
>
> Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
> ---
> Changes in v2:
> - Add guard in pxrc_open()
> - Link to v1: https://lore.kernel.org/r/20231201-pxrc-guard-v1-1-38937e657368@gmail.com
> ---
> drivers/input/joystick/pxrc.c | 29 ++++++++++++-----------------
> 1 file changed, 12 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/input/joystick/pxrc.c b/drivers/input/joystick/pxrc.c
> index ea2bf5951d67..d4b699418361 100644
> --- a/drivers/input/joystick/pxrc.c
> +++ b/drivers/input/joystick/pxrc.c
> @@ -5,15 +5,17 @@
> * Copyright (C) 2018 Marcus Folkesson <marcus.folkesson@gmail.com>
> */
>
> -#include <linux/kernel.h>
> +#include <linux/cleanup.h>
> #include <linux/errno.h>
> -#include <linux/slab.h>
> +#include <linux/input.h>
> +#include <linux/kernel.h>
> #include <linux/module.h>
> +#include <linux/mutex.h>
> +#include <linux/slab.h>
> #include <linux/uaccess.h>
> +
> #include <linux/usb.h>
> #include <linux/usb/input.h>
> -#include <linux/mutex.h>
> -#include <linux/input.h>
>
> #define PXRC_VENDOR_ID 0x1781
> #define PXRC_PRODUCT_ID 0x0898
> @@ -83,31 +85,26 @@ static int pxrc_open(struct input_dev *input)
> struct pxrc *pxrc = input_get_drvdata(input);
> int retval;
Now that we are not returning "success" and only carry error codes
in this variable we should call it "error".
>
> - mutex_lock(&pxrc->pm_mutex);
> + guard(mutex)(&pxrc->pm_mutex);
> retval = usb_submit_urb(pxrc->urb, GFP_KERNEL);
> if (retval) {
> dev_err(&pxrc->intf->dev,
> "%s - usb_submit_urb failed, error: %d\n",
> __func__, retval);
> - retval = -EIO;
> - goto out;
> + return -EIO;
> }
>
> pxrc->is_open = true;
> -
> -out:
> - mutex_unlock(&pxrc->pm_mutex);
> - return retval;
> + return 0;
> }
>
> static void pxrc_close(struct input_dev *input)
> {
> struct pxrc *pxrc = input_get_drvdata(input);
>
> - mutex_lock(&pxrc->pm_mutex);
> + guard(mutex)(&pxrc->pm_mutex);
> usb_kill_urb(pxrc->urb);
> pxrc->is_open = false;
> - mutex_unlock(&pxrc->pm_mutex);
> }
>
> static void pxrc_free_urb(void *_pxrc)
> @@ -208,10 +205,9 @@ static int pxrc_suspend(struct usb_interface *intf, pm_message_t message)
> {
> struct pxrc *pxrc = usb_get_intfdata(intf);
>
> - mutex_lock(&pxrc->pm_mutex);
> + guard(mutex)(&pxrc->pm_mutex);
> if (pxrc->is_open)
> usb_kill_urb(pxrc->urb);
> - mutex_unlock(&pxrc->pm_mutex);
>
> return 0;
> }
> @@ -221,11 +217,10 @@ static int pxrc_resume(struct usb_interface *intf)
> struct pxrc *pxrc = usb_get_intfdata(intf);
> int retval = 0;
>
> - mutex_lock(&pxrc->pm_mutex);
> + guard(mutex)(&pxrc->pm_mutex);
> if (pxrc->is_open && usb_submit_urb(pxrc->urb, GFP_KERNEL) < 0)
> retval = -EIO;
return -EIO;
>
> - mutex_unlock(&pxrc->pm_mutex);
> return retval;
return 0;
Thanks.
--
Dmitry
prev parent reply other threads:[~2023-12-01 23:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-01 13:17 [PATCH v2] Input: pxrc - simplify mutex handling with guard macro Marcus Folkesson
2023-12-01 23:35 ` Dmitry Torokhov [this message]
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=ZWpttAT6az4yYb91@google.com \
--to=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcus.folkesson@gmail.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.