Re: [PATCH] net: fec: fix ref count leaking when pm_runtime_get_sync fails

From: Markus Elfring
Date: Sun Jun 14 2020 - 04:26:03 EST


> in fec_enet_mdio_read, â

I am curious under which circumstances you would like to improve
such commit messages.

* Will the tag âFixesâ become helpful?

* Which source code analysis tools did trigger to send
update suggestions according to 16 similar issues for today?


â
> +++ b/drivers/net/ethernet/freescale/fec_main.c
â
> @@ -1893,8 +1895,10 @@ static int fec_enet_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
> bool is_c45 = !!(regnum & MII_ADDR_C45);
>
> ret = pm_runtime_get_sync(dev);
> - if (ret < 0)
> + if (ret < 0) {
> + pm_runtime_put_autosuspend(dev);
> return ret;
> + }
> else
> ret = 0;

I suggest to adjust also the source code from the else branch.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/coding-style.rst?id=96144c58abe7ff767e754b5b80995f7b8846d49b#n196


â
> @@ -2276,6 +2280,7 @@ static void fec_enet_get_regs(struct net_device *ndev,
> }
>
> pm_runtime_mark_last_busy(dev);
> +out:
> pm_runtime_put_autosuspend(dev);
> }

Perhaps use the label âput_runtimeâ instead?

Regards,
Markus