lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 29 Dec 2008 16:43:41 +0000
From:	Steve.Glendinning@...c.com
To:	Alexey Dobriyan <adobriyan@...il.com>
Cc:	davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH] smsc911x: compile fix re netif_rx signature changes

Thanks Alexey.

Signed-off-by: Steve Glendinning <steve.glendinning@...c.com>

> Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
> ---
> 
>  drivers/net/smsc911x.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> --- a/drivers/net/smsc911x.c
> +++ b/drivers/net/smsc911x.c
> @@ -1484,13 +1484,13 @@ static irqreturn_t smsc911x_irqhandler(int 
> irq, void *dev_id)
>     }
> 
>     if (likely(intsts & inten & INT_STS_RSFL_)) {
> -      if (likely(netif_rx_schedule_prep(dev, &pdata->napi))) {
> +      if (likely(netif_rx_schedule_prep(&pdata->napi))) {
>           /* Disable Rx interrupts */
>           temp = smsc911x_reg_read(pdata, INT_EN);
>           temp &= (~INT_EN_RSFL_EN_);
>           smsc911x_reg_write(pdata, INT_EN, temp);
>           /* Schedule a NAPI poll */
> -         __netif_rx_schedule(dev, &pdata->napi);
> +         __netif_rx_schedule(&pdata->napi);
>        } else {
>           SMSC_WARNING(RX_ERR,
>              "netif_rx_schedule_prep failed");
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ