All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net v2 0/5] net: fix phydev reference leaks
@ 2016-11-24 18:21 Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 1/5] net: dsa: fix fixed-link-phy device leaks Johan Hovold
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Johan Hovold @ 2016-11-24 18:21 UTC (permalink / raw)
  To: David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Timur Tabi, Andrew Lunn,
	Vivien Didelot, netdev, linux-kernel, Johan Hovold

This series fixes a number of phydev reference leaks (and one of_node
leak) due to failure to put the reference taken by of_phy_find_device().

Note that I did not try to fix drivers/net/phy/xilinx_gmii2rgmii.c which
still leaks a reference.

Against net but should apply just as fine to net-next.

Thanks,
Johan

v2: 
 - use put_device() instead of phy_dev_free() to put the references
   taken in net/dsa (patch 1/4).
 - add four new patches fixing similar leaks


Johan Hovold (5):
  net: dsa: fix fixed-link-phy device leaks
  net: bcmgenet: fix phydev reference leak
  net: fsl/fman: fix phydev reference leak
  net: fsl/fman: fix fixed-link-phydev reference leak
  net: qcom/emac: fix of_node and phydev leaks

 drivers/net/ethernet/broadcom/genet/bcmmii.c     | 4 +++-
 drivers/net/ethernet/freescale/fman/fman_memac.c | 3 +++
 drivers/net/ethernet/freescale/fman/mac.c        | 2 ++
 drivers/net/ethernet/qualcomm/emac/emac-phy.c    | 1 +
 drivers/net/ethernet/qualcomm/emac/emac.c        | 4 ++++
 net/dsa/dsa.c                                    | 5 ++++-
 6 files changed, 17 insertions(+), 2 deletions(-)

-- 
2.7.3

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH net v2 1/5] net: dsa: fix fixed-link-phy device leaks
  2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
@ 2016-11-24 18:21 ` Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 2/5] net: bcmgenet: fix phydev reference leak Johan Hovold
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Johan Hovold @ 2016-11-24 18:21 UTC (permalink / raw)
  To: David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Timur Tabi, Andrew Lunn,
	Vivien Didelot, netdev, linux-kernel, Johan Hovold

Make sure to drop the reference taken by of_phy_find_device() when
registering and deregistering the fixed-link PHY-device.

Fixes: 39b0c705195e ("net: dsa: Allow configuration of CPU & DSA port
speeds/duplex")
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 net/dsa/dsa.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index a6902c1e2f28..cb0091b99592 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -233,6 +233,8 @@ int dsa_cpu_dsa_setup(struct dsa_switch *ds, struct device *dev,
 		genphy_read_status(phydev);
 		if (ds->ops->adjust_link)
 			ds->ops->adjust_link(ds, port, phydev);
+
+		put_device(&phydev->mdio.dev);
 	}
 
 	return 0;
@@ -509,8 +511,9 @@ void dsa_cpu_dsa_destroy(struct device_node *port_dn)
 	if (of_phy_is_fixed_link(port_dn)) {
 		phydev = of_phy_find_device(port_dn);
 		if (phydev) {
-			phy_device_free(phydev);
 			fixed_phy_unregister(phydev);
+			put_device(&phydev->mdio.dev);
+			phy_device_free(phydev);
 		}
 	}
 }
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH net v2 2/5] net: bcmgenet: fix phydev reference leak
  2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 1/5] net: dsa: fix fixed-link-phy device leaks Johan Hovold
@ 2016-11-24 18:21 ` Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 3/5] net: fsl/fman: " Johan Hovold
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Johan Hovold @ 2016-11-24 18:21 UTC (permalink / raw)
  To: David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Timur Tabi, Andrew Lunn,
	Vivien Didelot, netdev, linux-kernel, Johan Hovold

Make sure to drop the reference taken by of_phy_find_device() when
initialising MOCA PHYs.

Fixes: 6ac9de5f6563 ("net: bcmgenet: Register link_update callback for
all MoCA PHYs")
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/net/ethernet/broadcom/genet/bcmmii.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/broadcom/genet/bcmmii.c b/drivers/net/ethernet/broadcom/genet/bcmmii.c
index 457c3bc8cfff..2e745bd51df4 100644
--- a/drivers/net/ethernet/broadcom/genet/bcmmii.c
+++ b/drivers/net/ethernet/broadcom/genet/bcmmii.c
@@ -542,8 +542,10 @@ static int bcmgenet_mii_of_init(struct bcmgenet_priv *priv)
 	/* Make sure we initialize MoCA PHYs with a link down */
 	if (phy_mode == PHY_INTERFACE_MODE_MOCA) {
 		phydev = of_phy_find_device(dn);
-		if (phydev)
+		if (phydev) {
 			phydev->link = 0;
+			put_device(&phydev->mdio.dev);
+		}
 	}
 
 	return 0;
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH net v2 3/5] net: fsl/fman: fix phydev reference leak
  2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 1/5] net: dsa: fix fixed-link-phy device leaks Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 2/5] net: bcmgenet: fix phydev reference leak Johan Hovold
@ 2016-11-24 18:21 ` Johan Hovold
  2016-11-24 18:21 ` [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev " Johan Hovold
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Johan Hovold @ 2016-11-24 18:21 UTC (permalink / raw)
  To: David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Timur Tabi, Andrew Lunn,
	Vivien Didelot, netdev, linux-kernel, Johan Hovold

Make sure to drop the reference taken by of_phy_find_device() during
initialisation when later freeing the struct fman_mac.

Fixes: 57ba4c9b56d8 ("fsl/fman: Add FMan MAC support")
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/net/ethernet/freescale/fman/fman_memac.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/ethernet/freescale/fman/fman_memac.c b/drivers/net/ethernet/freescale/fman/fman_memac.c
index 53ef51e3bd9e..71a5ded9d1de 100644
--- a/drivers/net/ethernet/freescale/fman/fman_memac.c
+++ b/drivers/net/ethernet/freescale/fman/fman_memac.c
@@ -1107,6 +1107,9 @@ int memac_free(struct fman_mac *memac)
 {
 	free_init_resources(memac);
 
+	if (memac->pcsphy)
+		put_device(&memac->pcsphy->mdio.dev);
+
 	kfree(memac->memac_drv_param);
 	kfree(memac);
 
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev reference leak
  2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
                   ` (2 preceding siblings ...)
  2016-11-24 18:21 ` [PATCH net v2 3/5] net: fsl/fman: " Johan Hovold
@ 2016-11-24 18:21 ` Johan Hovold
  2016-11-25 10:54   ` Madalin-Cristian Bucur
  2016-11-24 18:21 ` [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks Johan Hovold
  2016-11-28  1:02 ` [PATCH net v2 0/5] net: fix phydev reference leaks David Miller
  5 siblings, 1 reply; 13+ messages in thread
From: Johan Hovold @ 2016-11-24 18:21 UTC (permalink / raw)
  To: David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Timur Tabi, Andrew Lunn,
	Vivien Didelot, netdev, linux-kernel, Johan Hovold

Make sure to drop the reference taken by of_phy_find_device() when
looking up a fixed-link phydev during probe.

Fixes: 57ba4c9b56d8 ("fsl/fman: Add FMan MAC support")
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/net/ethernet/freescale/fman/mac.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/ethernet/freescale/fman/mac.c b/drivers/net/ethernet/freescale/fman/mac.c
index 8fe6b3e253fa..736db9d9b0ad 100644
--- a/drivers/net/ethernet/freescale/fman/mac.c
+++ b/drivers/net/ethernet/freescale/fman/mac.c
@@ -892,6 +892,8 @@ static int mac_probe(struct platform_device *_of_dev)
 		priv->fixed_link->duplex = phy->duplex;
 		priv->fixed_link->pause = phy->pause;
 		priv->fixed_link->asym_pause = phy->asym_pause;
+
+		put_device(&phy->mdio.dev);
 	}
 
 	err = mac_dev->init(mac_dev);
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks
  2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
                   ` (3 preceding siblings ...)
  2016-11-24 18:21 ` [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev " Johan Hovold
@ 2016-11-24 18:21 ` Johan Hovold
  2016-11-24 18:55   ` Timur Tabi
  2017-01-09 19:49   ` Timur Tabi
  2016-11-28  1:02 ` [PATCH net v2 0/5] net: fix phydev reference leaks David Miller
  5 siblings, 2 replies; 13+ messages in thread
From: Johan Hovold @ 2016-11-24 18:21 UTC (permalink / raw)
  To: David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Timur Tabi, Andrew Lunn,
	Vivien Didelot, netdev, linux-kernel, Johan Hovold

Make sure to drop the reference taken by of_phy_find_device() during
probe on probe errors and on driver unbind.

Also drop the of_node reference taken by of_parse_phandle() in the same
path.

Fixes: b9b17debc69d ("net: emac: emac gigabit ethernet controller driver")
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/net/ethernet/qualcomm/emac/emac-phy.c | 1 +
 drivers/net/ethernet/qualcomm/emac/emac.c     | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/drivers/net/ethernet/qualcomm/emac/emac-phy.c b/drivers/net/ethernet/qualcomm/emac/emac-phy.c
index da4e90db4d98..99a14df28b96 100644
--- a/drivers/net/ethernet/qualcomm/emac/emac-phy.c
+++ b/drivers/net/ethernet/qualcomm/emac/emac-phy.c
@@ -212,6 +212,7 @@ int emac_phy_config(struct platform_device *pdev, struct emac_adapter *adpt)
 
 		phy_np = of_parse_phandle(np, "phy-handle", 0);
 		adpt->phydev = of_phy_find_device(phy_np);
+		of_node_put(phy_np);
 	}
 
 	if (!adpt->phydev) {
diff --git a/drivers/net/ethernet/qualcomm/emac/emac.c b/drivers/net/ethernet/qualcomm/emac/emac.c
index 4fede4b86538..57b35aeac51a 100644
--- a/drivers/net/ethernet/qualcomm/emac/emac.c
+++ b/drivers/net/ethernet/qualcomm/emac/emac.c
@@ -711,6 +711,8 @@ static int emac_probe(struct platform_device *pdev)
 err_undo_napi:
 	netif_napi_del(&adpt->rx_q.napi);
 err_undo_mdiobus:
+	if (!has_acpi_companion(&pdev->dev))
+		put_device(&adpt->phydev->mdio.dev);
 	mdiobus_unregister(adpt->mii_bus);
 err_undo_clocks:
 	emac_clks_teardown(adpt);
@@ -730,6 +732,8 @@ static int emac_remove(struct platform_device *pdev)
 
 	emac_clks_teardown(adpt);
 
+	if (!has_acpi_companion(&pdev->dev))
+		put_device(&adpt->phydev->mdio.dev);
 	mdiobus_unregister(adpt->mii_bus);
 	free_netdev(netdev);
 
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks
  2016-11-24 18:21 ` [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks Johan Hovold
@ 2016-11-24 18:55   ` Timur Tabi
  2017-01-09 19:49   ` Timur Tabi
  1 sibling, 0 replies; 13+ messages in thread
From: Timur Tabi @ 2016-11-24 18:55 UTC (permalink / raw)
  To: Johan Hovold, David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Andrew Lunn, Vivien Didelot,
	netdev, linux-kernel

Johan Hovold wrote:
> Make sure to drop the reference taken by of_phy_find_device() during
> probe on probe errors and on driver unbind.
>
> Also drop the of_node reference taken by of_parse_phandle() in the same
> path.
>
> Fixes: b9b17debc69d ("net: emac: emac gigabit ethernet controller driver")
> Signed-off-by: Johan Hovold<johan@kernel.org>

When I first wrote this code, I had a lot of trouble getting the PHY to 
re-probe when the driver was unloaded and reloaded, and it was because 
of some odd problems with get/put of of_nodes.

Since I know that you didn't test this driver on real hardware, I have 
to test these patches myself before I can ACK them.

-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the
Code Aurora Forum, hosted by The Linux Foundation.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev reference leak
  2016-11-24 18:21 ` [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev " Johan Hovold
@ 2016-11-25 10:54   ` Madalin-Cristian Bucur
  0 siblings, 0 replies; 13+ messages in thread
From: Madalin-Cristian Bucur @ 2016-11-25 10:54 UTC (permalink / raw)
  To: Johan Hovold, David S. Miller
  Cc: Florian Fainelli, Timur Tabi, Andrew Lunn, Vivien Didelot,
	netdev, linux-kernel

> -----Original Message-----
> From: Johan Hovold [mailto:jhovold@gmail.com] On Behalf Of Johan Hovold
> Sent: Thursday, November 24, 2016 8:22 PM
> 
> Make sure to drop the reference taken by of_phy_find_device() when
> looking up a fixed-link phydev during probe.
> 
> Fixes: 57ba4c9b56d8 ("fsl/fman: Add FMan MAC support")
> Signed-off-by: Johan Hovold <johan@kernel.org>
> ---
>  drivers/net/ethernet/freescale/fman/mac.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/net/ethernet/freescale/fman/mac.c
> b/drivers/net/ethernet/freescale/fman/mac.c
> index 8fe6b3e253fa..736db9d9b0ad 100644
> --- a/drivers/net/ethernet/freescale/fman/mac.c
> +++ b/drivers/net/ethernet/freescale/fman/mac.c
> @@ -892,6 +892,8 @@ static int mac_probe(struct platform_device *_of_dev)
>  		priv->fixed_link->duplex = phy->duplex;
>  		priv->fixed_link->pause = phy->pause;
>  		priv->fixed_link->asym_pause = phy->asym_pause;
> +
> +		put_device(&phy->mdio.dev);
>  	}
> 
>  	err = mac_dev->init(mac_dev);
> --
> 2.7.3

Thank you,
Madalin

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH net v2 0/5] net: fix phydev reference leaks
  2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
                   ` (4 preceding siblings ...)
  2016-11-24 18:21 ` [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks Johan Hovold
@ 2016-11-28  1:02 ` David Miller
  2016-11-28  2:11   ` Timur Tabi
  5 siblings, 1 reply; 13+ messages in thread
From: David Miller @ 2016-11-28  1:02 UTC (permalink / raw)
  To: johan
  Cc: f.fainelli, madalin.bucur, timur, andrew, vivien.didelot, netdev,
	linux-kernel

From: Johan Hovold <johan@kernel.org>
Date: Thu, 24 Nov 2016 19:21:26 +0100

> This series fixes a number of phydev reference leaks (and one of_node
> leak) due to failure to put the reference taken by of_phy_find_device().
> 
> Note that I did not try to fix drivers/net/phy/xilinx_gmii2rgmii.c which
> still leaks a reference.
> 
> Against net but should apply just as fine to net-next.
 ...
> v2: 
>  - use put_device() instead of phy_dev_free() to put the references
>    taken in net/dsa (patch 1/4).
>  - add four new patches fixing similar leaks

Series applied, thanks.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH net v2 0/5] net: fix phydev reference leaks
  2016-11-28  1:02 ` [PATCH net v2 0/5] net: fix phydev reference leaks David Miller
@ 2016-11-28  2:11   ` Timur Tabi
  2016-11-28  4:53     ` David Miller
  0 siblings, 1 reply; 13+ messages in thread
From: Timur Tabi @ 2016-11-28  2:11 UTC (permalink / raw)
  To: David Miller, johan
  Cc: f.fainelli, madalin.bucur, andrew, vivien.didelot, netdev, linux-kernel

David Miller wrote:
> Series applied, thanks.

I was really hoping you'd give me the chance to test the patches before 
applying them.

-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the
Code Aurora Forum, hosted by The Linux Foundation.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH net v2 0/5] net: fix phydev reference leaks
  2016-11-28  2:11   ` Timur Tabi
@ 2016-11-28  4:53     ` David Miller
  0 siblings, 0 replies; 13+ messages in thread
From: David Miller @ 2016-11-28  4:53 UTC (permalink / raw)
  To: timur
  Cc: johan, f.fainelli, madalin.bucur, andrew, vivien.didelot, netdev,
	linux-kernel

From: Timur Tabi <timur@codeaurora.org>
Date: Sun, 27 Nov 2016 20:11:17 -0600

> David Miller wrote:
>> Series applied, thanks.
> 
> I was really hoping you'd give me the chance to test the patches
> before applying them.

Sorry, if anything is broken I will happily revert if it isn't
fixed promptly.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks
  2016-11-24 18:21 ` [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks Johan Hovold
  2016-11-24 18:55   ` Timur Tabi
@ 2017-01-09 19:49   ` Timur Tabi
  2017-01-10  8:43     ` Johan Hovold
  1 sibling, 1 reply; 13+ messages in thread
From: Timur Tabi @ 2017-01-09 19:49 UTC (permalink / raw)
  To: Johan Hovold, David S. Miller
  Cc: Florian Fainelli, Madalin Bucur, Andrew Lunn, Vivien Didelot,
	netdev, linux-kernel

On 11/24/2016 12:21 PM, Johan Hovold wrote:
> +	if (!has_acpi_companion(&pdev->dev))
> +		put_device(&adpt->phydev->mdio.dev);

I was wondering if, instead of calling put_device() only on non-ACPI systems, 
would it be better if on an ACPI system I called get_device() manually?  That 
is, some thing like this:

int emac_phy_config(struct platform_device *pdev, struct emac_adapter *adpt)
{
...
	if (has_acpi_companion(&pdev->dev)) {
...
		get_device(&mii_bus->dev);
	} else {
...

-- 
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm
Technologies, Inc.  Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks
  2017-01-09 19:49   ` Timur Tabi
@ 2017-01-10  8:43     ` Johan Hovold
  0 siblings, 0 replies; 13+ messages in thread
From: Johan Hovold @ 2017-01-10  8:43 UTC (permalink / raw)
  To: Timur Tabi
  Cc: Johan Hovold, David S. Miller, Florian Fainelli, Madalin Bucur,
	Andrew Lunn, Vivien Didelot, netdev, linux-kernel

On Mon, Jan 09, 2017 at 01:49:53PM -0600, Timur Tabi wrote:
> On 11/24/2016 12:21 PM, Johan Hovold wrote:
> > +	if (!has_acpi_companion(&pdev->dev))
> > +		put_device(&adpt->phydev->mdio.dev);
> 
> I was wondering if, instead of calling put_device() only on non-ACPI systems, 
> would it be better if on an ACPI system I called get_device() manually?  That 
> is, some thing like this:
> 
> int emac_phy_config(struct platform_device *pdev, struct emac_adapter *adpt)
> {
> ...
> 	if (has_acpi_companion(&pdev->dev)) {
> ...
> 		get_device(&mii_bus->dev);
> 	} else {
> ...

Yeah, that's better.

Thanks,
Johan

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2017-01-10  8:43 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-24 18:21 [PATCH net v2 0/5] net: fix phydev reference leaks Johan Hovold
2016-11-24 18:21 ` [PATCH net v2 1/5] net: dsa: fix fixed-link-phy device leaks Johan Hovold
2016-11-24 18:21 ` [PATCH net v2 2/5] net: bcmgenet: fix phydev reference leak Johan Hovold
2016-11-24 18:21 ` [PATCH net v2 3/5] net: fsl/fman: " Johan Hovold
2016-11-24 18:21 ` [PATCH net v2 4/5] net: fsl/fman: fix fixed-link-phydev " Johan Hovold
2016-11-25 10:54   ` Madalin-Cristian Bucur
2016-11-24 18:21 ` [PATCH net v2 5/5] net: qcom/emac: fix of_node and phydev leaks Johan Hovold
2016-11-24 18:55   ` Timur Tabi
2017-01-09 19:49   ` Timur Tabi
2017-01-10  8:43     ` Johan Hovold
2016-11-28  1:02 ` [PATCH net v2 0/5] net: fix phydev reference leaks David Miller
2016-11-28  2:11   ` Timur Tabi
2016-11-28  4:53     ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.