2018-01-09 03:21:59

by Yangbo Lu

[permalink] [raw]
Subject: [v2] net: gianfar_ptp: move set_fipers() to spinlock protecting area

set_fipers() calling should be protected by spinlock in
case that any interrupt breaks related registers setting
and the function we expect. This patch is to move set_fipers()
to spinlock protecting area in ptp_gianfar_adjtime().

Signed-off-by: Yangbo Lu <[email protected]>
---
Changes for v2:
- explained why spinlock was needed in commit message.
---
drivers/net/ethernet/freescale/gianfar_ptp.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/freescale/gianfar_ptp.c b/drivers/net/ethernet/freescale/gianfar_ptp.c
index 5441142..9f8d4f8 100644
--- a/drivers/net/ethernet/freescale/gianfar_ptp.c
+++ b/drivers/net/ethernet/freescale/gianfar_ptp.c
@@ -319,11 +319,10 @@ static int ptp_gianfar_adjtime(struct ptp_clock_info *ptp, s64 delta)
now = tmr_cnt_read(etsects);
now += delta;
tmr_cnt_write(etsects, now);
+ set_fipers(etsects);

spin_unlock_irqrestore(&etsects->lock, flags);

- set_fipers(etsects);
-
return 0;
}

--
1.7.1


2018-01-09 03:39:42

by Richard Cochran

[permalink] [raw]
Subject: Re: [v2] net: gianfar_ptp: move set_fipers() to spinlock protecting area

On Tue, Jan 09, 2018 at 11:02:33AM +0800, Yangbo Lu wrote:
> set_fipers() calling should be protected by spinlock in
> case that any interrupt breaks related registers setting
> and the function we expect. This patch is to move set_fipers()
> to spinlock protecting area in ptp_gianfar_adjtime().
>
> Signed-off-by: Yangbo Lu <[email protected]>

Acked-by: Richard Cochran <[email protected]>

2018-01-09 09:15:23

by Fabio Estevam

[permalink] [raw]
Subject: Re: [v2] net: gianfar_ptp: move set_fipers() to spinlock protecting area

On Tue, Jan 9, 2018 at 1:02 AM, Yangbo Lu <[email protected]> wrote:
> set_fipers() calling should be protected by spinlock in
> case that any interrupt breaks related registers setting
> and the function we expect. This patch is to move set_fipers()
> to spinlock protecting area in ptp_gianfar_adjtime().
>
> Signed-off-by: Yangbo Lu <[email protected]>
> ---
> Changes for v2:
> - explained why spinlock was needed in commit message.

Thanks for improving the commit log:

Reviewed-by: Fabio Estevam <[email protected]>

2018-01-10 19:54:32

by David Miller

[permalink] [raw]
Subject: Re: [v2] net: gianfar_ptp: move set_fipers() to spinlock protecting area

From: Yangbo Lu <[email protected]>
Date: Tue, 9 Jan 2018 11:02:33 +0800

> set_fipers() calling should be protected by spinlock in
> case that any interrupt breaks related registers setting
> and the function we expect. This patch is to move set_fipers()
> to spinlock protecting area in ptp_gianfar_adjtime().
>
> Signed-off-by: Yangbo Lu <[email protected]>
> ---
> Changes for v2:
> - explained why spinlock was needed in commit message.

Applied.