2021-04-07 01:47:15

by Huang Guobin

[permalink] [raw]
Subject: [PATCH -next] tty: n_gsm: use DEFINE_SPINLOCK() for spinlock

From: Guobin Huang <[email protected]>

spinlock can be initialized automatically with DEFINE_SPINLOCK()
rather than explicitly calling spin_lock_init().

Reported-by: Hulk Robot <[email protected]>
Signed-off-by: Guobin Huang <[email protected]>
---
drivers/tty/n_gsm.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
index 9e12f9cb1a98..d60cffc70a0c 100644
--- a/drivers/tty/n_gsm.c
+++ b/drivers/tty/n_gsm.c
@@ -266,7 +266,7 @@ struct gsm_mux {

#define MAX_MUX 4 /* 256 minors */
static struct gsm_mux *gsm_mux[MAX_MUX]; /* GSM muxes */
-static spinlock_t gsm_mux_lock;
+static DEFINE_SPINLOCK(gsm_mux_lock);

static struct tty_driver *gsm_tty_driver;

@@ -3257,8 +3257,6 @@ static int __init gsm_init(void)
gsm_tty_driver->init_termios.c_lflag &= ~ECHO;
tty_set_operations(gsm_tty_driver, &gsmtty_ops);

- spin_lock_init(&gsm_mux_lock);
-
if (tty_register_driver(gsm_tty_driver)) {
put_tty_driver(gsm_tty_driver);
tty_unregister_ldisc(N_GSM0710);


2021-04-07 18:51:00

by Jiri Slaby

[permalink] [raw]
Subject: Re: [PATCH -next] tty: n_gsm: use DEFINE_SPINLOCK() for spinlock

On 06. 04. 21, 13:56, Huang Guobin wrote:
> From: Guobin Huang <[email protected]>
>
> spinlock can be initialized automatically with DEFINE_SPINLOCK()
> rather than explicitly calling spin_lock_init().
>
> Reported-by: Hulk Robot <[email protected]>
> Signed-off-by: Guobin Huang <[email protected]>

Reviewed-by: Jiri Slaby <[email protected]>

> ---
> drivers/tty/n_gsm.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
> index 9e12f9cb1a98..d60cffc70a0c 100644
> --- a/drivers/tty/n_gsm.c
> +++ b/drivers/tty/n_gsm.c
> @@ -266,7 +266,7 @@ struct gsm_mux {
>
> #define MAX_MUX 4 /* 256 minors */
> static struct gsm_mux *gsm_mux[MAX_MUX]; /* GSM muxes */
> -static spinlock_t gsm_mux_lock;
> +static DEFINE_SPINLOCK(gsm_mux_lock);
>
> static struct tty_driver *gsm_tty_driver;
>
> @@ -3257,8 +3257,6 @@ static int __init gsm_init(void)
> gsm_tty_driver->init_termios.c_lflag &= ~ECHO;
> tty_set_operations(gsm_tty_driver, &gsmtty_ops);
>
> - spin_lock_init(&gsm_mux_lock);
> -
> if (tty_register_driver(gsm_tty_driver)) {
> put_tty_driver(gsm_tty_driver);
> tty_unregister_ldisc(N_GSM0710);
>


--
js