intel-gpu-tools (1.26+git20220524-1.1)
[PTS] [DDPO]
NEW: VCS has unreleased changes: 1.26+git20221011-1 > 1.26+git20220524-1.1
- Git: https://salsa.debian.org/xorg-team/app/intel-gpu-tools.git
-
- Branch: debian-unstable
- Path: debian/changelog
- Repo size: 31641600
- Browser: https://salsa.debian.org/xorg-team/app/intel-gpu-tools
- Last scan: 2023-02-03 06:54:26+00
- Next scan: 2023-02-08 21:12:00+00
- CI pipeline status: canceled
- Debian changelog in Git:
intel-gpu-tools (1.26+git20221011-1) UNRELEASED; urgency=medium
* New git snapshot.
-- Timo Aaltonen <tjaalton@debian.org> Tue, 11 Oct 2022 14:25:38 +0300
- This branch is 52 commits ahead of tag intel-gpu-tools-1.26+git20220524-1
- Git log:
commit c427a535a59ccc238b0c5fb9ea4f929f92608725
Author: Timo Aaltonen <tjaalton@debian.org>
Date: Tue Oct 11 14:26:02 2022 +0300
version bump
commit c198c5c264b4aced6b75da37497d0875667572f5
Merge: cba8f30d cf55acde
Author: Timo Aaltonen <tjaalton@debian.org>
Date: Tue Oct 11 14:25:31 2022 +0300
Merge branch 'upstream-unstable' into debian-unstable
commit cf55acdeea3747c668074a8734029364960e5f5e
Author: Matthew Auld <matthew.auld@intel.com>
Date: Mon Oct 10 11:48:40 2022 +0100
tests/i915/module_load: fix resize-bar on DG1
DG1, as expected only has a fixed sized bar, so attempting to force the
BAR size should fail. Update the test to account for such devices, and
perform a skip, instead of failing.
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/6458
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Nirmoy Das <nirmoy.das@intel.com>
Tested-by: Nirmoy Das <nirmoy.das@intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
commit fba0b06bff4953a5ba4c6839e83a71192f4336b7
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 18:27:57 2022 -0500
Include igt_freebsd.h in gem benchmarks
Allow benchmark compilation on a FreeBSD system using
the drop-in igt_freebsd header.
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Acked-by: Petri Latvala <petri.latvala@intel.com>
commit 005818f1a9c7fc038bb3afd24587982b2f69d7a9
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 18:27:56 2022 -0500
tests/i915/i915_pm_rpm.c: Add FreeBSD I/O iic header
FreeBSD uses iic instead of i2c for I/O management.
This patch includes the FreeBSD iic header and uses
a macro substitution to convert the i2c addr member
into the iic slave member.
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Acked-by: Petri Latvala <petri.latvala@intel.com>
commit 218bdbfaba333210ad2236e3cfa5e50ca1a37c83
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 18:27:55 2022 -0500
lib/igt_os.c: Add FreeBSD system info collection
Use sysctlbyname() to gather RAM and swap information for
any FreeBSD system using igt.
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Acked-by: Petri Latvala <petri.latvala@intel.com>
commit dfb604588f0dcc065fc82acdce83629ce0b04336
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 18:27:54 2022 -0500
Include <sys/syscall.h> for FreeBSD systems
Both Linux and FreeBSD have a <sys/syscall.h>, but some
operating systems do not. This patch opens up syscall.h
access to FreeBSD through using #ifdef __FreeBSD__
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Acked-by: Petri Latvala <petri.latvala@intel.com>
commit 92b06cfc9ac62028addca1a42ed0dc59df736b8d
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 18:27:53 2022 -0500
Ifdef out linux-specific headers
Use #ifdef __linux__ to limit all Linux-specific headers to
Linux systems
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Acked-by: Petri Latvala <petri.latvala@intel.com>
commit 78b888c3c65f87152a03041f7a3fa4c9bb06b671
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 18:27:52 2022 -0500
lib/igt_freebsd.h: Create FreeBSD compatibility header
This header attempts to be a simple drop-in to enable FreeBSD
support in a given source file. It includes macro substitutions
that replace Linux-specific phrases with their FreeBSD equivalents.
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Acked-by: Petri Latvala <petri.latvala@intel.com>
commit 39a979fb4453c557022f0477c609afe10a049e48
Author: Mohammed Thasleem <mohammed.thasleem@intel.com>
Date: Thu Oct 6 01:42:07 2022 +0530
tests/kms_force_connector_basic: Test Cleanup
Sanitize the system state before starting the subtest.
v2: Created a new functions for each subtest instead
of managing the full logic within the igt_subtest().
v3: Minor changes.
v4: Replaced igt_assert_f with igt_require_f in prune-stale-modes.
v5: Added goto statement if connector_id found true.
v6: Minor changes.
v7: Added func pointer to subtests.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
commit ea6d73b73b88de85d921cbc2680ae8979a2c3ce9
Author: Jake Freeland <jake@technologyfriends.net>
Date: Fri Oct 7 09:52:41 2022 -0500
lib/tests/igt_fork.c: Fix error in mmap() flags
In subtest_leak(), mmap() is called with the flag PROT_WRITE,
but no PROT_READ. Later in the function, the mapped memory is
read using `children[i]`. In FreeBSD, the lack of PROT_READ
causes SIGSEGV. Adding the PROT_READ flag to the mmap() call
fixes this.
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
commit fb11941ecc99e64403b7bf09248455f074fcab56
Author: Nirmoy Das <nirmoy.das@intel.com>
Date: Fri Oct 7 18:02:03 2022 +0200
i915/i915_hangman: Idle the gpu for next test
After each subtest gpu should be idle or else busy
engine leaks into next subtest.
References: https://gitlab.freedesktop.org/drm/intel/-/issues/5888
Suggested-by: Chris Wilson <chris.p.wilson@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
commit c1f5c0a369c59e5d7b1df6a6d2a36f186fdb494a
Author: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Date: Thu Oct 6 17:50:03 2022 +0530
tests/i915/gem_exec_fence : Add subtests description
Add test description to all the available subtests.
Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
commit 41bf1f94200fef79486d2a7d24c31de1042094e3
Author: Jeevan B <jeevan.b@intel.com>
Date: Fri Sep 30 09:22:49 2022 +0530
tests/i915/kms_psr2_su: Convert tests to dynamic
Converting the existing subtests to dynamic subtests.
Adding support for each_pipe, currently PSR2 is supported on
few pipes so breaking the loop for other pipes currently.
v2: Add commit message and change break to continue.
v3: Check for pipe supporting PSR2 or not and then add to dynamic subtest.
v4: Check PSR2 support once in fixture then iterate pipes.
v5: Increase array size for pipes and outputs.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
commit 35acc88c7a299da71888f9d61380393b766e2143
Author: Jeevan B <jeevan.b@intel.com>
Date: Fri Sep 30 09:22:48 2022 +0530
tests/i915/kms_psr2_sf: Convert tests to dynamic
Converting the existing subtests to dynamic subtests.
Adding support for each_pipe, currently PSR2 is supported on
few pipes so breaking the loop for other pipes currently.
v2: Check for pipe supporting PSR2 or not and then add to dynamic subtest.
v3: Check PSR2 support once in fixture then iterate pipes.
v4: Add output part into dynamic name.
v5: Add the missing code and increase pipes and outputs array size.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
commit 2bd1e90d2a00e349ce048821ced61c3984700161
Author: Karthik B S <karthik.b.s@intel.com>
Date: Thu Sep 29 09:22:45 2022 +0530
tests/kms_content_protection: Convert test to dynamic
Covert the existing subtests to dynamic subtests at pipe/output level.
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
commit f3ffde9419330502a156193a0607ed5a4576bee5
Author: Karthik B S <karthik.b.s@intel.com>
Date: Thu Sep 29 09:22:44 2022 +0530
tests/kms_content_protection: Test Cleanup
Reset display to clean the state before starting the subtest.
Move the clean up part to a separate function so that cleanup code is
run even if there is a failure in the subtest. This prepares the test
for conversion to dynamic subtests.
Remove redundant mode override as we're anyway overriding with the
default mode.
Check if platform is capable of atomic commit before choosing
commit style in cleanup function.
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
commit 7aa1e563ac74a5ac9a0f0fe4cca9d13c3ad1cfca
Author: Karthik B S <karthik.b.s@intel.com>
Date: Thu Sep 29 09:22:43 2022 +0530
tests/kms_content_protection: Fix MST subtests
Add a modeset before checking output is HDCP capable.
Test currently skips on multidisplay MST config telling no HDCP capable
output is found because we're checking if output is HDCP capable
before doing a modeset on that output.
Try other pipe/output combo for MST if failure is seen on one, as the
test is not dependent on the combination as long as each output has a
valid pipe.
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
commit 1ea9ec5e7295fbc1cb784be4692971fd342bea53
Author: Jake Freeland <jake@technologyfriends.net>
Date: Thu Oct 6 11:39:34 2022 -0500
Replace instances of mmap64() with mmap()
The mmap64() function exists to point 32-bit architectures to an mmap
interface with the capability to address a 64-bit memory address space.
As 32-bit machines are replaced by 64-bit, there is no longer a need to
keep mmap64() around. This is especially apparent in operating systems
like FreeBSD that exclude the mmap64() function altogether. This patch
replaces all instances of mmap64() with mmap().
Signed-off-by: Jake Freeland <jfree@freebsd.org>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
commit 523844c74e7da6b39d856596c28a92f04172035f
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Mon Sep 19 09:02:28 2022 +0200
scripts/code_cov_parse_info: print common coverage and extra per function
While analyzing the data, it is nice to have a quick summary about
how much each set of the analyzed data contributes to the total.
So, generate a function summary report with the interception of
all the sets ("common function coverage"), plus the difference
that an individual test group contributes.
This is useful to provide a quick feedback on several situations:
- When comparing FULL with BAT:
- how many functions are added on FULL?
- are there functions that are only on BAT?
- When comparing different machines:
- How many functions each individual machine has over
the common group?
- When comparing a group of tests:
- How many functions an individual test adds for the
coverage that weren't covered at the common group yet?
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit d21216f0db39457717274d74b4d2e3db6683aa63
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Thu Sep 22 08:34:53 2022 +0200
scripts/code_cov_parse_info: take gcc IPA optimizations into account
When -O2/-O3 is used with GCC, IPA will produce function variants
at the object code. So, for a function or macro foo(), it may
produce several actual functions at the object code, like:
foo.isra.3
foo.isra.4
For the purposes of code coverage, all of those are the same
function, so use a regex with "\w+", which will exclude the
.isra.<number>, considering all variants as the same function.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 8cd5966b7e95e56688c7ead23859d656dfc6e566
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Mon Sep 19 09:02:28 2022 +0200
scripts/code_cov_parse_info: Fix indentation at the output html file
The indentation is not relevant for the output, but it makes easier
when debugging issues at the produced file.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 60507889ba261642b6fdb03e54b95e4e99dbd680
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Mon Sep 19 11:55:26 2022 +0200
scripts/code_cov_parse_info: fix brf record handling
Don't override $record{source} due to BRF, or the script will crash.
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 372052beb5502fd8e843163cd80686960593e347
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Thu Sep 15 07:57:07 2022 +0200
scripts/code_cov_parse_info: fix --only-drm filtering rules
The --only-drm filtering rules were filtering too much, ending to
exclude functions on files with "h" on their names.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit d430a23ca15ed42e9c316e14f7ac6566953ff4c5
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Mon Jul 25 13:23:55 2022 +0200
scripts/code_cov_parse_info: avoid warning messages on parsing
Some fields (FNH, BRH, LH) produce warning messages when they're found
at the info file.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 17292ab1e63802d8456670f606f8ad78082d09ee
Author: Mauro Carvalho Chehab <mchehab@kernel.org>
Date: Wed Oct 5 09:14:01 2022 +0200
igt_core: add a line break at the end of some internal_assert
The logic which prints internal_assert expects a line break, as
otherwise it would print things like:
must only be called outside of a subtestplease refer to lib/igt_core documentation
So, add a \n on a couple of places that it is missing it.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit a02437df41e8b1699ea9a01eb0b3e37dc143ec68
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
i915/gem_ctx_isolation: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Nirmoy Das<nirmoy.das@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
commit 086f94783df262dc108163f9add3318f796f408e
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
i915/gem_exec_balancer: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Reviewed-by: Nirmoy Das<nirmoy.das@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 2214bc2882c3585545a3e58b4f7453d364cebd96
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:23:48 2022 +0000
core_auth: Close(master) before exit
Add a missing close(master) to the subtest group fixture to prevent a
leak during later tests.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 59a4d00a1eedd07d1b296fd94c23614c4bdd6f99
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
i915/i915_pm_dc: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Reviewed-by: Nirmoy Das<nirmoy.das@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 6154936636ecf570996f579edb08f748b4dcd1b7
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
feature_discovery: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 1a4c7ed913301801069a83bb77135a7e28487109
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_content_protection: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 68da869156a71b7340a2e6c9c5bd5af2e32cc3a6
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_plane_lowres: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 4be627a0256ec27690e50858ce9840e5a2f0118b
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_cursor_edge_walk: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit dd15d34ca2239867e8ae527b3d43d183cb6cece9
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
drm_read: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 276cfa2ba5fa673cab84e72596218d51d371fb20
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_dither: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 7738184d5acfb26f68221963f809fd2ad3ea0aa4
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_scaling_modes: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 66a4784ae0c034742b9cd5ab75b776437d70af0e
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_3d: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 007ab069ddf0068b9fc2a5b9889cd08e63ce8ba7
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_hdmi_inject: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 97e6af4c7c0d9fdddc301e63457ba8cb1f2173d4
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_dp_aux_dev: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 13b9df82221cebb49ffe8222d0bf276ee4e1f5a1
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
drm_import_export: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 6bd475ee6169d7a03c136e957c45a98bbb9919dc
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
syncobj_timeline: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 3fe581f0417841dbbc50c2dbe5d85e6fb03d878a
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
syncobj_basic: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit fe321a7025af436ac5b20250ab1ce12049323905
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
syncobj_wait: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit c8c5f3a3dbcf49ef462d33c96443d3d61ff3f0fd
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_vblank: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit c5a682ce28798370374e2527af402a248804200f
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_universal_plane: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 6250dfa12228f8c1520d6919c90cd8075e8a8eb4
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_sequence: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 2fb4c28324c29cd8647b43c01e88df54224df2cf
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_rotation_crc: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 7012edf419ca74f12d98165ce3553d1de63d0a1b
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_properties: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit 5417f78e938eed2e0561548c972fa06fb2a55be0
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_plane_scaling: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit ab21265b4f0641038d2fe140be23211396ee0f35
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_plane_multiple: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
commit a3343e25674cfec84c33df16ae568dafa72a4643
Author: Chris Wilson <chris.p.wilson@intel.com>
Date: Thu Jan 27 12:25:22 2022 +0000
kms_plane_cursor: Close device before exit
Close the device fd before we check for leaks during the atexit
handlers.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>