* [PATCH] drivers/net: hippi: Convert timers to use timer_setup()
@ 2017-10-25 10:51 Kees Cook
2017-10-25 12:58 ` Jes Sorensen
2017-10-27 3:09 ` David Miller
0 siblings, 2 replies; 3+ messages in thread
From: Kees Cook @ 2017-10-25 10:51 UTC (permalink / raw)
To: David S. Miller; +Cc: Jes Sorensen, linux-hippi, netdev, linux-kernel
In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly.
Cc: Jes Sorensen <jes@trained-monkey.org>
Cc: linux-hippi@sunsite.dk
Cc: netdev@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
---
drivers/net/hippi/rrunner.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/hippi/rrunner.c b/drivers/net/hippi/rrunner.c
index 76cc140774a2..8483f03d5a41 100644
--- a/drivers/net/hippi/rrunner.c
+++ b/drivers/net/hippi/rrunner.c
@@ -1146,10 +1146,10 @@ static inline void rr_raz_rx(struct rr_private *rrpriv,
}
}
-static void rr_timer(unsigned long data)
+static void rr_timer(struct timer_list *t)
{
- struct net_device *dev = (struct net_device *)data;
- struct rr_private *rrpriv = netdev_priv(dev);
+ struct rr_private *rrpriv = from_timer(rrpriv, t, timer);
+ struct net_device *dev = pci_get_drvdata(rrpriv->pci_dev);
struct rr_regs __iomem *regs = rrpriv->regs;
unsigned long flags;
@@ -1229,7 +1229,7 @@ static int rr_open(struct net_device *dev)
/* Set the timer to switch to check for link beat and perhaps switch
to an alternate media type. */
- setup_timer(&rrpriv->timer, rr_timer, (unsigned long)dev);
+ timer_setup(&rrpriv->timer, rr_timer, 0);
rrpriv->timer.expires = RUN_AT(5*HZ); /* 5 sec. watchdog */
add_timer(&rrpriv->timer);
--
2.7.4
--
Kees Cook
Pixel Security
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] drivers/net: hippi: Convert timers to use timer_setup()
2017-10-25 10:51 [PATCH] drivers/net: hippi: Convert timers to use timer_setup() Kees Cook
@ 2017-10-25 12:58 ` Jes Sorensen
2017-10-27 3:09 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: Jes Sorensen @ 2017-10-25 12:58 UTC (permalink / raw)
To: Kees Cook, David S. Miller
Cc: Jes Sorensen, linux-hippi, netdev, linux-kernel
On 10/25/2017 06:51 AM, Kees Cook wrote:
> In preparation for unconditionally passing the struct timer_list pointer to
> all timer callbacks, switch to using the new timer_setup() and from_timer()
> to pass the timer pointer explicitly.
>
> Cc: Jes Sorensen <jes@trained-monkey.org>
> Cc: linux-hippi@sunsite.dk
> Cc: netdev@vger.kernel.org
> Signed-off-by: Kees Cook <keescook@chromium.org>
> ---
> drivers/net/hippi/rrunner.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
Looks good to me.
Jes
> diff --git a/drivers/net/hippi/rrunner.c b/drivers/net/hippi/rrunner.c
> index 76cc140774a2..8483f03d5a41 100644
> --- a/drivers/net/hippi/rrunner.c
> +++ b/drivers/net/hippi/rrunner.c
> @@ -1146,10 +1146,10 @@ static inline void rr_raz_rx(struct rr_private *rrpriv,
> }
> }
>
> -static void rr_timer(unsigned long data)
> +static void rr_timer(struct timer_list *t)
> {
> - struct net_device *dev = (struct net_device *)data;
> - struct rr_private *rrpriv = netdev_priv(dev);
> + struct rr_private *rrpriv = from_timer(rrpriv, t, timer);
> + struct net_device *dev = pci_get_drvdata(rrpriv->pci_dev);
> struct rr_regs __iomem *regs = rrpriv->regs;
> unsigned long flags;
>
> @@ -1229,7 +1229,7 @@ static int rr_open(struct net_device *dev)
>
> /* Set the timer to switch to check for link beat and perhaps switch
> to an alternate media type. */
> - setup_timer(&rrpriv->timer, rr_timer, (unsigned long)dev);
> + timer_setup(&rrpriv->timer, rr_timer, 0);
> rrpriv->timer.expires = RUN_AT(5*HZ); /* 5 sec. watchdog */
> add_timer(&rrpriv->timer);
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] drivers/net: hippi: Convert timers to use timer_setup()
2017-10-25 10:51 [PATCH] drivers/net: hippi: Convert timers to use timer_setup() Kees Cook
2017-10-25 12:58 ` Jes Sorensen
@ 2017-10-27 3:09 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2017-10-27 3:09 UTC (permalink / raw)
To: keescook; +Cc: jes, linux-hippi, netdev, linux-kernel
From: Kees Cook <keescook@chromium.org>
Date: Wed, 25 Oct 2017 03:51:29 -0700
> In preparation for unconditionally passing the struct timer_list pointer to
> all timer callbacks, switch to using the new timer_setup() and from_timer()
> to pass the timer pointer explicitly.
>
> Cc: Jes Sorensen <jes@trained-monkey.org>
> Cc: linux-hippi@sunsite.dk
> Cc: netdev@vger.kernel.org
> Signed-off-by: Kees Cook <keescook@chromium.org>
Applied.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-27 3:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-25 10:51 [PATCH] drivers/net: hippi: Convert timers to use timer_setup() Kees Cook
2017-10-25 12:58 ` Jes Sorensen
2017-10-27 3:09 ` David Miller
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).