[igt-dev] [PATCH i-g-t 1/3] lib/igt_pm: Refactor get firmware_node fd
Gupta, Anshuman
anshuman.gupta at intel.com
Tue Nov 8 11:48:21 UTC 2022
> -----Original Message-----
> From: Kamil Konieczny <kamil.konieczny at linux.intel.com>
> Sent: Monday, November 7, 2022 10:32 PM
> To: igt-dev at lists.freedesktop.org
> Cc: Gupta, Anshuman <anshuman.gupta at intel.com>; Nilawar, Badal
> <badal.nilawar at intel.com>; Vivi, Rodrigo <rodrigo.vivi at intel.com>
> Subject: Re: [igt-dev] [PATCH i-g-t 1/3] lib/igt_pm: Refactor get
> firmware_node fd
>
> Hi Anshuman,
>
> On 2022-11-07 at 18:48:40 +0530, Anshuman Gupta wrote:
> > Created igt_pm_open_pci_firmware_node() to refactor the retrieving the
> > firmware_node fd code.
> >
> > igt_pm_open_pci_firmware_node() will be used by other firmware_node
> > consumers.
> >
> > While doing that fixed the leaked fd as well.
> >
> > Signed-off-by: Anshuman Gupta <anshuman.gupta at intel.com>
> > ---
> > lib/igt_pm.c | 29 ++++++++++++++++++++---------
> > 1 file changed, 20 insertions(+), 9 deletions(-)
> >
> > diff --git a/lib/igt_pm.c b/lib/igt_pm.c index 1e6e9ed3f..e289c48e4
> > 100644
> > --- a/lib/igt_pm.c
> > +++ b/lib/igt_pm.c
> > @@ -863,6 +863,20 @@ bool i915_output_is_lpsp_capable(int drm_fd,
> igt_output_t *output)
> > return strstr(buf, "LPSP: capable"); }
> >
> > +static int igt_pm_open_pci_firmware_node(struct pci_device *pci_dev)
> > +{
> > + char name[PATH_MAX];
> > + int dir;
> > +
> > + snprintf(name, PATH_MAX,
> > +
> "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/firmware_node",
> > + pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev-
> >func);
> > +
> > + dir = open(name, O_RDONLY);
> > +
> > + return dir;
> > +}
> > +
> > /**
> > * igt_pm_acpi_d3cold_supported:
> > * @pci_dev: root port pci_dev.
> > @@ -873,23 +887,20 @@ bool i915_output_is_lpsp_capable(int drm_fd,
> igt_output_t *output)
> > */
> > bool igt_pm_acpi_d3cold_supported(struct pci_device *pci_dev) {
> > - char name[PATH_MAX];
> > - int dir, fd;
> > + int firmware_node_fd, fd;
> >
> > - snprintf(name, PATH_MAX,
> > -
> "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/firmware_node",
> > - pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev-
> >func);
> > -
> > - dir = open(name, O_RDONLY);
> > - igt_require(dir > 0);
> > + firmware_node_fd = igt_pm_open_pci_firmware_node(pci_dev);
> > + igt_require(firmware_node_fd > 0);
>
> imho it is better just return false here.
Thanks for review , I will address that.
>
> >
> > /* BIOS need to enable ACPI D3Cold Support.*/
> > - fd = openat(dir, "real_power_state", O_RDONLY);
> > + fd = openat(firmware_node_fd, "real_power_state", O_RDONLY);
> > if (fd < 0 && errno == ENOENT)
>
> Here you should also close(firmware_node_fd) before return.
Thanks for pointing it.
> Btw check for errno looks strange.
It is possible that a pcie device would not have firmware_node entry,
That is the reason to check for ENOENT, for other errors we may don’t
want to continue.
>
> > return false;
> >
> > igt_require(fd > 0);
>
> This is mixing two different error behaviour, return bool versus igt_require,
> imho it is better to return false instead.
I will send a separate cleanup patch for it.
Thanks,
Anshuman Gupta.
>
> Regards,
> Kamil
>
> >
> > + close(firmware_node_fd);
> > + close(fd);
> > return true;
> > }
> >
> > --
> > 2.25.1
> >
More information about the igt-dev
mailing list