Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1547505 > unrolled thread
| Started by | "Kweh, Hock Leong" <hock.leong.kweh@intel.com> |
|---|---|
| First post | 2016-12-27 07:40 +0100 |
| Last post | 2016-12-29 01:50 +0100 |
| Articles | 12 — 5 participants |
Back to article view | Back to linux.kernel
[PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe "Kweh, Hock Leong" <hock.leong.kweh@intel.com> - 2016-12-27 07:40 +0100
Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe Pavel Machek <pavel@ucw.cz> - 2016-12-27 11:50 +0100
Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe David Miller <davem@davemloft.net> - 2016-12-27 17:50 +0100
RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe "Kweh, Hock Leong" <hock.leong.kweh@intel.com> - 2016-12-28 02:50 +0100
[PATCH net] net: stmmac: Fix race between stmmac_drv_probe and stmmac_open Florian Fainelli <f.fainelli@gmail.com> - 2016-12-28 03:30 +0100
Re: [PATCH net] net: stmmac: Fix race between stmmac_drv_probe and stmmac_open David Miller <davem@davemloft.net> - 2016-12-28 03:40 +0100
Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe Kishan Sandeep <sandeepkishan108@gmail.com> - 2016-12-28 13:00 +0100
RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe "Kweh, Hock Leong" <hock.leong.kweh@intel.com> - 2016-12-29 01:30 +0100
RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe "Kweh, Hock Leong" <hock.leong.kweh@intel.com> - 2016-12-28 06:50 +0100
Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe Florian Fainelli <f.fainelli@gmail.com> - 2016-12-28 19:50 +0100
RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe "Kweh, Hock Leong" <hock.leong.kweh@intel.com> - 2016-12-29 01:40 +0100
Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe Florian Fainelli <f.fainelli@gmail.com> - 2016-12-29 01:50 +0100
| From | "Kweh, Hock Leong" <hock.leong.kweh@intel.com> |
|---|---|
| Date | 2016-12-27 07:40 +0100 |
| Subject | [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sSTAu-6XK-13@gated-at.bofh.it> |
From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com>
If kernel module stmmac driver being loaded after OS booted, there is a
race condition between stmmac_open() and stmmac_mdio_register(), which is
invoked inside stmmac_dvr_probe(), and the error is showed in dmesg log as
PHY not found and stmmac_open() failed:
[ 473.919358] stmmaceth 0000:01:00.0 (unnamed net_device) (uninitialized):
stmmac_dvr_probe: warning: cannot get CSR clock
[ 473.919382] stmmaceth 0000:01:00.0: no reset control found
[ 473.919412] stmmac - user ID: 0x10, Synopsys ID: 0x42
[ 473.919429] stmmaceth 0000:01:00.0: DMA HW capability register supported
[ 473.919436] stmmaceth 0000:01:00.0: RX Checksum Offload Engine supported
[ 473.919443] stmmaceth 0000:01:00.0: TX Checksum insertion supported
[ 473.919451] stmmaceth 0000:01:00.0 (unnamed net_device) (uninitialized):
Enable RX Mitigation via HW Watchdog Timer
[ 473.921395] libphy: PHY stmmac-1:00 not found
[ 473.921417] stmmaceth 0000:01:00.0 eth0: Could not attach to PHY
[ 473.921427] stmmaceth 0000:01:00.0 eth0: stmmac_open: Cannot attach to
PHY (error: -19)
[ 473.959710] libphy: stmmac: probed
[ 473.959724] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 0 IRQ POLL
(stmmac-1:00) active
[ 473.959728] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 1 IRQ POLL
(stmmac-1:01)
[ 473.959731] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 2 IRQ POLL
(stmmac-1:02)
[ 473.959734] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 3 IRQ POLL
(stmmac-1:03)
The resolution moved the register_netdev() function call to the end of
stmmac_dvr_probe() after stmmac_mdio_register().
Suggested-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Kweh, Hock Leong <hock.leong.kweh@intel.com>
---
changelog v2:
* Re-implemented the fix base on David & Florian suggestion and tested.
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index bb40382..263ac53 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -3339,13 +3339,6 @@ int stmmac_dvr_probe(struct device *device,
spin_lock_init(&priv->lock);
- ret = register_netdev(ndev);
- if (ret) {
- netdev_err(priv->dev, "%s: ERROR %i registering the device\n",
- __func__, ret);
- goto error_netdev_register;
- }
-
/* If a specific clk_csr value is passed from the platform
* this means that the CSR Clock Range selection cannot be
* changed at run-time and it is fixed. Viceversa the driver'll try to
@@ -3372,11 +3365,18 @@ int stmmac_dvr_probe(struct device *device,
}
}
+ ret = register_netdev(ndev);
+ if (ret) {
+ netdev_err(priv->dev, "%s: ERROR %i registering the device\n",
+ __func__, ret);
+ goto error_netdev_register;
+ }
+
return 0;
-error_mdio_register:
- unregister_netdev(ndev);
error_netdev_register:
+ stmmac_mdio_unregister(ndev);
+error_mdio_register:
netif_napi_del(&priv->napi);
error_hw_init:
clk_disable_unprepare(priv->pclk);
--
1.7.9.5
[toc] | [next] | [standalone]
| From | Pavel Machek <pavel@ucw.cz> |
|---|---|
| Date | 2016-12-27 11:50 +0100 |
| Subject | Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sSXup-Tj-1@gated-at.bofh.it> |
| In reply to | #1547505 |
[Multipart message — attachments visible in raw view] — view raw
On Tue 2016-12-27 22:42:36, Kweh, Hock Leong wrote: > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > > If kernel module stmmac driver being loaded after OS booted, there is a > race condition between stmmac_open() and stmmac_mdio_register(), which is > invoked inside stmmac_dvr_probe(), and the error is showed in dmesg log as > PHY not found and stmmac_open() failed: > [ 473.919358] stmmaceth 0000:01:00.0 (unnamed net_device) (uninitialized): > stmmac_dvr_probe: warning: cannot get CSR clock > [ 473.919382] stmmaceth 0000:01:00.0: no reset control found > [ 473.919412] stmmac - user ID: 0x10, Synopsys ID: 0x42 > [ 473.919429] stmmaceth 0000:01:00.0: DMA HW capability register supported > [ 473.919436] stmmaceth 0000:01:00.0: RX Checksum Offload Engine supported > [ 473.919443] stmmaceth 0000:01:00.0: TX Checksum insertion supported > [ 473.919451] stmmaceth 0000:01:00.0 (unnamed net_device) (uninitialized): > Enable RX Mitigation via HW Watchdog Timer > [ 473.921395] libphy: PHY stmmac-1:00 not found > [ 473.921417] stmmaceth 0000:01:00.0 eth0: Could not attach to PHY > [ 473.921427] stmmaceth 0000:01:00.0 eth0: stmmac_open: Cannot attach to > PHY (error: -19) > [ 473.959710] libphy: stmmac: probed > [ 473.959724] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 0 IRQ POLL > (stmmac-1:00) active > [ 473.959728] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 1 IRQ POLL > (stmmac-1:01) > [ 473.959731] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 2 IRQ POLL > (stmmac-1:02) > [ 473.959734] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 3 IRQ POLL > (stmmac-1:03) > > The resolution moved the register_netdev() function call to the end of > stmmac_dvr_probe() after stmmac_mdio_register(). > > Suggested-by: Florian Fainelli <f.fainelli@gmail.com> > Signed-off-by: Kweh, Hock Leong <hock.leong.kweh@intel.com> Acked-by: Pavel Machek <pavel@ucw.cz> -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-12-27 17:50 +0100 |
| Subject | Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sT36N-4uz-1@gated-at.bofh.it> |
| In reply to | #1547505 |
From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> Date: Tue, 27 Dec 2016 22:42:36 +0800 > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> You are not the author of this change, do not take credit for it. You have copied Florian's patch character by character, therefore he is the author. You also didn't CC: the netdev mailing list properly.
[toc] | [prev] | [next] | [standalone]
| From | "Kweh, Hock Leong" <hock.leong.kweh@intel.com> |
|---|---|
| Date | 2016-12-28 02:50 +0100 |
| Subject | RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sTbxn-1t2-1@gated-at.bofh.it> |
| In reply to | #1547686 |
> -----Original Message----- > From: David Miller [mailto:davem@davemloft.net] > Sent: Wednesday, December 28, 2016 12:34 AM > To: Kweh, Hock Leong <hock.leong.kweh@intel.com> > Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; > seraphin.bonnaffe@st.com; f.fainelli@gmail.com; > alexandre.torgue@gmail.com; manabian@gmail.com; niklas.cassel@axis.com; > johan@kernel.org; pavel@ucw.cz; Ong, Boon Leong > <boon.leong.ong@intel.com>; Voon, Weifeng <weifeng.voon@intel.com>; > lars.persson@axis.com; netdev@vger.kernel.org; linux-kernel@vger.kernel.org > Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and > stmmac_dvr_probe > > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > Date: Tue, 27 Dec 2016 22:42:36 +0800 > > > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > > You are not the author of this change, do not take credit for it. > > You have copied Florian's patch character by character, therefore > he is the author. > > You also didn't CC: the netdev mailing list properly. Noted & Thanks. Hi Florian, could you submit this fix from your side so that you are the author. I will help to test out. Thanks & Regards, Wilson
[toc] | [prev] | [next] | [standalone]
| From | Florian Fainelli <f.fainelli@gmail.com> |
|---|---|
| Date | 2016-12-28 03:30 +0100 |
| Subject | [PATCH net] net: stmmac: Fix race between stmmac_drv_probe and stmmac_open |
| Message-ID | <sTca5-1Vu-1@gated-at.bofh.it> |
| In reply to | #1547808 |
There is currently a small window during which the network device registered by
stmmac can be made visible, yet all resources, including and clock and MDIO bus
have not had a chance to be set up, this can lead to the following error to
occur:
[ 473.919358] stmmaceth 0000:01:00.0 (unnamed net_device) (uninitialized):
stmmac_dvr_probe: warning: cannot get CSR clock
[ 473.919382] stmmaceth 0000:01:00.0: no reset control found
[ 473.919412] stmmac - user ID: 0x10, Synopsys ID: 0x42
[ 473.919429] stmmaceth 0000:01:00.0: DMA HW capability register supported
[ 473.919436] stmmaceth 0000:01:00.0: RX Checksum Offload Engine supported
[ 473.919443] stmmaceth 0000:01:00.0: TX Checksum insertion supported
[ 473.919451] stmmaceth 0000:01:00.0 (unnamed net_device) (uninitialized):
Enable RX Mitigation via HW Watchdog Timer
[ 473.921395] libphy: PHY stmmac-1:00 not found
[ 473.921417] stmmaceth 0000:01:00.0 eth0: Could not attach to PHY
[ 473.921427] stmmaceth 0000:01:00.0 eth0: stmmac_open: Cannot attach to
PHY (error: -19)
[ 473.959710] libphy: stmmac: probed
[ 473.959724] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 0 IRQ POLL
(stmmac-1:00) active
[ 473.959728] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 1 IRQ POLL
(stmmac-1:01)
[ 473.959731] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 2 IRQ POLL
(stmmac-1:02)
[ 473.959734] stmmaceth 0000:01:00.0 eth0: PHY ID 01410cc2 at 3 IRQ POLL
(stmmac-1:03)
Fix this by making sure that register_netdev() is the last thing being done,
which guarantees that the clock and the MDIO bus are available.
Fixes: 4bfcbd7abce2 ("stmmac: Move the mdio_register/_unregister in probe/remove")
Reported-by: Kweh, Hock Leong <hock.leong.kweh@intel.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index bb40382e205d..5910ea51f8f6 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -3339,13 +3339,6 @@ int stmmac_dvr_probe(struct device *device,
spin_lock_init(&priv->lock);
- ret = register_netdev(ndev);
- if (ret) {
- netdev_err(priv->dev, "%s: ERROR %i registering the device\n",
- __func__, ret);
- goto error_netdev_register;
- }
-
/* If a specific clk_csr value is passed from the platform
* this means that the CSR Clock Range selection cannot be
* changed at run-time and it is fixed. Viceversa the driver'll try to
@@ -3372,11 +3365,14 @@ int stmmac_dvr_probe(struct device *device,
}
}
- return 0;
+ ret = register_netdev(ndev);
+ if (ret)
+ netdev_err(priv->dev, "%s: ERROR %i registering the device\n",
+ __func__, ret);
+
+ return ret;
error_mdio_register:
- unregister_netdev(ndev);
-error_netdev_register:
netif_napi_del(&priv->napi);
error_hw_init:
clk_disable_unprepare(priv->pclk);
--
2.9.3
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-12-28 03:40 +0100 |
| Subject | Re: [PATCH net] net: stmmac: Fix race between stmmac_drv_probe and stmmac_open |
| Message-ID | <sTcjL-1YK-3@gated-at.bofh.it> |
| In reply to | #1547810 |
From: Florian Fainelli <f.fainelli@gmail.com>
Date: Tue, 27 Dec 2016 18:23:06 -0800
> There is currently a small window during which the network device registered by
> stmmac can be made visible, yet all resources, including and clock and MDIO bus
> have not had a chance to be set up, this can lead to the following error to
> occur:
...
> Fix this by making sure that register_netdev() is the last thing being done,
> which guarantees that the clock and the MDIO bus are available.
>
> Fixes: 4bfcbd7abce2 ("stmmac: Move the mdio_register/_unregister in probe/remove")
> Reported-by: Kweh, Hock Leong <hock.leong.kweh@intel.com>
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Applied and queued up for -stable, thanks Florian.
[toc] | [prev] | [next] | [standalone]
| From | Kishan Sandeep <sandeepkishan108@gmail.com> |
|---|---|
| Date | 2016-12-28 13:00 +0100 |
| Message-ID | <sTl3I-7Id-25@gated-at.bofh.it> |
| In reply to | #1547808 |
On Wed, Dec 28, 2016 at 7:10 AM, Kweh, Hock Leong <hock.leong.kweh@intel.com> wrote: >> -----Original Message----- >> From: David Miller [mailto:davem@davemloft.net] >> Sent: Wednesday, December 28, 2016 12:34 AM >> To: Kweh, Hock Leong <hock.leong.kweh@intel.com> >> Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; >> seraphin.bonnaffe@st.com; f.fainelli@gmail.com; >> alexandre.torgue@gmail.com; manabian@gmail.com; niklas.cassel@axis.com; >> johan@kernel.org; pavel@ucw.cz; Ong, Boon Leong >> <boon.leong.ong@intel.com>; Voon, Weifeng <weifeng.voon@intel.com>; >> lars.persson@axis.com; netdev@vger.kernel.org; linux-kernel@vger.kernel.org >> Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and >> stmmac_dvr_probe >> >> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> >> Date: Tue, 27 Dec 2016 22:42:36 +0800 >> >> > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> >> >> You are not the author of this change, do not take credit for it. >> >> You have copied Florian's patch character by character, therefore >> he is the author. >> >> You also didn't CC: the netdev mailing list properly. > > Noted & Thanks. > > Hi Florian, could you submit this fix from your side so that you are the author. > I will help to test out. > > Thanks & Regards, > Wilson > I think you can give *--author* for giving author name. Try git commit -am "commit message" --author="Author_name <author_email>"
[toc] | [prev] | [next] | [standalone]
| From | "Kweh, Hock Leong" <hock.leong.kweh@intel.com> |
|---|---|
| Date | 2016-12-29 01:30 +0100 |
| Subject | RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sTwLv-7Dh-5@gated-at.bofh.it> |
| In reply to | #1547923 |
> -----Original Message----- > From: Kishan Sandeep [mailto:sandeepkishan108@gmail.com] > Sent: Wednesday, December 28, 2016 7:56 PM > To: Kweh, Hock Leong <hock.leong.kweh@intel.com> > Cc: David Miller <davem@davemloft.net>; f.fainelli@gmail.com; > Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; > seraphin.bonnaffe@st.com; alexandre.torgue@gmail.com; > manabian@gmail.com; niklas.cassel@axis.com; johan@kernel.org; > pavel@ucw.cz; lars.persson@axis.com; netdev@vger.kernel.org; linux- > kernel@vger.kernel.org > Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and > stmmac_dvr_probe > > On Wed, Dec 28, 2016 at 7:10 AM, Kweh, Hock Leong > <hock.leong.kweh@intel.com> wrote: > >> -----Original Message----- > >> From: David Miller [mailto:davem@davemloft.net] > >> Sent: Wednesday, December 28, 2016 12:34 AM > >> To: Kweh, Hock Leong <hock.leong.kweh@intel.com> > >> Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; > >> seraphin.bonnaffe@st.com; f.fainelli@gmail.com; > >> alexandre.torgue@gmail.com; manabian@gmail.com; > >> niklas.cassel@axis.com; johan@kernel.org; pavel@ucw.cz; Ong, Boon > >> Leong <boon.leong.ong@intel.com>; Voon, Weifeng > >> <weifeng.voon@intel.com>; lars.persson@axis.com; > >> netdev@vger.kernel.org; linux-kernel@vger.kernel.org > >> Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize > >> stmmac_open and stmmac_dvr_probe > >> > >> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > >> Date: Tue, 27 Dec 2016 22:42:36 +0800 > >> > >> > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > >> > >> You are not the author of this change, do not take credit for it. > >> > >> You have copied Florian's patch character by character, therefore he > >> is the author. > >> > >> You also didn't CC: the netdev mailing list properly. > > > > Noted & Thanks. > > > > Hi Florian, could you submit this fix from your side so that you are the author. > > I will help to test out. > > > > Thanks & Regards, > > Wilson > > > I think you can give *--author* for giving author name. Try git commit -am > "commit message" --author="Author_name <author_email>" Oh ... I am not aware of that. Thanks for informing. :-) Regards, Wilson
[toc] | [prev] | [next] | [standalone]
| From | "Kweh, Hock Leong" <hock.leong.kweh@intel.com> |
|---|---|
| Date | 2016-12-28 06:50 +0100 |
| Subject | RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sTfhD-3Zm-5@gated-at.bofh.it> |
| In reply to | #1547686 |
> -----Original Message-----
> From: David Miller [mailto:davem@davemloft.net]
> Sent: Wednesday, December 28, 2016 12:34 AM
> To: Kweh, Hock Leong <hock.leong.kweh@intel.com>
> Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com;
> seraphin.bonnaffe@st.com; f.fainelli@gmail.com;
> alexandre.torgue@gmail.com; manabian@gmail.com; niklas.cassel@axis.com;
> johan@kernel.org; pavel@ucw.cz; Ong, Boon Leong
> <boon.leong.ong@intel.com>; Voon, Weifeng <weifeng.voon@intel.com>;
> lars.persson@axis.com; netdev@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and
> stmmac_dvr_probe
>
> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com>
> Date: Tue, 27 Dec 2016 22:42:36 +0800
>
> > From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com>
>
> You are not the author of this change, do not take credit for it.
>
> You have copied Florian's patch character by character, therefore
> he is the author.
>
> You also didn't CC: the netdev mailing list properly.
Hi David & Florian,
Just to clarify that I do not copy exactly from Florian.
I have changed it to have proper handling on mdio unregister
while netdev_register() failed as showed below:
return 0;
-error_mdio_register:
- unregister_netdev(ndev);
error_netdev_register:
+ stmmac_mdio_unregister(ndev);
+error_mdio_register:
netif_napi_del(&priv->napi);
Vs
+
+ return ret;
error_mdio_register:
- unregister_netdev(ndev);
-error_netdev_register:
netif_napi_del(&priv->napi);
Just to point it out here, so that Florian could aware if he/she submit
this fix to the mailing list.
Thanks & Regards,
Wilson
[toc] | [prev] | [next] | [standalone]
| From | Florian Fainelli <f.fainelli@gmail.com> |
|---|---|
| Date | 2016-12-28 19:50 +0100 |
| Subject | Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sTrst-3EA-1@gated-at.bofh.it> |
| In reply to | #1547835 |
On 12/27/2016 09:49 PM, Kweh, Hock Leong wrote: >> -----Original Message----- >> From: David Miller [mailto:davem@davemloft.net] >> Sent: Wednesday, December 28, 2016 12:34 AM >> To: Kweh, Hock Leong <hock.leong.kweh@intel.com> >> Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; >> seraphin.bonnaffe@st.com; f.fainelli@gmail.com; >> alexandre.torgue@gmail.com; manabian@gmail.com; niklas.cassel@axis.com; >> johan@kernel.org; pavel@ucw.cz; Ong, Boon Leong >> <boon.leong.ong@intel.com>; Voon, Weifeng <weifeng.voon@intel.com>; >> lars.persson@axis.com; netdev@vger.kernel.org; linux-kernel@vger.kernel.org >> Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and >> stmmac_dvr_probe >> >> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> >> Date: Tue, 27 Dec 2016 22:42:36 +0800 >> >>> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> >> >> You are not the author of this change, do not take credit for it. >> >> You have copied Florian's patch character by character, therefore >> he is the author. >> >> You also didn't CC: the netdev mailing list properly. > > Hi David & Florian, > > Just to clarify that I do not copy exactly from Florian. > I have changed it to have proper handling on mdio unregister > while netdev_register() failed as showed below: > > return 0; > > -error_mdio_register: > - unregister_netdev(ndev); > error_netdev_register: > + stmmac_mdio_unregister(ndev); Although this is required, we can't be doing it in all circumstances, we need to mimic what stmmac_drv_remove() does. Let me submit an incremental fix which takes care of mdio bus unregistration. -- Florian
[toc] | [prev] | [next] | [standalone]
| From | "Kweh, Hock Leong" <hock.leong.kweh@intel.com> |
|---|---|
| Date | 2016-12-29 01:40 +0100 |
| Subject | RE: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sTwVc-7Gw-11@gated-at.bofh.it> |
| In reply to | #1548038 |
> -----Original Message----- > From: Florian Fainelli [mailto:f.fainelli@gmail.com] > Sent: Thursday, December 29, 2016 2:43 AM > To: Kweh, Hock Leong <hock.leong.kweh@intel.com>; David Miller > <davem@davemloft.net> > Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; > seraphin.bonnaffe@st.com; alexandre.torgue@gmail.com; > manabian@gmail.com; niklas.cassel@axis.com; johan@kernel.org; > pavel@ucw.cz; Ong, Boon Leong <boon.leong.ong@intel.com>; Voon, Weifeng > <weifeng.voon@intel.com>; lars.persson@axis.com; netdev@vger.kernel.org; > linux-kernel@vger.kernel.org > Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and > stmmac_dvr_probe > > On 12/27/2016 09:49 PM, Kweh, Hock Leong wrote: > >> -----Original Message----- > >> From: David Miller [mailto:davem@davemloft.net] > >> Sent: Wednesday, December 28, 2016 12:34 AM > >> To: Kweh, Hock Leong <hock.leong.kweh@intel.com> > >> Cc: Joao.Pinto@synopsys.com; peppe.cavallaro@st.com; > >> seraphin.bonnaffe@st.com; f.fainelli@gmail.com; > >> alexandre.torgue@gmail.com; manabian@gmail.com; > >> niklas.cassel@axis.com; johan@kernel.org; pavel@ucw.cz; Ong, Boon > >> Leong <boon.leong.ong@intel.com>; Voon, Weifeng > >> <weifeng.voon@intel.com>; lars.persson@axis.com; > >> netdev@vger.kernel.org; linux-kernel@vger.kernel.org > >> Subject: Re: [PATCH v2] net: stmmac: bug fix to synchronize > >> stmmac_open and stmmac_dvr_probe > >> > >> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > >> Date: Tue, 27 Dec 2016 22:42:36 +0800 > >> > >>> From: "Kweh, Hock Leong" <hock.leong.kweh@intel.com> > >> > >> You are not the author of this change, do not take credit for it. > >> > >> You have copied Florian's patch character by character, therefore he > >> is the author. > >> > >> You also didn't CC: the netdev mailing list properly. > > > > Hi David & Florian, > > > > Just to clarify that I do not copy exactly from Florian. > > I have changed it to have proper handling on mdio unregister while > > netdev_register() failed as showed below: > > > > return 0; > > > > -error_mdio_register: > > - unregister_netdev(ndev); > > error_netdev_register: > > + stmmac_mdio_unregister(ndev); > > Although this is required, we can't be doing it in all circumstances, we need to > mimic what stmmac_drv_remove() does. > > Let me submit an incremental fix which takes care of mdio bus unregistration. > -- > Florian Noted & Thanks. Will test it out once you submitted. Thanks & Regards, Wilson
[toc] | [prev] | [next] | [standalone]
| From | Florian Fainelli <f.fainelli@gmail.com> |
|---|---|
| Date | 2016-12-29 01:50 +0100 |
| Subject | Re: [PATCH v2] net: stmmac: bug fix to synchronize stmmac_open and stmmac_dvr_probe |
| Message-ID | <sTx4S-7K9-13@gated-at.bofh.it> |
| In reply to | #1548136 |
On 12/28/2016 04:28 PM, Kweh, Hock Leong wrote: >> Although this is required, we can't be doing it in all circumstances, we need to >> mimic what stmmac_drv_remove() does. >> >> Let me submit an incremental fix which takes care of mdio bus unregistration. >> -- >> Florian > > Noted & Thanks. Will test it out once you submitted. It's done: https://www.spinics.net/lists/netdev/msg411934.html -- Florian
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web