[igt-dev] [PATCH i-g-t 1/2] tests/i915/i915_pm_lpsp : Close fd after igt_display_fini execution.
Mohammed Thasleem
mohammed.thasleem at intel.com
Wed Mar 9 06:46:38 UTC 2022
igt_display_reset() added in igt_display_fini which required fd to procees
further. Closing fd before igt_display_fini leads to bad fd failure,
So changing the order of close fd after igt_display_fini to avoid bad fd
failure.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem at intel.com>
---
tests/i915/i915_pm_lpsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/i915/i915_pm_lpsp.c b/tests/i915/i915_pm_lpsp.c
index b3b1561e..3ad8b260 100644
--- a/tests/i915/i915_pm_lpsp.c
+++ b/tests/i915/i915_pm_lpsp.c
@@ -210,7 +210,7 @@ igt_main
igt_fixture {
free(data.pwr_dmn_info);
- close(data.drm_fd);
igt_display_fini(&data.display);
+ close(data.drm_fd);
}
}
--
2.25.1
More information about the igt-dev
mailing list