2009-09-06 07:27:16

by Michael Guntsche

[permalink] [raw]
Subject: 2.6.31-rc9 breaks gianfar

Good morning,

Commit
38bddf04bcfe661fbdab94888c3b72c32f6873b3 gianfar: gfar_remove needs to call unregister_netdev()

breaks the build of the gianfar driver because "dev" is undefined in
this function. To quickly test rc9 I changed this to priv->ndev but I do
not know if this is the correct one.

Kind regards,
Michael


2009-09-06 08:41:17

by David Miller

[permalink] [raw]
Subject: Re: 2.6.31-rc9 breaks gianfar

From: Michael Guntsche <[email protected]>
Date: Sun, 6 Sep 2009 09:27:08 +0200

Please also report networking bugs to [email protected]
and CC: the person who commited the problematic commit.

> Commit
> 38bddf04bcfe661fbdab94888c3b72c32f6873b3 gianfar: gfar_remove needs to call unregister_netdev()
>
> breaks the build of the gianfar driver because "dev" is undefined in
> this function. To quickly test rc9 I changed this to priv->ndev but I do
> not know if this is the correct one.

Toru-chan, did you even compile test this again current kernels?

I'll commit the following fix and push it to Linus, thanks.

>From 5db8bfee2dbb3ff28c18868081398fa6e2155053 Mon Sep 17 00:00:00 2001
From: David S. Miller <[email protected]>
Date: Sun, 6 Sep 2009 01:41:02 -0700
Subject: [PATCH] gianfar: Fix build.

Reported by Michael Guntsche <[email protected]>

--------------------
Commit
38bddf04bcfe661fbdab94888c3b72c32f6873b3 gianfar: gfar_remove needs to call unregister_netdev()

breaks the build of the gianfar driver because "dev" is undefined in
this function. To quickly test rc9 I changed this to priv->ndev but I do
not know if this is the correct one.
--------------------

Signed-off-by: David S. Miller <[email protected]>
---
drivers/net/gianfar.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index 24f7ca5..a00ec63 100644
--- a/drivers/net/gianfar.c
+++ b/drivers/net/gianfar.c
@@ -491,7 +491,7 @@ static int gfar_remove(struct of_device *ofdev)

dev_set_drvdata(&ofdev->dev, NULL);

- unregister_netdev(dev);
+ unregister_netdev(priv->ndev);
iounmap(priv->regs);
free_netdev(priv->ndev);

--
1.6.4.2

2009-09-07 03:22:41

by Toru UCHIYAMA

[permalink] [raw]
Subject: Re: 2.6.31-rc9 breaks gianfar

Hi David,

I'm sorry.It was my mistake.
I will note that it is not never in the future.
Thank you for the correction.


> From: Michael Guntsche <[email protected]>
> Date: Sun, 6 Sep 2009 09:27:08 +0200
>
> Please also report networking bugs to [email protected]
> and CC: the person who commited the problematic commit.
>
>> Commit
>> 38bddf04bcfe661fbdab94888c3b72c32f6873b3 gianfar: gfar_remove needs to call unregister_netdev()
>>
>> breaks the build of the gianfar driver because "dev" is undefined in
>> this function. To quickly test rc9 I changed this to priv->ndev but I do
>> not know if this is the correct one.
>
> Toru-chan, did you even compile test this again current kernels?
>
> I'll commit the following fix and push it to Linus, thanks.
>
>>From 5db8bfee2dbb3ff28c18868081398fa6e2155053 Mon Sep 17 00:00:00 2001
> From: David S. Miller <[email protected]>
> Date: Sun, 6 Sep 2009 01:41:02 -0700
> Subject: [PATCH] gianfar: Fix build.
>
> Reported by Michael Guntsche <[email protected]>
>
> --------------------
> Commit
> 38bddf04bcfe661fbdab94888c3b72c32f6873b3 gianfar: gfar_remove needs to call unregister_netdev()
>
> breaks the build of the gianfar driver because "dev" is undefined in
> this function. To quickly test rc9 I changed this to priv->ndev but I do
> not know if this is the correct one.
> --------------------
>
> Signed-off-by: David S. Miller <[email protected]>
> ---
> drivers/net/gianfar.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
> index 24f7ca5..a00ec63 100644
> --- a/drivers/net/gianfar.c
> +++ b/drivers/net/gianfar.c
> @@ -491,7 +491,7 @@ static int gfar_remove(struct of_device *ofdev)
>
> dev_set_drvdata(&ofdev->dev, NULL);
>
> - unregister_netdev(dev);
> + unregister_netdev(priv->ndev);
> iounmap(priv->regs);
> free_netdev(priv->ndev);
>


--
-----------------------------------------------
Toru UCHIYAMA [email protected]