* [PATCH v10 1/4] drm: Introduce device wedged event
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
@ 2024-11-28 15:37 ` Raag Jadav
2024-11-29 13:40 ` André Almeida
2024-12-12 18:31 ` André Almeida
2024-11-28 15:37 ` [PATCH v10 2/4] drm/doc: Document " Raag Jadav
` (11 subsequent siblings)
12 siblings, 2 replies; 34+ messages in thread
From: Raag Jadav @ 2024-11-28 15:37 UTC (permalink / raw)
To: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev, Raag Jadav
Introduce device wedged event, which notifies userspace of 'wedged'
(hanged/unusable) state of the DRM device through a uevent. This is
useful especially in cases where the device is no longer operating as
expected and has become unrecoverable from driver context. Purpose of
this implementation is to provide drivers a generic way to recover with
the help of userspace intervention without taking any drastic measures
in the driver.
A 'wedged' device is basically a dead device that needs attention. The
uevent is the notification that is sent to userspace along with a hint
about what could possibly be attempted to recover the device and bring
it back to usable state. Different drivers may have different ideas of
a 'wedged' device depending on their hardware implementation, and hence
the vendor agnostic nature of the event. It is up to the drivers to
decide when they see the need for device recovery and how they want to
recover from the available methods.
Driver prerequisites
--------------------
The driver, before opting for recovery, needs to make sure that the
'wedged' device doesn't harm the system as a whole by taking care of the
prerequisites. Necessary actions must include disabling DMA to system
memory as well as any communication channels with other devices. Further,
the driver must ensure that all dma_fences are signalled and any device
state that the core kernel might depend on is cleaned up. Any existing
mmap should be invalidated and page faults should be redirected to a
dummy page. Once the event is sent, the device must be kept in 'wedged'
state until the recovery is performed. New accesses to the device
(IOCTLs) should be blocked, preferably with an error code that resembles
the type of failure the device has encountered. This will signify the
reason for wedging, which can be reported to the application if needed.
Recovery
--------
Current implementation defines three recovery methods, out of which,
drivers can use any one, multiple or none. Method(s) of choice will be
sent in the uevent environment as ``WEDGED=<method1>[,<method2>]`` in
order of less to more side-effects. If driver is unsure about recovery
or method is unknown (like soft/hard reboot, firmware flashing, hardware
replacement or any other procedure which can't be attempted on the fly),
``WEDGED=unknown`` will be sent instead.
Userspace consumers can parse this event and attempt recovery as per the
following expectations.
=============== ================================
Recovery method Consumer expectations
=============== ================================
none optional telemetry collection
rebind unbind + bind driver
bus-reset unbind + reset bus device + bind
unknown admin/user policy
=============== ================================
The only exception to this is ``WEDGED=none``, which signifies that the
device was temporarily 'wedged' at some point but was able to recover using
device specific methods like reset. No explicit device recovery is expected
from the consumer in this case, but it can still take additional steps like
gathering telemetry information (devcoredump, syslog). This is useful
because the first hang is usually the most critical one which can result in
consequential hangs or complete wedging.
Consumer prerequisites
----------------------
It is the responsibility of the consumer to make sure that the device or
its resources are not in use by any process before attempting recovery.
With IOCTLs blocked and device already 'wedged', all device memory should
be unmapped and file descriptors should be closed to prevent leaks.
Example
-------
Udev rule::
SUBSYSTEM=="drm", ENV{WEDGED}=="rebind", DEVPATH=="*/drm/card[0-9]",
RUN+="/path/to/rebind.sh $env{DEVPATH}"
Recovery script::
#!/bin/sh
DEVPATH=$(readlink -f /sys/$1/device)
DEVICE=$(basename $DEVPATH)
DRIVER=$(readlink -f $DEVPATH/driver)
echo -n $DEVICE > $DRIVER/unbind
sleep 1
echo -n $DEVICE > $DRIVER/bind
Customization
-------------
Although basic recovery is possible with a simple script, admin/users can
define custom policies around recovery action. For example, if the driver
supports multiple recovery methods, consumers can opt for the suitable one
based on policy definition. Consumers can also choose to have the device
available for debugging or additional data collection before performing
the recovery. This is useful especially when the driver is unsure about
recovery or method is unknown.
v4: s/drm_dev_wedged/drm_dev_wedged_event
Use drm_info() (Jani)
Kernel doc adjustment (Aravind)
v5: Send recovery method with uevent (Lina)
v6: Access wedge_recovery_opts[] using helper function (Jani)
Use snprintf() (Jani)
v7: Convert recovery helpers into regular functions (Andy, Jani)
Aesthetic adjustments (Andy)
Handle invalid method cases
v8: Allow sending multiple methods with uevent (Lucas, Michal)
static_assert() globally (Andy)
v9: Provide 'none' method for reset cases (Christian)
Provide recovery opts using switch cases
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
drivers/gpu/drm/drm_drv.c | 66 +++++++++++++++++++++++++++++++++++++++
include/drm/drm_device.h | 8 +++++
include/drm/drm_drv.h | 1 +
3 files changed, 75 insertions(+)
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index c2c172eb25df..e6583ebc6b05 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -26,6 +26,7 @@
* DEALINGS IN THE SOFTWARE.
*/
+#include <linux/bitops.h>
#include <linux/debugfs.h>
#include <linux/fs.h>
#include <linux/module.h>
@@ -33,6 +34,7 @@
#include <linux/mount.h>
#include <linux/pseudo_fs.h>
#include <linux/slab.h>
+#include <linux/sprintf.h>
#include <linux/srcu.h>
#include <linux/xarray.h>
@@ -497,6 +499,70 @@ void drm_dev_unplug(struct drm_device *dev)
}
EXPORT_SYMBOL(drm_dev_unplug);
+/*
+ * Available recovery methods for wedged device. To be sent along with device
+ * wedged uevent.
+ */
+static const char *drm_get_wedge_recovery(unsigned int opt)
+{
+ switch (BIT(opt)) {
+ case DRM_WEDGE_RECOVERY_NONE:
+ return "none";
+ case DRM_WEDGE_RECOVERY_REBIND:
+ return "rebind";
+ case DRM_WEDGE_RECOVERY_BUS_RESET:
+ return "bus-reset";
+ default:
+ return NULL;
+ }
+}
+
+/**
+ * drm_dev_wedged_event - generate a device wedged uevent
+ * @dev: DRM device
+ * @method: method(s) to be used for recovery
+ *
+ * This generates a device wedged uevent for the DRM device specified by @dev.
+ * Recovery @method\(s) of choice will be sent in the uevent environment as
+ * ``WEDGED=<method1>[,<method2>]`` in order of less to more side-effects. If
+ * caller is unsure about recovery or @method is unknown (0), ``WEDGED=unknown``
+ * will be sent instead.
+ *
+ * Refer to 'Device Wedging' chapter in Documentation/gpu/drm-uapi.rst for more
+ * details.
+ *
+ * Returns: 0 on success, negative error code otherwise.
+ */
+int drm_dev_wedged_event(struct drm_device *dev, unsigned long method)
+{
+ const char *recovery = NULL;
+ unsigned int len, opt;
+ /* Event string length up to 28+ characters with available methods */
+ char event_string[32];
+ char *envp[] = { event_string, NULL };
+
+ len = scnprintf(event_string, sizeof(event_string), "%s", "WEDGED=");
+
+ for_each_set_bit(opt, &method, BITS_PER_TYPE(method)) {
+ recovery = drm_get_wedge_recovery(opt);
+ if (drm_WARN(dev, !recovery, "device wedged, invalid recovery method %u\n", opt))
+ break;
+
+ len += scnprintf(event_string + len, sizeof(event_string), "%s,", recovery);
+ }
+
+ if (recovery)
+ /* Get rid of trailing comma */
+ event_string[len - 1] = '\0';
+ else
+ /* Caller is unsure about recovery, do the best we can at this point. */
+ snprintf(event_string, sizeof(event_string), "%s", "WEDGED=unknown");
+
+ drm_info(dev, "device wedged, needs recovery\n");
+ return kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, envp);
+}
+EXPORT_SYMBOL(drm_dev_wedged_event);
+
/*
* DRM internal mount
* We want to be able to allocate our own "struct address_space" to control
diff --git a/include/drm/drm_device.h b/include/drm/drm_device.h
index c91f87b5242d..6ea54a578cda 100644
--- a/include/drm/drm_device.h
+++ b/include/drm/drm_device.h
@@ -21,6 +21,14 @@ struct inode;
struct pci_dev;
struct pci_controller;
+/*
+ * Recovery methods for wedged device in order of less to more side-effects.
+ * To be used with drm_dev_wedged_event() as recovery @method. Callers can
+ * use any one, multiple (or'd) or none depending on their needs.
+ */
+#define DRM_WEDGE_RECOVERY_NONE BIT(0) /* optional telemetry collection */
+#define DRM_WEDGE_RECOVERY_REBIND BIT(1) /* unbind + bind driver */
+#define DRM_WEDGE_RECOVERY_BUS_RESET BIT(2) /* unbind + reset bus device + bind */
/**
* enum switch_power_state - power state of drm device
diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h
index 1bbbcb8e2d23..f41a82839e28 100644
--- a/include/drm/drm_drv.h
+++ b/include/drm/drm_drv.h
@@ -479,6 +479,7 @@ void drm_put_dev(struct drm_device *dev);
bool drm_dev_enter(struct drm_device *dev, int *idx);
void drm_dev_exit(int idx);
void drm_dev_unplug(struct drm_device *dev);
+int drm_dev_wedged_event(struct drm_device *dev, unsigned long method);
/**
* drm_dev_is_unplugged - is a DRM device unplugged
--
2.34.1
^ permalink raw reply related [flat|nested] 34+ messages in thread* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-11-28 15:37 ` [PATCH v10 1/4] drm: Introduce " Raag Jadav
@ 2024-11-29 13:40 ` André Almeida
2024-12-02 8:07 ` Raag Jadav
2024-12-12 18:31 ` André Almeida
1 sibling, 1 reply; 34+ messages in thread
From: André Almeida @ 2024-11-29 13:40 UTC (permalink / raw)
To: Raag Jadav
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, christian.koenig, rodrigo.vivi,
michal.wajdeczko, lina, anshuman.gupta, alexander.deucher,
amd-gfx, kernel-dev, airlied, simona, lucas.demarchi, jani.nikula,
andriy.shevchenko
Hi Raag,
Em 28/11/2024 12:37, Raag Jadav escreveu:
> Introduce device wedged event, which notifies userspace of 'wedged'
> (hanged/unusable) state of the DRM device through a uevent. This is
> useful especially in cases where the device is no longer operating as
> expected and has become unrecoverable from driver context. Purpose of
> this implementation is to provide drivers a generic way to recover with
> the help of userspace intervention without taking any drastic measures
> in the driver.
>
> A 'wedged' device is basically a dead device that needs attention. The
> uevent is the notification that is sent to userspace along with a hint
> about what could possibly be attempted to recover the device and bring
> it back to usable state. Different drivers may have different ideas of
> a 'wedged' device depending on their hardware implementation, and hence
> the vendor agnostic nature of the event. It is up to the drivers to
> decide when they see the need for device recovery and how they want to
> recover from the available methods.
>
Thank you for your work. Do you think you can add the optional PID
parameter, as the PID of the app that caused the reset? For SteamOS use
case it has been proved to be useful to kill the fault app as well. If
the reset was caused by a kthread, no PID can be provided hence it's an
optional parameter.
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-11-29 13:40 ` André Almeida
@ 2024-12-02 8:07 ` Raag Jadav
2024-12-03 5:00 ` Raag Jadav
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2024-12-02 8:07 UTC (permalink / raw)
To: André Almeida
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, christian.koenig, rodrigo.vivi,
michal.wajdeczko, lina, anshuman.gupta, alexander.deucher,
amd-gfx, kernel-dev, airlied, simona, lucas.demarchi, jani.nikula,
andriy.shevchenko
On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
> Hi Raag,
>
> Em 28/11/2024 12:37, Raag Jadav escreveu:
> > Introduce device wedged event, which notifies userspace of 'wedged'
> > (hanged/unusable) state of the DRM device through a uevent. This is
> > useful especially in cases where the device is no longer operating as
> > expected and has become unrecoverable from driver context. Purpose of
> > this implementation is to provide drivers a generic way to recover with
> > the help of userspace intervention without taking any drastic measures
> > in the driver.
> >
> > A 'wedged' device is basically a dead device that needs attention. The
> > uevent is the notification that is sent to userspace along with a hint
> > about what could possibly be attempted to recover the device and bring
> > it back to usable state. Different drivers may have different ideas of
> > a 'wedged' device depending on their hardware implementation, and hence
> > the vendor agnostic nature of the event. It is up to the drivers to
> > decide when they see the need for device recovery and how they want to
> > recover from the available methods.
> >
>
> Thank you for your work. Do you think you can add the optional PID
> parameter, as the PID of the app that caused the reset? For SteamOS use case
> it has been proved to be useful to kill the fault app as well. If the reset
> was caused by a kthread, no PID can be provided hence it's an optional
> parameter.
Hmm, I'm not sure if it really fits here since it doesn't seem like
a generic usecase.
I'd still be open for it if found useful by the drivers but perhaps
as an extended feature in a separate series.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-02 8:07 ` Raag Jadav
@ 2024-12-03 5:00 ` Raag Jadav
2024-12-03 10:18 ` Christian König
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2024-12-03 5:00 UTC (permalink / raw)
To: André Almeida, christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, rodrigo.vivi, michal.wajdeczko, lina,
anshuman.gupta, alexander.deucher, amd-gfx, kernel-dev, airlied,
simona, lucas.demarchi, jani.nikula, andriy.shevchenko
On Mon, Dec 02, 2024 at 10:07:59AM +0200, Raag Jadav wrote:
> On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
> > Hi Raag,
> >
> > Em 28/11/2024 12:37, Raag Jadav escreveu:
> > > Introduce device wedged event, which notifies userspace of 'wedged'
> > > (hanged/unusable) state of the DRM device through a uevent. This is
> > > useful especially in cases where the device is no longer operating as
> > > expected and has become unrecoverable from driver context. Purpose of
> > > this implementation is to provide drivers a generic way to recover with
> > > the help of userspace intervention without taking any drastic measures
> > > in the driver.
> > >
> > > A 'wedged' device is basically a dead device that needs attention. The
> > > uevent is the notification that is sent to userspace along with a hint
> > > about what could possibly be attempted to recover the device and bring
> > > it back to usable state. Different drivers may have different ideas of
> > > a 'wedged' device depending on their hardware implementation, and hence
> > > the vendor agnostic nature of the event. It is up to the drivers to
> > > decide when they see the need for device recovery and how they want to
> > > recover from the available methods.
> > >
> >
> > Thank you for your work. Do you think you can add the optional PID
> > parameter, as the PID of the app that caused the reset? For SteamOS use case
> > it has been proved to be useful to kill the fault app as well. If the reset
> > was caused by a kthread, no PID can be provided hence it's an optional
> > parameter.
>
> Hmm, I'm not sure if it really fits here since it doesn't seem like
> a generic usecase.
>
> I'd still be open for it if found useful by the drivers but perhaps
> as an extended feature in a separate series.
What do you think Chris, are we good to go with v10?
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-03 5:00 ` Raag Jadav
@ 2024-12-03 10:18 ` Christian König
2024-12-04 11:17 ` Raag Jadav
0 siblings, 1 reply; 34+ messages in thread
From: Christian König @ 2024-12-03 10:18 UTC (permalink / raw)
To: Raag Jadav, André Almeida
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, rodrigo.vivi, michal.wajdeczko, lina,
anshuman.gupta, alexander.deucher, amd-gfx, kernel-dev, airlied,
simona, lucas.demarchi, jani.nikula, andriy.shevchenko
Am 03.12.24 um 06:00 schrieb Raag Jadav:
> On Mon, Dec 02, 2024 at 10:07:59AM +0200, Raag Jadav wrote:
>> On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
>>> Hi Raag,
>>>
>>> Em 28/11/2024 12:37, Raag Jadav escreveu:
>>>> Introduce device wedged event, which notifies userspace of 'wedged'
>>>> (hanged/unusable) state of the DRM device through a uevent. This is
>>>> useful especially in cases where the device is no longer operating as
>>>> expected and has become unrecoverable from driver context. Purpose of
>>>> this implementation is to provide drivers a generic way to recover with
>>>> the help of userspace intervention without taking any drastic measures
>>>> in the driver.
>>>>
>>>> A 'wedged' device is basically a dead device that needs attention. The
>>>> uevent is the notification that is sent to userspace along with a hint
>>>> about what could possibly be attempted to recover the device and bring
>>>> it back to usable state. Different drivers may have different ideas of
>>>> a 'wedged' device depending on their hardware implementation, and hence
>>>> the vendor agnostic nature of the event. It is up to the drivers to
>>>> decide when they see the need for device recovery and how they want to
>>>> recover from the available methods.
>>>>
>>> Thank you for your work. Do you think you can add the optional PID
>>> parameter, as the PID of the app that caused the reset? For SteamOS use case
>>> it has been proved to be useful to kill the fault app as well. If the reset
>>> was caused by a kthread, no PID can be provided hence it's an optional
>>> parameter.
>> Hmm, I'm not sure if it really fits here since it doesn't seem like
>> a generic usecase.
>>
>> I'd still be open for it if found useful by the drivers but perhaps
>> as an extended feature in a separate series.
> What do you think Chris, are we good to go with v10?
I agree with Andre that the PID and maybe the new DRM client name would
be really nice to have here.
We do have that in the device core dump we create, but if an application
is supervised by daemon for example then that would be really useful.
On the other hand I think we should merge the documentation and code as
is and then add the PID/name later on. That is essentially a separate
discussion.
Regards,
Christian.
>
> Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-03 10:18 ` Christian König
@ 2024-12-04 11:17 ` Raag Jadav
2024-12-11 17:14 ` Maxime Ripard
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2024-12-04 11:17 UTC (permalink / raw)
To: Christian König, maarten.lankhorst, mripard, tzimmermann
Cc: André Almeida, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, rodrigo.vivi,
michal.wajdeczko, lina, anshuman.gupta, alexander.deucher,
amd-gfx, kernel-dev, airlied, simona, lucas.demarchi, jani.nikula,
andriy.shevchenko
+ misc maintainers
On Tue, Dec 03, 2024 at 11:18:00AM +0100, Christian König wrote:
> Am 03.12.24 um 06:00 schrieb Raag Jadav:
> > On Mon, Dec 02, 2024 at 10:07:59AM +0200, Raag Jadav wrote:
> > > On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
> > > > Hi Raag,
> > > >
> > > > Em 28/11/2024 12:37, Raag Jadav escreveu:
> > > > > Introduce device wedged event, which notifies userspace of 'wedged'
> > > > > (hanged/unusable) state of the DRM device through a uevent. This is
> > > > > useful especially in cases where the device is no longer operating as
> > > > > expected and has become unrecoverable from driver context. Purpose of
> > > > > this implementation is to provide drivers a generic way to recover with
> > > > > the help of userspace intervention without taking any drastic measures
> > > > > in the driver.
> > > > >
> > > > > A 'wedged' device is basically a dead device that needs attention. The
> > > > > uevent is the notification that is sent to userspace along with a hint
> > > > > about what could possibly be attempted to recover the device and bring
> > > > > it back to usable state. Different drivers may have different ideas of
> > > > > a 'wedged' device depending on their hardware implementation, and hence
> > > > > the vendor agnostic nature of the event. It is up to the drivers to
> > > > > decide when they see the need for device recovery and how they want to
> > > > > recover from the available methods.
> > > > >
> > > > Thank you for your work. Do you think you can add the optional PID
> > > > parameter, as the PID of the app that caused the reset? For SteamOS use case
> > > > it has been proved to be useful to kill the fault app as well. If the reset
> > > > was caused by a kthread, no PID can be provided hence it's an optional
> > > > parameter.
> > > Hmm, I'm not sure if it really fits here since it doesn't seem like
> > > a generic usecase.
> > >
> > > I'd still be open for it if found useful by the drivers but perhaps
> > > as an extended feature in a separate series.
> > What do you think Chris, are we good to go with v10?
>
> I agree with Andre that the PID and maybe the new DRM client name would be
> really nice to have here.
>
> We do have that in the device core dump we create, but if an application is
> supervised by daemon for example then that would be really useful.
>
> On the other hand I think we should merge the documentation and code as is
> and then add the PID/name later on. That is essentially a separate
> discussion.
So how do we proceed, perhaps through misc tree?
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-04 11:17 ` Raag Jadav
@ 2024-12-11 17:14 ` Maxime Ripard
2024-12-12 10:37 ` Raag Jadav
0 siblings, 1 reply; 34+ messages in thread
From: Maxime Ripard @ 2024-12-11 17:14 UTC (permalink / raw)
To: Raag Jadav
Cc: Christian König, maarten.lankhorst, tzimmermann,
André Almeida, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, rodrigo.vivi,
michal.wajdeczko, lina, anshuman.gupta, alexander.deucher,
amd-gfx, kernel-dev, airlied, simona, lucas.demarchi, jani.nikula,
andriy.shevchenko
[-- Attachment #1: Type: text/plain, Size: 2960 bytes --]
On Wed, Dec 04, 2024 at 01:17:17PM +0200, Raag Jadav wrote:
> + misc maintainers
>
> On Tue, Dec 03, 2024 at 11:18:00AM +0100, Christian König wrote:
> > Am 03.12.24 um 06:00 schrieb Raag Jadav:
> > > On Mon, Dec 02, 2024 at 10:07:59AM +0200, Raag Jadav wrote:
> > > > On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
> > > > > Hi Raag,
> > > > >
> > > > > Em 28/11/2024 12:37, Raag Jadav escreveu:
> > > > > > Introduce device wedged event, which notifies userspace of 'wedged'
> > > > > > (hanged/unusable) state of the DRM device through a uevent. This is
> > > > > > useful especially in cases where the device is no longer operating as
> > > > > > expected and has become unrecoverable from driver context. Purpose of
> > > > > > this implementation is to provide drivers a generic way to recover with
> > > > > > the help of userspace intervention without taking any drastic measures
> > > > > > in the driver.
> > > > > >
> > > > > > A 'wedged' device is basically a dead device that needs attention. The
> > > > > > uevent is the notification that is sent to userspace along with a hint
> > > > > > about what could possibly be attempted to recover the device and bring
> > > > > > it back to usable state. Different drivers may have different ideas of
> > > > > > a 'wedged' device depending on their hardware implementation, and hence
> > > > > > the vendor agnostic nature of the event. It is up to the drivers to
> > > > > > decide when they see the need for device recovery and how they want to
> > > > > > recover from the available methods.
> > > > > >
> > > > > Thank you for your work. Do you think you can add the optional PID
> > > > > parameter, as the PID of the app that caused the reset? For SteamOS use case
> > > > > it has been proved to be useful to kill the fault app as well. If the reset
> > > > > was caused by a kthread, no PID can be provided hence it's an optional
> > > > > parameter.
> > > > Hmm, I'm not sure if it really fits here since it doesn't seem like
> > > > a generic usecase.
> > > >
> > > > I'd still be open for it if found useful by the drivers but perhaps
> > > > as an extended feature in a separate series.
> > > What do you think Chris, are we good to go with v10?
> >
> > I agree with Andre that the PID and maybe the new DRM client name would be
> > really nice to have here.
> >
> > We do have that in the device core dump we create, but if an application is
> > supervised by daemon for example then that would be really useful.
> >
> > On the other hand I think we should merge the documentation and code as is
> > and then add the PID/name later on. That is essentially a separate
> > discussion.
>
> So how do we proceed, perhaps through misc tree?
Provided it follows the usual rules (ie, Reviewed-by, open source
userspace tools using it if it's a new uAPI, etc.) then yeah, we can
merge it through drm-misc.
Maxime
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 273 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-11 17:14 ` Maxime Ripard
@ 2024-12-12 10:37 ` Raag Jadav
2024-12-16 16:07 ` Maxime Ripard
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2024-12-12 10:37 UTC (permalink / raw)
To: Maxime Ripard
Cc: Christian König, maarten.lankhorst, tzimmermann,
André Almeida, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, rodrigo.vivi,
michal.wajdeczko, lina, anshuman.gupta, alexander.deucher,
amd-gfx, kernel-dev, airlied, simona, lucas.demarchi, jani.nikula,
andriy.shevchenko
On Wed, Dec 11, 2024 at 06:14:12PM +0100, Maxime Ripard wrote:
> On Wed, Dec 04, 2024 at 01:17:17PM +0200, Raag Jadav wrote:
> > + misc maintainers
> >
> > On Tue, Dec 03, 2024 at 11:18:00AM +0100, Christian König wrote:
> > > Am 03.12.24 um 06:00 schrieb Raag Jadav:
> > > > On Mon, Dec 02, 2024 at 10:07:59AM +0200, Raag Jadav wrote:
> > > > > On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
> > > > > > Hi Raag,
> > > > > >
> > > > > > Em 28/11/2024 12:37, Raag Jadav escreveu:
> > > > > > > Introduce device wedged event, which notifies userspace of 'wedged'
> > > > > > > (hanged/unusable) state of the DRM device through a uevent. This is
> > > > > > > useful especially in cases where the device is no longer operating as
> > > > > > > expected and has become unrecoverable from driver context. Purpose of
> > > > > > > this implementation is to provide drivers a generic way to recover with
> > > > > > > the help of userspace intervention without taking any drastic measures
> > > > > > > in the driver.
> > > > > > >
> > > > > > > A 'wedged' device is basically a dead device that needs attention. The
> > > > > > > uevent is the notification that is sent to userspace along with a hint
> > > > > > > about what could possibly be attempted to recover the device and bring
> > > > > > > it back to usable state. Different drivers may have different ideas of
> > > > > > > a 'wedged' device depending on their hardware implementation, and hence
> > > > > > > the vendor agnostic nature of the event. It is up to the drivers to
> > > > > > > decide when they see the need for device recovery and how they want to
> > > > > > > recover from the available methods.
> > > > > > >
> > > > > > Thank you for your work. Do you think you can add the optional PID
> > > > > > parameter, as the PID of the app that caused the reset? For SteamOS use case
> > > > > > it has been proved to be useful to kill the fault app as well. If the reset
> > > > > > was caused by a kthread, no PID can be provided hence it's an optional
> > > > > > parameter.
> > > > > Hmm, I'm not sure if it really fits here since it doesn't seem like
> > > > > a generic usecase.
> > > > >
> > > > > I'd still be open for it if found useful by the drivers but perhaps
> > > > > as an extended feature in a separate series.
> > > > What do you think Chris, are we good to go with v10?
> > >
> > > I agree with Andre that the PID and maybe the new DRM client name would be
> > > really nice to have here.
> > >
> > > We do have that in the device core dump we create, but if an application is
> > > supervised by daemon for example then that would be really useful.
> > >
> > > On the other hand I think we should merge the documentation and code as is
> > > and then add the PID/name later on. That is essentially a separate
> > > discussion.
> >
> > So how do we proceed, perhaps through misc tree?
>
> Provided it follows the usual rules (ie, Reviewed-by, open source
> userspace tools using it if it's a new uAPI, etc.) then yeah, we can
> merge it through drm-misc.
My understanding is that the core patches are to be reviewed by the
maintainers? The rest of it (patch 2 to 4) seems already reviewed.
We have a documented example (patch 2) with udev rule and a reference
script which can be setup to get this working. Does that qualify as
a consumer?
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-12 10:37 ` Raag Jadav
@ 2024-12-16 16:07 ` Maxime Ripard
0 siblings, 0 replies; 34+ messages in thread
From: Maxime Ripard @ 2024-12-16 16:07 UTC (permalink / raw)
To: Raag Jadav
Cc: Christian König, maarten.lankhorst, tzimmermann,
André Almeida, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, rodrigo.vivi,
michal.wajdeczko, lina, anshuman.gupta, alexander.deucher,
amd-gfx, kernel-dev, airlied, simona, lucas.demarchi, jani.nikula,
andriy.shevchenko
[-- Attachment #1: Type: text/plain, Size: 4105 bytes --]
Hi,
On Thu, Dec 12, 2024 at 12:37:59PM +0200, Raag Jadav wrote:
> On Wed, Dec 11, 2024 at 06:14:12PM +0100, Maxime Ripard wrote:
> > On Wed, Dec 04, 2024 at 01:17:17PM +0200, Raag Jadav wrote:
> > > + misc maintainers
> > >
> > > On Tue, Dec 03, 2024 at 11:18:00AM +0100, Christian König wrote:
> > > > Am 03.12.24 um 06:00 schrieb Raag Jadav:
> > > > > On Mon, Dec 02, 2024 at 10:07:59AM +0200, Raag Jadav wrote:
> > > > > > On Fri, Nov 29, 2024 at 10:40:14AM -0300, André Almeida wrote:
> > > > > > > Hi Raag,
> > > > > > >
> > > > > > > Em 28/11/2024 12:37, Raag Jadav escreveu:
> > > > > > > > Introduce device wedged event, which notifies userspace of 'wedged'
> > > > > > > > (hanged/unusable) state of the DRM device through a uevent. This is
> > > > > > > > useful especially in cases where the device is no longer operating as
> > > > > > > > expected and has become unrecoverable from driver context. Purpose of
> > > > > > > > this implementation is to provide drivers a generic way to recover with
> > > > > > > > the help of userspace intervention without taking any drastic measures
> > > > > > > > in the driver.
> > > > > > > >
> > > > > > > > A 'wedged' device is basically a dead device that needs attention. The
> > > > > > > > uevent is the notification that is sent to userspace along with a hint
> > > > > > > > about what could possibly be attempted to recover the device and bring
> > > > > > > > it back to usable state. Different drivers may have different ideas of
> > > > > > > > a 'wedged' device depending on their hardware implementation, and hence
> > > > > > > > the vendor agnostic nature of the event. It is up to the drivers to
> > > > > > > > decide when they see the need for device recovery and how they want to
> > > > > > > > recover from the available methods.
> > > > > > > >
> > > > > > > Thank you for your work. Do you think you can add the optional PID
> > > > > > > parameter, as the PID of the app that caused the reset? For SteamOS use case
> > > > > > > it has been proved to be useful to kill the fault app as well. If the reset
> > > > > > > was caused by a kthread, no PID can be provided hence it's an optional
> > > > > > > parameter.
> > > > > > Hmm, I'm not sure if it really fits here since it doesn't seem like
> > > > > > a generic usecase.
> > > > > >
> > > > > > I'd still be open for it if found useful by the drivers but perhaps
> > > > > > as an extended feature in a separate series.
> > > > > What do you think Chris, are we good to go with v10?
> > > >
> > > > I agree with Andre that the PID and maybe the new DRM client name would be
> > > > really nice to have here.
> > > >
> > > > We do have that in the device core dump we create, but if an application is
> > > > supervised by daemon for example then that would be really useful.
> > > >
> > > > On the other hand I think we should merge the documentation and code as is
> > > > and then add the PID/name later on. That is essentially a separate
> > > > discussion.
> > >
> > > So how do we proceed, perhaps through misc tree?
> >
> > Provided it follows the usual rules (ie, Reviewed-by, open source
> > userspace tools using it if it's a new uAPI, etc.) then yeah, we can
> > merge it through drm-misc.
>
> My understanding is that the core patches are to be reviewed by the
> maintainers? The rest of it (patch 2 to 4) seems already reviewed.
>
> We have a documented example (patch 2) with udev rule and a reference
> script which can be setup to get this working. Does that qualify as
> a consumer?
Given the description you stated above, I'd expect a compositor to be
the expected user, right?
Our doc
(https://docs.kernel.org/gpu/drm-uapi.html#open-source-userspace-requirements)
states:
The open-source userspace must not be a toy/test application, but the
real thing. Specifically it needs to handle all the usual error and
corner cases. These are often the places where new uAPI falls apart
and hence essential to assess the fitness of a proposed interface.
Maxime
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 273 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-11-28 15:37 ` [PATCH v10 1/4] drm: Introduce " Raag Jadav
2024-11-29 13:40 ` André Almeida
@ 2024-12-12 18:31 ` André Almeida
2024-12-13 13:51 ` Raag Jadav
1 sibling, 1 reply; 34+ messages in thread
From: André Almeida @ 2024-12-12 18:31 UTC (permalink / raw)
To: Raag Jadav, airlied, simona, lucas.demarchi, rodrigo.vivi,
jani.nikula, andriy.shevchenko, lina, michal.wajdeczko,
christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher, amd-gfx,
kernel-dev
Hi Raag,
Thank you for your patch.
Em 28/11/2024 12:37, Raag Jadav escreveu:
[...]
> +int drm_dev_wedged_event(struct drm_device *dev, unsigned long method)
> +{
> + const char *recovery = NULL;
> + unsigned int len, opt;
> + /* Event string length up to 28+ characters with available methods */
> + char event_string[32];
> + char *envp[] = { event_string, NULL };
> +
> + len = scnprintf(event_string, sizeof(event_string), "%s", "WEDGED=");
> +
> + for_each_set_bit(opt, &method, BITS_PER_TYPE(method)) {
> + recovery = drm_get_wedge_recovery(opt);
> + if (drm_WARN(dev, !recovery, "device wedged, invalid recovery method %u\n", opt))
> + break;
> +
> + len += scnprintf(event_string + len, sizeof(event_string), "%s,", recovery);
> + }
> +
> + if (recovery)
> + /* Get rid of trailing comma */
> + event_string[len - 1] = '\0';
> + else
> + /* Caller is unsure about recovery, do the best we can at this point. */
> + snprintf(event_string, sizeof(event_string), "%s", "WEDGED=unknown");
> +
> + drm_info(dev, "device wedged, needs recovery\n");
As documented in the commit message "No explicit device recovery is
expected from the consumer in this case", I think this should be like this:
if (method != DRM_WEDGE_RECOVERY_NONE)
drm_info(dev, "device wedged, needs recovery\n");
and maybe a note like this:
else
drm_info(dev, "device reseted, but managed to recover\n");
Either way, this patch is:
Reviewed-by: André Almeida <andrealmeid@igalia.com>
^ permalink raw reply [flat|nested] 34+ messages in thread* Re: [PATCH v10 1/4] drm: Introduce device wedged event
2024-12-12 18:31 ` André Almeida
@ 2024-12-13 13:51 ` Raag Jadav
0 siblings, 0 replies; 34+ messages in thread
From: Raag Jadav @ 2024-12-13 13:51 UTC (permalink / raw)
To: André Almeida
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher, amd-gfx,
kernel-dev
On Thu, Dec 12, 2024 at 03:31:01PM -0300, André Almeida wrote:
> Hi Raag,
>
> Thank you for your patch.
>
> Em 28/11/2024 12:37, Raag Jadav escreveu:
>
> [...]
>
> > +int drm_dev_wedged_event(struct drm_device *dev, unsigned long method)
> > +{
> > + const char *recovery = NULL;
> > + unsigned int len, opt;
> > + /* Event string length up to 28+ characters with available methods */
> > + char event_string[32];
> > + char *envp[] = { event_string, NULL };
> > +
> > + len = scnprintf(event_string, sizeof(event_string), "%s", "WEDGED=");
> > +
> > + for_each_set_bit(opt, &method, BITS_PER_TYPE(method)) {
> > + recovery = drm_get_wedge_recovery(opt);
> > + if (drm_WARN(dev, !recovery, "device wedged, invalid recovery method %u\n", opt))
> > + break;
> > +
> > + len += scnprintf(event_string + len, sizeof(event_string), "%s,", recovery);
> > + }
> > +
> > + if (recovery)
> > + /* Get rid of trailing comma */
> > + event_string[len - 1] = '\0';
> > + else
> > + /* Caller is unsure about recovery, do the best we can at this point. */
> > + snprintf(event_string, sizeof(event_string), "%s", "WEDGED=unknown");
> > +
> > + drm_info(dev, "device wedged, needs recovery\n");
>
> As documented in the commit message "No explicit device recovery is expected
> from the consumer in this case", I think this should be like this:
>
> if (method != DRM_WEDGE_RECOVERY_NONE)
> drm_info(dev, "device wedged, needs recovery\n");
>
> and maybe a note like this:
>
> else
> drm_info(dev, "device reseted, but managed to recover\n");
Or perhaps
drm_info(dev, "device wedged, but recovered through reset\n");
> Either way, this patch is:
>
> Reviewed-by: André Almeida <andrealmeid@igalia.com>
Thanks for the review.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v10 2/4] drm/doc: Document device wedged event
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
2024-11-28 15:37 ` [PATCH v10 1/4] drm: Introduce " Raag Jadav
@ 2024-11-28 15:37 ` Raag Jadav
2024-12-12 18:50 ` André Almeida
2025-01-21 1:14 ` Xaver Hugl
2024-11-28 15:37 ` [PATCH v10 3/4] drm/xe: Use " Raag Jadav
` (10 subsequent siblings)
12 siblings, 2 replies; 34+ messages in thread
From: Raag Jadav @ 2024-11-28 15:37 UTC (permalink / raw)
To: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev, Raag Jadav
Add documentation for device wedged event in a new 'Device wedging'
chapter. The describes basic definitions, prerequisites and consumer
expectations along with an example.
v8: Improve documentation (Christian, Rodrigo)
v9: Add prerequisites section (Christian)
v10: Clarify mmap cleanup and consumer prerequisites (Christian, Aravind)
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
---
Documentation/gpu/drm-uapi.rst | 112 ++++++++++++++++++++++++++++++++-
1 file changed, 109 insertions(+), 3 deletions(-)
diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
index b75cc9a70d1f..da2927cde53d 100644
--- a/Documentation/gpu/drm-uapi.rst
+++ b/Documentation/gpu/drm-uapi.rst
@@ -371,9 +371,115 @@ Reporting causes of resets
Apart from propagating the reset through the stack so apps can recover, it's
really useful for driver developers to learn more about what caused the reset in
-the first place. DRM devices should make use of devcoredump to store relevant
-information about the reset, so this information can be added to user bug
-reports.
+the first place. For this, drivers can make use of devcoredump to store relevant
+information about the reset and send device wedged event without recovery method
+(as explained in next chapter) to notify userspace, so this information can be
+collected and added to user bug reports.
+
+Device wedging
+==============
+
+Drivers can optionally make use of device wedged event (implemented as
+drm_dev_wedged_event() in DRM subsystem), which notifies userspace of 'wedged'
+(hanged/unusable) state of the DRM device through a uevent. This is useful
+especially in cases where the device is no longer operating as expected and
+has become unrecoverable from driver context. Purpose of this implementation
+is to provide drivers a generic way to recover with the help of userspace
+intervention without taking any drastic measures in the driver.
+
+A 'wedged' device is basically a dead device that needs attention. The
+uevent is the notification that is sent to userspace along with a hint about
+what could possibly be attempted to recover the device and bring it back to
+usable state. Different drivers may have different ideas of a 'wedged' device
+depending on their hardware implementation, and hence the vendor agnostic
+nature of the event. It is up to the drivers to decide when they see the need
+for device recovery and how they want to recover from the available methods.
+
+Driver prerequisites
+--------------------
+
+The driver, before opting for recovery, needs to make sure that the 'wedged'
+device doesn't harm the system as a whole by taking care of the prerequisites.
+Necessary actions must include disabling DMA to system memory as well as any
+communication channels with other devices. Further, the driver must ensure
+that all dma_fences are signalled and any device state that the core kernel
+might depend on is cleaned up. Any existing mmap should be invalidated and
+page faults should be redirected to a dummy page. Once the event is sent, the
+device must be kept in 'wedged' state until the recovery is performed. New
+accesses to the device (IOCTLs) should be blocked, preferably with an error
+code that resembles the type of failure the device has encountered. This will
+signify the reason for wedging, which can be reported to the application if
+needed.
+
+Recovery
+--------
+
+Current implementation defines three recovery methods, out of which, drivers
+can use any one, multiple or none. Method(s) of choice will be sent in the
+uevent environment as ``WEDGED=<method1>[,<method2>]`` in order of less to
+more side-effects. If driver is unsure about recovery or method is unknown
+(like soft/hard reboot, firmware flashing, hardware replacement or any other
+procedure which can't be attempted on the fly), ``WEDGED=unknown`` will be
+sent instead.
+
+Userspace consumers can parse this event and attempt recovery as per the
+following expectations.
+
+ =============== ================================
+ Recovery method Consumer expectations
+ =============== ================================
+ none optional telemetry collection
+ rebind unbind + bind driver
+ bus-reset unbind + reset bus device + bind
+ unknown admin/user policy
+ =============== ================================
+
+The only exception to this is ``WEDGED=none``, which signifies that the
+device was temporarily 'wedged' at some point but was able to recover using
+device specific methods like reset. No explicit device recovery is expected
+from the consumer in this case, but it can still take additional steps like
+gathering telemetry information (devcoredump, syslog). This is useful
+because the first hang is usually the most critical one which can result in
+consequential hangs or complete wedging.
+
+Consumer prerequisites
+----------------------
+
+It is the responsibility of the consumer to make sure that the device or
+its resources are not in use by any process before attempting recovery.
+With IOCTLs blocked and device already 'wedged', all device memory should
+be unmapped and file descriptors should be closed to prevent leaks.
+
+Example
+-------
+
+Udev rule::
+
+ SUBSYSTEM=="drm", ENV{WEDGED}=="rebind", DEVPATH=="*/drm/card[0-9]",
+ RUN+="/path/to/rebind.sh $env{DEVPATH}"
+
+Recovery script::
+
+ #!/bin/sh
+
+ DEVPATH=$(readlink -f /sys/$1/device)
+ DEVICE=$(basename $DEVPATH)
+ DRIVER=$(readlink -f $DEVPATH/driver)
+
+ echo -n $DEVICE > $DRIVER/unbind
+ sleep 1
+ echo -n $DEVICE > $DRIVER/bind
+
+Customization
+-------------
+
+Although basic recovery is possible with a simple script, admin/users can
+define custom policies around recovery action. For example, if the driver
+supports multiple recovery methods, consumers can opt for the suitable one
+based on policy definition. Consumers can also choose to have the device
+available for debugging or additional data collection before performing the
+recovery. This is useful especially when the driver is unsure about recovery
+or method is unknown.
.. _drm_driver_ioctl:
--
2.34.1
^ permalink raw reply related [flat|nested] 34+ messages in thread* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2024-11-28 15:37 ` [PATCH v10 2/4] drm/doc: Document " Raag Jadav
@ 2024-12-12 18:50 ` André Almeida
2024-12-17 8:42 ` Raag Jadav
2025-01-21 1:14 ` Xaver Hugl
1 sibling, 1 reply; 34+ messages in thread
From: André Almeida @ 2024-12-12 18:50 UTC (permalink / raw)
To: Raag Jadav, airlied, simona, lucas.demarchi, rodrigo.vivi,
jani.nikula, andriy.shevchenko, lina, michal.wajdeczko,
christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher, amd-gfx,
kernel-dev
Em 28/11/2024 12:37, Raag Jadav escreveu:
> Add documentation for device wedged event in a new 'Device wedging'
> chapter. The describes basic definitions, prerequisites and consumer
> expectations along with an example.
>
> v8: Improve documentation (Christian, Rodrigo)
> v9: Add prerequisites section (Christian)
> v10: Clarify mmap cleanup and consumer prerequisites (Christian, Aravind)
>
> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> Reviewed-by: Christian König <christian.koenig@amd.com>
> ---
> Documentation/gpu/drm-uapi.rst | 112 ++++++++++++++++++++++++++++++++-
> 1 file changed, 109 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
> index b75cc9a70d1f..da2927cde53d 100644
> --- a/Documentation/gpu/drm-uapi.rst
> +++ b/Documentation/gpu/drm-uapi.rst
> @@ -371,9 +371,115 @@ Reporting causes of resets
I think it's a good idea to add a note about "device wedged event" in
the section "Device reset > Kernel Mode Driver" since the idea is to
explain what should kernel developer add to their kernel drivers to be
used when a device resets.
>
> Apart from propagating the reset through the stack so apps can recover, it's
> really useful for driver developers to learn more about what caused the reset in
> -the first place. DRM devices should make use of devcoredump to store relevant
> -information about the reset, so this information can be added to user bug
> -reports.
> +the first place. For this, drivers can make use of devcoredump to store relevant
> +information about the reset and send device wedged event without recovery method
and send a device wedged event with recovery method as "none" (as
explained in the chapter "Device wedging")
> +(as explained in next chapter) to notify userspace, so this information can be
> +collected and added to user bug reports.
> +
With those changes applied:
Reviewed-by: André Almeida <andrealmeid@igalia.com>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2024-12-12 18:50 ` André Almeida
@ 2024-12-17 8:42 ` Raag Jadav
2024-12-17 11:57 ` André Almeida
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2024-12-17 8:42 UTC (permalink / raw)
To: André Almeida
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher, amd-gfx,
kernel-dev
On Thu, Dec 12, 2024 at 03:50:29PM -0300, André Almeida wrote:
> Em 28/11/2024 12:37, Raag Jadav escreveu:
> > Add documentation for device wedged event in a new 'Device wedging'
> > chapter. The describes basic definitions, prerequisites and consumer
> > expectations along with an example.
> >
> > v8: Improve documentation (Christian, Rodrigo)
> > v9: Add prerequisites section (Christian)
> > v10: Clarify mmap cleanup and consumer prerequisites (Christian, Aravind)
> >
> > Signed-off-by: Raag Jadav <raag.jadav@intel.com>
> > Reviewed-by: Christian König <christian.koenig@amd.com>
> > ---
> > Documentation/gpu/drm-uapi.rst | 112 ++++++++++++++++++++++++++++++++-
> > 1 file changed, 109 insertions(+), 3 deletions(-)
> >
> > diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
> > index b75cc9a70d1f..da2927cde53d 100644
> > --- a/Documentation/gpu/drm-uapi.rst
> > +++ b/Documentation/gpu/drm-uapi.rst
> > @@ -371,9 +371,115 @@ Reporting causes of resets
>
> I think it's a good idea to add a note about "device wedged event" in the
> section "Device reset > Kernel Mode Driver" since the idea is to explain
> what should kernel developer add to their kernel drivers to be used when a
> device resets.
Wouldn't that be just a repetition of below? Also, I'm not sure if it's a hard
requirement.
> > Apart from propagating the reset through the stack so apps can recover, it's
> > really useful for driver developers to learn more about what caused the reset in
> > -the first place. DRM devices should make use of devcoredump to store relevant
> > -information about the reset, so this information can be added to user bug
> > -reports.
> > +the first place. For this, drivers can make use of devcoredump to store relevant
> > +information about the reset and send device wedged event without recovery method
>
> and send a device wedged event with recovery method as "none" (as explained
> in the chapter "Device wedging")
Sure.
> > +(as explained in next chapter) to notify userspace, so this information can be
> > +collected and added to user bug reports.
> > +
>
> With those changes applied:
>
> Reviewed-by: André Almeida <andrealmeid@igalia.com>
Thanks.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2024-12-17 8:42 ` Raag Jadav
@ 2024-12-17 11:57 ` André Almeida
0 siblings, 0 replies; 34+ messages in thread
From: André Almeida @ 2024-12-17 11:57 UTC (permalink / raw)
To: Raag Jadav
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher, amd-gfx,
kernel-dev
Em 17/12/2024 05:42, Raag Jadav escreveu:
> On Thu, Dec 12, 2024 at 03:50:29PM -0300, André Almeida wrote:
>> Em 28/11/2024 12:37, Raag Jadav escreveu:
>>> Add documentation for device wedged event in a new 'Device wedging'
>>> chapter. The describes basic definitions, prerequisites and consumer
>>> expectations along with an example.
>>>
>>> v8: Improve documentation (Christian, Rodrigo)
>>> v9: Add prerequisites section (Christian)
>>> v10: Clarify mmap cleanup and consumer prerequisites (Christian, Aravind)
>>>
>>> Signed-off-by: Raag Jadav <raag.jadav@intel.com>
>>> Reviewed-by: Christian König <christian.koenig@amd.com>
>>> ---
>>> Documentation/gpu/drm-uapi.rst | 112 ++++++++++++++++++++++++++++++++-
>>> 1 file changed, 109 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
>>> index b75cc9a70d1f..da2927cde53d 100644
>>> --- a/Documentation/gpu/drm-uapi.rst
>>> +++ b/Documentation/gpu/drm-uapi.rst
>>> @@ -371,9 +371,115 @@ Reporting causes of resets
>>
>> I think it's a good idea to add a note about "device wedged event" in the
>> section "Device reset > Kernel Mode Driver" since the idea is to explain
>> what should kernel developer add to their kernel drivers to be used when a
>> device resets.
>
> Wouldn't that be just a repetition of below? Also, I'm not sure if it's a hard
> requirement.
>
Right, it can get repetitive indeed, no need to apply this suggestion then.
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2024-11-28 15:37 ` [PATCH v10 2/4] drm/doc: Document " Raag Jadav
2024-12-12 18:50 ` André Almeida
@ 2025-01-21 1:14 ` Xaver Hugl
2025-01-22 5:22 ` Raag Jadav
1 sibling, 1 reply; 34+ messages in thread
From: Xaver Hugl @ 2025-01-21 1:14 UTC (permalink / raw)
To: Raag Jadav
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev
> +It is the responsibility of the consumer to make sure that the device or
> +its resources are not in use by any process before attempting recovery.
I'm not convinced this is actually doable in practice, outside of
killing all apps that aren't the one trying to recover the GPU.
Is this just about not crashing those processes if they don't handle
GPU hotunplugs well, about leaks, or something else?
> +With IOCTLs blocked and device already 'wedged', all device memory should
> +be unmapped and file descriptors should be closed to prevent leaks.
Afaiu from a userspace POV, a rebind is just like a GPU hotunplug +
hotplug with matching "remove" and "add" udev events. As long as the
application cleans up resources related to the device when it receives
the event, there should be no leaks with a normal hotunplug... Is this
different enough that we can't have the same expectations?
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2025-01-21 1:14 ` Xaver Hugl
@ 2025-01-22 5:22 ` Raag Jadav
2025-01-27 10:23 ` Pekka Paalanen
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2025-01-22 5:22 UTC (permalink / raw)
To: Xaver Hugl
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev
On Tue, Jan 21, 2025 at 02:14:56AM +0100, Xaver Hugl wrote:
> > +It is the responsibility of the consumer to make sure that the device or
> > +its resources are not in use by any process before attempting recovery.
> I'm not convinced this is actually doable in practice, outside of
> killing all apps that aren't the one trying to recover the GPU.
> Is this just about not crashing those processes if they don't handle
> GPU hotunplugs well, about leaks, or something else?
Correct, all of it. And since the compositor is in charge of device resources,
this way it atleast has the opportunity to recover the device and recreate
context without all the userspace violence.
I'm not entirely aware of its feasibility though, perhaps something for the
consumers to experiment.
> > +With IOCTLs blocked and device already 'wedged', all device memory should
> > +be unmapped and file descriptors should be closed to prevent leaks.
> Afaiu from a userspace POV, a rebind is just like a GPU hotunplug +
> hotplug with matching "remove" and "add" udev events. As long as the
> application cleans up resources related to the device when it receives
> the event, there should be no leaks with a normal hotunplug... Is this
> different enough that we can't have the same expectations?
The thing about "remove" event is that it is generated *after* we opt for an
unbind, and at that point it might be already too late if userspace doesn't
get enough time to clean things up while the device is removed with a live
client resulting in unknown consequences.
The idea here is to clean things up *before* we opt for an unbind leaving
no room for side effects.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2025-01-22 5:22 ` Raag Jadav
@ 2025-01-27 10:23 ` Pekka Paalanen
2025-01-28 9:37 ` Raag Jadav
0 siblings, 1 reply; 34+ messages in thread
From: Pekka Paalanen @ 2025-01-27 10:23 UTC (permalink / raw)
To: Raag Jadav
Cc: Xaver Hugl, airlied, simona, lucas.demarchi, rodrigo.vivi,
jani.nikula, andriy.shevchenko, lina, michal.wajdeczko,
christian.koenig, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, anshuman.gupta,
alexander.deucher, andrealmeid, amd-gfx, kernel-dev
[-- Attachment #1: Type: text/plain, Size: 4094 bytes --]
On Wed, 22 Jan 2025 07:22:25 +0200
Raag Jadav <raag.jadav@intel.com> wrote:
> On Tue, Jan 21, 2025 at 02:14:56AM +0100, Xaver Hugl wrote:
> > > +It is the responsibility of the consumer to make sure that the device or
> > > +its resources are not in use by any process before attempting recovery.
> > I'm not convinced this is actually doable in practice, outside of
> > killing all apps that aren't the one trying to recover the GPU.
> > Is this just about not crashing those processes if they don't handle
> > GPU hotunplugs well, about leaks, or something else?
>
> Correct, all of it. And since the compositor is in charge of device resources,
> this way it atleast has the opportunity to recover the device and recreate
> context without all the userspace violence.
Hi Raag,
sorry, I haven't followed this series, so I wonder, why should
userspace be part of recovering the device? Why doesn't the kernel
automatically load a new driver instance with a new DRM device node?
Of course userspace needs to deal with stuff suddenly erroring out, and
destroy existing related resources, then wait for a working device
to appear and rebuild all state. The kernel driver already needs to
make the existing open stuff inert and harmless, why does it need an
acknowledgement from userspace to unbind and re-bind?
> I'm not entirely aware of its feasibility though, perhaps something for the
> consumers to experiment.
If consumers mean userspace, then no, not reliably. But the kernel can
do it.
I see in the commit message written:
"For example, if the driver supports multiple recovery methods,
consumers can opt for the suitable one based on policy
definition."
How could consumers know what to do? How can they guess what would be
enough to recover the device? Isn't that the kernel driver's job to
know?
(More important for userspace would be know if dmabuf fds remain
pointing to valid memory retaining its contents or if the contents are
lost. Userspace cannot tell which device a dmabuf originates from,
AFAIK, so this would need to be added in the generic dmabuf UAPI.)
"Consumers can also choose to have the device available for
debugging or additional data collection before performing the
recovery."
Couldn't the wedged driver instance remain detached from the hardware
while a new driver instance initializes? Then debug data remains until
the wedged device is fully closed from userspace, or maybe devcore dump
retains it.
I presume that WEDGED=none case should retain the debug data somehow as
well.
> > > +With IOCTLs blocked and device already 'wedged', all device memory should
btw. when I see "blocked" I think of the function call not returning
yet. But in this patch "blocked" seems to be synonymous for "returns
an error immediately". Would it be possible to avoid the word "blocked"
for this?
> > > +be unmapped and file descriptors should be closed to prevent leaks.
> > Afaiu from a userspace POV, a rebind is just like a GPU hotunplug +
> > hotplug with matching "remove" and "add" udev events. As long as the
> > application cleans up resources related to the device when it receives
> > the event, there should be no leaks with a normal hotunplug... Is this
> > different enough that we can't have the same expectations?
>
> The thing about "remove" event is that it is generated *after* we opt for an
> unbind, and at that point it might be already too late if userspace doesn't
> get enough time to clean things up while the device is removed with a live
> client resulting in unknown consequences.
>
> The idea here is to clean things up *before* we opt for an unbind leaving
> no room for side effects.
Something here feels fragile. There should not be a deadline for
userspace to finish cleaning up. What was described for KMS device nodes
in this same document seems like a more reliable approach: keep the
dead driver instance around until userspace has closed all references
to it. The device node could be removed earlier.
Thanks,
pq
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2025-01-27 10:23 ` Pekka Paalanen
@ 2025-01-28 9:37 ` Raag Jadav
2025-01-28 11:38 ` Pekka Paalanen
0 siblings, 1 reply; 34+ messages in thread
From: Raag Jadav @ 2025-01-28 9:37 UTC (permalink / raw)
To: Pekka Paalanen
Cc: Xaver Hugl, airlied, simona, lucas.demarchi, rodrigo.vivi,
jani.nikula, andriy.shevchenko, lina, michal.wajdeczko,
christian.koenig, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, anshuman.gupta,
alexander.deucher, andrealmeid, amd-gfx, kernel-dev
On Mon, Jan 27, 2025 at 12:23:28PM +0200, Pekka Paalanen wrote:
> On Wed, 22 Jan 2025 07:22:25 +0200
> Raag Jadav <raag.jadav@intel.com> wrote:
>
> > On Tue, Jan 21, 2025 at 02:14:56AM +0100, Xaver Hugl wrote:
> > > > +It is the responsibility of the consumer to make sure that the device or
> > > > +its resources are not in use by any process before attempting recovery.
> > > I'm not convinced this is actually doable in practice, outside of
> > > killing all apps that aren't the one trying to recover the GPU.
> > > Is this just about not crashing those processes if they don't handle
> > > GPU hotunplugs well, about leaks, or something else?
> >
> > Correct, all of it. And since the compositor is in charge of device resources,
> > this way it atleast has the opportunity to recover the device and recreate
> > context without all the userspace violence.
>
> Hi Raag,
>
> sorry, I haven't followed this series, so I wonder, why should
> userspace be part of recovering the device? Why doesn't the kernel
> automatically load a new driver instance with a new DRM device node?
There are things like bus level reset (PCI SBR) and re-enumeration that are
not possible from driver context (or atleast I'm not aware of it), so a new
instance is just as useful/less as the old one.
> Of course userspace needs to deal with stuff suddenly erroring out, and
> destroy existing related resources, then wait for a working device
> to appear and rebuild all state. The kernel driver already needs to
> make the existing open stuff inert and harmless, why does it need an
> acknowledgement from userspace to unbind and re-bind?
Rebind is kind of a stepping stone to the above.
> > I'm not entirely aware of its feasibility though, perhaps something for the
> > consumers to experiment.
>
> If consumers mean userspace, then no, not reliably. But the kernel can
> do it.
Can you please elaborate or refer to an example?
> I see in the commit message written:
>
> "For example, if the driver supports multiple recovery methods,
> consumers can opt for the suitable one based on policy
> definition."
>
> How could consumers know what to do? How can they guess what would be
> enough to recover the device? Isn't that the kernel driver's job to
> know?
Yes, 'WEDGED=' value are the known methods that are expected to work. The
policy is how the consumer can decide which one to opt for depending on the
scenario. For example, the less drastic method could work in most cases, but
you'd probably want to opt for a more drastic method for repeat offences or
perhaps if something more serious is discovered from "optional telemetry
collection".
> (More important for userspace would be know if dmabuf fds remain
> pointing to valid memory retaining its contents or if the contents are
> lost. Userspace cannot tell which device a dmabuf originates from,
> AFAIK, so this would need to be added in the generic dmabuf UAPI.)
Not sure if I understand, perhaps Christian can shed some light here.
> "Consumers can also choose to have the device available for
> debugging or additional data collection before performing the
> recovery."
>
> Couldn't the wedged driver instance remain detached from the hardware
> while a new driver instance initializes? Then debug data remains until
> the wedged device is fully closed from userspace, or maybe devcore dump
> retains it.
>
> I presume that WEDGED=none case should retain the debug data somehow as
> well.
Indeed, but it's optional so depends on the driver.
> > > > +With IOCTLs blocked and device already 'wedged', all device memory should
>
> btw. when I see "blocked" I think of the function call not returning
> yet. But in this patch "blocked" seems to be synonymous for "returns
> an error immediately". Would it be possible to avoid the word "blocked"
> for this?
It is meant as "blocking the access", but fair enough. We can have a quick
fix later on if it's not too big of a concern.
> > > > +be unmapped and file descriptors should be closed to prevent leaks.
> > > Afaiu from a userspace POV, a rebind is just like a GPU hotunplug +
> > > hotplug with matching "remove" and "add" udev events. As long as the
> > > application cleans up resources related to the device when it receives
> > > the event, there should be no leaks with a normal hotunplug... Is this
> > > different enough that we can't have the same expectations?
> >
> > The thing about "remove" event is that it is generated *after* we opt for an
> > unbind, and at that point it might be already too late if userspace doesn't
> > get enough time to clean things up while the device is removed with a live
> > client resulting in unknown consequences.
> >
> > The idea here is to clean things up *before* we opt for an unbind leaving
> > no room for side effects.
>
> Something here feels fragile. There should not be a deadline for
> userspace to finish cleaning up. What was described for KMS device nodes
> in this same document seems like a more reliable approach: keep the
> dead driver instance around until userspace has closed all references
> to it. The device node could be removed earlier.
I'm not sure if I'm following here. The driver instance will exist as long
as the dead device exists, which the consumer can remove if/when it chooses
to trigger an unbind from userspace. There is no deadline for it.
The consumer can choose to rely on hotplug events if it wishes, but the point
here is that it doesn't guarantee a clean recovery in all cases.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2025-01-28 9:37 ` Raag Jadav
@ 2025-01-28 11:38 ` Pekka Paalanen
2025-01-29 7:04 ` Raag Jadav
0 siblings, 1 reply; 34+ messages in thread
From: Pekka Paalanen @ 2025-01-28 11:38 UTC (permalink / raw)
To: Raag Jadav
Cc: Xaver Hugl, airlied, simona, lucas.demarchi, rodrigo.vivi,
jani.nikula, andriy.shevchenko, lina, michal.wajdeczko,
christian.koenig, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, anshuman.gupta,
alexander.deucher, andrealmeid, amd-gfx, kernel-dev
[-- Attachment #1: Type: text/plain, Size: 5676 bytes --]
On Tue, 28 Jan 2025 11:37:53 +0200
Raag Jadav <raag.jadav@intel.com> wrote:
> On Mon, Jan 27, 2025 at 12:23:28PM +0200, Pekka Paalanen wrote:
> > On Wed, 22 Jan 2025 07:22:25 +0200
> > Raag Jadav <raag.jadav@intel.com> wrote:
> >
> > > On Tue, Jan 21, 2025 at 02:14:56AM +0100, Xaver Hugl wrote:
> > > > > +It is the responsibility of the consumer to make sure that the device or
> > > > > +its resources are not in use by any process before attempting recovery.
> > > > I'm not convinced this is actually doable in practice, outside of
> > > > killing all apps that aren't the one trying to recover the GPU.
> > > > Is this just about not crashing those processes if they don't handle
> > > > GPU hotunplugs well, about leaks, or something else?
> > >
> > > Correct, all of it. And since the compositor is in charge of device resources,
> > > this way it atleast has the opportunity to recover the device and recreate
> > > context without all the userspace violence.
> >
> > Hi Raag,
> >
> > sorry, I haven't followed this series, so I wonder, why should
> > userspace be part of recovering the device? Why doesn't the kernel
> > automatically load a new driver instance with a new DRM device node?
>
> There are things like bus level reset (PCI SBR) and re-enumeration that are
> not possible from driver context (or atleast I'm not aware of it), so a new
> instance is just as useful/less as the old one.
Ok, "not possible from driver context" is a key revelation. I wonder if
starting an overview section with that in the documentation would help
getting the right mindset.
Did I miss that somewhere?
I thought bus level reset meant resetting the PCI device by some bus
API. Clearly mistaken, I suppose you mean resetting the whole bus
including everything on it?
> > I see in the commit message written:
> >
> > "For example, if the driver supports multiple recovery methods,
> > consumers can opt for the suitable one based on policy
> > definition."
> >
> > How could consumers know what to do? How can they guess what would be
> > enough to recover the device? Isn't that the kernel driver's job to
> > know?
>
> Yes, 'WEDGED=' value are the known methods that are expected to work. The
> policy is how the consumer can decide which one to opt for depending on the
> scenario. For example, the less drastic method could work in most cases, but
> you'd probably want to opt for a more drastic method for repeat offences or
> perhaps if something more serious is discovered from "optional telemetry
> collection".
Aha, cool.
> > (More important for userspace would be know if dmabuf fds remain
> > pointing to valid memory retaining its contents or if the contents are
> > lost. Userspace cannot tell which device a dmabuf originates from,
> > AFAIK, so this would need to be added in the generic dmabuf UAPI.)
>
> Not sure if I understand, perhaps Christian can shed some light here.
A system might have multiple GPUs, and one GPU going down may leave all
the rest working as usual. A Wayland compositor would want to tell the
difference between still-good and possibly or definitely lost dmabufs
it received from its clients.
But this is off-topic in this thread I believe, nothing to the series
at hand.
> > > > > +With IOCTLs blocked and device already 'wedged', all device memory should
> >
> > btw. when I see "blocked" I think of the function call not returning
> > yet. But in this patch "blocked" seems to be synonymous for "returns
> > an error immediately". Would it be possible to avoid the word "blocked"
> > for this?
>
> It is meant as "blocking the access", but fair enough. We can have a quick
> fix later on if it's not too big of a concern.
Sure, I don't mind.
> > > > > +be unmapped and file descriptors should be closed to prevent leaks.
> > > > Afaiu from a userspace POV, a rebind is just like a GPU hotunplug +
> > > > hotplug with matching "remove" and "add" udev events. As long as the
> > > > application cleans up resources related to the device when it receives
> > > > the event, there should be no leaks with a normal hotunplug... Is this
> > > > different enough that we can't have the same expectations?
> > >
> > > The thing about "remove" event is that it is generated *after* we opt for an
> > > unbind, and at that point it might be already too late if userspace doesn't
> > > get enough time to clean things up while the device is removed with a live
> > > client resulting in unknown consequences.
> > >
> > > The idea here is to clean things up *before* we opt for an unbind leaving
> > > no room for side effects.
> >
> > Something here feels fragile. There should not be a deadline for
> > userspace to finish cleaning up. What was described for KMS device nodes
> > in this same document seems like a more reliable approach: keep the
> > dead driver instance around until userspace has closed all references
> > to it. The device node could be removed earlier.
>
> I'm not sure if I'm following here. The driver instance will exist as long
> as the dead device exists, which the consumer can remove if/when it chooses
> to trigger an unbind from userspace. There is no deadline for it.
I was going by your words: "it might be already too late if userspace
doesn't get enough time to clean things up".
> The consumer can choose to rely on hotplug events if it wishes, but the point
> here is that it doesn't guarantee a clean recovery in all cases.
Clearly I don't understand the whole picture here. No worries,
nevermind.
Thanks,
pq
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v10 2/4] drm/doc: Document device wedged event
2025-01-28 11:38 ` Pekka Paalanen
@ 2025-01-29 7:04 ` Raag Jadav
0 siblings, 0 replies; 34+ messages in thread
From: Raag Jadav @ 2025-01-29 7:04 UTC (permalink / raw)
To: Pekka Paalanen
Cc: Xaver Hugl, airlied, simona, lucas.demarchi, rodrigo.vivi,
jani.nikula, andriy.shevchenko, lina, michal.wajdeczko,
christian.koenig, intel-xe, intel-gfx, dri-devel,
himal.prasad.ghimiray, aravind.iddamsetty, anshuman.gupta,
alexander.deucher, andrealmeid, amd-gfx, kernel-dev
On Tue, Jan 28, 2025 at 01:38:09PM +0200, Pekka Paalanen wrote:
> On Tue, 28 Jan 2025 11:37:53 +0200
> Raag Jadav <raag.jadav@intel.com> wrote:
>
> > On Mon, Jan 27, 2025 at 12:23:28PM +0200, Pekka Paalanen wrote:
> > > On Wed, 22 Jan 2025 07:22:25 +0200
> > > Raag Jadav <raag.jadav@intel.com> wrote:
> > >
> > > > On Tue, Jan 21, 2025 at 02:14:56AM +0100, Xaver Hugl wrote:
> > > > > > +It is the responsibility of the consumer to make sure that the device or
> > > > > > +its resources are not in use by any process before attempting recovery.
> > > > > I'm not convinced this is actually doable in practice, outside of
> > > > > killing all apps that aren't the one trying to recover the GPU.
> > > > > Is this just about not crashing those processes if they don't handle
> > > > > GPU hotunplugs well, about leaks, or something else?
> > > >
> > > > Correct, all of it. And since the compositor is in charge of device resources,
> > > > this way it atleast has the opportunity to recover the device and recreate
> > > > context without all the userspace violence.
> > >
> > > Hi Raag,
> > >
> > > sorry, I haven't followed this series, so I wonder, why should
> > > userspace be part of recovering the device? Why doesn't the kernel
> > > automatically load a new driver instance with a new DRM device node?
> >
> > There are things like bus level reset (PCI SBR) and re-enumeration that are
> > not possible from driver context (or atleast I'm not aware of it), so a new
> > instance is just as useful/less as the old one.
>
> Ok, "not possible from driver context" is a key revelation. I wonder if
> starting an overview section with that in the documentation would help
> getting the right mindset.
Not "not possible" in a literal sense, but rather allowing something that
drastic and convoluted that is probably beyond the scope of the driver.
> Did I miss that somewhere?
The first two paragraphs are meant as an introduction. Let me know if
something's not translating so well.
> I thought bus level reset meant resetting the PCI device by some bus
> API. Clearly mistaken, I suppose you mean resetting the whole bus
> including everything on it?
I'm no PCI expert but yes, it is atleast my understanding.
...
> > > (More important for userspace would be know if dmabuf fds remain
> > > pointing to valid memory retaining its contents or if the contents are
> > > lost. Userspace cannot tell which device a dmabuf originates from,
> > > AFAIK, so this would need to be added in the generic dmabuf UAPI.)
> >
> > Not sure if I understand, perhaps Christian can shed some light here.
>
> A system might have multiple GPUs, and one GPU going down may leave all
> the rest working as usual. A Wayland compositor would want to tell the
> difference between still-good and possibly or definitely lost dmabufs
> it received from its clients.
Usually 'DEVNAME=' and 'DEVPATH=' values refer to the device that generates
the event.
> But this is off-topic in this thread I believe, nothing to the series
> at hand.
...
> > > > > > +be unmapped and file descriptors should be closed to prevent leaks.
> > > > > Afaiu from a userspace POV, a rebind is just like a GPU hotunplug +
> > > > > hotplug with matching "remove" and "add" udev events. As long as the
> > > > > application cleans up resources related to the device when it receives
> > > > > the event, there should be no leaks with a normal hotunplug... Is this
> > > > > different enough that we can't have the same expectations?
> > > >
> > > > The thing about "remove" event is that it is generated *after* we opt for an
> > > > unbind, and at that point it might be already too late if userspace doesn't
> > > > get enough time to clean things up while the device is removed with a live
> > > > client resulting in unknown consequences.
> > > >
> > > > The idea here is to clean things up *before* we opt for an unbind leaving
> > > > no room for side effects.
> > >
> > > Something here feels fragile. There should not be a deadline for
> > > userspace to finish cleaning up. What was described for KMS device nodes
> > > in this same document seems like a more reliable approach: keep the
> > > dead driver instance around until userspace has closed all references
> > > to it. The device node could be removed earlier.
> >
> > I'm not sure if I'm following here. The driver instance will exist as long
> > as the dead device exists, which the consumer can remove if/when it chooses
> > to trigger an unbind from userspace. There is no deadline for it.
>
> I was going by your words: "it might be already too late if userspace
> doesn't get enough time to clean things up".
The idea here is to completely detach kernel and userspace *before* moving
forward with the recovery.
> > The consumer can choose to rely on hotplug events if it wishes, but the point
> > here is that it doesn't guarantee a clean recovery in all cases.
>
> Clearly I don't understand the whole picture here. No worries,
> nevermind.
Less moving parts comes with more chances of success.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v10 3/4] drm/xe: Use device wedged event
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
2024-11-28 15:37 ` [PATCH v10 1/4] drm: Introduce " Raag Jadav
2024-11-28 15:37 ` [PATCH v10 2/4] drm/doc: Document " Raag Jadav
@ 2024-11-28 15:37 ` Raag Jadav
2024-11-28 15:37 ` [PATCH v10 4/4] drm/i915: " Raag Jadav
` (9 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Raag Jadav @ 2024-11-28 15:37 UTC (permalink / raw)
To: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev, Raag Jadav
This was previously attempted as xe specific reset uevent but dropped
in commit 77a0d4d1cea2 ("drm/xe/uapi: Remove reset uevent for now")
as part of refactoring.
Now that we have device wedged event provided by DRM core, make use
of it and support both driver rebind and bus-reset based recovery.
With this in place userspace will be notified of wedged device, on
the basis of which, userspace may take respective action to recover
the device.
$ udevadm monitor --property --kernel
monitor will print the received events for:
KERNEL - the kernel uevent
KERNEL[265.802982] change /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:01.0/0000:03:00.0/drm/card0 (drm)
ACTION=change
DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:01.0/0000:03:00.0/drm/card0
SUBSYSTEM=drm
WEDGED=rebind,bus-reset
DEVNAME=/dev/dri/card0
DEVTYPE=drm_minor
SEQNUM=5208
MAJOR=226
MINOR=0
v2: Change authorship to Himal (Aravind)
Add uevent for all device wedged cases (Aravind)
v3: Generic re-implementation in DRM subsystem (Lucas)
v4: Change authorship to Raag (Aravind)
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
---
drivers/gpu/drm/xe/xe_device.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 930bb2750e2e..f04737854887 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -991,11 +991,12 @@ static void xe_device_wedged_fini(struct drm_device *drm, void *arg)
* xe_device_declare_wedged - Declare device wedged
* @xe: xe device instance
*
- * This is a final state that can only be cleared with a mudule
+ * This is a final state that can only be cleared with a module
* re-probe (unbind + bind).
* In this state every IOCTL will be blocked so the GT cannot be used.
* In general it will be called upon any critical error such as gt reset
- * failure or guc loading failure.
+ * failure or guc loading failure. Userspace will be notified of this state
+ * by a DRM uevent.
* If xe.wedged module parameter is set to 2, this function will be called
* on every single execution timeout (a.k.a. GPU hang) right after devcoredump
* snapshot capture. In this mode, GT reset won't be attempted so the state of
@@ -1025,6 +1026,10 @@ void xe_device_declare_wedged(struct xe_device *xe)
"IOCTLs and executions are blocked. Only a rebind may clear the failure\n"
"Please file a _new_ bug report at https://gitlab.freedesktop.org/drm/xe/kernel/issues/new\n",
dev_name(xe->drm.dev));
+
+ /* Notify userspace of wedged device */
+ drm_dev_wedged_event(&xe->drm,
+ DRM_WEDGE_RECOVERY_REBIND | DRM_WEDGE_RECOVERY_BUS_RESET);
}
for_each_gt(gt, xe, id)
--
2.34.1
^ permalink raw reply related [flat|nested] 34+ messages in thread* [PATCH v10 4/4] drm/i915: Use device wedged event
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (2 preceding siblings ...)
2024-11-28 15:37 ` [PATCH v10 3/4] drm/xe: Use " Raag Jadav
@ 2024-11-28 15:37 ` Raag Jadav
2024-11-28 15:52 ` ✓ CI.Patch_applied: success for Introduce DRM device wedged event (rev8) Patchwork
` (8 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Raag Jadav @ 2024-11-28 15:37 UTC (permalink / raw)
To: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig
Cc: intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev, Raag Jadav
Now that we have device wedged event provided by DRM core, make use
of it and support both driver rebind and bus-reset based recovery.
With this in place, userspace will be notified of wedged device on
gt reset failure.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_reset.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
index f42f21632306..18cf50a1e84d 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset.c
+++ b/drivers/gpu/drm/i915/gt/intel_reset.c
@@ -1418,6 +1418,9 @@ static void intel_gt_reset_global(struct intel_gt *gt,
if (!test_bit(I915_WEDGED, >->reset.flags))
kobject_uevent_env(kobj, KOBJ_CHANGE, reset_done_event);
+ else
+ drm_dev_wedged_event(>->i915->drm,
+ DRM_WEDGE_RECOVERY_REBIND | DRM_WEDGE_RECOVERY_BUS_RESET);
}
/**
--
2.34.1
^ permalink raw reply related [flat|nested] 34+ messages in thread* ✓ CI.Patch_applied: success for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (3 preceding siblings ...)
2024-11-28 15:37 ` [PATCH v10 4/4] drm/i915: " Raag Jadav
@ 2024-11-28 15:52 ` Patchwork
2024-11-28 15:52 ` ✗ CI.checkpatch: warning " Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 15:52 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 74a57778be9b drm-tip: 2024y-11m-28d-15h-48m-53s UTC integration manifest
=== git am output follows ===
Applying: drm: Introduce device wedged event
Applying: drm/doc: Document device wedged event
Applying: drm/xe: Use device wedged event
Applying: drm/i915: Use device wedged event
^ permalink raw reply [flat|nested] 34+ messages in thread* ✗ CI.checkpatch: warning for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (4 preceding siblings ...)
2024-11-28 15:52 ` ✓ CI.Patch_applied: success for Introduce DRM device wedged event (rev8) Patchwork
@ 2024-11-28 15:52 ` Patchwork
2024-11-28 15:53 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 15:52 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
30ab6715fc09baee6cc14cb3c89ad8858688d474
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit e548d261685a8d8aa12fc23d14ddd1b28c43a00a
Author: Raag Jadav <raag.jadav@intel.com>
Date: Thu Nov 28 21:07:07 2024 +0530
drm/i915: Use device wedged event
Now that we have device wedged event provided by DRM core, make use
of it and support both driver rebind and bus-reset based recovery.
With this in place, userspace will be notified of wedged device on
gt reset failure.
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
+ /mt/dim checkpatch 74a57778be9b7768773c41c9ef84e8a81877adca drm-intel
fad6cfa45df9 drm: Introduce device wedged event
-:189: WARNING:STATIC_CONST_CHAR_ARRAY: char * array declaration might be better as static const
#189: FILE: drivers/gpu/drm/drm_drv.c:542:
+ char *envp[] = { event_string, NULL };
total: 0 errors, 1 warnings, 0 checks, 105 lines checked
49324beed43f drm/doc: Document device wedged event
9dec61b73813 drm/xe: Use device wedged event
-:20: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#20:
KERNEL[265.802982] change /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:01.0/0000:03:00.0/drm/card0 (drm)
total: 0 errors, 1 warnings, 0 checks, 24 lines checked
e548d261685a drm/i915: Use device wedged event
^ permalink raw reply [flat|nested] 34+ messages in thread* ✓ CI.KUnit: success for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (5 preceding siblings ...)
2024-11-28 15:52 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-11-28 15:53 ` Patchwork
2024-11-28 16:11 ` ✓ CI.Build: " Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 15:53 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:52:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:52:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[15:52:48] Starting KUnit Kernel (1/1)...
[15:52:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:52:48] =================== guc_dbm (7 subtests) ===================
[15:52:48] [PASSED] test_empty
[15:52:48] [PASSED] test_default
[15:52:48] ======================== test_size ========================
[15:52:48] [PASSED] 4
[15:52:48] [PASSED] 8
[15:52:48] [PASSED] 32
[15:52:48] [PASSED] 256
[15:52:48] ==================== [PASSED] test_size ====================
[15:52:48] ======================= test_reuse ========================
[15:52:48] [PASSED] 4
[15:52:48] [PASSED] 8
[15:52:48] [PASSED] 32
[15:52:48] [PASSED] 256
[15:52:48] =================== [PASSED] test_reuse ====================
[15:52:48] =================== test_range_overlap ====================
[15:52:48] [PASSED] 4
[15:52:48] [PASSED] 8
[15:52:48] [PASSED] 32
[15:52:48] [PASSED] 256
[15:52:48] =============== [PASSED] test_range_overlap ================
[15:52:48] =================== test_range_compact ====================
[15:52:48] [PASSED] 4
[15:52:48] [PASSED] 8
[15:52:48] [PASSED] 32
[15:52:48] [PASSED] 256
[15:52:48] =============== [PASSED] test_range_compact ================
[15:52:48] ==================== test_range_spare =====================
[15:52:48] [PASSED] 4
[15:52:48] [PASSED] 8
[15:52:48] [PASSED] 32
[15:52:48] [PASSED] 256
[15:52:48] ================ [PASSED] test_range_spare =================
[15:52:48] ===================== [PASSED] guc_dbm =====================
[15:52:48] =================== guc_idm (6 subtests) ===================
[15:52:48] [PASSED] bad_init
[15:52:48] [PASSED] no_init
[15:52:48] [PASSED] init_fini
[15:52:48] [PASSED] check_used
[15:52:48] [PASSED] check_quota
[15:52:48] [PASSED] check_all
[15:52:48] ===================== [PASSED] guc_idm =====================
[15:52:48] ================== no_relay (3 subtests) ===================
[15:52:48] [PASSED] xe_drops_guc2pf_if_not_ready
[15:52:48] [PASSED] xe_drops_guc2vf_if_not_ready
[15:52:48] [PASSED] xe_rejects_send_if_not_ready
[15:52:48] ==================== [PASSED] no_relay =====================
[15:52:48] ================== pf_relay (14 subtests) ==================
[15:52:48] [PASSED] pf_rejects_guc2pf_too_short
[15:52:48] [PASSED] pf_rejects_guc2pf_too_long
[15:52:48] [PASSED] pf_rejects_guc2pf_no_payload
[15:52:48] [PASSED] pf_fails_no_payload
[15:52:48] [PASSED] pf_fails_bad_origin
[15:52:48] [PASSED] pf_fails_bad_type
[15:52:48] [PASSED] pf_txn_reports_error
[15:52:48] [PASSED] pf_txn_sends_pf2guc
[15:52:48] [PASSED] pf_sends_pf2guc
[15:52:48] [SKIPPED] pf_loopback_nop
[15:52:48] [SKIPPED] pf_loopback_echo
[15:52:48] [SKIPPED] pf_loopback_fail
[15:52:48] [SKIPPED] pf_loopback_busy
[15:52:48] [SKIPPED] pf_loopback_retry
[15:52:48] ==================== [PASSED] pf_relay =====================
[15:52:48] ================== vf_relay (3 subtests) ===================
[15:52:48] [PASSED] vf_rejects_guc2vf_too_short
[15:52:48] [PASSED] vf_rejects_guc2vf_too_long
[15:52:48] [PASSED] vf_rejects_guc2vf_no_payload
[15:52:48] ==================== [PASSED] vf_relay =====================
[15:52:48] ================= pf_service (11 subtests) =================
[15:52:48] [PASSED] pf_negotiate_any
[15:52:48] [PASSED] pf_negotiate_base_match
[15:52:48] [PASSED] pf_negotiate_base_newer
[15:52:48] [PASSED] pf_negotiate_base_next
[15:52:48] [SKIPPED] pf_negotiate_base_older
[15:52:48] [PASSED] pf_negotiate_base_prev
[15:52:48] [PASSED] pf_negotiate_latest_match
[15:52:48] [PASSED] pf_negotiate_latest_newer
[15:52:48] [PASSED] pf_negotiate_latest_next
[15:52:48] [SKIPPED] pf_negotiate_latest_older
[15:52:48] [SKIPPED] pf_negotiate_latest_prev
[15:52:48] =================== [PASSED] pf_service ====================
[15:52:48] ===================== lmtt (1 subtest) =====================
[15:52:48] ======================== test_ops =========================
[15:52:48] [PASSED] 2-level
[15:52:48] [PASSED] multi-level
[15:52:48] ==================== [PASSED] test_ops =====================
[15:52:48] ====================== [PASSED] lmtt =======================
[15:52:48] =================== xe_mocs (2 subtests) ===================
[15:52:48] ================ xe_live_mocs_kernel_kunit ================
[15:52:48] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:52:48] ================ xe_live_mocs_reset_kunit =================
[15:52:48] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:52:48] ==================== [SKIPPED] xe_mocs =====================
[15:52:48] ================= xe_migrate (2 subtests) ==================
[15:52:48] ================= xe_migrate_sanity_kunit =================
[15:52:48] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:52:48] ================== xe_validate_ccs_kunit ==================
[15:52:48] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:52:48] =================== [SKIPPED] xe_migrate ===================
[15:52:48] ================== xe_dma_buf (1 subtest) ==================
[15:52:48] ==================== xe_dma_buf_kunit =====================
[15:52:48] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:52:48] =================== [SKIPPED] xe_dma_buf ===================
[15:52:48] ==================== xe_bo (3 subtests) ====================
[15:52:48] ================== xe_ccs_migrate_kunit ===================
[15:52:48] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:52:48] ==================== xe_bo_evict_kunit ====================
[15:52:48] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:52:48] =================== xe_bo_shrink_kunit ====================
[15:52:48] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:52:48] ===================== [SKIPPED] xe_bo ======================
[15:52:48] ==================== args (11 subtests) ====================
[15:52:48] [PASSED] count_args_test
[15:52:48] [PASSED] call_args_example
[15:52:48] [PASSED] call_args_test
[15:52:48] [PASSED] drop_first_arg_example
[15:52:48] [PASSED] drop_first_arg_test
[15:52:48] [PASSED] first_arg_example
[15:52:48] [PASSED] first_arg_test
[15:52:48] [PASSED] last_arg_example
[15:52:48] [PASSED] last_arg_test
[15:52:48] [PASSED] pick_arg_example
[15:52:48] [PASSED] sep_comma_examplestty: 'standard input': Inappropriate ioctl for device
[15:52:48] ====================== [PASSED] args =======================
[15:52:48] =================== xe_pci (2 subtests) ====================
[15:52:48] [PASSED] xe_gmdid_graphics_ip
[15:52:48] [PASSED] xe_gmdid_media_ip
[15:52:48] ===================== [PASSED] xe_pci ======================
[15:52:48] =================== xe_rtp (2 subtests) ====================
[15:52:48] =============== xe_rtp_process_to_sr_tests ================
[15:52:48] [PASSED] coalesce-same-reg
[15:52:48] [PASSED] no-match-no-add
[15:52:48] [PASSED] match-or
[15:52:48] [PASSED] match-or-xfail
[15:52:48] [PASSED] no-match-no-add-multiple-rules
[15:52:48] [PASSED] two-regs-two-entries
[15:52:48] [PASSED] clr-one-set-other
[15:52:48] [PASSED] set-field
[15:52:48] [PASSED] conflict-duplicate
[15:52:48] [PASSED] conflict-not-disjoint
[15:52:48] [PASSED] conflict-reg-type
[15:52:48] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:52:48] ================== xe_rtp_process_tests ===================
[15:52:48] [PASSED] active1
[15:52:48] [PASSED] active2
[15:52:48] [PASSED] active-inactive
[15:52:48] [PASSED] inactive-active
[15:52:48] [PASSED] inactive-1st_or_active-inactive
[15:52:48] [PASSED] inactive-2nd_or_active-inactive
[15:52:48] [PASSED] inactive-last_or_active-inactive
[15:52:48] [PASSED] inactive-no_or_active-inactive
[15:52:48] ============== [PASSED] xe_rtp_process_tests ===============
[15:52:48] ===================== [PASSED] xe_rtp ======================
[15:52:48] ==================== xe_wa (1 subtest) =====================
[15:52:48] ======================== xe_wa_gt =========================
[15:52:48] [PASSED] TIGERLAKE (B0)
[15:52:48] [PASSED] DG1 (A0)
[15:52:48] [PASSED] DG1 (B0)
[15:52:48] [PASSED] ALDERLAKE_S (A0)
[15:52:48] [PASSED] ALDERLAKE_S (B0)
[15:52:48] [PASSED] ALDERLAKE_S (C0)
[15:52:48] [PASSED] ALDERLAKE_S (D0)
[15:52:48] [PASSED] ALDERLAKE_P (A0)
[15:52:48] [PASSED] ALDERLAKE_P (B0)
[15:52:48] [PASSED] ALDERLAKE_P (C0)
[15:52:48] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:52:48] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:52:48] [PASSED] DG2_G10 (C0)
[15:52:48] [PASSED] DG2_G11 (B1)
[15:52:48] [PASSED] DG2_G12 (A1)
[15:52:48] [PASSED] METEORLAKE (g:A0, m:A0)
[15:52:48] [PASSED] METEORLAKE (g:A0, m:A0)
[15:52:48] [PASSED] METEORLAKE (g:A0, m:A0)
[15:52:48] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:52:48] [PASSED] LUNARLAKE (g:B0, m:A0)
[15:52:48] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:52:48] ==================== [PASSED] xe_wa_gt =====================
[15:52:48] ====================== [PASSED] xe_wa ======================
[15:52:48] ============================================================
[15:52:48] Testing complete. Ran 122 tests: passed: 106, skipped: 16
[15:52:48] Elapsed time: 32.737s total, 4.355s configuring, 28.115s building, 0.215s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:52:48] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:52:50] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[15:53:13] Starting KUnit Kernel (1/1)...
[15:53:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:53:13] ================== drm_buddy (7 subtests) ==================
[15:53:13] [PASSED] drm_test_buddy_alloc_limit
[15:53:13] [PASSED] drm_test_buddy_alloc_optimistic
[15:53:13] [PASSED] drm_test_buddy_alloc_pessimistic
[15:53:13] [PASSED] drm_test_buddy_alloc_pathological
[15:53:13] [PASSED] drm_test_buddy_alloc_contiguous
[15:53:13] [PASSED] drm_test_buddy_alloc_clear
[15:53:13] [PASSED] drm_test_buddy_alloc_range_bias
[15:53:13] ==================== [PASSED] drm_buddy ====================
[15:53:13] ============= drm_cmdline_parser (40 subtests) =============
[15:53:13] [PASSED] drm_test_cmdline_force_d_only
[15:53:13] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:53:13] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:53:13] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:53:13] [PASSED] drm_test_cmdline_force_e_only
[15:53:13] [PASSED] drm_test_cmdline_res
[15:53:13] [PASSED] drm_test_cmdline_res_vesa
[15:53:13] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:53:13] [PASSED] drm_test_cmdline_res_rblank
[15:53:13] [PASSED] drm_test_cmdline_res_bpp
[15:53:13] [PASSED] drm_test_cmdline_res_refresh
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:53:13] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:53:13] [PASSED] drm_test_cmdline_res_margins_force_on
[15:53:13] [PASSED] drm_test_cmdline_res_vesa_margins
[15:53:13] [PASSED] drm_test_cmdline_name
[15:53:13] [PASSED] drm_test_cmdline_name_bpp
[15:53:13] [PASSED] drm_test_cmdline_name_option
[15:53:13] [PASSED] drm_test_cmdline_name_bpp_option
[15:53:13] [PASSED] drm_test_cmdline_rotate_0
[15:53:13] [PASSED] drm_test_cmdline_rotate_90
[15:53:13] [PASSED] drm_test_cmdline_rotate_180
[15:53:13] [PASSED] drm_test_cmdline_rotate_270
[15:53:13] [PASSED] drm_test_cmdline_hmirror
[15:53:13] [PASSED] drm_test_cmdline_vmirror
[15:53:13] [PASSED] drm_test_cmdline_margin_options
[15:53:13] [PASSED] drm_test_cmdline_multiple_options
[15:53:13] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:53:13] [PASSED] drm_test_cmdline_extra_and_option
[15:53:13] [PASSED] drm_test_cmdline_freestanding_options
[15:53:13] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:53:13] [PASSED] drm_test_cmdline_panel_orientation
[15:53:13] ================ drm_test_cmdline_invalid =================
[15:53:13] [PASSED] margin_only
[15:53:13] [PASSED] interlace_only
[15:53:13] [PASSED] res_missing_x
[15:53:13] [PASSED] res_missing_y
[15:53:13] [PASSED] res_bad_y
[15:53:13] [PASSED] res_missing_y_bpp
[15:53:13] [PASSED] res_bad_bpp
[15:53:13] [PASSED] res_bad_refresh
[15:53:13] [PASSED] res_bpp_refresh_force_on_off
[15:53:13] [PASSED] res_invalid_mode
[15:53:13] [PASSED] res_bpp_wrong_place_mode
[15:53:13] [PASSED] name_bpp_refresh
[15:53:13] [PASSED] name_refresh
[15:53:13] [PASSED] name_refresh_wrong_mode
[15:53:13] [PASSED] name_refresh_invalid_mode
[15:53:13] [PASSED] rotate_multiple
[15:53:13] [PASSED] rotate_invalid_val
[15:53:13] [PASSED] rotate_truncated
[15:53:13] [PASSED] invalid_option
[15:53:13] [PASSED] invalid_tv_option
[15:53:13] [PASSED] truncated_tv_option
[15:53:13] ============ [PASSED] drm_test_cmdline_invalid =============
[15:53:13] =============== drm_test_cmdline_tv_options ===============
[15:53:13] [PASSED] NTSC
[15:53:13] [PASSED] NTSC_443
[15:53:13] [PASSED] NTSC_J
[15:53:13] [PASSED] PAL
[15:53:13] [PASSED] PAL_M
[15:53:13] [PASSED] PAL_N
[15:53:13] [PASSED] SECAM
[15:53:13] [PASSED] MONO_525
[15:53:13] [PASSED] MONO_625
[15:53:13] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:53:13] =============== [PASSED] drm_cmdline_parser ================
[15:53:13] ========== drmm_connector_hdmi_init (19 subtests) ==========
[15:53:13] [PASSED] drm_test_connector_hdmi_init_valid
[15:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:53:13] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:53:13] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:53:13] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:53:13] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:53:13] [PASSED] drm_test_connector_hdmi_init_null_product
[15:53:13] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:53:13] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:53:13] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:53:13] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:53:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:53:13] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:53:13] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:53:13] ========= drm_test_connector_hdmi_init_type_valid =========
[15:53:13] [PASSED] HDMI-A
[15:53:13] [PASSED] HDMI-B
[15:53:13] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:53:13] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:53:13] [PASSED] Unknown
[15:53:13] [PASSED] VGA
[15:53:13] [PASSED] DVI-I
[15:53:13] [PASSED] DVI-D
[15:53:13] [PASSED] DVI-A
[15:53:13] [PASSED] Composite
[15:53:13] [PASSED] SVIDEO
[15:53:13] [PASSED] LVDS
[15:53:13] [PASSED] Component
[15:53:13] [PASSED] DIN
[15:53:13] [PASSED] DP
[15:53:13] [PASSED] TV
[15:53:13] [PASSED] eDP
[15:53:13] [PASSED] Virtual
[15:53:13] [PASSED] DSI
[15:53:13] [PASSED] DPI
[15:53:13] [PASSED] Writeback
[15:53:13] [PASSED] SPI
[15:53:13] [PASSED] USB
[15:53:13] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:53:13] ============ [PASSED] drmm_connector_hdmi_init =============
[15:53:13] ============= drmm_connector_init (3 subtests) =============
[15:53:13] [PASSED] drm_test_drmm_connector_init
[15:53:13] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:53:13] ========= drm_test_drmm_connector_init_type_valid =========
[15:53:13] [PASSED] Unknown
[15:53:13] [PASSED] VGA
[15:53:13] [PASSED] DVI-I
[15:53:13] [PASSED] DVI-D
[15:53:13] [PASSED] DVI-A
[15:53:13] [PASSED] Composite
[15:53:13] [PASSED] SVIDEO
[15:53:13] [PASSED] LVDS
[15:53:13] [PASSED] Component
[15:53:13] [PASSED] DIN
[15:53:13] [PASSED] DP
[15:53:13] [PASSED] HDMI-A
[15:53:13] [PASSED] HDMI-B
[15:53:13] [PASSED] TV
[15:53:13] [PASSED] eDP
[15:53:13] [PASSED] Virtual
[15:53:13] [PASSED] DSI
[15:53:13] [PASSED] DPI
[15:53:13] [PASSED] Writeback
[15:53:13] [PASSED] SPI
[15:53:13] [PASSED] USB
[15:53:13] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:53:13] =============== [PASSED] drmm_connector_init ===============
[15:53:13] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:53:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:53:13] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:53:13] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:53:13] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:53:13] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:53:13] [PASSED] NTSC
[15:53:13] [PASSED] NTSC-443
[15:53:13] [PASSED] NTSC-J
[15:53:13] [PASSED] PAL
[15:53:13] [PASSED] PAL-M
[15:53:13] [PASSED] PAL-N
[15:53:13] [PASSED] SECAM
[15:53:13] [PASSED] Mono
[15:53:13] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:53:13] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:53:13] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:53:13] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:53:13] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:53:13] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:53:13] [PASSED] VIC 96
[15:53:13] [PASSED] VIC 97
[15:53:13] [PASSED] VIC 101
[15:53:13] [PASSED] VIC 102
[15:53:13] [PASSED] VIC 106
[15:53:13] [PASSED] VIC 107
[15:53:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:53:13] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:53:13] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:53:13] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:53:13] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:53:13] [PASSED] Automatic
[15:53:13] [PASSED] Full
[15:53:13] [PASSED] Limited 16:235
[15:53:13] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:53:13] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:53:13] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:53:13] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:53:13] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:53:13] [PASSED] RGB
[15:53:13] [PASSED] YUV 4:2:0
[15:53:13] [PASSED] YUV 4:2:2
[15:53:13] [PASSED] YUV 4:4:4
[15:53:13] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:53:13] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:53:13] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:53:13] ============= drm_damage_helper (21 subtests) ==============
[15:53:13] [PASSED] drm_test_damage_iter_no_damage
[15:53:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:53:13] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:53:13] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:53:13] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:53:13] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:53:13] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:53:13] [PASSED] drm_test_damage_iter_simple_damage
[15:53:13] [PASSED] drm_test_damage_iter_single_damage
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:53:13] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:53:13] [PASSED] drm_test_damage_iter_damage
[15:53:13] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:53:13] [PASSED] drm_test_damage_iter_damage_one_outside
[15:53:13] [PASSED] drm_test_damage_iter_damage_src_moved
[15:53:13] [PASSED] drm_test_damage_iter_damage_not_visible
[15:53:13] ================ [PASSED] drm_damage_helper ================
[15:53:13] ============== drm_dp_mst_helper (3 subtests) ==============
[15:53:13] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:53:13] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:53:13] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:53:13] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:53:13] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:53:13] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:53:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:53:13] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:53:13] [PASSED] Link rate 2000000 lane count 4
[15:53:13] [PASSED] Link rate 2000000 lane count 2
[15:53:13] [PASSED] Link rate 2000000 lane count 1
[15:53:13] [PASSED] Link rate 1350000 lane count 4
[15:53:13] [PASSED] Link rate 1350000 lane count 2
[15:53:13] [PASSED] Link rate 1350000 lane count 1
[15:53:13] [PASSED] Link rate 1000000 lane count 4
[15:53:13] [PASSED] Link rate 1000000 lane count 2
[15:53:13] [PASSED] Link rate 1000000 lane count 1
[15:53:13] [PASSED] Link rate 810000 lane count 4
[15:53:13] [PASSED] Link rate 810000 lane count 2
[15:53:13] [PASSED] Link rate 810000 lane count 1
[15:53:13] [PASSED] Link rate 540000 lane count 4
[15:53:13] [PASSED] Link rate 540000 lane count 2
[15:53:13] [PASSED] Link rate 540000 lane count 1
[15:53:13] [PASSED] Link rate 270000 lane count 4
[15:53:13] [PASSED] Link rate 270000 lane count 2
[15:53:13] [PASSED] Link rate 270000 lane count 1
[15:53:13] [PASSED] Link rate 162000 lane count 4
[15:53:13] [PASSED] Link rate 162000 lane count 2
[15:53:13] [PASSED] Link rate 162000 lane count 1
[15:53:13] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:53:13] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:53:13] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:53:13] [PASSED] DP_POWER_UP_PHY with port number
[15:53:13] [PASSED] DP_POWER_DOWN_PHY with port number
[15:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:53:13] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:53:13] [PASSED] DP_QUERY_PAYLOAD with port number
[15:53:13] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:53:13] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:53:13] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:53:13] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:53:13] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:53:13] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:53:13] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:53:13] [PASSED] DP_REMOTE_I2C_READ with port number
[15:53:13] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:53:13] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:53:13] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:53:13] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:53:13] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:53:13] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:53:13] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:53:13] ================ [PASSED] drm_dp_mst_helper ================
[15:53:13] ================== drm_exec (7 subtests) ===================
[15:53:13] [PASSED] sanitycheck
[15:53:13] [PASSED] test_lock
[15:53:13] [PASSED] test_lock_unlock
[15:53:13] [PASSED] test_duplicates
[15:53:13] [PASSED] test_prepare
[15:53:13] [PASSED] test_prepare_array
[15:53:13] [PASSED] test_multiple_loops
[15:53:13] ==================== [PASSED] drm_exec =====================
[15:53:13] =========== drm_format_helper_test (17 subtests) ===========
[15:53:13] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:53:13] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:53:13] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:53:13] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:53:13] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:53:13] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:53:13] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:53:13] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:53:13] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:53:13] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:53:13] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:53:13] ==================== drm_test_fb_swab =====================
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ================ [PASSED] drm_test_fb_swab =================
[15:53:13] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:53:13] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:53:13] [PASSED] single_pixel_source_buffer
[15:53:13] [PASSED] single_pixel_clip_rectangle
[15:53:13] [PASSED] well_known_colors
[15:53:13] [PASSED] destination_pitch
[15:53:13] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:53:13] ================= drm_test_fb_clip_offset =================
[15:53:13] [PASSED] pass through
[15:53:13] [PASSED] horizontal offset
[15:53:13] [PASSED] vertical offset
[15:53:13] [PASSED] horizontal and vertical offset
[15:53:13] [PASSED] horizontal offset (custom pitch)
[15:53:13] [PASSED] vertical offset (custom pitch)
[15:53:13] [PASSED] horizontal and vertical offset (custom pitch)
[15:53:13] ============= [PASSED] drm_test_fb_clip_offset =============
[15:53:13] ============== drm_test_fb_build_fourcc_list ==============
[15:53:13] [PASSED] no native formats
[15:53:13] [PASSED] XRGB8888 as native format
[15:53:13] [PASSED] remove duplicates
[15:53:13] [PASSED] convert alpha formats
[15:53:13] [PASSED] random formats
[15:53:13] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[15:53:13] =================== drm_test_fb_memcpy ====================
[15:53:13] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:53:13] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:53:13] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:53:13] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:53:13] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:53:13] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:53:13] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:53:13] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:53:13] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:53:13] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:53:13] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:53:13] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:53:13] =============== [PASSED] drm_test_fb_memcpy ================
[15:53:13] ============= [PASSED] drm_format_helper_test ==============
[15:53:13] ================= drm_format (18 subtests) =================
[15:53:13] [PASSED] drm_test_format_block_width_invalid
[15:53:13] [PASSED] drm_test_format_block_width_one_plane
[15:53:13] [PASSED] drm_test_format_block_width_two_plane
[15:53:13] [PASSED] drm_test_format_block_width_three_plane
[15:53:13] [PASSED] drm_test_format_block_width_tiled
[15:53:13] [PASSED] drm_test_format_block_height_invalid
[15:53:13] [PASSED] drm_test_format_block_height_one_plane
[15:53:13] [PASSED] drm_test_format_block_height_two_plane
[15:53:13] [PASSED] drm_test_format_block_height_three_plane
[15:53:13] [PASSED] drm_test_format_block_height_tiled
[15:53:13] [PASSED] drm_test_format_min_pitch_invalid
[15:53:13] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:53:13] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:53:13] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:53:13] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:53:13] [PASSED] drm_test_format_min_pitch_two_plane
[15:53:13] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:53:13] [PASSED] drm_test_format_min_pitch_tiled
[15:53:13] =================== [PASSED] drm_format ====================
[15:53:13] ============== drm_framebuffer (10 subtests) ===============
[15:53:13] ========== drm_test_framebuffer_check_src_coords ==========
[15:53:13] [PASSED] Success: source fits into fb
[15:53:13] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:53:13] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:53:13] [PASSED] Fail: overflowing fb with source width
[15:53:13] [PASSED] Fail: overflowing fb with source height
[15:53:13] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:53:13] [PASSED] drm_test_framebuffer_cleanup
[15:53:13] =============== drm_test_framebuffer_create ===============
[15:53:13] [PASSED] ABGR8888 normal sizes
[15:53:13] [PASSED] ABGR8888 max sizes
[15:53:13] [PASSED] ABGR8888 pitch greater than min required
[15:53:13] [PASSED] ABGR8888 pitch less than min required
[15:53:13] [PASSED] ABGR8888 Invalid width
[15:53:13] [PASSED] ABGR8888 Invalid buffer handle
[15:53:13] [PASSED] No pixel format
[15:53:13] [PASSED] ABGR8888 Width 0
[15:53:13] [PASSED] ABGR8888 Height 0
[15:53:13] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:53:13] [PASSED] ABGR8888 Large buffer offset
[15:53:13] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:53:13] [PASSED] ABGR8888 Invalid flag
[15:53:13] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:53:13] [PASSED] ABGR8888 Valid buffer modifier
[15:53:13] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:53:13] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] NV12 Normal sizes
[15:53:13] [PASSED] NV12 Max sizes
[15:53:13] [PASSED] NV12 Invalid pitch
[15:53:13] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:53:13] [PASSED] NV12 different modifier per-plane
[15:53:13] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:53:13] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] NV12 Modifier for inexistent plane
[15:53:13] [PASSED] NV12 Handle for inexistent plane
[15:53:13] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:53:13] [PASSED] YVU420 Normal sizes
[15:53:13] [PASSED] YVU420 Max sizes
[15:53:13] [PASSED] YVU420 Invalid pitch
[15:53:13] [PASSED] YVU420 Different pitches
[15:53:13] [PASSED] YVU420 Different buffer offsets/pitches
[15:53:13] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:53:13] [PASSED] YVU420 Valid modifier
[15:53:13] [PASSED] YVU420 Different modifiers per plane
[15:53:13] [PASSED] YVU420 Modifier for inexistent plane
[15:53:13] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:53:13] [PASSED] X0L2 Normal sizes
[15:53:13] [PASSED] X0L2 Max sizes
[15:53:13] [PASSED] X0L2 Invalid pitch
[15:53:13] [PASSED] X0L2 Pitch greater than minimum required
[15:53:13] [PASSED] X0L2 Handle for inexistent plane
[15:53:13] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:53:13] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:53:13] [PASSED] X0L2 Valid modifier
[15:53:13] [PASSED] X0L2 Modifier for inexistent plane
[15:53:13] =========== [PASSED] drm_test_framebuffer_create ===========
[15:53:13] [PASSED] drm_test_framebuffer_free
[15:53:13] [PASSED] drm_test_framebuffer_init
[15:53:13] [PASSED] drm_test_framebuffer_init_bad_format
[15:53:13] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:53:13] [PASSED] drm_test_framebuffer_lookup
[15:53:13] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:53:13] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:53:13] ================= [PASSED] drm_framebuffer =================
[15:53:13] ================ drm_gem_shmem (8 subtests) ================
[15:53:13] [PASSED] drm_gem_shmem_test_obj_create
[15:53:13] [PASSED] drm_gem_shmem_test_obj_create_private
[15:53:13] [PASSED] drm_gem_shmem_test_pin_pages
[15:53:13] [PASSED] drm_gem_shmem_test_vmap
[15:53:13] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:53:13] [PASSED] drm_gem_shmem_test_get_sg_table
[15:53:13] [PASSED] drm_gem_shmem_test_madvise
[15:53:13] [PASSED] drm_gem_shmem_test_purge
[15:53:13] ================== [PASSED] drm_gem_shmem ==================
[15:53:13] === drm_atomic_helper_connector_hdmi_check (22 subtests) ===
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:53:13] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:53:13] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[15:53:13] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[15:53:13] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:53:13] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:53:13] [PASSED] drm_test_check_output_bpc_dvi
[15:53:13] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:53:13] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:53:13] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:53:13] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:53:13] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:53:13] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:53:13] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:53:13] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:53:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:53:13] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:53:13] [PASSED] drm_test_check_broadcast_rgb_value
[15:53:13] [PASSED] drm_test_check_bpc_8_value
[15:53:13] [PASSED] drm_test_check_bpc_10_value
[15:53:13] [PASSED] drm_test_check_bpc_12_value
[15:53:13] [PASSED] drm_test_check_format_value
[15:53:13] [PASSED] drm_test_check_tmds_char_value
[15:53:13] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:53:13] ================= drm_managed (2 subtests) =================
[15:53:13] [PASSED] drm_test_managed_release_action
[15:53:13] [PASSED] drm_test_managed_run_action
[15:53:13] =================== [PASSED] drm_managed ===================
[15:53:13] =================== drm_mm (6 subtests) ====================
[15:53:13] [PASSED] drm_test_mm_init
[15:53:13] [PASSED] drm_test_mm_debug
[15:53:13] [PASSED] drm_test_mm_align32
[15:53:13] [PASSED] drm_test_mm_align64
[15:53:13] [PASSED] drm_test_mm_lowest
[15:53:13] [PASSED] drm_test_mm_highest
[15:53:13] ===================== [PASSED] drm_mm ======================
[15:53:13] ============= drm_modes_analog_tv (5 subtests) =============
[15:53:13] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:53:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:53:13] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:53:13] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:53:13] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:53:13] =============== [PASSED] drm_modes_analog_tv ===============
stty: 'standard input': Inappropriate ioctl for device
[15:53:13] ============== drm_plane_helper (2 subtests) ===============
[15:53:13] =============== drm_test_check_plane_state ================
[15:53:13] [PASSED] clipping_simple
[15:53:13] [PASSED] clipping_rotate_reflect
[15:53:13] [PASSED] positioning_simple
[15:53:13] [PASSED] upscaling
[15:53:13] [PASSED] downscaling
[15:53:13] [PASSED] rounding1
[15:53:13] [PASSED] rounding2
[15:53:13] [PASSED] rounding3
[15:53:13] [PASSED] rounding4
[15:53:13] =========== [PASSED] drm_test_check_plane_state ============
[15:53:13] =========== drm_test_check_invalid_plane_state ============
[15:53:13] [PASSED] positioning_invalid
[15:53:13] [PASSED] upscaling_invalid
[15:53:13] [PASSED] downscaling_invalid
[15:53:13] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:53:13] ================ [PASSED] drm_plane_helper =================
[15:53:13] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:53:13] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:53:13] [PASSED] None
[15:53:13] [PASSED] PAL
[15:53:13] [PASSED] NTSC
[15:53:13] [PASSED] Both, NTSC Default
[15:53:13] [PASSED] Both, PAL Default
[15:53:13] [PASSED] Both, NTSC Default, with PAL on command-line
[15:53:13] [PASSED] Both, PAL Default, with NTSC on command-line
[15:53:13] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:53:13] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:53:13] ================== drm_rect (9 subtests) ===================
[15:53:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:53:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:53:13] [PASSED] drm_test_rect_clip_scaled_clipped
[15:53:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:53:13] ================= drm_test_rect_intersect =================
[15:53:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:53:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:53:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:53:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:53:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:53:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:53:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:53:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:53:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:53:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:53:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:53:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:53:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:53:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:53:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:53:13] ============= [PASSED] drm_test_rect_intersect =============
[15:53:13] ================ drm_test_rect_calc_hscale ================
[15:53:13] [PASSED] normal use
[15:53:13] [PASSED] out of max range
[15:53:13] [PASSED] out of min range
[15:53:13] [PASSED] zero dst
[15:53:13] [PASSED] negative src
[15:53:13] [PASSED] negative dst
[15:53:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:53:13] ================ drm_test_rect_calc_vscale ================
[15:53:13] [PASSED] normal use
[15:53:13] [PASSED] out of max range
[15:53:13] [PASSED] out of min range
[15:53:13] [PASSED] zero dst
[15:53:13] [PASSED] negative src
[15:53:13] [PASSED] negative dst
[15:53:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:53:13] ================== drm_test_rect_rotate ===================
[15:53:13] [PASSED] reflect-x
[15:53:13] [PASSED] reflect-y
[15:53:13] [PASSED] rotate-0
[15:53:13] [PASSED] rotate-90
[15:53:13] [PASSED] rotate-180
[15:53:13] [PASSED] rotate-270
[15:53:13] ============== [PASSED] drm_test_rect_rotate ===============
[15:53:13] ================ drm_test_rect_rotate_inv =================
[15:53:13] [PASSED] reflect-x
[15:53:13] [PASSED] reflect-y
[15:53:13] [PASSED] rotate-0
[15:53:13] [PASSED] rotate-90
[15:53:13] [PASSED] rotate-180
[15:53:13] [PASSED] rotate-270
[15:53:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:53:13] ==================== [PASSED] drm_rect =====================
[15:53:13] ============================================================
[15:53:13] Testing complete. Ran 526 tests: passed: 526
[15:53:13] Elapsed time: 24.647s total, 1.622s configuring, 22.855s building, 0.129s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:53:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:53:15] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json ARCH=um O=.kunit --jobs=48
[15:53:22] Starting KUnit Kernel (1/1)...
[15:53:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:53:22] ================= ttm_device (5 subtests) ==================
[15:53:22] [PASSED] ttm_device_init_basic
[15:53:22] [PASSED] ttm_device_init_multiple
[15:53:22] [PASSED] ttm_device_fini_basic
[15:53:22] [PASSED] ttm_device_init_no_vma_man
[15:53:22] ================== ttm_device_init_pools ==================
[15:53:22] [PASSED] No DMA allocations, no DMA32 required
[15:53:22] [PASSED] DMA allocations, DMA32 required
[15:53:22] [PASSED] No DMA allocations, DMA32 required
[15:53:22] [PASSED] DMA allocations, no DMA32 required
[15:53:22] ============== [PASSED] ttm_device_init_pools ==============
[15:53:22] =================== [PASSED] ttm_device ====================
[15:53:22] ================== ttm_pool (8 subtests) ===================
[15:53:22] ================== ttm_pool_alloc_basic ===================
[15:53:22] [PASSED] One page
[15:53:22] [PASSED] More than one page
[15:53:22] [PASSED] Above the allocation limit
[15:53:22] [PASSED] One page, with coherent DMA mappings enabled
[15:53:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:53:22] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:53:22] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:53:22] [PASSED] One page
[15:53:22] [PASSED] More than one page
[15:53:22] [PASSED] Above the allocation limit
[15:53:22] [PASSED] One page, with coherent DMA mappings enabled
[15:53:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:53:22] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:53:22] [PASSED] ttm_pool_alloc_order_caching_match
[15:53:22] [PASSED] ttm_pool_alloc_caching_mismatch
[15:53:22] [PASSED] ttm_pool_alloc_order_mismatch
[15:53:22] [PASSED] ttm_pool_free_dma_alloc
[15:53:22] [PASSED] ttm_pool_free_no_dma_alloc
[15:53:22] [PASSED] ttm_pool_fini_basic
[15:53:22] ==================== [PASSED] ttm_pool =====================
[15:53:22] ================ ttm_resource (8 subtests) =================
[15:53:22] ================= ttm_resource_init_basic =================
[15:53:22] [PASSED] Init resource in TTM_PL_SYSTEM
[15:53:22] [PASSED] Init resource in TTM_PL_VRAM
[15:53:22] [PASSED] Init resource in a private placement
[15:53:22] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:53:22] ============= [PASSED] ttm_resource_init_basic =============
[15:53:22] [PASSED] ttm_resource_init_pinned
[15:53:22] [PASSED] ttm_resource_fini_basic
[15:53:22] [PASSED] ttm_resource_manager_init_basic
[15:53:22] [PASSED] ttm_resource_manager_usage_basic
[15:53:22] [PASSED] ttm_resource_manager_set_used_basic
[15:53:22] [PASSED] ttm_sys_man_alloc_basic
[15:53:22] [PASSED] ttm_sys_man_free_basic
[15:53:22] ================== [PASSED] ttm_resource ===================
[15:53:22] =================== ttm_tt (15 subtests) ===================
[15:53:22] ==================== ttm_tt_init_basic ====================
[15:53:22] [PASSED] Page-aligned size
[15:53:22] [PASSED] Extra pages requested
[15:53:22] ================ [PASSED] ttm_tt_init_basic ================
[15:53:22] [PASSED] ttm_tt_init_misaligned
[15:53:22] [PASSED] ttm_tt_fini_basic
[15:53:22] [PASSED] ttm_tt_fini_sg
[15:53:22] [PASSED] ttm_tt_fini_shmem
[15:53:22] [PASSED] ttm_tt_create_basic
[15:53:22] [PASSED] ttm_tt_create_invalid_bo_type
[15:53:22] [PASSED] ttm_tt_create_ttm_exists
[15:53:22] [PASSED] ttm_tt_create_failed
[15:53:22] [PASSED] ttm_tt_destroy_basic
[15:53:22] [PASSED] ttm_tt_populate_null_ttm
[15:53:22] [PASSED] ttm_tt_populate_populated_ttm
[15:53:22] [PASSED] ttm_tt_unpopulate_basic
[15:53:22] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:53:22] [PASSED] ttm_tt_swapin_basic
[15:53:22] ===================== [PASSED] ttm_tt ======================
[15:53:22] =================== ttm_bo (14 subtests) ===================
[15:53:22] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:53:22] [PASSED] Cannot be interrupted and sleeps
[15:53:22] [PASSED] Cannot be interrupted, locks straight away
[15:53:22] [PASSED] Can be interrupted, sleeps
[15:53:22] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:53:22] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:53:22] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:53:22] [PASSED] ttm_bo_reserve_double_resv
[15:53:22] [PASSED] ttm_bo_reserve_interrupted
[15:53:22] [PASSED] ttm_bo_reserve_deadlock
[15:53:22] [PASSED] ttm_bo_unreserve_basic
[15:53:22] [PASSED] ttm_bo_unreserve_pinned
[15:53:22] [PASSED] ttm_bo_unreserve_bulk
[15:53:22] [PASSED] ttm_bo_put_basic
[15:53:22] [PASSED] ttm_bo_put_shared_resv
[15:53:22] [PASSED] ttm_bo_pin_basic
[15:53:22] [PASSED] ttm_bo_pin_unpin_resource
[15:53:22] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:53:22] ===================== [PASSED] ttm_bo ======================
[15:53:22] ============== ttm_bo_validate (22 subtests) ===============
[15:53:22] ============== ttm_bo_init_reserved_sys_man ===============
[15:53:22] [PASSED] Buffer object for userspace
[15:53:22] [PASSED] Kernel buffer object
[15:53:22] [PASSED] Shared buffer object
[15:53:22] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:53:22] ============== ttm_bo_init_reserved_mock_man ==============
[15:53:22] [PASSED] Buffer object for userspace
[15:53:22] [PASSED] Kernel buffer object
[15:53:22] [PASSED] Shared buffer object
[15:53:22] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:53:22] [PASSED] ttm_bo_init_reserved_resv
[15:53:22] ================== ttm_bo_validate_basic ==================
[15:53:22] [PASSED] Buffer object for userspace
[15:53:22] [PASSED] Kernel buffer object
[15:53:22] [PASSED] Shared buffer object
[15:53:22] ============== [PASSED] ttm_bo_validate_basic ==============
[15:53:22] [PASSED] ttm_bo_validate_invalid_placement
[15:53:22] ============= ttm_bo_validate_same_placement ==============
[15:53:22] [PASSED] System manager
[15:53:22] [PASSED] VRAM manager
[15:53:22] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:53:22] [PASSED] ttm_bo_validate_failed_alloc
[15:53:22] [PASSED] ttm_bo_validate_pinned
[15:53:22] [PASSED] ttm_bo_validate_busy_placement
[15:53:22] ================ ttm_bo_validate_multihop =================
[15:53:22] [PASSED] Buffer object for userspace
[15:53:22] [PASSED] Kernel buffer object
[15:53:22] [PASSED] Shared buffer object
[15:53:22] ============ [PASSED] ttm_bo_validate_multihop =============
[15:53:22] ========== ttm_bo_validate_no_placement_signaled ==========
[15:53:22] [PASSED] Buffer object in system domain, no page vector
[15:53:22] [PASSED] Buffer object in system domain with an existing page vector
[15:53:22] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:53:22] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:53:22] [PASSED] Buffer object for userspace
[15:53:22] [PASSED] Kernel buffer object
[15:53:22] [PASSED] Shared buffer object
[15:53:22] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:53:22] [PASSED] ttm_bo_validate_move_fence_signaled
[15:53:22] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:53:22] [PASSED] Waits for GPU
[15:53:22] [PASSED] Tries to lock straight away
[15:53:23] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:53:23] [PASSED] ttm_bo_validate_swapout
[15:53:23] [PASSED] ttm_bo_validate_happy_evict
[15:53:23] [PASSED] ttm_bo_validate_all_pinned_evict
[15:53:23] [PASSED] ttm_bo_validate_allowed_only_evict
[15:53:23] [PASSED] ttm_bo_validate_deleted_evict
[15:53:23] [PASSED] ttm_bo_validate_busy_domain_evict
[15:53:23] [PASSED] ttm_bo_validate_evict_gutting
[15:53:23] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:53:23] ================= [PASSED] ttm_bo_validate =================
[15:53:23] ============================================================
[15:53:23] Testing complete. Ran 102 tests: passed: 102
[15:53:23] Elapsed time: 9.958s total, 1.610s configuring, 7.681s building, 0.570s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 34+ messages in thread* ✓ CI.Build: success for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (6 preceding siblings ...)
2024-11-28 15:53 ` ✓ CI.KUnit: success " Patchwork
@ 2024-11-28 16:11 ` Patchwork
2024-11-28 16:13 ` ✓ CI.Hooks: " Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 16:11 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : success
== Summary ==
lib/modules/6.12.0-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.12.0-xe/kernel/arch/x86/kvm/kvm-amd.ko
lib/modules/6.12.0-xe/kernel/kernel/
lib/modules/6.12.0-xe/kernel/kernel/kheaders.ko
lib/modules/6.12.0-xe/kernel/crypto/
lib/modules/6.12.0-xe/kernel/crypto/ecrdsa_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/xcbc.ko
lib/modules/6.12.0-xe/kernel/crypto/serpent_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/aria_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.12.0-xe/kernel/crypto/adiantum.ko
lib/modules/6.12.0-xe/kernel/crypto/tcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_engine.ko
lib/modules/6.12.0-xe/kernel/crypto/zstd.ko
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/pkcs7_test_key.ko
lib/modules/6.12.0-xe/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
lib/modules/6.12.0-xe/kernel/crypto/des_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/xctr.ko
lib/modules/6.12.0-xe/kernel/crypto/authenc.ko
lib/modules/6.12.0-xe/kernel/crypto/sm4_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/keywrap.ko
lib/modules/6.12.0-xe/kernel/crypto/camellia_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/sm3.ko
lib/modules/6.12.0-xe/kernel/crypto/pcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/aegis128.ko
lib/modules/6.12.0-xe/kernel/crypto/af_alg.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_aead.ko
lib/modules/6.12.0-xe/kernel/crypto/cmac.ko
lib/modules/6.12.0-xe/kernel/crypto/sm3_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/aes_ti.ko
lib/modules/6.12.0-xe/kernel/crypto/chacha_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/poly1305_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/nhpoly1305.ko
lib/modules/6.12.0-xe/kernel/crypto/crc32_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/essiv.ko
lib/modules/6.12.0-xe/kernel/crypto/ccm.ko
lib/modules/6.12.0-xe/kernel/crypto/wp512.ko
lib/modules/6.12.0-xe/kernel/crypto/streebog_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/authencesn.ko
lib/modules/6.12.0-xe/kernel/crypto/echainiv.ko
lib/modules/6.12.0-xe/kernel/crypto/lrw.ko
lib/modules/6.12.0-xe/kernel/crypto/cryptd.ko
lib/modules/6.12.0-xe/kernel/crypto/crypto_user.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_hash.ko
lib/modules/6.12.0-xe/kernel/crypto/vmac.ko
lib/modules/6.12.0-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.12.0-xe/kernel/crypto/hctr2.ko
lib/modules/6.12.0-xe/kernel/crypto/842.ko
lib/modules/6.12.0-xe/kernel/crypto/pcbc.ko
lib/modules/6.12.0-xe/kernel/crypto/ansi_cprng.ko
lib/modules/6.12.0-xe/kernel/crypto/cast6_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/twofish_common.ko
lib/modules/6.12.0-xe/kernel/crypto/twofish_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/lz4hc.ko
lib/modules/6.12.0-xe/kernel/crypto/blowfish_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/md4.ko
lib/modules/6.12.0-xe/kernel/crypto/chacha20poly1305.ko
lib/modules/6.12.0-xe/kernel/crypto/curve25519-generic.ko
lib/modules/6.12.0-xe/kernel/crypto/lz4.ko
lib/modules/6.12.0-xe/kernel/crypto/rmd160.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_skcipher.ko
lib/modules/6.12.0-xe/kernel/crypto/cast5_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/fcrypt.ko
lib/modules/6.12.0-xe/kernel/crypto/ecdsa_generic.ko
lib/modules/6.12.0-xe/kernel/crypto/sm4.ko
lib/modules/6.12.0-xe/kernel/crypto/cast_common.ko
lib/modules/6.12.0-xe/kernel/crypto/blowfish_common.ko
lib/modules/6.12.0-xe/kernel/crypto/michael_mic.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.12.0-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.12.0-xe/kernel/crypto/algif_rng.ko
lib/modules/6.12.0-xe/kernel/block/
lib/modules/6.12.0-xe/kernel/block/bfq.ko
lib/modules/6.12.0-xe/kernel/block/kyber-iosched.ko
lib/modules/6.12.0-xe/build
lib/modules/6.12.0-xe/modules.alias.bin
lib/modules/6.12.0-xe/modules.builtin
lib/modules/6.12.0-xe/modules.softdep
lib/modules/6.12.0-xe/modules.alias
lib/modules/6.12.0-xe/modules.order
lib/modules/6.12.0-xe/modules.symbols
lib/modules/6.12.0-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1732810266:package_x86_64_nodebug\r\e[0K'
+ sync
^[[0Ksection_end:1732810266:package_x86_64_nodebug
^[[0K
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 34+ messages in thread* ✓ CI.Hooks: success for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (7 preceding siblings ...)
2024-11-28 16:11 ` ✓ CI.Build: " Patchwork
@ 2024-11-28 16:13 ` Patchwork
2024-11-28 16:15 ` ✗ CI.checksparse: warning " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 16:13 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : success
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
GEN Makefile
UPD include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool
UPD include/generated/utsrelease.h
CALL ../scripts/checksyscalls.sh
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-default/tools/objtool/weak.o
CC /workspace/kernel/build64-default/tools/objtool/check.o
CC /workspace/kernel/build64-default/tools/objtool/special.o
CC /workspace/kernel/build64-default/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-default/tools/objtool/elf.o
CC /workspace/kernel/build64-default/tools/objtool/objtool.o
CC /workspace/kernel/build64-default/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-default/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-default/tools/objtool/libstring.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-default/tools/objtool/libctype.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
CC /workspace/kernel/build64-default/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-default/tools/objtool/librbtree.o
LD /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-default/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default W=1 drivers/gpu/drm/xe
make[1]: Entering directory '/workspace/kernel/build64-default'
make[2]: Nothing to be done for 'drivers/gpu/drm/xe'.
make[1]: Leaving directory '/workspace/kernel/build64-default'
run-parts: executing /workspace/ci/hooks/11-build-32b
+++ realpath /workspace/ci/hooks/11-build-32b
++ dirname /workspace/ci/hooks/11-build-32b
+ THIS_SCRIPT_DIR=/workspace/ci/hooks
+ SRC_DIR=/workspace/kernel
+ TOOLS_SRC_DIR=/workspace/ci
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ BUILD_DIR=/workspace/kernel/build64-default/build32
+ cd /workspace/kernel
+ mkdir -p /workspace/kernel/build64-default/build32
++ nproc
+ make -j48 ARCH=i386 O=/workspace/kernel/build64-default/build32 defconfig
make[1]: Entering directory '/workspace/kernel/build64-default/build32'
GEN Makefile
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/confdata.o
HOSTCC scripts/kconfig/expr.o
YACC scripts/kconfig/parser.tab.[ch]
LEX scripts/kconfig/lexer.lex.c
HOSTCC scripts/kconfig/menu.o
HOSTCC scripts/kconfig/preprocess.o
HOSTCC scripts/kconfig/symbol.o
HOSTCC scripts/kconfig/util.o
HOSTCC scripts/kconfig/lexer.lex.o
HOSTCC scripts/kconfig/parser.tab.o
HOSTLD scripts/kconfig/conf
*** Default configuration is based on 'i386_defconfig'
#
# configuration written to .config
#
make[1]: Leaving directory '/workspace/kernel/build64-default/build32'
+ cd /workspace/kernel/build64-default/build32
+ /workspace/kernel/scripts/kconfig/merge_config.sh .config /workspace/ci/kernel/fragments/10-xe.fragment
Using .config as base
Merging /workspace/ci/kernel/fragments/10-xe.fragment
Value of CONFIG_DRM_XE is redefined by fragment /workspace/ci/kernel/fragments/10-xe.fragment:
Previous value: # CONFIG_DRM_XE is not set
New value: CONFIG_DRM_XE=m
GEN Makefile
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m]
#
# configuration written to .config
#
Value requested for CONFIG_HAVE_UID16 not in final .config
Requested value: CONFIG_HAVE_UID16=y
Actual value:
Value requested for CONFIG_UID16 not in final .config
Requested value: CONFIG_UID16=y
Actual value:
Value requested for CONFIG_X86_32 not in final .config
Requested value: CONFIG_X86_32=y
Actual value:
Value requested for CONFIG_OUTPUT_FORMAT not in final .config
Requested value: CONFIG_OUTPUT_FORMAT="elf32-i386"
Actual value: CONFIG_OUTPUT_FORMAT="elf64-x86-64"
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MIN not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MIN=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MIN=28
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MAX not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MAX=16
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MAX=32
Value requested for CONFIG_PGTABLE_LEVELS not in final .config
Requested value: CONFIG_PGTABLE_LEVELS=2
Actual value: CONFIG_PGTABLE_LEVELS=5
Value requested for CONFIG_X86_BIGSMP not in final .config
Requested value: # CONFIG_X86_BIGSMP is not set
Actual value:
Value requested for CONFIG_X86_INTEL_QUARK not in final .config
Requested value: # CONFIG_X86_INTEL_QUARK is not set
Actual value:
Value requested for CONFIG_X86_RDC321X not in final .config
Requested value: # CONFIG_X86_RDC321X is not set
Actual value:
Value requested for CONFIG_X86_32_NON_STANDARD not in final .config
Requested value: # CONFIG_X86_32_NON_STANDARD is not set
Actual value:
Value requested for CONFIG_X86_32_IRIS not in final .config
Requested value: # CONFIG_X86_32_IRIS is not set
Actual value:
Value requested for CONFIG_M486SX not in final .config
Requested value: # CONFIG_M486SX is not set
Actual value:
Value requested for CONFIG_M486 not in final .config
Requested value: # CONFIG_M486 is not set
Actual value:
Value requested for CONFIG_M586 not in final .config
Requested value: # CONFIG_M586 is not set
Actual value:
Value requested for CONFIG_M586TSC not in final .config
Requested value: # CONFIG_M586TSC is not set
Actual value:
Value requested for CONFIG_M586MMX not in final .config
Requested value: # CONFIG_M586MMX is not set
Actual value:
Value requested for CONFIG_M686 not in final .config
Requested value: CONFIG_M686=y
Actual value:
Value requested for CONFIG_MPENTIUMII not in final .config
Requested value: # CONFIG_MPENTIUMII is not set
Actual value:
Value requested for CONFIG_MPENTIUMIII not in final .config
Requested value: # CONFIG_MPENTIUMIII is not set
Actual value:
Value requested for CONFIG_MPENTIUMM not in final .config
Requested value: # CONFIG_MPENTIUMM is not set
Actual value:
Value requested for CONFIG_MPENTIUM4 not in final .config
Requested value: # CONFIG_MPENTIUM4 is not set
Actual value:
Value requested for CONFIG_MK6 not in final .config
Requested value: # CONFIG_MK6 is not set
Actual value:
Value requested for CONFIG_MK7 not in final .config
Requested value: # CONFIG_MK7 is not set
Actual value:
Value requested for CONFIG_MCRUSOE not in final .config
Requested value: # CONFIG_MCRUSOE is not set
Actual value:
Value requested for CONFIG_MEFFICEON not in final .config
Requested value: # CONFIG_MEFFICEON is not set
Actual value:
Value requested for CONFIG_MWINCHIPC6 not in final .config
Requested value: # CONFIG_MWINCHIPC6 is not set
Actual value:
Value requested for CONFIG_MWINCHIP3D not in final .config
Requested value: # CONFIG_MWINCHIP3D is not set
Actual value:
Value requested for CONFIG_MELAN not in final .config
Requested value: # CONFIG_MELAN is not set
Actual value:
Value requested for CONFIG_MGEODEGX1 not in final .config
Requested value: # CONFIG_MGEODEGX1 is not set
Actual value:
Value requested for CONFIG_MGEODE_LX not in final .config
Requested value: # CONFIG_MGEODE_LX is not set
Actual value:
Value requested for CONFIG_MCYRIXIII not in final .config
Requested value: # CONFIG_MCYRIXIII is not set
Actual value:
Value requested for CONFIG_MVIAC3_2 not in final .config
Requested value: # CONFIG_MVIAC3_2 is not set
Actual value:
Value requested for CONFIG_MVIAC7 not in final .config
Requested value: # CONFIG_MVIAC7 is not set
Actual value:
Value requested for CONFIG_X86_GENERIC not in final .config
Requested value: # CONFIG_X86_GENERIC is not set
Actual value:
Value requested for CONFIG_X86_INTERNODE_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_INTERNODE_CACHE_SHIFT=5
Actual value: CONFIG_X86_INTERNODE_CACHE_SHIFT=6
Value requested for CONFIG_X86_L1_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_L1_CACHE_SHIFT=5
Actual value: CONFIG_X86_L1_CACHE_SHIFT=6
Value requested for CONFIG_X86_USE_PPRO_CHECKSUM not in final .config
Requested value: CONFIG_X86_USE_PPRO_CHECKSUM=y
Actual value:
Value requested for CONFIG_X86_MINIMUM_CPU_FAMILY not in final .config
Requested value: CONFIG_X86_MINIMUM_CPU_FAMILY=6
Actual value: CONFIG_X86_MINIMUM_CPU_FAMILY=64
Value requested for CONFIG_CPU_SUP_TRANSMETA_32 not in final .config
Requested value: CONFIG_CPU_SUP_TRANSMETA_32=y
Actual value:
Value requested for CONFIG_CPU_SUP_VORTEX_32 not in final .config
Requested value: CONFIG_CPU_SUP_VORTEX_32=y
Actual value:
Value requested for CONFIG_HPET_TIMER not in final .config
Requested value: # CONFIG_HPET_TIMER is not set
Actual value: CONFIG_HPET_TIMER=y
Value requested for CONFIG_NR_CPUS_RANGE_END not in final .config
Requested value: CONFIG_NR_CPUS_RANGE_END=8
Actual value: CONFIG_NR_CPUS_RANGE_END=512
Value requested for CONFIG_NR_CPUS_DEFAULT not in final .config
Requested value: CONFIG_NR_CPUS_DEFAULT=8
Actual value: CONFIG_NR_CPUS_DEFAULT=64
Value requested for CONFIG_X86_ANCIENT_MCE not in final .config
Requested value: # CONFIG_X86_ANCIENT_MCE is not set
Actual value:
Value requested for CONFIG_X86_LEGACY_VM86 not in final .config
Requested value: # CONFIG_X86_LEGACY_VM86 is not set
Actual value:
Value requested for CONFIG_X86_ESPFIX32 not in final .config
Requested value: CONFIG_X86_ESPFIX32=y
Actual value:
Value requested for CONFIG_TOSHIBA not in final .config
Requested value: # CONFIG_TOSHIBA is not set
Actual value:
Value requested for CONFIG_X86_REBOOTFIXUPS not in final .config
Requested value: # CONFIG_X86_REBOOTFIXUPS is not set
Actual value:
Value requested for CONFIG_MICROCODE_INITRD32 not in final .config
Requested value: CONFIG_MICROCODE_INITRD32=y
Actual value:
Value requested for CONFIG_NOHIGHMEM not in final .config
Requested value: # CONFIG_NOHIGHMEM is not set
Actual value:
Value requested for CONFIG_HIGHMEM4G not in final .config
Requested value: CONFIG_HIGHMEM4G=y
Actual value:
Value requested for CONFIG_HIGHMEM64G not in final .config
Requested value: # CONFIG_HIGHMEM64G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_3G not in final .config
Requested value: CONFIG_VMSPLIT_3G=y
Actual value:
Value requested for CONFIG_VMSPLIT_3G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_3G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G not in final .config
Requested value: # CONFIG_VMSPLIT_2G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_2G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_1G not in final .config
Requested value: # CONFIG_VMSPLIT_1G is not set
Actual value:
Value requested for CONFIG_PAGE_OFFSET not in final .config
Requested value: CONFIG_PAGE_OFFSET=0xC0000000
Actual value:
Value requested for CONFIG_HIGHMEM not in final .config
Requested value: CONFIG_HIGHMEM=y
Actual value:
Value requested for CONFIG_X86_PAE not in final .config
Requested value: # CONFIG_X86_PAE is not set
Actual value:
Value requested for CONFIG_ARCH_FLATMEM_ENABLE not in final .config
Requested value: CONFIG_ARCH_FLATMEM_ENABLE=y
Actual value:
Value requested for CONFIG_ARCH_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_ARCH_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_ILLEGAL_POINTER_VALUE not in final .config
Requested value: CONFIG_ILLEGAL_POINTER_VALUE=0
Actual value: CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
Value requested for CONFIG_HIGHPTE not in final .config
Requested value: # CONFIG_HIGHPTE is not set
Actual value:
Value requested for CONFIG_COMPAT_VDSO not in final .config
Requested value: # CONFIG_COMPAT_VDSO is not set
Actual value:
Value requested for CONFIG_FUNCTION_PADDING_CFI not in final .config
Requested value: CONFIG_FUNCTION_PADDING_CFI=0
Actual value: CONFIG_FUNCTION_PADDING_CFI=11
Value requested for CONFIG_FUNCTION_PADDING_BYTES not in final .config
Requested value: CONFIG_FUNCTION_PADDING_BYTES=4
Actual value: CONFIG_FUNCTION_PADDING_BYTES=16
Value requested for CONFIG_APM not in final .config
Requested value: # CONFIG_APM is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K6 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K6 is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K7 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K7 is not set
Actual value:
Value requested for CONFIG_X86_GX_SUSPMOD not in final .config
Requested value: # CONFIG_X86_GX_SUSPMOD is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_ICH not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_ICH is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_SMI not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_SMI is not set
Actual value:
Value requested for CONFIG_X86_CPUFREQ_NFORCE2 not in final .config
Requested value: # CONFIG_X86_CPUFREQ_NFORCE2 is not set
Actual value:
Value requested for CONFIG_X86_LONGRUN not in final .config
Requested value: # CONFIG_X86_LONGRUN is not set
Actual value:
Value requested for CONFIG_X86_LONGHAUL not in final .config
Requested value: # CONFIG_X86_LONGHAUL is not set
Actual value:
Value requested for CONFIG_X86_E_POWERSAVER not in final .config
Requested value: # CONFIG_X86_E_POWERSAVER is not set
Actual value:
Value requested for CONFIG_PCI_GOBIOS not in final .config
Requested value: # CONFIG_PCI_GOBIOS is not set
Actual value:
Value requested for CONFIG_PCI_GOMMCONFIG not in final .config
Requested value: # CONFIG_PCI_GOMMCONFIG is not set
Actual value:
Value requested for CONFIG_PCI_GODIRECT not in final .config
Requested value: # CONFIG_PCI_GODIRECT is not set
Actual value:
Value requested for CONFIG_PCI_GOANY not in final .config
Requested value: CONFIG_PCI_GOANY=y
Actual value:
Value requested for CONFIG_PCI_BIOS not in final .config
Requested value: CONFIG_PCI_BIOS=y
Actual value:
Value requested for CONFIG_ISA not in final .config
Requested value: # CONFIG_ISA is not set
Actual value:
Value requested for CONFIG_SCx200 not in final .config
Requested value: # CONFIG_SCx200 is not set
Actual value:
Value requested for CONFIG_OLPC not in final .config
Requested value: # CONFIG_OLPC is not set
Actual value:
Value requested for CONFIG_ALIX not in final .config
Requested value: # CONFIG_ALIX is not set
Actual value:
Value requested for CONFIG_NET5501 not in final .config
Requested value: # CONFIG_NET5501 is not set
Actual value:
Value requested for CONFIG_GEOS not in final .config
Requested value: # CONFIG_GEOS is not set
Actual value:
Value requested for CONFIG_COMPAT_32 not in final .config
Requested value: CONFIG_COMPAT_32=y
Actual value:
Value requested for CONFIG_HAVE_ATOMIC_IOMAP not in final .config
Requested value: CONFIG_HAVE_ATOMIC_IOMAP=y
Actual value:
Value requested for CONFIG_ARCH_32BIT_OFF_T not in final .config
Requested value: CONFIG_ARCH_32BIT_OFF_T=y
Actual value:
Value requested for CONFIG_ARCH_WANT_IPC_PARSE_VERSION not in final .config
Requested value: CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
Actual value:
Value requested for CONFIG_MODULES_USE_ELF_REL not in final .config
Requested value: CONFIG_MODULES_USE_ELF_REL=y
Actual value:
Value requested for CONFIG_ARCH_MMAP_RND_BITS not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS=28
Value requested for CONFIG_CLONE_BACKWARDS not in final .config
Requested value: CONFIG_CLONE_BACKWARDS=y
Actual value:
Value requested for CONFIG_OLD_SIGSUSPEND3 not in final .config
Requested value: CONFIG_OLD_SIGSUSPEND3=y
Actual value:
Value requested for CONFIG_OLD_SIGACTION not in final .config
Requested value: CONFIG_OLD_SIGACTION=y
Actual value:
Value requested for CONFIG_ARCH_SPLIT_ARG64 not in final .config
Requested value: CONFIG_ARCH_SPLIT_ARG64=y
Actual value:
Value requested for CONFIG_FUNCTION_ALIGNMENT not in final .config
Requested value: CONFIG_FUNCTION_ALIGNMENT=4
Actual value: CONFIG_FUNCTION_ALIGNMENT=16
Value requested for CONFIG_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_FLATMEM_MANUAL not in final .config
Requested value: CONFIG_FLATMEM_MANUAL=y
Actual value:
Value requested for CONFIG_SPARSEMEM_MANUAL not in final .config
Requested value: # CONFIG_SPARSEMEM_MANUAL is not set
Actual value:
Value requested for CONFIG_FLATMEM not in final .config
Requested value: CONFIG_FLATMEM=y
Actual value:
Value requested for CONFIG_SPARSEMEM_STATIC not in final .config
Requested value: CONFIG_SPARSEMEM_STATIC=y
Actual value:
Value requested for CONFIG_BOUNCE not in final .config
Requested value: CONFIG_BOUNCE=y
Actual value:
Value requested for CONFIG_KMAP_LOCAL not in final .config
Requested value: CONFIG_KMAP_LOCAL=y
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_COMPAQ not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_COMPAQ is not set
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_IBM not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_IBM is not set
Actual value:
Value requested for CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH not in final .config
Requested value: CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH=y
Actual value:
Value requested for CONFIG_PCH_PHUB not in final .config
Requested value: # CONFIG_PCH_PHUB is not set
Actual value:
Value requested for CONFIG_SCSI_NSP32 not in final .config
Requested value: # CONFIG_SCSI_NSP32 is not set
Actual value:
Value requested for CONFIG_PATA_CS5520 not in final .config
Requested value: # CONFIG_PATA_CS5520 is not set
Actual value:
Value requested for CONFIG_PATA_CS5530 not in final .config
Requested value: # CONFIG_PATA_CS5530 is not set
Actual value:
Value requested for CONFIG_PATA_CS5535 not in final .config
Requested value: # CONFIG_PATA_CS5535 is not set
Actual value:
Value requested for CONFIG_PATA_CS5536 not in final .config
Requested value: # CONFIG_PATA_CS5536 is not set
Actual value:
Value requested for CONFIG_PATA_SC1200 not in final .config
Requested value: # CONFIG_PATA_SC1200 is not set
Actual value:
Value requested for CONFIG_PCH_GBE not in final .config
Requested value: # CONFIG_PCH_GBE is not set
Actual value:
Value requested for CONFIG_INPUT_WISTRON_BTNS not in final .config
Requested value: # CONFIG_INPUT_WISTRON_BTNS is not set
Actual value:
Value requested for CONFIG_SERIAL_TIMBERDALE not in final .config
Requested value: # CONFIG_SERIAL_TIMBERDALE is not set
Actual value:
Value requested for CONFIG_SERIAL_PCH_UART not in final .config
Requested value: # CONFIG_SERIAL_PCH_UART is not set
Actual value:
Value requested for CONFIG_HW_RANDOM_GEODE not in final .config
Requested value: CONFIG_HW_RANDOM_GEODE=y
Actual value:
Value requested for CONFIG_SONYPI not in final .config
Requested value: # CONFIG_SONYPI is not set
Actual value:
Value requested for CONFIG_PC8736x_GPIO not in final .config
Requested value: # CONFIG_PC8736x_GPIO is not set
Actual value:
Value requested for CONFIG_NSC_GPIO not in final .config
Requested value: # CONFIG_NSC_GPIO is not set
Actual value:
Value requested for CONFIG_I2C_EG20T not in final .config
Requested value: # CONFIG_I2C_EG20T is not set
Actual value:
Value requested for CONFIG_SCx200_ACB not in final .config
Requested value: # CONFIG_SCx200_ACB is not set
Actual value:
Value requested for CONFIG_PTP_1588_CLOCK_PCH not in final .config
Requested value: # CONFIG_PTP_1588_CLOCK_PCH is not set
Actual value:
Value requested for CONFIG_SBC8360_WDT not in final .config
Requested value: # CONFIG_SBC8360_WDT is not set
Actual value:
Value requested for CONFIG_SBC7240_WDT not in final .config
Requested value: # CONFIG_SBC7240_WDT is not set
Actual value:
Value requested for CONFIG_MFD_CS5535 not in final .config
Requested value: # CONFIG_MFD_CS5535 is not set
Actual value:
Value requested for CONFIG_AGP_ALI not in final .config
Requested value: # CONFIG_AGP_ALI is not set
Actual value:
Value requested for CONFIG_AGP_ATI not in final .config
Requested value: # CONFIG_AGP_ATI is not set
Actual value:
Value requested for CONFIG_AGP_AMD not in final .config
Requested value: # CONFIG_AGP_AMD is not set
Actual value:
Value requested for CONFIG_AGP_NVIDIA not in final .config
Requested value: # CONFIG_AGP_NVIDIA is not set
Actual value:
Value requested for CONFIG_AGP_SWORKS not in final .config
Requested value: # CONFIG_AGP_SWORKS is not set
Actual value:
Value requested for CONFIG_AGP_EFFICEON not in final .config
Requested value: # CONFIG_AGP_EFFICEON is not set
Actual value:
Value requested for CONFIG_SND_CS5530 not in final .config
Requested value: # CONFIG_SND_CS5530 is not set
Actual value:
Value requested for CONFIG_SND_CS5535AUDIO not in final .config
Requested value: # CONFIG_SND_CS5535AUDIO is not set
Actual value:
Value requested for CONFIG_SND_SIS7019 not in final .config
Requested value: # CONFIG_SND_SIS7019 is not set
Actual value:
Value requested for CONFIG_LEDS_OT200 not in final .config
Requested value: # CONFIG_LEDS_OT200 is not set
Actual value:
Value requested for CONFIG_PCH_DMA not in final .config
Requested value: # CONFIG_PCH_DMA is not set
Actual value:
Value requested for CONFIG_CLKSRC_I8253 not in final .config
Requested value: CONFIG_CLKSRC_I8253=y
Actual value:
Value requested for CONFIG_MAILBOX not in final .config
Requested value: # CONFIG_MAILBOX is not set
Actual value: CONFIG_MAILBOX=y
Value requested for CONFIG_CRYPTO_SERPENT_SSE2_586 not in final .config
Requested value: # CONFIG_CRYPTO_SERPENT_SSE2_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_TWOFISH_586 not in final .config
Requested value: # CONFIG_CRYPTO_TWOFISH_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_GEODE not in final .config
Requested value: # CONFIG_CRYPTO_DEV_GEODE is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_HIFN_795X not in final .config
Requested value: # CONFIG_CRYPTO_DEV_HIFN_795X is not set
Actual value:
Value requested for CONFIG_CRYPTO_LIB_POLY1305_RSIZE not in final .config
Requested value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1
Actual value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
Value requested for CONFIG_AUDIT_GENERIC not in final .config
Requested value: CONFIG_AUDIT_GENERIC=y
Actual value:
Value requested for CONFIG_GENERIC_VDSO_32 not in final .config
Requested value: CONFIG_GENERIC_VDSO_32=y
Actual value:
Value requested for CONFIG_DEBUG_KMAP_LOCAL not in final .config
Requested value: # CONFIG_DEBUG_KMAP_LOCAL is not set
Actual value:
Value requested for CONFIG_DEBUG_HIGHMEM not in final .config
Requested value: # CONFIG_DEBUG_HIGHMEM is not set
Actual value:
Value requested for CONFIG_HAVE_DEBUG_STACKOVERFLOW not in final .config
Requested value: CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
Actual value:
Value requested for CONFIG_DEBUG_STACKOVERFLOW not in final .config
Requested value: # CONFIG_DEBUG_STACKOVERFLOW is not set
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_TRACER not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_RETVAL not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_RETVAL=y
Actual value:
Value requested for CONFIG_DRM_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_KUNIT_TEST=m
Actual value:
Value requested for CONFIG_DRM_XE_WERROR not in final .config
Requested value: CONFIG_DRM_XE_WERROR=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG not in final .config
Requested value: CONFIG_DRM_XE_DEBUG=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG_MEM not in final .config
Requested value: CONFIG_DRM_XE_DEBUG_MEM=y
Actual value:
Value requested for CONFIG_DRM_XE_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_XE_KUNIT_TEST=m
Actual value:
++ nproc
+ make -j48 ARCH=i386 olddefconfig
GEN Makefile
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m]
#
# configuration written to .config
#
++ nproc
+ make -j48 ARCH=i386
SYNC include/config/auto.conf.cmd
GEN Makefile
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m]
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m]
WARNING: unmet direct dependencies detected for FB_IOMEM_HELPERS
Depends on [n]: HAS_IOMEM [=y] && FB_CORE [=n]
Selected by [m]:
- DRM_XE_DISPLAY [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_XE [=m] && DRM_XE [=m]=m [=m]
GEN Makefile
WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
WRAP arch/x86/include/generated/uapi/asm/errno.h
WRAP arch/x86/include/generated/uapi/asm/fcntl.h
WRAP arch/x86/include/generated/uapi/asm/ioctl.h
WRAP arch/x86/include/generated/uapi/asm/ioctls.h
UPD include/generated/uapi/linux/version.h
WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
WRAP arch/x86/include/generated/uapi/asm/param.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
WRAP arch/x86/include/generated/uapi/asm/poll.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
WRAP arch/x86/include/generated/uapi/asm/resource.h
SYSTBL arch/x86/include/generated/asm/syscalls_32.h
WRAP arch/x86/include/generated/uapi/asm/socket.h
WRAP arch/x86/include/generated/uapi/asm/sockios.h
WRAP arch/x86/include/generated/uapi/asm/termbits.h
WRAP arch/x86/include/generated/uapi/asm/termios.h
WRAP arch/x86/include/generated/uapi/asm/types.h
UPD include/generated/compile.h
HOSTCC arch/x86/tools/relocs_32.o
HOSTCC arch/x86/tools/relocs_64.o
HOSTCC arch/x86/tools/relocs_common.o
WRAP arch/x86/include/generated/asm/early_ioremap.h
WRAP arch/x86/include/generated/asm/mcs_spinlock.h
WRAP arch/x86/include/generated/asm/mmzone.h
WRAP arch/x86/include/generated/asm/irq_regs.h
WRAP arch/x86/include/generated/asm/kmap_size.h
WRAP arch/x86/include/generated/asm/local64.h
WRAP arch/x86/include/generated/asm/mmiowb.h
WRAP arch/x86/include/generated/asm/module.lds.h
WRAP arch/x86/include/generated/asm/rwonce.h
HOSTCC scripts/kallsyms
HOSTCC scripts/sorttable
HOSTCC scripts/asn1_compiler
HOSTCC scripts/selinux/genheaders/genheaders
HOSTCC scripts/selinux/mdp/mdp
HOSTLD arch/x86/tools/relocs
UPD include/config/kernel.release
UPD include/generated/utsrelease.h
CC scripts/mod/empty.o
HOSTCC scripts/mod/mk_elfconfig
CC scripts/mod/devicetable-offsets.s
UPD scripts/mod/devicetable-offsets.h
MKELF scripts/mod/elfconfig.h
HOSTCC scripts/mod/modpost.o
HOSTCC scripts/mod/file2alias.o
HOSTCC scripts/mod/sumversion.o
HOSTCC scripts/mod/symsearch.o
HOSTLD scripts/mod/modpost
CC kernel/bounds.s
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-arch-fallback.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-instrumented.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-long.h
UPD include/generated/timeconst.h
UPD include/generated/bounds.h
CC arch/x86/kernel/asm-offsets.s
UPD include/generated/asm-offsets.h
CALL /workspace/kernel/scripts/checksyscalls.sh
LDS scripts/module.lds
CC init/main.o
HOSTCC usr/gen_init_cpio
CC certs/system_keyring.o
CC init/do_mounts.o
CC init/do_mounts_initrd.o
CC ipc/util.o
UPD init/utsversion-tmp.h
CC init/initramfs.o
CC security/commoncap.o
CC ipc/msgutil.o
CC mm/filemap.o
CC security/lsm_syscalls.o
CC init/calibrate.o
CC io_uring/io_uring.o
AS arch/x86/lib/atomic64_cx8_32.o
CC ipc/msg.o
CC block/bdev.o
CC security/min_addr.o
CC mm/mempool.o
CC arch/x86/pci/i386.o
CC arch/x86/power/cpu.o
CC arch/x86/video/video-common.o
CC arch/x86/realmode/init.o
CC init/init_task.o
AR arch/x86/crypto/built-in.a
GEN security/selinux/flask.h security/selinux/av_permissions.h
CC security/integrity/iint.o
CC security/keys/gc.o
CC block/partitions/core.o
AR arch/x86/net/built-in.a
CC fs/nfs_common/nfsacl.o
CC fs/quota/dquot.o
AR arch/x86/entry/vsyscall/built-in.a
CC fs/iomap/trace.o
AR virt/lib/built-in.a
AR drivers/cache/built-in.a
CC arch/x86/events/amd/core.o
CC fs/proc/task_mmu.o
CC net/core/sock.o
AR arch/x86/platform/atom/built-in.a
CC arch/x86/mm/pat/set_memory.o
AR arch/x86/virt/svm/built-in.a
CC lib/math/div64.o
CC fs/notify/dnotify/dnotify.o
CC security/selinux/avc.o
CC lib/math/gcd.o
CC arch/x86/mm/pat/memtype.o
AR virt/built-in.a
CC sound/core/seq/seq.o
AR arch/x86/platform/ce4100/built-in.a
CC sound/core/seq/seq_lock.o
CC arch/x86/kernel/fpu/init.o
AR drivers/irqchip/built-in.a
AR arch/x86/virt/vmx/built-in.a
HOSTCC certs/extract-cert
CC arch/x86/platform/efi/memmap.o
AR arch/x86/virt/built-in.a
AS arch/x86/lib/checksum_32.o
CC arch/x86/entry/vdso/vma.o
AR drivers/bus/mhi/built-in.a
CC block/partitions/msdos.o
AR drivers/bus/built-in.a
CC kernel/sched/core.o
CC arch/x86/lib/cmdline.o
CC crypto/asymmetric_keys/asymmetric_type.o
AR drivers/pwm/built-in.a
CC crypto/api.o
AR drivers/leds/trigger/built-in.a
AR drivers/leds/blink/built-in.a
AR drivers/leds/simple/built-in.a
CC drivers/leds/led-core.o
CC lib/math/lcm.o
AS arch/x86/lib/cmpxchg8b_emu.o
CC arch/x86/lib/cpu.o
CC lib/math/int_log.o
CC lib/math/int_pow.o
CC drivers/leds/led-class.o
AS arch/x86/realmode/rm/header.o
GEN usr/initramfs_data.cpio
COPY usr/initramfs_inc_data
AS usr/initramfs_data.o
CC lib/math/int_sqrt.o
AS arch/x86/realmode/rm/trampoline_32.o
CERT certs/x509_certificate_list
AR usr/built-in.a
CERT certs/signing_key.x509
AS arch/x86/realmode/rm/stack.o
AS certs/system_certificates.o
CC arch/x86/kernel/fpu/bugs.o
CC arch/x86/events/intel/core.o
AS arch/x86/realmode/rm/reboot.o
AR certs/built-in.a
CC arch/x86/events/intel/bts.o
AS arch/x86/realmode/rm/wakeup_asm.o
CC lib/crypto/mpi/generic_mpih-lshift.o
CC lib/math/reciprocal_div.o
CC arch/x86/realmode/rm/wakemain.o
CC arch/x86/kernel/fpu/core.o
CC lib/math/rational.o
CC arch/x86/realmode/rm/video-mode.o
CC block/partitions/efi.o
CC sound/core/seq/seq_clientmgr.o
CC arch/x86/lib/delay.o
AR arch/x86/video/built-in.a
CC security/selinux/hooks.o
AS arch/x86/realmode/rm/copy.o
AS arch/x86/realmode/rm/bioscall.o
CC crypto/asymmetric_keys/restrict.o
CC arch/x86/realmode/rm/regs.o
CC security/integrity/integrity_audit.o
CC fs/nfs_common/grace.o
AS arch/x86/entry/entry.o
CC fs/proc/inode.o
CC mm/oom_kill.o
CC arch/x86/realmode/rm/video-vga.o
CC net/ethernet/eth.o
AR sound/i2c/other/built-in.a
CC arch/x86/kernel/cpu/mce/core.o
CC arch/x86/pci/init.o
AR sound/i2c/built-in.a
AR net/802/built-in.a
CC arch/x86/kernel/cpu/mtrr/mtrr.o
AR fs/notify/dnotify/built-in.a
CC block/fops.o
CC arch/x86/kernel/cpu/microcode/core.o
CC fs/notify/inotify/inotify_fsnotify.o
CC arch/x86/platform/efi/quirks.o
CC arch/x86/entry/vdso/extable.o
CC security/keys/key.o
CC arch/x86/realmode/rm/video-vesa.o
CC drivers/leds/led-triggers.o
CC arch/x86/power/hibernate_32.o
CC kernel/sched/fair.o
AS arch/x86/lib/getuser.o
CC fs/notify/inotify/inotify_user.o
CC arch/x86/events/intel/ds.o
CC arch/x86/realmode/rm/video-bios.o
AR lib/math/built-in.a
GEN arch/x86/lib/inat-tables.c
CC ipc/sem.o
CC arch/x86/lib/insn-eval.o
CC arch/x86/events/amd/lbr.o
PASYMS arch/x86/realmode/rm/pasyms.h
CC lib/crypto/mpi/generic_mpih-mul1.o
CC mm/fadvise.o
LDS arch/x86/realmode/rm/realmode.lds
LD arch/x86/realmode/rm/realmode.elf
RELOCS arch/x86/realmode/rm/realmode.relocs
AR fs/notify/fanotify/built-in.a
OBJCOPY arch/x86/realmode/rm/realmode.bin
AS arch/x86/realmode/rmpiggy.o
CC fs/kernfs/mount.o
AR arch/x86/realmode/built-in.a
CC arch/x86/pci/pcbios.o
CC arch/x86/kernel/acpi/boot.o
CC crypto/asymmetric_keys/signature.o
CC net/sched/sch_generic.o
AR arch/x86/platform/geode/built-in.a
AR arch/x86/platform/iris/built-in.a
CC arch/x86/platform/intel/iosf_mbi.o
CC arch/x86/events/zhaoxin/core.o
CC fs/iomap/iter.o
CC arch/x86/platform/efi/efi.o
CC fs/kernfs/inode.o
CC fs/proc/root.o
CC arch/x86/mm/pat/memtype_interval.o
AR security/integrity/built-in.a
AR sound/drivers/opl3/built-in.a
AR sound/isa/ad1816a/built-in.a
AR sound/drivers/opl4/built-in.a
AR sound/isa/ad1848/built-in.a
AR sound/drivers/mpu401/built-in.a
AR sound/isa/cs423x/built-in.a
AR sound/drivers/vx/built-in.a
CC fs/nfs_common/common.o
AR sound/isa/es1688/built-in.a
AR sound/drivers/pcsp/built-in.a
AR sound/drivers/built-in.a
AR block/partitions/built-in.a
AR sound/isa/galaxy/built-in.a
CC io_uring/opdef.o
AR sound/isa/gus/built-in.a
CC arch/x86/kernel/cpu/microcode/intel.o
AR sound/pci/ac97/built-in.a
AR sound/isa/msnd/built-in.a
AR sound/pci/ali5451/built-in.a
AR sound/isa/opti9xx/built-in.a
CC init/version.o
AR sound/pci/asihpi/built-in.a
AR sound/isa/sb/built-in.a
AS arch/x86/entry/entry_32.o
AR sound/pci/au88x0/built-in.a
AR sound/isa/wavefront/built-in.a
AR sound/isa/wss/built-in.a
AR sound/pci/aw2/built-in.a
AR sound/isa/built-in.a
AR sound/pci/ctxfi/built-in.a
LDS arch/x86/entry/vdso/vdso32/vdso32.lds
CC io_uring/kbuf.o
AS arch/x86/power/hibernate_asm_32.o
CC io_uring/rsrc.o
AR sound/pci/ca0106/built-in.a
CC lib/crypto/mpi/generic_mpih-mul2.o
CC arch/x86/kernel/cpu/mtrr/if.o
AS arch/x86/entry/vdso/vdso32/note.o
AR sound/pci/cs46xx/built-in.a
AR sound/pci/cs5535audio/built-in.a
CC arch/x86/power/hibernate.o
AS arch/x86/entry/vdso/vdso32/system_call.o
AR sound/pci/lola/built-in.a
CC crypto/asymmetric_keys/public_key.o
AR sound/pci/lx6464es/built-in.a
AS arch/x86/entry/vdso/vdso32/sigreturn.o
AR drivers/leds/built-in.a
AR sound/pci/echoaudio/built-in.a
CC arch/x86/entry/vdso/vdso32/vclock_gettime.o
AR sound/pci/emu10k1/built-in.a
CC drivers/pci/msi/pcidev_msi.o
CC mm/maccess.o
CC sound/pci/hda/hda_bind.o
AR init/built-in.a
CC fs/notify/fsnotify.o
CC kernel/sched/build_policy.o
CC arch/x86/kernel/fpu/regset.o
CC mm/page-writeback.o
CC arch/x86/lib/insn.o
CC arch/x86/pci/mmconfig_32.o
CC security/keys/keyring.o
CC block/bio.o
AR fs/notify/inotify/built-in.a
CC net/sched/sch_mq.o
CC net/sched/sch_frag.o
CC security/security.o
CC sound/core/seq/seq_memory.o
CC arch/x86/events/amd/ibs.o
AR arch/x86/platform/intel/built-in.a
CC lib/crypto/mpi/generic_mpih-mul3.o
CC fs/quota/quota_v2.o
AR arch/x86/mm/pat/built-in.a
CC arch/x86/mm/init.o
CC fs/iomap/buffered-io.o
AR net/ethernet/built-in.a
ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
AR arch/x86/events/zhaoxin/built-in.a
CC lib/crypto/mpi/generic_mpih-rshift.o
CC kernel/locking/mutex.o
CC arch/x86/lib/kaslr.o
CC fs/proc/base.o
CC fs/kernfs/dir.o
AR fs/nfs_common/built-in.a
CC arch/x86/entry/syscall_32.o
CC arch/x86/kernel/cpu/mtrr/generic.o
CC kernel/power/qos.o
CC arch/x86/kernel/acpi/sleep.o
CC arch/x86/platform/efi/efi_32.o
CC arch/x86/kernel/cpu/microcode/amd.o
ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
CC crypto/asymmetric_keys/x509_loader.o
AR arch/x86/power/built-in.a
CC drivers/pci/msi/api.o
CC arch/x86/events/core.o
CC arch/x86/entry/vdso/vdso32/vgetcpu.o
AR arch/x86/platform/intel-mid/built-in.a
CC arch/x86/lib/memcpy_32.o
CC drivers/pci/pcie/portdrv.o
CC arch/x86/kernel/cpu/cacheinfo.o
CC sound/pci/hda/hda_codec.o
CC arch/x86/kernel/fpu/signal.o
HOSTCC arch/x86/entry/vdso/vdso2c
AS arch/x86/lib/memmove_32.o
CC arch/x86/lib/misc.o
CC arch/x86/lib/pc-conf-reg.o
CC arch/x86/pci/direct.o
CC crypto/asymmetric_keys/x509_public_key.o
CC arch/x86/mm/init_32.o
CC fs/notify/notification.o
CC arch/x86/kernel/cpu/mce/severity.o
AS arch/x86/lib/putuser.o
CC security/keys/keyctl.o
CC ipc/shm.o
AS arch/x86/lib/retpoline.o
CC lib/crypto/mpi/generic_mpih-sub1.o
CC arch/x86/lib/string_32.o
CC fs/quota/quota_tree.o
CC arch/x86/lib/strstr_32.o
CC arch/x86/events/probe.o
CC arch/x86/lib/usercopy.o
CC arch/x86/entry/vdso/vdso32-setup.o
CC arch/x86/pci/mmconfig-shared.o
CC sound/core/seq/seq_queue.o
CC block/elevator.o
AS arch/x86/kernel/acpi/wakeup_32.o
AS arch/x86/platform/efi/efi_stub_32.o
CC arch/x86/kernel/acpi/cstate.o
CC arch/x86/platform/efi/runtime-map.o
CC drivers/pci/msi/msi.o
CC fs/iomap/direct-io.o
CC kernel/locking/semaphore.o
CC net/core/request_sock.o
CC kernel/power/main.o
CC arch/x86/kernel/apic/apic.o
CC arch/x86/lib/usercopy_32.o
VDSO arch/x86/entry/vdso/vdso32.so.dbg
CC arch/x86/events/amd/uncore.o
ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
CC crypto/asymmetric_keys/pkcs7_trust.o
AR arch/x86/kernel/cpu/microcode/built-in.a
CC crypto/asymmetric_keys/pkcs7_verify.o
OBJCOPY arch/x86/entry/vdso/vdso32.so
VDSO2C arch/x86/entry/vdso/vdso-image-32.c
CC sound/core/seq/seq_fifo.o
CC drivers/pci/pcie/rcec.o
CC arch/x86/entry/vdso/vdso-image-32.o
CC arch/x86/mm/fault.o
CC net/sched/sch_api.o
CC fs/sysfs/file.o
CC fs/notify/group.o
CC lib/crypto/mpi/generic_mpih-add1.o
CC arch/x86/kernel/cpu/mtrr/cleanup.o
CC fs/devpts/inode.o
CC arch/x86/kernel/fpu/xstate.o
CC block/blk-core.o
AR sound/ppc/built-in.a
CC sound/pci/hda/hda_jack.o
CC arch/x86/lib/msr-smp.o
CC fs/kernfs/file.o
AR arch/x86/entry/vdso/built-in.a
CC drivers/video/console/dummycon.o
CC arch/x86/entry/common.o
CC arch/x86/kernel/cpu/mce/genpool.o
CC arch/x86/events/intel/knc.o
CC drivers/video/backlight/backlight.o
AR arch/x86/kernel/acpi/built-in.a
CC drivers/video/aperture.o
AR drivers/video/fbdev/core/built-in.a
AR drivers/video/fbdev/omap/built-in.a
CC crypto/asymmetric_keys/x509.asn1.o
AR drivers/video/fbdev/omap2/omapfb/dss/built-in.a
AR drivers/video/fbdev/omap2/omapfb/displays/built-in.a
CC crypto/asymmetric_keys/x509_akid.asn1.o
AR drivers/video/fbdev/omap2/omapfb/built-in.a
AR drivers/video/fbdev/omap2/built-in.a
CC crypto/asymmetric_keys/x509_cert_parser.o
AR drivers/video/fbdev/built-in.a
CC fs/kernfs/symlink.o
CC fs/quota/quota.o
AR arch/x86/platform/intel-quark/built-in.a
CC security/keys/permission.o
CC arch/x86/lib/cache-smp.o
AR arch/x86/platform/efi/built-in.a
AR arch/x86/platform/olpc/built-in.a
AR arch/x86/platform/scx200/built-in.a
CC mm/folio-compat.o
CC crypto/cipher.o
AR arch/x86/platform/ts5500/built-in.a
AR arch/x86/platform/uv/built-in.a
AR arch/x86/platform/built-in.a
CC arch/x86/mm/ioremap.o
CC sound/core/seq/seq_prioq.o
CC kernel/locking/rwsem.o
CC arch/x86/pci/fixup.o
CC lib/crypto/mpi/mpicoder.o
CC arch/x86/kernel/apic/apic_common.o
CC drivers/pci/pcie/aspm.o
CC arch/x86/lib/msr.o
CC io_uring/notif.o
CC ipc/syscall.o
CC fs/notify/mark.o
CC arch/x86/kernel/cpu/mtrr/amd.o
CC fs/sysfs/dir.o
CC net/core/skbuff.o
CC drivers/pci/msi/irqdomain.o
CC arch/x86/kernel/cpu/mce/intel.o
AR fs/devpts/built-in.a
CC arch/x86/kernel/apic/apic_noop.o
CC drivers/pci/pcie/pme.o
CC kernel/locking/percpu-rwsem.o
CC drivers/video/console/vgacon.o
CC kernel/power/console.o
CC fs/iomap/fiemap.o
CC crypto/asymmetric_keys/pkcs7.asn1.o
AR arch/x86/events/amd/built-in.a
AR drivers/pci/pwrctl/built-in.a
CC crypto/asymmetric_keys/pkcs7_parser.o
CC kernel/sched/build_utility.o
CC lib/crypto/mpi/mpi-add.o
CC fs/proc/generic.o
AS arch/x86/entry/thunk.o
AR arch/x86/entry/built-in.a
CC net/core/datagram.o
CC ipc/ipc_sysctl.o
CC arch/x86/events/intel/lbr.o
AR drivers/idle/built-in.a
CC net/netlink/af_netlink.o
CC security/keys/process_keys.o
CC net/netlink/genetlink.o
AR drivers/video/backlight/built-in.a
CC fs/netfs/buffered_read.o
CC fs/ext4/balloc.o
CC security/selinux/selinuxfs.o
CC fs/jbd2/transaction.o
AR fs/kernfs/built-in.a
CC fs/iomap/seek.o
CC fs/netfs/buffered_write.o
CC sound/core/seq/seq_timer.o
CC mm/readahead.o
CC sound/core/sound.o
AR arch/x86/kernel/fpu/built-in.a
CC fs/ext4/bitmap.o
CC fs/sysfs/symlink.o
AR sound/arm/built-in.a
CC drivers/pci/hotplug/pci_hotplug_core.o
CC sound/pci/hda/hda_auto_parser.o
CC arch/x86/mm/extable.o
CC arch/x86/kernel/cpu/mtrr/cyrix.o
CC arch/x86/mm/mmap.o
CC arch/x86/kernel/cpu/mce/amd.o
CC arch/x86/kernel/cpu/mtrr/centaur.o
CC arch/x86/pci/acpi.o
CC block/blk-sysfs.o
CC kernel/locking/spinlock.o
AS arch/x86/lib/msr-reg.o
CC arch/x86/lib/msr-reg-export.o
AR crypto/asymmetric_keys/built-in.a
CC crypto/compress.o
CC ipc/mqueue.o
AR drivers/pci/msi/built-in.a
CC fs/quota/kqid.o
CC arch/x86/mm/pgtable.o
CC fs/notify/fdinfo.o
CC arch/x86/kernel/apic/ipi.o
AR sound/pci/ice1712/built-in.a
CC lib/crypto/mpi/mpi-bit.o
CC security/keys/request_key.o
AR drivers/char/ipmi/built-in.a
CC kernel/power/process.o
CC arch/x86/kernel/apic/vector.o
AS arch/x86/lib/hweight.o
CC arch/x86/lib/iomem.o
CC lib/zlib_inflate/inffast.o
CC io_uring/tctx.o
CC fs/iomap/swapfile.o
CC kernel/locking/osq_lock.o
CC fs/proc/array.o
CC sound/core/seq/seq_system.o
AR drivers/pci/pcie/built-in.a
CC arch/x86/kernel/cpu/mtrr/legacy.o
CC lib/zlib_inflate/inflate.o
AR drivers/video/console/built-in.a
CC drivers/video/cmdline.o
CC arch/x86/events/utils.o
CC io_uring/filetable.o
CC net/sched/sch_blackhole.o
CC fs/sysfs/mount.o
CC kernel/locking/qspinlock.o
CC fs/netfs/direct_read.o
CC lib/crypto/mpi/mpi-cmp.o
CC fs/quota/netlink.o
CC crypto/algapi.o
CC fs/ramfs/inode.o
CC arch/x86/lib/atomic64_32.o
CC fs/jbd2/commit.o
CC drivers/pci/hotplug/acpi_pcihp.o
CC io_uring/rw.o
CC arch/x86/pci/legacy.o
CC arch/x86/lib/inat.o
CC sound/core/init.o
CC mm/swap.o
CC arch/x86/events/rapl.o
AR fs/notify/built-in.a
CC lib/crypto/memneq.o
AR arch/x86/kernel/cpu/mtrr/built-in.a
CC arch/x86/kernel/cpu/mce/threshold.o
AR arch/x86/lib/built-in.a
AR arch/x86/lib/lib.a
CC arch/x86/events/intel/p4.o
CC arch/x86/kernel/kprobes/core.o
CC sound/pci/hda/hda_sysfs.o
CC arch/x86/mm/physaddr.o
CC arch/x86/mm/tlb.o
CC block/blk-flush.o
CC io_uring/net.o
AR sound/pci/korg1212/built-in.a
CC drivers/video/nomodeset.o
CC lib/zlib_inflate/infutil.o
CC kernel/locking/rtmutex_api.o
CC sound/core/seq/seq_ports.o
CC arch/x86/events/msr.o
CC security/keys/request_key_auth.o
AR fs/iomap/built-in.a
CC security/lsm_audit.o
CC lib/crypto/mpi/mpi-sub-ui.o
CC lib/crypto/utils.o
CC io_uring/poll.o
CC fs/ext4/block_validity.o
CC net/core/stream.o
CC fs/netfs/direct_write.o
CC fs/sysfs/group.o
CC kernel/power/suspend.o
CC net/sched/cls_api.o
AR sound/sh/built-in.a
CC fs/proc/fd.o
CC lib/zlib_inflate/inftrees.o
CC drivers/video/hdmi.o
CC arch/x86/pci/irq.o
AR drivers/pci/controller/dwc/built-in.a
AR drivers/pci/hotplug/built-in.a
CC security/selinux/netlink.o
AR drivers/pci/controller/mobiveil/built-in.a
CC fs/ramfs/file-mmu.o
CC mm/truncate.o
CC sound/pci/hda/hda_controller.o
AR drivers/pci/controller/plda/built-in.a
AR drivers/pci/controller/built-in.a
AR drivers/pci/switch/built-in.a
CC drivers/pci/access.o
CC fs/ext4/dir.o
AR fs/quota/built-in.a
CC drivers/pci/bus.o
CC block/blk-settings.o
CC lib/zlib_inflate/inflate_syms.o
CC lib/crypto/mpi/mpi-div.o
CC sound/core/memory.o
CC kernel/printk/printk.o
CC ipc/namespace.o
CC crypto/scatterwalk.o
CC fs/jbd2/recovery.o
CC crypto/proc.o
CC arch/x86/kernel/kprobes/opt.o
CC security/keys/user_defined.o
CC lib/crypto/mpi/mpi-mod.o
CC arch/x86/mm/cpu_entry_area.o
CC sound/core/seq/seq_info.o
CC arch/x86/kernel/apic/init.o
LDS arch/x86/kernel/vmlinux.lds
AR lib/zlib_inflate/built-in.a
CC arch/x86/mm/maccess.o
CC arch/x86/mm/pgprot.o
CC net/netlink/policy.o
CC kernel/locking/qrwlock.o
CC fs/proc/proc_tty.o
AR fs/sysfs/built-in.a
CC lib/zlib_deflate/deflate.o
CC lib/lzo/lzo1x_compress.o
AR net/bpf/built-in.a
CC lib/lz4/lz4_decompress.o
CC lib/lzo/lzo1x_decompress_safe.o
AR arch/x86/kernel/cpu/mce/built-in.a
CC arch/x86/kernel/cpu/scattered.o
CC arch/x86/events/intel/p6.o
CC fs/ext4/ext4_jbd2.o
AR fs/ramfs/built-in.a
AS arch/x86/kernel/head_32.o
CC security/device_cgroup.o
CC io_uring/eventfd.o
CC sound/core/control.o
CC fs/jbd2/checkpoint.o
CC net/core/scm.o
CC fs/ext4/extents.o
CC ipc/mq_sysctl.o
AR drivers/video/built-in.a
CC drivers/pci/probe.o
CC net/sched/act_api.o
CC fs/netfs/iterator.o
CC security/selinux/nlmsgtab.o
AR sound/synth/emux/built-in.a
AR sound/usb/misc/built-in.a
AR sound/synth/built-in.a
CC lib/zlib_deflate/deftree.o
CC fs/netfs/locking.o
AR sound/usb/usx2y/built-in.a
CC arch/x86/kernel/apic/hw_nmi.o
CC crypto/aead.o
AR sound/usb/caiaq/built-in.a
AR sound/usb/6fire/built-in.a
AR sound/usb/hiface/built-in.a
AR sound/usb/bcd2000/built-in.a
AR sound/usb/built-in.a
CC arch/x86/mm/pgtable_32.o
CC lib/crypto/mpi/mpi-mul.o
AR sound/pci/mixart/built-in.a
CC arch/x86/mm/iomap_32.o
CC fs/jbd2/revoke.o
CC sound/core/seq/seq_dummy.o
AR kernel/locking/built-in.a
CC security/keys/proc.o
CC arch/x86/mm/hugetlbpage.o
CC fs/netfs/main.o
CC mm/vmscan.o
CC block/blk-ioc.o
CC block/blk-map.o
CC arch/x86/kernel/cpu/topology_common.o
CC fs/ext4/extents_status.o
CC arch/x86/kernel/cpu/topology_ext.o
CC kernel/power/hibernate.o
AR lib/lzo/built-in.a
CC fs/ext4/file.o
CC arch/x86/events/intel/pt.o
AR ipc/built-in.a
CC fs/proc/cmdline.o
AR arch/x86/kernel/kprobes/built-in.a
CC arch/x86/pci/common.o
CC fs/hugetlbfs/inode.o
CC drivers/acpi/acpica/dsargs.o
CC drivers/pnp/pnpacpi/core.o
CC arch/x86/mm/dump_pagetables.o
AR net/netlink/built-in.a
CC sound/pci/hda/hda_proc.o
CC sound/pci/hda/hda_hwdep.o
CC drivers/pnp/core.o
CC lib/zlib_deflate/deflate_syms.o
CC arch/x86/kernel/apic/io_apic.o
CC crypto/geniv.o
CC lib/crypto/mpi/mpih-cmp.o
AR sound/core/seq/built-in.a
CC fs/ext4/fsmap.o
CC arch/x86/kernel/cpu/topology_amd.o
CC fs/proc/consoles.o
CC io_uring/uring_cmd.o
CC drivers/pci/host-bridge.o
CC drivers/pnp/card.o
AR sound/pci/nm256/built-in.a
CC block/blk-merge.o
CC drivers/acpi/acpica/dscontrol.o
CC fs/fat/cache.o
CC security/keys/sysctl.o
CC net/sched/sch_fifo.o
CC arch/x86/kernel/head32.o
CC security/selinux/netif.o
CC arch/x86/kernel/cpu/common.o
AR sound/firewire/built-in.a
CC sound/core/misc.o
CC drivers/pci/remove.o
CC fs/jbd2/journal.o
CC fs/isofs/namei.o
AR lib/zlib_deflate/built-in.a
CC fs/isofs/inode.o
CC net/core/gen_stats.o
AR lib/lz4/built-in.a
CC arch/x86/mm/highmem_32.o
CC drivers/pnp/pnpacpi/rsparser.o
CC fs/isofs/dir.o
AR kernel/sched/built-in.a
CC fs/nfs/client.o
CC fs/netfs/misc.o
CC arch/x86/pci/early.o
CC drivers/acpi/acpica/dsdebug.o
CC fs/isofs/util.o
CC fs/proc/cpuinfo.o
CC io_uring/openclose.o
CC io_uring/sqpoll.o
CC fs/fat/dir.o
CC lib/crypto/mpi/mpih-div.o
CC net/sched/cls_cgroup.o
CC security/keys/keyctl_pkey.o
CC net/core/gen_estimator.o
CC kernel/printk/printk_safe.o
AR drivers/amba/built-in.a
CC lib/zstd/zstd_decompress_module.o
CC drivers/acpi/acpica/dsfield.o
CC lib/xz/xz_dec_syms.o
CC drivers/acpi/acpica/dsinit.o
CC arch/x86/kernel/ebda.o
CC crypto/lskcipher.o
CC arch/x86/events/intel/uncore.o
CC sound/core/device.o
AR fs/hugetlbfs/built-in.a
CC arch/x86/kernel/apic/msi.o
CC crypto/skcipher.o
CC kernel/power/snapshot.o
CC drivers/pci/pci.o
CC crypto/seqiv.o
CC sound/pci/hda/hda_intel.o
CC fs/proc/devices.o
CC mm/shrinker.o
AR arch/x86/mm/built-in.a
AR sound/pci/oxygen/built-in.a
AR drivers/clk/actions/built-in.a
AR drivers/clk/analogbits/built-in.a
CC drivers/dma/dw/core.o
AR drivers/clk/bcm/built-in.a
CC arch/x86/pci/bus_numa.o
AR drivers/clk/imgtec/built-in.a
CC lib/crypto/mpi/mpih-mul.o
CC lib/crypto/chacha.o
AR drivers/clk/imx/built-in.a
CC fs/exportfs/expfs.o
AR drivers/clk/ingenic/built-in.a
AR drivers/clk/mediatek/built-in.a
AR drivers/clk/microchip/built-in.a
CC lib/zstd/decompress/huf_decompress.o
AR drivers/clk/mstar/built-in.a
CC arch/x86/events/intel/uncore_nhmex.o
AR drivers/clk/mvebu/built-in.a
CC lib/xz/xz_dec_stream.o
AR drivers/clk/ralink/built-in.a
AR drivers/clk/renesas/built-in.a
CC lib/crypto/aes.o
CC fs/fat/fatent.o
AR drivers/clk/socfpga/built-in.a
AR drivers/clk/sophgo/built-in.a
AR drivers/clk/sprd/built-in.a
CC lib/zstd/decompress/zstd_ddict.o
AR drivers/clk/starfive/built-in.a
AR drivers/acpi/pmic/built-in.a
CC arch/x86/kernel/apic/probe_32.o
AR drivers/clk/sunxi-ng/built-in.a
AR drivers/clk/ti/built-in.a
AR drivers/clk/versatile/built-in.a
CC kernel/printk/nbcon.o
AR drivers/clk/xilinx/built-in.a
CC drivers/acpi/acpica/dsmethod.o
AR security/keys/built-in.a
AR drivers/clk/built-in.a
AR drivers/pnp/pnpacpi/built-in.a
CC drivers/pnp/driver.o
CC lib/dim/dim.o
CC fs/isofs/rock.o
CC drivers/acpi/acpica/dsmthdat.o
CC security/selinux/netnode.o
CC sound/core/info.o
CC arch/x86/kernel/platform-quirks.o
CC fs/netfs/objects.o
AR drivers/soc/apple/built-in.a
AR drivers/soc/aspeed/built-in.a
AR drivers/soc/bcm/built-in.a
AR drivers/soc/fsl/built-in.a
AR drivers/soc/fujitsu/built-in.a
AR drivers/soc/hisilicon/built-in.a
AR drivers/soc/imx/built-in.a
AR drivers/soc/ixp4xx/built-in.a
AR drivers/soc/loongson/built-in.a
AR drivers/soc/mediatek/built-in.a
CC fs/lockd/clntlock.o
CC fs/lockd/clntproc.o
AR drivers/soc/microchip/built-in.a
AR drivers/soc/nuvoton/built-in.a
CC drivers/acpi/acpica/dsobject.o
AR drivers/soc/pxa/built-in.a
AR drivers/soc/amlogic/built-in.a
AR drivers/soc/qcom/built-in.a
AR drivers/soc/renesas/built-in.a
AR drivers/soc/rockchip/built-in.a
AR drivers/soc/sunxi/built-in.a
CC net/sched/ematch.o
AR drivers/soc/ti/built-in.a
CC net/ethtool/ioctl.o
AR drivers/soc/versatile/built-in.a
AR drivers/soc/xilinx/built-in.a
AR drivers/soc/built-in.a
CC fs/proc/interrupts.o
CC net/core/net_namespace.o
CC block/blk-timeout.o
CC net/core/secure_seq.o
CC drivers/pci/pci-driver.o
CC fs/netfs/read_collect.o
CC lib/xz/xz_dec_lzma2.o
AR arch/x86/kernel/apic/built-in.a
CC lib/dim/net_dim.o
CC fs/nfs/dir.o
CC arch/x86/events/intel/uncore_snb.o
CC arch/x86/kernel/cpu/rdrand.o
CC lib/crypto/arc4.o
CC arch/x86/pci/amd_bus.o
CC io_uring/xattr.o
AR fs/exportfs/built-in.a
CC net/core/flow_dissector.o
CC fs/ext4/fsync.o
CC arch/x86/kernel/cpu/match.o
CC net/core/sysctl_net_core.o
CC crypto/echainiv.o
CC drivers/pnp/resource.o
CC lib/crypto/mpi/mpi-pow.o
CC lib/xz/xz_dec_bcj.o
CC drivers/acpi/acpica/dsopcode.o
CC fs/proc/loadavg.o
CC arch/x86/kernel/process_32.o
CC crypto/ahash.o
CC arch/x86/kernel/cpu/bugs.o
CC lib/dim/rdma_dim.o
CC kernel/printk/printk_ringbuffer.o
AR sound/sparc/built-in.a
CC block/blk-lib.o
CC fs/fat/file.o
CC net/core/dev.o
CC drivers/dma/dw/dw.o
CC fs/isofs/export.o
CC mm/shmem.o
CC fs/fat/inode.o
CC drivers/acpi/acpica/dspkginit.o
CC security/selinux/netport.o
CC sound/core/isadma.o
CC drivers/virtio/virtio.o
CC fs/isofs/joliet.o
CC fs/nfs/file.o
CC lib/zstd/decompress/zstd_decompress.o
AR lib/xz/built-in.a
CC fs/ext4/hash.o
CC arch/x86/kernel/signal.o
CC net/netfilter/core.o
CC drivers/pci/search.o
CC block/blk-mq.o
CC fs/fat/misc.o
AR sound/pci/hda/built-in.a
AR sound/pci/pcxhr/built-in.a
AR arch/x86/pci/built-in.a
AR sound/pci/riptide/built-in.a
CC fs/proc/meminfo.o
CC fs/isofs/compress.o
AR sound/pci/rme9652/built-in.a
AR sound/pci/trident/built-in.a
AR sound/pci/ymfpci/built-in.a
AR sound/pci/vx222/built-in.a
AR sound/pci/built-in.a
CC lib/crypto/mpi/mpiutil.o
CC fs/netfs/read_pgpriv2.o
CC kernel/power/swap.o
AR net/sched/built-in.a
CC mm/util.o
CC io_uring/nop.o
AR lib/dim/built-in.a
CC lib/crypto/gf128mul.o
CC kernel/printk/sysctl.o
CC arch/x86/events/intel/uncore_snbep.o
CC drivers/acpi/acpica/dsutils.o
AR fs/jbd2/built-in.a
CC drivers/pnp/manager.o
CC sound/core/vmaster.o
CC arch/x86/kernel/signal_32.o
CC drivers/dma/dw/idma32.o
CC mm/mmzone.o
CC fs/netfs/read_retry.o
CC drivers/pci/rom.o
CC fs/lockd/clntxdr.o
CC fs/proc/stat.o
CC security/selinux/status.o
CC drivers/virtio/virtio_ring.o
CC kernel/power/user.o
AR kernel/printk/built-in.a
CC fs/fat/nfs.o
CC drivers/tty/vt/vt_ioctl.o
CC drivers/char/hw_random/core.o
CC crypto/shash.o
AR sound/spi/built-in.a
CC drivers/pnp/support.o
CC drivers/tty/hvc/hvc_console.o
CC block/blk-mq-tag.o
AR lib/crypto/mpi/built-in.a
CC drivers/acpi/acpica/dswexec.o
CC kernel/irq/irqdesc.o
CC drivers/acpi/dptf/int340x_thermal.o
CC lib/zstd/decompress/zstd_decompress_block.o
CC sound/core/ctljack.o
CC drivers/acpi/acpica/dswload.o
CC fs/proc/uptime.o
CC lib/crypto/blake2s.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
AR fs/isofs/built-in.a
CC net/xfrm/xfrm_policy.o
CC net/unix/af_unix.o
CC net/unix/garbage.o
CC block/blk-stat.o
CC io_uring/fs.o
CC io_uring/splice.o
CC drivers/dma/dw/acpi.o
CC drivers/virtio/virtio_anchor.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC lib/crypto/blake2s-generic.o
CC arch/x86/events/intel/uncore_discovery.o
CC arch/x86/kernel/cpu/aperfmperf.o
CC security/selinux/ss/ebitmap.o
CC drivers/pnp/interface.o
CC drivers/acpi/x86/apple.o
AR drivers/acpi/dptf/built-in.a
CC mm/vmstat.o
CC sound/core/jack.o
CC fs/nfs/getroot.o
CC drivers/pci/setup-res.o
CC net/ipv4/netfilter/ip_tables.o
CC drivers/acpi/acpica/dswload2.o
CC fs/nfs/inode.o
CC drivers/tty/vt/vc_screen.o
CC fs/ext4/ialloc.o
CC fs/fat/namei_vfat.o
CC drivers/char/hw_random/intel-rng.o
CC net/netfilter/nf_log.o
CC drivers/acpi/x86/cmos_rtc.o
CC fs/proc/util.o
CC kernel/power/poweroff.o
CC fs/netfs/write_collect.o
CC kernel/irq/handle.o
CC fs/nfs/super.o
CC lib/crypto/sha1.o
CC fs/lockd/host.o
CC crypto/akcipher.o
AR drivers/tty/hvc/built-in.a
CC fs/fat/namei_msdos.o
CC net/unix/sysctl_net_unix.o
CC io_uring/sync.o
CC drivers/acpi/acpica/dswscope.o
CC net/ethtool/common.o
AR kernel/power/built-in.a
CC lib/zstd/zstd_common_module.o
CC net/ipv4/netfilter/iptable_filter.o
AR drivers/dma/dw/built-in.a
CC drivers/dma/hsu/hsu.o
CC drivers/char/agp/backend.o
CC fs/lockd/svc.o
CC drivers/pnp/quirks.o
CC arch/x86/kernel/cpu/cpuid-deps.o
CC drivers/char/mem.o
CC sound/core/hwdep.o
CC lib/crypto/sha256.o
CC fs/proc/version.o
CC mm/backing-dev.o
CC drivers/pci/irq.o
CC fs/nfs/io.o
CC drivers/char/hw_random/amd-rng.o
CC drivers/acpi/x86/lpss.o
CC drivers/acpi/acpica/dswstate.o
CC drivers/acpi/acpica/evevent.o
CC kernel/irq/manage.o
CC net/ipv6/netfilter/ip6_tables.o
CC net/ipv6/netfilter/ip6table_filter.o
CC drivers/tty/vt/selection.o
CC drivers/virtio/virtio_pci_modern_dev.o
CC net/ipv6/af_inet6.o
CC lib/zstd/common/debug.o
AR drivers/iommu/amd/built-in.a
AR drivers/iommu/intel/built-in.a
AR drivers/iommu/arm/arm-smmu/built-in.a
CC arch/x86/kernel/cpu/umwait.o
AR drivers/iommu/arm/arm-smmu-v3/built-in.a
AR drivers/iommu/arm/built-in.a
AR drivers/iommu/iommufd/built-in.a
CC drivers/iommu/iommu.o
CC security/selinux/ss/hashtab.o
CC security/selinux/ss/symtab.o
CC drivers/iommu/iommu-traces.o
CC arch/x86/events/intel/cstate.o
CC crypto/sig.o
CC drivers/char/agp/generic.o
CC drivers/acpi/acpica/evgpe.o
CC fs/proc/softirqs.o
CC kernel/rcu/update.o
CC drivers/tty/serial/8250/8250_core.o
AR kernel/livepatch/built-in.a
AR lib/crypto/built-in.a
CC drivers/pci/vpd.o
CC arch/x86/kernel/traps.o
CC io_uring/msg_ring.o
AR sound/parisc/built-in.a
AR drivers/dma/hsu/built-in.a
CC drivers/tty/serial/serial_core.o
AR fs/fat/built-in.a
AR drivers/dma/idxd/built-in.a
CC net/netfilter/nf_queue.o
CC fs/ext4/indirect.o
CC drivers/pnp/system.o
AR drivers/dma/amd/built-in.a
AR drivers/gpu/host1x/built-in.a
AR drivers/dma/mediatek/built-in.a
AR drivers/dma/qcom/built-in.a
AR drivers/dma/stm32/built-in.a
CC sound/core/timer.o
AR drivers/dma/ti/built-in.a
AR drivers/dma/xilinx/built-in.a
CC drivers/dma/dmaengine.o
AR drivers/gpu/vga/built-in.a
CC drivers/char/hw_random/geode-rng.o
CC net/packet/af_packet.o
CC arch/x86/kernel/idt.o
CC arch/x86/kernel/irq.o
CC net/ipv4/netfilter/iptable_mangle.o
AR drivers/gpu/drm/tests/built-in.a
AR drivers/gpu/drm/arm/built-in.a
CC drivers/acpi/x86/s2idle.o
CC security/selinux/ss/sidtab.o
AR drivers/gpu/drm/clients/built-in.a
AR drivers/tty/ipwireless/built-in.a
CC drivers/iommu/iommu-sysfs.o
CC drivers/gpu/drm/display/drm_display_helper_mod.o
CC kernel/dma/mapping.o
CC fs/netfs/write_issue.o
CC net/ethtool/netlink.o
CC drivers/tty/vt/keyboard.o
CC drivers/virtio/virtio_pci_legacy_dev.o
MKCAP arch/x86/kernel/cpu/capflags.c
CC drivers/acpi/acpica/evgpeblk.o
CC lib/zstd/common/entropy_common.o
CC fs/lockd/svclock.o
CC drivers/tty/vt/vt.o
CC fs/proc/namespaces.o
AR drivers/pnp/built-in.a
CC net/ethtool/bitset.o
CC fs/lockd/svcshare.o
CC lib/zstd/common/error_private.o
CC drivers/gpu/drm/display/drm_dp_dual_mode_helper.o
CC lib/zstd/common/fse_decompress.o
CC mm/mm_init.o
CC crypto/kpp.o
ASN.1 crypto/rsapubkey.asn1.[ch]
CC drivers/tty/serial/8250/8250_platform.o
AR arch/x86/events/intel/built-in.a
AR arch/x86/events/built-in.a
CC net/netfilter/nf_sockopt.o
AR net/unix/built-in.a
CC drivers/tty/serial/serial_base_bus.o
CC drivers/char/hw_random/via-rng.o
CC kernel/irq/spurious.o
CC drivers/acpi/acpica/evgpeinit.o
CC drivers/pci/setup-bus.o
CC fs/nfs/direct.o
CC block/blk-mq-sysfs.o
CC io_uring/advise.o
CC fs/nfs/pagelist.o
CC drivers/char/random.o
CC drivers/char/agp/isoch.o
CC net/xfrm/xfrm_state.o
CC drivers/virtio/virtio_pci_modern.o
CC arch/x86/kernel/irq_32.o
CC lib/zstd/common/zstd_common.o
CC drivers/acpi/x86/utils.o
AR drivers/char/hw_random/built-in.a
CC drivers/char/misc.o
CC net/ipv6/netfilter/ip6table_mangle.o
CC drivers/acpi/x86/blacklist.o
CC drivers/acpi/acpica/evgpeutil.o
AR lib/zstd/built-in.a
CC net/ipv4/netfilter/ipt_REJECT.o
CC arch/x86/kernel/cpu/powerflags.o
CC lib/fonts/fonts.o
CC fs/proc/self.o
CC drivers/dma/virt-dma.o
AR sound/pcmcia/vx/built-in.a
AR sound/pcmcia/pdaudiocf/built-in.a
AR sound/pcmcia/built-in.a
CC mm/percpu.o
CC kernel/irq/resend.o
CC arch/x86/kernel/cpu/topology.o
CC drivers/gpu/drm/display/drm_dp_helper.o
ASN.1 crypto/rsaprivkey.asn1.[ch]
CC block/blk-mq-cpumap.o
CC security/selinux/ss/avtab.o
CC crypto/rsa.o
AR fs/netfs/built-in.a
CC fs/lockd/svcproc.o
CC drivers/char/virtio_console.o
CC drivers/tty/serial/8250/8250_pnp.o
CC sound/core/hrtimer.o
CC drivers/char/hpet.o
CC fs/nls/nls_base.o
CC lib/fonts/font_8x16.o
CC drivers/iommu/dma-iommu.o
CC block/blk-mq-sched.o
CC drivers/acpi/acpica/evglock.o
CC drivers/char/agp/amd64-agp.o
CC net/netfilter/utils.o
CC fs/nls/nls_cp437.o
CC fs/nls/nls_ascii.o
CC fs/nls/nls_iso8859-1.o
CC drivers/connector/cn_queue.o
CC io_uring/epoll.o
AR drivers/acpi/x86/built-in.a
CC fs/ext4/inline.o
CC net/ethtool/strset.o
CC drivers/dma/acpi-dma.o
CC kernel/irq/chip.o
CC fs/proc/thread_self.o
CC drivers/pci/vc.o
CC drivers/virtio/virtio_pci_common.o
AR sound/mips/built-in.a
CC net/netfilter/nfnetlink.o
CC net/core/dev_addr_lists.o
CC sound/core/pcm.o
AR lib/fonts/built-in.a
CC kernel/entry/common.o
CC lib/argv_split.o
CC fs/nls/nls_utf8.o
CC drivers/acpi/acpica/evhandler.o
AR sound/soc/built-in.a
CC kernel/dma/direct.o
CC drivers/base/power/sysfs.o
CC drivers/block/loop.o
CC drivers/base/firmware_loader/builtin/main.o
AR drivers/misc/eeprom/built-in.a
AR drivers/misc/cb710/built-in.a
AR drivers/misc/ti-st/built-in.a
AR drivers/misc/lis3lv02d/built-in.a
CC crypto/rsa_helper.o
AR drivers/misc/cardreader/built-in.a
CC drivers/base/power/generic_ops.o
AR drivers/misc/keba/built-in.a
AR drivers/misc/built-in.a
CC crypto/rsa-pkcs1pad.o
CC drivers/tty/serial/8250/8250_rsa.o
CC drivers/base/firmware_loader/main.o
CC kernel/rcu/sync.o
CC net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
CC [M] net/ipv4/netfilter/iptable_nat.o
AR drivers/mfd/built-in.a
CC net/xfrm/xfrm_hash.o
CC kernel/dma/ops_helpers.o
CC lib/bug.o
CC drivers/tty/serial/serial_ctrl.o
AR fs/nls/built-in.a
CC security/selinux/ss/policydb.o
CC fs/proc/proc_sysctl.o
AR drivers/base/firmware_loader/builtin/built-in.a
CC fs/lockd/svcsubs.o
CC drivers/char/agp/intel-agp.o
CC drivers/acpi/acpica/evmisc.o
CC mm/slab_common.o
CC kernel/rcu/srcutree.o
CC drivers/base/power/common.o
AR drivers/dma/built-in.a
CC kernel/dma/remap.o
CC drivers/tty/tty_io.o
CC io_uring/statx.o
CC drivers/pci/mmap.o
CC drivers/block/virtio_blk.o
CC drivers/base/regmap/regmap.o
CC net/core/dst.o
CC drivers/connector/connector.o
CC block/ioctl.o
CC drivers/virtio/virtio_pci_legacy.o
CC kernel/irq/dummychip.o
CC drivers/acpi/acpica/evregion.o
CC kernel/rcu/tree.o
AR drivers/base/test/built-in.a
AR sound/atmel/built-in.a
CC net/ethtool/linkinfo.o
CC drivers/tty/serial/8250/8250_port.o
CC drivers/tty/n_tty.o
COPY drivers/tty/vt/defkeymap.c
CC drivers/tty/vt/consolemap.o
CC sound/core/pcm_native.o
CC drivers/acpi/acpica/evrgnini.o
CC net/netfilter/nfnetlink_log.o
CC kernel/rcu/rcu_segcblist.o
CC sound/core/pcm_lib.o
CC crypto/acompress.o
CC lib/buildid.o
CC kernel/entry/syscall_user_dispatch.o
CC drivers/base/power/qos.o
CC drivers/iommu/iova.o
CC drivers/pci/devres.o
CC fs/lockd/mon.o
AR kernel/dma/built-in.a
CC net/ipv6/anycast.o
AR drivers/base/firmware_loader/built-in.a
CC fs/ext4/inode.o
CC drivers/char/agp/intel-gtt.o
CC kernel/irq/devres.o
AR net/packet/built-in.a
CC drivers/base/regmap/regcache.o
CC security/selinux/ss/services.o
CC drivers/tty/serial/8250/8250_dma.o
CC net/core/netevent.o
CC drivers/gpu/drm/display/drm_dp_mst_topology.o
CC drivers/virtio/virtio_pci_admin_legacy_io.o
CC fs/nfs/read.o
CC drivers/acpi/acpica/evsci.o
CC io_uring/timeout.o
CC net/ipv6/netfilter/nf_conntrack_reasm.o
AR net/ipv4/netfilter/built-in.a
CC net/ipv4/route.o
CC net/netfilter/nf_conntrack_core.o
CC sound/hda/hda_bus_type.o
AR sound/x86/built-in.a
CC sound/hda/hdac_bus.o
CC net/xfrm/xfrm_input.o
AR kernel/entry/built-in.a
CC drivers/char/nvram.o
CC drivers/gpu/drm/display/drm_dsc_helper.o
CC drivers/base/power/runtime.o
CC block/genhd.o
CC drivers/connector/cn_proc.o
CC drivers/acpi/acpica/evxface.o
CC lib/clz_tab.o
CC kernel/irq/autoprobe.o
CC lib/cmdline.o
HOSTCC drivers/tty/vt/conmakehash
AR drivers/block/built-in.a
CC fs/ext4/ioctl.o
CC net/ethtool/linkmodes.o
CC net/ipv4/inetpeer.o
CC crypto/scompress.o
CC lib/cpumask.o
CC fs/proc/proc_net.o
CC drivers/pci/proc.o
AR drivers/iommu/built-in.a
CC net/ipv4/protocol.o
CC drivers/virtio/virtio_input.o
CC sound/hda/hdac_device.o
CC drivers/tty/vt/defkeymap.o
CC mm/compaction.o
CC sound/hda/hdac_sysfs.o
CC mm/show_mem.o
CC mm/interval_tree.o
CONMK drivers/tty/vt/consolemap_deftbl.c
CC drivers/tty/vt/consolemap_deftbl.o
AR drivers/tty/vt/built-in.a
CC kernel/irq/irqdomain.o
CC fs/nfs/symlink.o
CC drivers/acpi/acpica/evxfevnt.o
CC net/core/neighbour.o
CC kernel/irq/proc.o
AR drivers/char/agp/built-in.a
CC fs/lockd/trace.o
CC net/core/rtnetlink.o
CC drivers/base/regmap/regcache-rbtree.o
CC lib/ctype.o
CC drivers/pci/pci-sysfs.o
CC fs/nfs/unlink.o
CC drivers/base/component.o
CC kernel/module/main.o
AR drivers/char/built-in.a
CC drivers/tty/serial/serial_port.o
CC fs/proc/kcore.o
CC lib/dec_and_lock.o
CC arch/x86/kernel/cpu/proc.o
CC mm/list_lru.o
CC fs/lockd/xdr.o
CC io_uring/fdinfo.o
CC drivers/acpi/acpica/evxfgpe.o
CC drivers/tty/serial/8250/8250_dwlib.o
CC drivers/base/power/wakeirq.o
CC lib/decompress.o
CC drivers/virtio/virtio_dma_buf.o
CC mm/workingset.o
AR drivers/connector/built-in.a
CC lib/decompress_bunzip2.o
CC drivers/base/power/main.o
CC net/ipv6/ip6_output.o
CC crypto/algboss.o
CC net/ethtool/rss.o
CC block/ioprio.o
CC net/ipv6/netfilter/nf_reject_ipv6.o
CC fs/lockd/clnt4xdr.o
CC drivers/acpi/tables.o
CC net/core/utils.o
CC drivers/gpu/drm/ttm/ttm_tt.o
CC sound/hda/hdac_regmap.o
CC drivers/gpu/drm/ttm/ttm_bo.o
CC fs/ext4/mballoc.o
CC fs/proc/vmcore.o
CC fs/nfs/write.o
CC net/xfrm/xfrm_output.o
CC drivers/acpi/acpica/evxfregn.o
CC net/ipv6/netfilter/ip6t_ipv6header.o
CC sound/core/pcm_misc.o
CC arch/x86/kernel/cpu/feat_ctl.o
CC fs/nfs/namespace.o
CC drivers/gpu/drm/display/drm_hdcp_helper.o
CC drivers/base/regmap/regcache-flat.o
CC net/ipv4/ip_input.o
AR net/dsa/built-in.a
CC arch/x86/kernel/dumpstack_32.o
CC drivers/pci/slot.o
CC kernel/irq/migration.o
AR drivers/virtio/built-in.a
AR fs/unicode/built-in.a
CC lib/decompress_inflate.o
CC drivers/tty/serial/8250/8250_pcilib.o
CC kernel/time/time.o
CC drivers/acpi/acpica/exconcat.o
CC kernel/time/timer.o
CC io_uring/cancel.o
AR sound/xen/built-in.a
CC arch/x86/kernel/time.o
CC fs/autofs/init.o
CC fs/9p/vfs_super.o
CC arch/x86/kernel/cpu/intel.o
CC block/badblocks.o
CC net/netfilter/nf_conntrack_standalone.o
CC crypto/testmgr.o
CC sound/hda/hdac_controller.o
CC drivers/tty/serial/earlycon.o
CC security/selinux/ss/conditional.o
CC net/netfilter/nf_conntrack_expect.o
CC sound/core/pcm_memory.o
CC drivers/base/regmap/regcache-maple.o
CC net/ethtool/linkstate.o
CC kernel/irq/cpuhotplug.o
CC drivers/acpi/acpica/exconfig.o
CC lib/decompress_unlz4.o
CC kernel/module/strict_rwx.o
CC drivers/gpu/drm/ttm/ttm_bo_util.o
CC drivers/base/core.o
CC io_uring/waitid.o
CC net/ipv6/netfilter/ip6t_REJECT.o
CC fs/lockd/xdr4.o
CC fs/proc/kmsg.o
CC mm/debug.o
CC drivers/pci/pci-acpi.o
CC drivers/tty/serial/8250/8250_early.o
AR drivers/nfc/built-in.a
CC lib/decompress_unlzma.o
CC lib/decompress_unlzo.o
CC lib/decompress_unxz.o
CC fs/autofs/inode.o
CC lib/decompress_unzstd.o
CC fs/9p/vfs_inode.o
CC drivers/gpu/drm/display/drm_hdmi_helper.o
CC crypto/cmac.o
CC net/ethtool/debug.o
CC drivers/acpi/acpica/exconvrt.o
CC lib/dump_stack.o
CC drivers/base/bus.o
CC drivers/base/power/wakeup.o
CC sound/hda/hdac_stream.o
CC drivers/gpu/drm/display/drm_scdc_helper.o
CC kernel/module/kmod.o
CC drivers/base/power/wakeup_stats.o
CC net/xfrm/xfrm_sysctl.o
CC drivers/pci/iomap.o
CC fs/proc/page.o
CC drivers/base/regmap/regmap-debugfs.o
CC sound/hda/array.o
CC block/blk-rq-qos.o
CC sound/core/memalloc.o
CC kernel/irq/pm.o
CC sound/hda/hdmi_chmap.o
CC net/ipv4/ip_fragment.o
CC block/disk-events.o
CC arch/x86/kernel/cpu/tsx.o
AR fs/hostfs/built-in.a
CC crypto/hmac.o
CC fs/debugfs/inode.o
CC drivers/tty/serial/8250/8250_exar.o
CC drivers/gpu/drm/ttm/ttm_bo_vm.o
CC net/sunrpc/auth_gss/auth_gss.o
CC net/ipv6/ip6_input.o
AR kernel/rcu/built-in.a
CC io_uring/register.o
CC net/ipv6/addrconf.o
CC drivers/acpi/acpica/excreate.o
CC mm/gup.o
CC net/sunrpc/clnt.o
CC arch/x86/kernel/ioport.o
CC sound/core/pcm_timer.o
AR net/wireless/tests/built-in.a
CC security/selinux/ss/mls.o
CC net/wireless/core.o
CC fs/autofs/root.o
CC lib/earlycpio.o
CC net/wireless/sysfs.o
CC net/ipv4/ip_forward.o
CC net/xfrm/xfrm_replay.o
AR net/ipv6/netfilter/built-in.a
CC kernel/futex/core.o
CC net/netfilter/nf_conntrack_helper.o
CC fs/lockd/svc4proc.o
CC lib/extable.o
CC drivers/pci/quirks.o
CC arch/x86/kernel/cpu/intel_epb.o
AR drivers/gpu/drm/display/built-in.a
CC drivers/acpi/acpica/exdebug.o
CC block/blk-ia-ranges.o
CC crypto/crypto_null.o
AR fs/proc/built-in.a
CC drivers/gpu/drm/ttm/ttm_module.o
CC kernel/module/tree_lookup.o
AR drivers/base/regmap/built-in.a
CC drivers/tty/tty_ioctl.o
CC sound/core/seq_device.o
CC net/ethtool/wol.o
CC kernel/irq/msi.o
CC kernel/time/hrtimer.o
CC net/sunrpc/xprt.o
CC fs/9p/vfs_inode_dotl.o
CC fs/debugfs/file.o
CC io_uring/truncate.o
CC mm/mmap_lock.o
CC lib/flex_proportions.o
CC drivers/acpi/acpica/exdump.o
CC sound/hda/trace.o
CC drivers/acpi/osi.o
CC kernel/irq/affinity.o
CC fs/autofs/symlink.o
CC arch/x86/kernel/cpu/amd.o
CC drivers/pci/pci-label.o
CC fs/autofs/waitq.o
CC drivers/acpi/acpica/exfield.o
CC drivers/base/power/trace.o
CC fs/9p/vfs_addr.o
CC drivers/tty/serial/8250/8250_lpss.o
CC drivers/gpu/drm/ttm/ttm_execbuf_util.o
CC fs/nfs/mount_clnt.o
CC crypto/md5.o
CC lib/idr.o
CC drivers/acpi/acpica/exfldio.o
CC drivers/gpu/drm/ttm/ttm_range_manager.o
AR sound/core/built-in.a
CC drivers/tty/serial/8250/8250_mid.o
CC kernel/futex/syscalls.o
CC net/xfrm/xfrm_device.o
CC block/early-lookup.o
CC kernel/module/kallsyms.o
CC fs/tracefs/inode.o
CC net/core/link_watch.o
CC net/wireless/radiotap.o
CC kernel/futex/pi.o
CC net/sunrpc/socklib.o
CC security/selinux/ss/context.o
CC fs/ext4/migrate.o
CC net/ethtool/features.o
CC drivers/base/dd.o
CC net/ipv4/ip_options.o
CC fs/lockd/procfs.o
CC arch/x86/kernel/cpu/hygon.o
CC kernel/irq/matrix.o
CC net/ipv6/addrlabel.o
CC drivers/acpi/acpica/exmisc.o
CC net/netfilter/nf_conntrack_proto.o
CC crypto/sha256_generic.o
CC net/sunrpc/xprtsock.o
CC io_uring/memmap.o
CC drivers/acpi/acpica/exmutex.o
CC lib/irq_regs.o
CC lib/is_single_threaded.o
CC fs/autofs/expire.o
CC block/bounce.o
AR drivers/dax/hmem/built-in.a
AR drivers/dax/built-in.a
AR drivers/base/power/built-in.a
CC net/wireless/util.o
CC io_uring/io-wq.o
CC kernel/cgroup/cgroup.o
AR fs/debugfs/built-in.a
CC sound/hda/hdac_component.o
CC sound/hda/hdac_i915.o
CC drivers/gpu/drm/ttm/ttm_resource.o
CC drivers/tty/tty_ldisc.o
CC fs/9p/vfs_file.o
CC drivers/dma-buf/dma-buf.o
CC drivers/tty/serial/8250/8250_pci.o
CC kernel/trace/trace_clock.o
CC net/wireless/reg.o
CC kernel/module/procfs.o
CC mm/highmem.o
CC kernel/time/timekeeping.o
CC drivers/acpi/acpica/exnames.o
CC arch/x86/kernel/cpu/centaur.o
CC kernel/time/ntp.o
CC lib/klist.o
CC kernel/futex/requeue.o
CC fs/tracefs/event_inode.o
CC fs/nfs/nfstrace.o
CC crypto/sha512_generic.o
CC net/xfrm/xfrm_nat_keepalive.o
CC net/sunrpc/auth_gss/gss_generic_token.o
AR fs/lockd/built-in.a
CC security/selinux/netlabel.o
CC kernel/trace/ring_buffer.o
CC fs/open.o
CC [M] fs/efivarfs/inode.o
CC drivers/acpi/osl.o
CC lib/kobject.o
CC net/core/filter.o
CC drivers/gpu/drm/ttm/ttm_pool.o
CC drivers/acpi/acpica/exoparg1.o
CC net/ipv6/route.o
CC drivers/pci/vgaarb.o
CC kernel/time/clocksource.o
CC drivers/base/syscore.o
CC net/ethtool/privflags.o
CC fs/autofs/dev-ioctl.o
CC sound/hda/intel-dsp-config.o
CC arch/x86/kernel/cpu/transmeta.o
CC arch/x86/kernel/cpu/zhaoxin.o
CC fs/9p/vfs_dir.o
CC kernel/module/sysfs.o
CC kernel/cgroup/rstat.o
CC kernel/bpf/core.o
CC fs/ext4/mmp.o
CC block/bsg.o
CC kernel/futex/waitwake.o
AR kernel/irq/built-in.a
CC fs/nfs/export.o
CC net/ipv4/ip_output.o
CC drivers/tty/serial/8250/8250_pericom.o
CC [M] fs/efivarfs/file.o
CC drivers/acpi/acpica/exoparg2.o
CC net/sunrpc/auth_gss/gss_mech_switch.o
CC crypto/sha3_generic.o
CC mm/memory.o
CC net/ethtool/rings.o
CC drivers/dma-buf/dma-fence.o
CC net/netfilter/nf_conntrack_proto_generic.o
CC kernel/trace/trace.o
AR fs/tracefs/built-in.a
CC lib/kobject_uevent.o
CC fs/read_write.o
CC arch/x86/kernel/cpu/vortex.o
CC io_uring/futex.o
CC sound/hda/intel-nhlt.o
AR net/mac80211/tests/built-in.a
CC net/mac80211/main.o
CC fs/9p/vfs_dentry.o
CC net/xfrm/xfrm_algo.o
CC drivers/acpi/acpica/exoparg3.o
AR fs/autofs/built-in.a
CC sound/hda/intel-sdw-acpi.o
AR drivers/cxl/core/built-in.a
AR drivers/cxl/built-in.a
CC drivers/gpu/drm/ttm/ttm_device.o
CC lib/logic_pio.o
CC fs/9p/v9fs.o
CC fs/file_table.o
CC arch/x86/kernel/cpu/perfctr-watchdog.o
CC crypto/ecb.o
AR kernel/module/built-in.a
CC drivers/acpi/utils.o
CC block/blk-cgroup.o
CC drivers/base/driver.o
AR drivers/pci/built-in.a
CC kernel/time/jiffies.o
CC block/blk-ioprio.o
CC [M] fs/efivarfs/super.o
AR kernel/futex/built-in.a
CC drivers/base/class.o
CC fs/9p/fid.o
AR security/selinux/built-in.a
AR security/built-in.a
CC net/mac80211/status.o
CC io_uring/napi.o
AR drivers/tty/serial/8250/built-in.a
AR drivers/tty/serial/built-in.a
CC fs/ext4/move_extent.o
CC drivers/tty/tty_buffer.o
CC drivers/dma-buf/dma-fence-array.o
CC drivers/acpi/acpica/exoparg6.o
CC kernel/trace/trace_output.o
CC net/mac80211/driver-ops.o
CC net/netlabel/netlabel_user.o
CC crypto/cbc.o
AR sound/hda/built-in.a
CC net/rfkill/core.o
AR sound/virtio/built-in.a
CC kernel/time/timer_list.o
CC sound/sound_core.o
CC net/ethtool/channels.o
CC net/9p/mod.o
CC net/ipv6/ip6_fib.o
CC arch/x86/kernel/cpu/vmware.o
CC net/netfilter/nf_conntrack_proto_tcp.o
CC kernel/time/timeconv.o
CC sound/last.o
CC drivers/gpu/drm/ttm/ttm_sys_manager.o
CC drivers/acpi/acpica/exprep.o
CC net/rfkill/input.o
CC net/sunrpc/sched.o
CC lib/maple_tree.o
CC drivers/dma-buf/dma-fence-chain.o
CC [M] fs/efivarfs/vars.o
CC net/9p/client.o
CC fs/9p/xattr.o
CC drivers/tty/tty_port.o
CC drivers/base/platform.o
CC arch/x86/kernel/dumpstack.o
CC net/sunrpc/auth_gss/svcauth_gss.o
CC fs/nfs/sysfs.o
CC crypto/ctr.o
CC drivers/gpu/drm/ttm/ttm_agp_backend.o
CC net/xfrm/xfrm_user.o
CC block/blk-iolatency.o
AR sound/built-in.a
CC kernel/events/core.o
CC net/dns_resolver/dns_key.o
CC drivers/acpi/acpica/exregion.o
CC net/sunrpc/auth_gss/gss_rpc_upcall.o
CC arch/x86/kernel/cpu/hypervisor.o
CC fs/ext4/namei.o
CC kernel/time/timecounter.o
CC net/netfilter/nf_conntrack_proto_udp.o
CC kernel/time/alarmtimer.o
CC kernel/time/posix-timers.o
CC kernel/time/posix-cpu-timers.o
CC drivers/dma-buf/dma-fence-unwrap.o
AR net/rfkill/built-in.a
CC lib/memcat_p.o
CC net/netlabel/netlabel_kapi.o
CC crypto/gcm.o
CC arch/x86/kernel/cpu/mshyperv.o
CC drivers/acpi/acpica/exresnte.o
CC block/blk-iocost.o
AR fs/9p/built-in.a
CC net/ethtool/coalesce.o
CC net/core/sock_diag.o
LD [M] fs/efivarfs/efivarfs.o
CC drivers/acpi/reboot.o
CC net/ipv4/ip_sockglue.o
CC net/dns_resolver/dns_query.o
CC drivers/gpu/drm/i915/i915_config.o
AR drivers/gpu/drm/ttm/built-in.a
CC net/netlabel/netlabel_domainhash.o
AR io_uring/built-in.a
CC net/netlabel/netlabel_addrlist.o
CC crypto/ccm.o
CC drivers/tty/tty_mutex.o
CC lib/nmi_backtrace.o
CC drivers/acpi/acpica/exresolv.o
CC fs/nfs/fs_context.o
CC drivers/gpu/drm/i915/i915_driver.o
CC kernel/events/ring_buffer.o
CC drivers/dma-buf/dma-resv.o
CC drivers/base/cpu.o
AR kernel/bpf/built-in.a
CC kernel/trace/trace_seq.o
CC net/handshake/alert.o
CC drivers/acpi/acpica/exresop.o
CC kernel/time/posix-clock.o
CC net/mac80211/sta_info.o
CC net/sunrpc/auth.o
CC drivers/tty/tty_ldsem.o
CC net/ethtool/pause.o
AR net/dns_resolver/built-in.a
CC drivers/tty/tty_baudrate.o
CC net/netlabel/netlabel_mgmt.o
CC kernel/cgroup/namespace.o
CC crypto/aes_generic.o
CC arch/x86/kernel/cpu/debugfs.o
CC mm/mincore.o
CC net/ipv4/inet_hashtables.o
CC net/handshake/genl.o
CC net/ethtool/eee.o
CC net/netfilter/nf_conntrack_proto_icmp.o
CC drivers/acpi/nvs.o
CC arch/x86/kernel/nmi.o
CC net/9p/error.o
CC drivers/acpi/acpica/exserial.o
CC net/netlabel/netlabel_unlabeled.o
CC net/ethtool/tsinfo.o
CC net/wireless/scan.o
CC kernel/fork.o
CC drivers/dma-buf/sync_file.o
CC net/ethtool/cabletest.o
CC drivers/base/firmware.o
CC drivers/tty/tty_jobctrl.o
CC net/mac80211/wep.o
CC drivers/tty/n_null.o
CC fs/nfs/nfsroot.o
CC arch/x86/kernel/ldt.o
CC net/wireless/nl80211.o
CC net/sunrpc/auth_gss/gss_rpc_xdr.o
CC net/sunrpc/auth_null.o
CC drivers/acpi/wakeup.o
CC drivers/acpi/acpica/exstore.o
CC net/9p/protocol.o
CC drivers/acpi/acpica/exstoren.o
CC kernel/time/itimer.o
CC net/ipv6/ipv6_sockglue.o
CC arch/x86/kernel/cpu/capflags.o
AR arch/x86/kernel/cpu/built-in.a
CC drivers/gpu/drm/i915/i915_drm_client.o
CC kernel/cgroup/cgroup-v1.o
CC crypto/crc32c_generic.o
CC drivers/base/init.o
CC fs/ext4/page-io.o
CC net/netfilter/nf_conntrack_extend.o
CC lib/objpool.o
CC net/ipv4/inet_timewait_sock.o
CC net/handshake/netlink.o
CC mm/mlock.o
CC kernel/cgroup/freezer.o
AR drivers/dma-buf/built-in.a
CC drivers/acpi/acpica/exstorob.o
CC kernel/exec_domain.o
AR net/xfrm/built-in.a
CC arch/x86/kernel/setup.o
CC kernel/trace/trace_stat.o
CC net/wireless/mlme.o
CC net/core/dev_ioctl.o
CC net/core/tso.o
CC net/core/sock_reuseport.o
CC block/mq-deadline.o
CC fs/nfs/sysctl.o
CC kernel/events/callchain.o
CC crypto/authenc.o
CC net/ipv6/ndisc.o
CC drivers/tty/pty.o
CC net/wireless/ibss.o
CC drivers/acpi/acpica/exsystem.o
CC net/handshake/request.o
CC kernel/time/clockevents.o
CC drivers/base/map.o
CC net/9p/trans_common.o
CC net/ethtool/tunnels.o
CC kernel/events/hw_breakpoint.o
CC drivers/macintosh/mac_hid.o
CC kernel/panic.o
CC fs/super.o
CC net/sunrpc/auth_tls.o
CC fs/ext4/readpage.o
CC arch/x86/kernel/x86_init.o
CC net/sunrpc/auth_gss/trace.o
CC drivers/acpi/acpica/extrace.o
CC net/netlabel/netlabel_cipso_v4.o
CC drivers/base/devres.o
CC kernel/trace/trace_printk.o
CC drivers/gpu/drm/i915/i915_getparam.o
AR drivers/gpu/drm/renesas/rcar-du/built-in.a
AR drivers/gpu/drm/renesas/rz-du/built-in.a
AR drivers/gpu/drm/renesas/built-in.a
CC net/sunrpc/auth_unix.o
CC net/mac80211/aead_api.o
CC net/ipv6/udp.o
CC net/netfilter/nf_conntrack_acct.o
CC net/9p/trans_fd.o
CC kernel/time/tick-common.o
CC kernel/time/tick-broadcast.o
CC drivers/tty/tty_audit.o
CC net/netlabel/netlabel_calipso.o
CC kernel/cgroup/legacy_freezer.o
CC net/ipv4/inet_connection_sock.o
CC block/kyber-iosched.o
CC fs/nfs/nfs3super.o
AR drivers/macintosh/built-in.a
CC crypto/authencesn.o
CC drivers/acpi/acpica/exutils.o
AR drivers/gpu/drm/omapdrm/built-in.a
CC net/wireless/sme.o
CC kernel/trace/pid_list.o
CC mm/mmap.o
CC kernel/cpu.o
CC kernel/exit.o
CC net/ethtool/fec.o
CC arch/x86/kernel/i8259.o
CC drivers/acpi/sleep.o
CC drivers/base/attribute_container.o
CC net/sunrpc/auth_gss/gss_krb5_mech.o
CC fs/ext4/resize.o
AR drivers/scsi/pcmcia/built-in.a
CC drivers/acpi/acpica/hwacpi.o
CC drivers/scsi/scsi.o
AR drivers/nvme/common/built-in.a
AR drivers/nvme/host/built-in.a
AR drivers/nvme/target/built-in.a
AR drivers/nvme/built-in.a
CC net/core/fib_notifier.o
CC arch/x86/kernel/irqinit.o
CC lib/plist.o
CC mm/mmu_gather.o
CC net/wireless/chan.o
CC net/mac80211/wpa.o
CC net/sunrpc/svc.o
CC fs/ext4/super.o
CC drivers/tty/sysrq.o
CC kernel/softirq.o
CC net/handshake/tlshd.o
CC kernel/cgroup/pids.o
CC drivers/gpu/drm/i915/i915_ioctl.o
CC drivers/acpi/acpica/hwesleep.o
CC drivers/base/transport_class.o
CC drivers/base/topology.o
CC net/ipv4/tcp.o
CC net/devres.o
CC net/netfilter/nf_conntrack_seqadj.o
CC net/socket.o
CC kernel/trace/trace_sched_switch.o
CC crypto/lzo.o
AR net/netlabel/built-in.a
CC fs/nfs/nfs3client.o
CC crypto/lzo-rle.o
CC kernel/time/tick-broadcast-hrtimer.o
CC net/9p/trans_virtio.o
CC drivers/acpi/acpica/hwgpe.o
CC drivers/base/container.o
CC kernel/cgroup/rdma.o
CC net/ethtool/eeprom.o
CC kernel/trace/trace_nop.o
CC fs/nfs/nfs3proc.o
CC crypto/rng.o
CC arch/x86/kernel/jump_label.o
CC kernel/time/tick-oneshot.o
CC lib/radix-tree.o
CC net/core/xdp.o
CC kernel/resource.o
CC net/ipv6/udplite.o
CC drivers/ata/libata-core.o
CC drivers/ata/libata-scsi.o
CC block/blk-mq-pci.o
CC drivers/base/property.o
AR drivers/tty/built-in.a
CC kernel/events/uprobes.o
CC drivers/gpu/drm/i915/i915_irq.o
CC net/handshake/trace.o
CC drivers/acpi/acpica/hwregs.o
CC arch/x86/kernel/irq_work.o
CC net/core/flow_offload.o
CC drivers/scsi/hosts.o
CC kernel/sysctl.o
CC mm/mprotect.o
CC net/sunrpc/auth_gss/gss_krb5_seal.o
CC kernel/time/tick-sched.o
CC net/ipv4/tcp_input.o
CC fs/nfs/nfs3xdr.o
CC kernel/cgroup/cpuset.o
CC kernel/cgroup/misc.o
CC lib/ratelimit.o
CC net/netfilter/nf_conntrack_proto_icmpv6.o
CC net/mac80211/scan.o
CC drivers/gpu/drm/i915/i915_mitigations.o
CC net/mac80211/offchannel.o
CC fs/ext4/symlink.o
CC net/ipv4/tcp_output.o
CC fs/char_dev.o
CC drivers/acpi/acpica/hwsleep.o
AR drivers/net/phy/qcom/built-in.a
CC drivers/net/phy/mdio-boardinfo.o
CC crypto/drbg.o
AR drivers/net/pse-pd/built-in.a
CC block/blk-mq-virtio.o
CC net/ethtool/stats.o
CC kernel/trace/blktrace.o
CC kernel/cgroup/debug.o
CC net/core/gro.o
AR net/9p/built-in.a
CC mm/mremap.o
CC lib/rbtree.o
AR drivers/gpu/drm/tilcdc/built-in.a
CC net/ipv6/raw.o
CC drivers/acpi/acpica/hwvalid.o
CC fs/nfs/nfs3acl.o
CC arch/x86/kernel/probe_roms.o
CC drivers/scsi/scsi_ioctl.o
CC drivers/gpu/drm/i915/i915_module.o
CC drivers/acpi/acpica/hwxface.o
CC net/ethtool/phc_vclocks.o
CC lib/seq_buf.o
CC net/mac80211/ht.o
CC drivers/gpu/drm/i915/i915_params.o
CC drivers/base/cacheinfo.o
CC net/sunrpc/auth_gss/gss_krb5_unseal.o
CC drivers/gpu/drm/virtio/virtgpu_drv.o
CC drivers/acpi/acpica/hwxfsleep.o
CC net/netfilter/nf_conntrack_netlink.o
CC kernel/time/timer_migration.o
CC block/blk-mq-debugfs.o
CC net/ipv4/tcp_timer.o
CC net/sunrpc/svcsock.o
CC kernel/trace/trace_events.o
CC net/ipv4/tcp_ipv4.o
CC drivers/net/phy/stubs.o
CC fs/nfs/nfs4proc.o
CC crypto/jitterentropy.o
AR net/handshake/built-in.a
CC net/sysctl_net.o
CC lib/siphash.o
CC arch/x86/kernel/sys_ia32.o
CC crypto/jitterentropy-kcapi.o
CC drivers/acpi/acpica/hwpci.o
CC crypto/ghash-generic.o
AR kernel/events/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_kms.o
CC crypto/hash_info.o
CC kernel/time/vsyscall.o
CC drivers/acpi/device_sysfs.o
CC lib/string.o
CC fs/nfs/nfs4xdr.o
CC net/core/netdev-genl.o
CC drivers/scsi/scsicam.o
CC net/mac80211/agg-tx.o
CC mm/msync.o
AR drivers/gpu/drm/imx/built-in.a
CC drivers/base/swnode.o
CC net/wireless/ethtool.o
CC net/sunrpc/auth_gss/gss_krb5_wrap.o
CC drivers/acpi/acpica/nsaccess.o
CC lib/timerqueue.o
CC net/core/netdev-genl-gen.o
CC net/ethtool/mm.o
CC kernel/trace/trace_export.o
CC crypto/rsapubkey.asn1.o
CC net/wireless/mesh.o
CC fs/stat.o
CC drivers/firewire/init_ohci1394_dma.o
CC crypto/rsaprivkey.asn1.o
AR crypto/built-in.a
CC net/wireless/ap.o
CC fs/ext4/sysfs.o
CC drivers/acpi/acpica/nsalloc.o
CC lib/union_find.o
CC block/blk-pm.o
CC drivers/net/phy/mdio_devres.o
CC net/ethtool/module.o
CC drivers/gpu/drm/i915/i915_pci.o
CC lib/vsprintf.o
CC mm/page_vma_mapped.o
AR kernel/cgroup/built-in.a
CC net/wireless/trace.o
CC net/wireless/ocb.o
CC arch/x86/kernel/ksysfs.o
CC net/wireless/pmsr.o
CC drivers/net/mdio/acpi_mdio.o
CC drivers/gpu/drm/virtio/virtgpu_gem.o
CC drivers/scsi/scsi_error.o
CC drivers/cdrom/cdrom.o
CC drivers/acpi/acpica/nsarguments.o
CC net/ipv6/icmp.o
AR drivers/gpu/drm/i2c/built-in.a
CC net/ipv6/mcast.o
CC lib/win_minmax.o
CC drivers/net/phy/phy.o
AR drivers/firewire/built-in.a
CC kernel/time/timekeeping_debug.o
CC kernel/trace/trace_event_perf.o
AR drivers/gpu/drm/panel/built-in.a
CC net/sunrpc/auth_gss/gss_krb5_crypto.o
CC block/holder.o
CC drivers/base/auxiliary.o
CC drivers/scsi/scsi_lib.o
CC arch/x86/kernel/bootflag.o
CC drivers/acpi/acpica/nsconvert.o
CC net/netfilter/nf_conntrack_ftp.o
GEN net/wireless/shipped-certs.c
CC drivers/acpi/device_pm.o
CC drivers/ata/libata-eh.o
CC drivers/scsi/constants.o
CC drivers/scsi/scsi_lib_dma.o
CC drivers/net/mdio/fwnode_mdio.o
CC mm/pagewalk.o
CC lib/xarray.o
CC drivers/gpu/drm/i915/i915_scatterlist.o
CC drivers/gpu/drm/virtio/virtgpu_vram.o
CC net/core/gso.o
AR drivers/net/pcs/built-in.a
AR drivers/gpu/drm/bridge/analogix/built-in.a
AR drivers/gpu/drm/bridge/cadence/built-in.a
CC net/ipv4/tcp_minisocks.o
AR drivers/gpu/drm/bridge/imx/built-in.a
AR drivers/gpu/drm/bridge/synopsys/built-in.a
AR drivers/gpu/drm/bridge/built-in.a
CC net/ethtool/cmis_fw_update.o
CC net/ipv6/reassembly.o
CC drivers/base/devtmpfs.o
CC drivers/net/phy/phy-c45.o
CC drivers/acpi/acpica/nsdump.o
CC kernel/time/namespace.o
CC fs/ext4/xattr.o
AR block/built-in.a
CC kernel/capability.o
CC arch/x86/kernel/e820.o
CC net/ipv4/tcp_cong.o
CC net/sunrpc/auth_gss/gss_krb5_keys.o
CC net/core/net-sysfs.o
CC drivers/gpu/drm/virtio/virtgpu_display.o
CC drivers/acpi/acpica/nseval.o
CC mm/pgtable-generic.o
CC kernel/trace/trace_events_filter.o
CC kernel/trace/trace_events_trigger.o
CC drivers/gpu/drm/i915/i915_switcheroo.o
CC mm/rmap.o
AR drivers/net/mdio/built-in.a
CC drivers/acpi/proc.o
CC lib/lockref.o
CC mm/vmalloc.o
CC drivers/acpi/acpica/nsinit.o
CC drivers/gpu/drm/virtio/virtgpu_vq.o
CC mm/vma.o
CC net/netfilter/nf_conntrack_irc.o
CC kernel/ptrace.o
CC net/sunrpc/svcauth.o
AR kernel/time/built-in.a
CC net/ipv4/tcp_metrics.o
AR drivers/cdrom/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_fence.o
CC drivers/gpu/drm/virtio/virtgpu_object.o
CC drivers/base/module.o
CC drivers/ata/libata-transport.o
CC net/ethtool/cmis_cdb.o
CC drivers/acpi/bus.o
CC kernel/user.o
CC net/ethtool/pse-pd.o
CC drivers/gpu/drm/i915/i915_sysfs.o
CC drivers/gpu/drm/virtio/virtgpu_debugfs.o
CC arch/x86/kernel/pci-dma.o
CC drivers/acpi/acpica/nsload.o
CC net/mac80211/agg-rx.o
CC drivers/net/phy/phy-core.o
CC drivers/base/auxiliary_sysfs.o
CC net/wireless/shipped-certs.o
CC fs/ext4/xattr_hurd.o
CC drivers/scsi/scsi_scan.o
AR drivers/auxdisplay/built-in.a
CC fs/exec.o
CC drivers/gpu/drm/i915/i915_utils.o
CC drivers/gpu/drm/i915/intel_clock_gating.o
CC net/netfilter/nf_conntrack_sip.o
AR net/sunrpc/auth_gss/built-in.a
CC fs/pipe.o
CC net/core/hotdata.o
CC lib/bcd.o
CC drivers/gpu/drm/virtio/virtgpu_plane.o
CC drivers/gpu/drm/virtio/virtgpu_ioctl.o
CC lib/sort.o
CC drivers/acpi/acpica/nsnames.o
AR drivers/gpu/drm/hisilicon/built-in.a
CC net/ipv6/tcp_ipv6.o
CC net/sunrpc/svcauth_unix.o
CC drivers/ata/libata-trace.o
CC lib/parser.o
GEN drivers/scsi/scsi_devinfo_tbl.c
CC net/mac80211/vht.o
CC drivers/base/devcoredump.o
CC drivers/base/platform-msi.o
CC drivers/ata/libata-sata.o
CC fs/nfs/nfs4state.o
CC arch/x86/kernel/quirks.o
CC fs/ext4/xattr_trusted.o
CC drivers/ata/libata-sff.o
CC net/netfilter/nf_nat_core.o
CC arch/x86/kernel/kdebugfs.o
CC net/core/netdev_rx_queue.o
CC kernel/trace/trace_eprobe.o
CC drivers/acpi/acpica/nsobject.o
CC drivers/scsi/scsi_devinfo.o
CC fs/namei.o
CC net/ipv4/tcp_fastopen.o
CC net/ipv4/tcp_rate.o
CC mm/process_vm_access.o
AR drivers/net/ethernet/3com/built-in.a
CC lib/debug_locks.o
CC drivers/net/ethernet/8390/ne2k-pci.o
CC net/ethtool/plca.o
CC fs/fcntl.o
CC lib/random32.o
AR drivers/net/wireless/admtek/built-in.a
CC net/netfilter/nf_nat_proto.o
AR drivers/net/wireless/ath/built-in.a
AR drivers/net/wireless/atmel/built-in.a
AR drivers/net/wireless/broadcom/built-in.a
CC fs/ioctl.o
AR drivers/net/wireless/intel/built-in.a
CC drivers/gpu/drm/i915/intel_device_info.o
CC drivers/acpi/acpica/nsparse.o
AR drivers/net/wireless/intersil/built-in.a
AR drivers/net/wireless/marvell/built-in.a
AR drivers/net/wireless/mediatek/built-in.a
AR drivers/net/wireless/microchip/built-in.a
AR drivers/net/wireless/purelifi/built-in.a
CC drivers/net/phy/phy_device.o
AR drivers/net/wireless/quantenna/built-in.a
AR drivers/net/wireless/ralink/built-in.a
AR drivers/net/wireless/realtek/built-in.a
AR drivers/net/wireless/rsi/built-in.a
CC drivers/ata/libata-pmp.o
AR drivers/net/wireless/silabs/built-in.a
CC drivers/base/physical_location.o
AR drivers/net/wireless/st/built-in.a
CC drivers/net/ethernet/8390/8390.o
AR drivers/net/wireless/ti/built-in.a
CC drivers/acpi/glue.o
CC net/mac80211/he.o
AR drivers/net/wireless/zydas/built-in.a
AR drivers/net/wireless/virtual/built-in.a
CC mm/page_alloc.o
AR drivers/net/wireless/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_prime.o
CC kernel/trace/trace_kprobe.o
CC arch/x86/kernel/alternative.o
CC arch/x86/kernel/i8253.o
CC lib/bust_spinlocks.o
CC arch/x86/kernel/hw_breakpoint.o
CC net/ipv6/ping.o
CC kernel/signal.o
CC net/netfilter/nf_nat_helper.o
CC net/sunrpc/addr.o
CC drivers/acpi/acpica/nspredef.o
CC drivers/ata/libata-acpi.o
AR drivers/net/usb/built-in.a
CC kernel/trace/error_report-traces.o
CC drivers/scsi/scsi_sysctl.o
CC drivers/acpi/scan.o
CC drivers/base/trace.o
CC net/core/net-procfs.o
CC net/ipv4/tcp_recovery.o
CC drivers/gpu/drm/virtio/virtgpu_trace_points.o
CC drivers/acpi/acpica/nsprepkg.o
CC net/ethtool/phy.o
CC net/mac80211/s1g.o
CC lib/kasprintf.o
CC fs/ext4/xattr_user.o
CC kernel/sys.o
CC net/ipv6/exthdrs.o
CC net/netfilter/nf_nat_masquerade.o
CC mm/init-mm.o
CC drivers/gpu/drm/i915/intel_memory_region.o
CC drivers/net/mii.o
AR drivers/gpu/drm/mxsfb/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_submit.o
CC net/ipv6/datagram.o
CC drivers/pcmcia/cs.o
AR drivers/gpu/drm/tiny/built-in.a
CC fs/nfs/nfs4renewd.o
CC drivers/acpi/mipi-disco-img.o
CC net/core/netpoll.o
CC lib/bitmap.o
CC drivers/scsi/scsi_proc.o
AR drivers/net/ethernet/8390/built-in.a
CC drivers/acpi/acpica/nsrepair.o
AR drivers/gpu/drm/xlnx/built-in.a
AR drivers/net/ethernet/adaptec/built-in.a
CC drivers/scsi/scsi_debugfs.o
AR drivers/net/ethernet/agere/built-in.a
AR drivers/net/ethernet/alacritech/built-in.a
AR drivers/net/ethernet/alteon/built-in.a
CC drivers/scsi/scsi_trace.o
AR drivers/net/ethernet/amazon/built-in.a
CC drivers/scsi/scsi_logging.o
AR drivers/net/ethernet/amd/built-in.a
AR drivers/net/ethernet/aquantia/built-in.a
AR drivers/net/ethernet/arc/built-in.a
AR drivers/net/ethernet/asix/built-in.a
AR drivers/net/ethernet/atheros/built-in.a
AR drivers/net/ethernet/cadence/built-in.a
CC drivers/net/ethernet/broadcom/bnx2.o
AR drivers/base/built-in.a
CC drivers/acpi/acpica/nsrepair2.o
AR drivers/net/ethernet/brocade/built-in.a
CC drivers/scsi/scsi_pm.o
CC lib/scatterlist.o
CC arch/x86/kernel/tsc.o
CC drivers/net/ethernet/broadcom/tg3.o
CC fs/readdir.o
CC drivers/acpi/resource.o
CC drivers/net/phy/linkmode.o
CC fs/ext4/fast_commit.o
CC drivers/scsi/scsi_bsg.o
CC drivers/net/loopback.o
CC lib/list_sort.o
AR drivers/gpu/drm/gud/built-in.a
CC drivers/pcmcia/socket_sysfs.o
CC drivers/ata/libata-pata-timings.o
AR drivers/gpu/drm/solomon/built-in.a
CC drivers/acpi/acpica/nssearch.o
CC net/netfilter/nf_nat_ftp.o
CC net/netfilter/nf_nat_irc.o
AR net/ethtool/built-in.a
CC net/ipv6/ip6_flowlabel.o
CC net/ipv6/inet6_connection_sock.o
CC drivers/pcmcia/cardbus.o
AR drivers/gpu/drm/virtio/built-in.a
AR drivers/net/ethernet/cavium/common/built-in.a
CC net/ipv4/tcp_ulp.o
CC drivers/ata/ahci.o
AR drivers/net/ethernet/cavium/thunder/built-in.a
AR drivers/net/ethernet/cavium/liquidio/built-in.a
AR drivers/net/ethernet/cavium/octeon/built-in.a
CC drivers/ata/libahci.o
CC net/ipv4/tcp_offload.o
AR drivers/net/ethernet/cavium/built-in.a
CC net/mac80211/ibss.o
CC net/core/fib_rules.o
CC drivers/acpi/acpica/nsutils.o
CC drivers/pcmcia/ds.o
CC net/mac80211/iface.o
CC fs/select.o
CC drivers/gpu/drm/i915/intel_pcode.o
CC net/ipv4/tcp_plb.o
CC kernel/trace/power-traces.o
CC [M] drivers/gpu/drm/scheduler/sched_main.o
CC net/netfilter/nf_nat_sip.o
HOSTCC drivers/gpu/drm/xe/xe_gen_wa_oob
CC net/mac80211/link.o
CC fs/nfs/nfs4super.o
CC net/mac80211/rate.o
CC fs/dcache.o
CC net/sunrpc/rpcb_clnt.o
AR drivers/net/ethernet/chelsio/built-in.a
GEN xe_wa_oob.c xe_wa_oob.h
CC fs/inode.o
CC [M] drivers/gpu/drm/xe/xe_bb.o
CC drivers/scsi/scsi_common.o
CC net/ipv6/udp_offload.o
CC drivers/net/phy/phy_link_topology.o
CC fs/ext4/orphan.o
CC drivers/acpi/acpica/nswalk.o
CC arch/x86/kernel/tsc_msr.o
CC drivers/gpu/drm/i915/intel_region_ttm.o
CC net/ipv6/seg6.o
CC drivers/gpu/drm/drm_atomic.o
CC lib/uuid.o
CC net/ipv4/datagram.o
CC [M] drivers/gpu/drm/xe/xe_bo.o
CC drivers/scsi/scsi_transport_spi.o
CC [M] drivers/gpu/drm/xe/xe_bo_evict.o
CC [M] drivers/gpu/drm/xe/xe_devcoredump.o
CC lib/iov_iter.o
CC drivers/net/phy/mdio_bus.o
CC mm/memblock.o
CC [M] drivers/gpu/drm/scheduler/sched_fence.o
CC fs/ext4/acl.o
CC drivers/acpi/acpica/nsxfeval.o
CC arch/x86/kernel/io_delay.o
CC drivers/pcmcia/pcmcia_resource.o
CC arch/x86/kernel/rtc.o
CC net/ipv6/fib6_notifier.o
CC drivers/acpi/acpi_processor.o
CC drivers/acpi/acpica/nsxfname.o
CC drivers/acpi/acpica/nsxfobj.o
CC drivers/net/netconsole.o
CC lib/clz_ctz.o
CC drivers/acpi/acpica/psargs.o
CC fs/attr.o
CC fs/nfs/nfs4file.o
CC drivers/acpi/processor_core.o
CC drivers/gpu/drm/drm_atomic_uapi.o
CC fs/ext4/xattr_security.o
CC arch/x86/kernel/resource.o
CC drivers/usb/common/common.o
CC drivers/input/serio/serio.o
CC drivers/usb/common/debug.o
CC [M] drivers/gpu/drm/scheduler/sched_entity.o
CC drivers/gpu/drm/i915/intel_runtime_pm.o
CC drivers/pcmcia/cistpl.o
CC net/netfilter/x_tables.o
CC net/sunrpc/timer.o
CC kernel/umh.o
CC drivers/ata/ata_piix.o
CC [M] drivers/gpu/drm/xe/xe_device.o
CC drivers/usb/core/usb.o
CC drivers/gpu/drm/drm_auth.o
CC net/core/net-traces.o
AR drivers/net/ethernet/cisco/built-in.a
CC drivers/net/virtio_net.o
AS arch/x86/kernel/irqflags.o
CC net/netfilter/xt_tcpudp.o
CC drivers/usb/core/hub.o
CC arch/x86/kernel/static_call.o
AR drivers/usb/phy/built-in.a
CC drivers/acpi/processor_pdc.o
CC kernel/trace/rpm-traces.o
CC drivers/acpi/acpica/psloop.o
CC net/ipv4/raw.o
CC arch/x86/kernel/process.o
CC fs/bad_inode.o
CC kernel/workqueue.o
CC net/ipv6/rpl.o
CC fs/nfs/delegation.o
CC drivers/input/serio/i8042.o
CC drivers/input/serio/serport.o
CC drivers/net/phy/mdio_device.o
CC net/ipv4/udp.o
CC mm/slub.o
CC drivers/net/net_failover.o
AR drivers/usb/common/built-in.a
CC drivers/scsi/virtio_scsi.o
LD [M] drivers/gpu/drm/scheduler/gpu-sched.o
CC drivers/input/keyboard/atkbd.o
CC drivers/input/mouse/psmouse-base.o
CC net/ipv4/udplite.o
AR drivers/input/joystick/built-in.a
CC drivers/gpu/drm/i915/intel_sbi.o
CC drivers/rtc/lib.o
CC drivers/acpi/acpica/psobject.o
AR fs/ext4/built-in.a
CC drivers/gpu/drm/drm_blend.o
CC kernel/trace/trace_dynevent.o
CC fs/file.o
CC fs/nfs/nfs4idmap.o
CC mm/madvise.o
CC arch/x86/kernel/ptrace.o
CC lib/bsearch.o
CC net/netfilter/xt_CONNSECMARK.o
CC drivers/usb/core/hcd.o
CC drivers/net/phy/swphy.o
CC net/sunrpc/xdr.o
CC drivers/input/serio/libps2.o
CC drivers/acpi/ec.o
CC drivers/acpi/acpica/psopcode.o
CC [M] drivers/gpu/drm/xe/xe_device_sysfs.o
CC drivers/ata/pata_amd.o
CC drivers/input/mouse/synaptics.o
CC drivers/pcmcia/pcmcia_cis.o
CC arch/x86/kernel/tls.o
CC drivers/rtc/class.o
CC drivers/gpu/drm/drm_bridge.o
CC net/ipv4/udp_offload.o
CC net/netfilter/xt_NFLOG.o
CC net/ipv6/ioam6.o
CC net/ipv4/arp.o
CC mm/page_io.o
CC lib/find_bit.o
CC drivers/acpi/acpica/psopinfo.o
CC drivers/ata/pata_oldpiix.o
CC drivers/scsi/sd.o
CC kernel/trace/trace_probe.o
CC drivers/gpu/drm/i915/intel_step.o
CC drivers/net/phy/fixed_phy.o
CC drivers/rtc/interface.o
AR drivers/input/keyboard/built-in.a
CC drivers/usb/mon/mon_main.o
CC drivers/usb/host/pci-quirks.o
CC net/core/selftests.o
CC net/mac80211/michael.o
CC net/core/ptp_classifier.o
CC lib/llist.o
CC drivers/rtc/nvmem.o
CC drivers/rtc/dev.o
CC [M] drivers/gpu/drm/xe/xe_dma_buf.o
CC drivers/ata/pata_sch.o
AR drivers/input/serio/built-in.a
CC net/mac80211/tkip.o
AR drivers/net/ethernet/cortina/built-in.a
CC drivers/acpi/acpica/psparse.o
AR drivers/net/ethernet/dec/tulip/built-in.a
CC drivers/pcmcia/rsrc_mgr.o
AR drivers/net/ethernet/dec/built-in.a
CC drivers/pcmcia/rsrc_nonstatic.o
CC lib/lwq.o
CC drivers/i2c/algos/i2c-algo-bit.o
CC drivers/i2c/busses/i2c-i801.o
CC drivers/acpi/dock.o
CC arch/x86/kernel/step.o
CC lib/memweight.o
CC drivers/gpu/drm/drm_cache.o
AR drivers/input/tablet/built-in.a
CC drivers/usb/host/ehci-hcd.o
CC lib/kfifo.o
CC kernel/trace/trace_uprobe.o
CC net/netfilter/xt_SECMARK.o
CC kernel/trace/rethook.o
CC drivers/usb/mon/mon_stat.o
CC net/ipv6/sysctl_net_ipv6.o
CC drivers/acpi/acpica/psscope.o
CC drivers/acpi/acpica/pstree.o
AR drivers/net/ethernet/dlink/built-in.a
CC fs/nfs/callback.o
CC drivers/input/mouse/focaltech.o
AR drivers/i3c/built-in.a
CC drivers/usb/class/usblp.o
AR drivers/input/touchscreen/built-in.a
CC drivers/gpu/drm/drm_color_mgmt.o
CC kernel/pid.o
AR drivers/net/ethernet/emulex/built-in.a
CC drivers/usb/core/urb.o
CC [M] drivers/gpu/drm/xe/xe_drm_client.o
CC drivers/gpu/drm/i915/intel_uncore.o
CC drivers/ata/pata_mpiix.o
CC drivers/ata/ata_generic.o
CC drivers/net/phy/realtek.o
CC net/ipv6/xfrm6_policy.o
CC kernel/task_work.o
CC drivers/usb/storage/scsiglue.o
CC drivers/pcmcia/yenta_socket.o
CC net/mac80211/aes_cmac.o
CC drivers/acpi/acpica/psutils.o
CC drivers/input/mouse/alps.o
CC arch/x86/kernel/i8237.o
CC net/ipv4/icmp.o
AR drivers/input/misc/built-in.a
CC drivers/usb/storage/protocol.o
CC drivers/usb/mon/mon_text.o
AR drivers/i2c/muxes/built-in.a
CC drivers/rtc/proc.o
CC drivers/gpu/drm/i915/intel_wakeref.o
AR drivers/i2c/algos/built-in.a
CC arch/x86/kernel/stacktrace.o
CC drivers/usb/core/message.o
CC lib/percpu-refcount.o
AR drivers/net/ethernet/engleder/built-in.a
CC lib/rhashtable.o
AR drivers/net/ethernet/ezchip/built-in.a
CC drivers/usb/storage/transport.o
CC drivers/acpi/pci_root.o
CC drivers/rtc/sysfs.o
CC drivers/rtc/rtc-mc146818-lib.o
CC drivers/usb/storage/usb.o
CC drivers/acpi/acpica/pswalk.o
AR drivers/net/ethernet/fujitsu/built-in.a
CC net/netfilter/xt_TCPMSS.o
CC net/core/netprio_cgroup.o
CC drivers/usb/core/driver.o
AR drivers/i2c/busses/built-in.a
CC drivers/i2c/i2c-boardinfo.o
CC lib/base64.o
CC drivers/scsi/sr.o
CC drivers/input/input.o
AR drivers/ata/built-in.a
CC drivers/rtc/rtc-cmos.o
CC drivers/usb/mon/mon_bin.o
CC fs/filesystems.o
AR drivers/usb/class/built-in.a
CC net/sunrpc/sunrpc_syms.o
CC drivers/gpu/drm/i915/vlv_sideband.o
CC kernel/extable.o
CC drivers/acpi/acpica/psxface.o
CC arch/x86/kernel/reboot.o
CC fs/nfs/callback_xdr.o
CC arch/x86/kernel/msr.o
CC drivers/acpi/pci_link.o
CC drivers/input/mouse/byd.o
CC drivers/gpu/drm/i915/vlv_suspend.o
CC drivers/usb/storage/initializers.o
AR net/wireless/built-in.a
CC net/ipv6/xfrm6_state.o
CC drivers/i2c/i2c-core-base.o
AR drivers/net/ethernet/fungible/built-in.a
CC [M] drivers/gpu/drm/xe/xe_exec.o
CC fs/namespace.o
CC drivers/acpi/acpica/rsaddr.o
CC drivers/usb/host/ehci-pci.o
CC fs/nfs/callback_proc.o
AR drivers/net/phy/built-in.a
CC lib/once.o
CC mm/swap_state.o
CC net/ipv6/xfrm6_input.o
CC arch/x86/kernel/cpuid.o
CC net/mac80211/aes_gmac.o
CC drivers/usb/storage/sierra_ms.o
CC net/mac80211/fils_aead.o
AR drivers/pcmcia/built-in.a
CC net/netfilter/xt_conntrack.o
AR kernel/trace/built-in.a
CC arch/x86/kernel/early-quirks.o
CC net/ipv4/devinet.o
CC drivers/gpu/drm/i915/soc/intel_dram.o
CC drivers/gpu/drm/drm_connector.o
CC net/core/netclassid_cgroup.o
CC drivers/acpi/acpica/rscalc.o
CC net/mac80211/cfg.o
CC net/ipv6/xfrm6_output.o
CC lib/refcount.o
CC [M] drivers/gpu/drm/xe/xe_execlist.o
CC net/ipv4/af_inet.o
CC drivers/i2c/i2c-core-smbus.o
CC mm/swapfile.o
CC drivers/scsi/sr_ioctl.o
AR drivers/media/i2c/built-in.a
CC drivers/input/mouse/logips2pp.o
AR drivers/media/tuners/built-in.a
AR drivers/media/rc/keymaps/built-in.a
AR drivers/media/rc/built-in.a
AR drivers/media/common/b2c2/built-in.a
AR drivers/media/common/saa7146/built-in.a
AR drivers/media/common/siano/built-in.a
AR drivers/media/common/v4l2-tpg/built-in.a
CC drivers/usb/core/config.o
AR drivers/usb/misc/built-in.a
AR drivers/media/common/videobuf2/built-in.a
CC [M] drivers/gpu/drm/xe/xe_exec_queue.o
CC net/netfilter/xt_policy.o
AR drivers/media/common/built-in.a
CC net/ipv6/xfrm6_protocol.o
AR drivers/rtc/built-in.a
CC net/ipv6/netfilter.o
CC net/sunrpc/cache.o
AR drivers/media/platform/allegro-dvt/built-in.a
CC lib/rcuref.o
CC drivers/scsi/sr_vendor.o
CC kernel/params.o
AR drivers/media/pci/ttpci/built-in.a
CC fs/seq_file.o
AR drivers/media/platform/amlogic/meson-ge2d/built-in.a
AR drivers/usb/mon/built-in.a
AR drivers/media/platform/amlogic/built-in.a
CC fs/nfs/nfs4namespace.o
AR drivers/media/pci/b2c2/built-in.a
CC net/sunrpc/rpc_pipe.o
CC fs/nfs/nfs4getroot.o
AR drivers/media/pci/pluto2/built-in.a
AR drivers/media/platform/amphion/built-in.a
CC drivers/usb/core/file.o
AR drivers/media/pci/dm1105/built-in.a
AR drivers/media/platform/aspeed/built-in.a
AR drivers/media/pci/pt1/built-in.a
AR drivers/media/platform/atmel/built-in.a
AR drivers/media/pci/pt3/built-in.a
AR drivers/media/platform/broadcom/built-in.a
AR drivers/media/pci/mantis/built-in.a
AR drivers/media/platform/cadence/built-in.a
AR drivers/media/pci/ngene/built-in.a
AR drivers/media/platform/chips-media/coda/built-in.a
AR drivers/media/pci/ddbridge/built-in.a
AR drivers/media/platform/chips-media/wave5/built-in.a
AR drivers/media/pci/saa7146/built-in.a
AR drivers/media/platform/chips-media/built-in.a
AR drivers/media/pci/smipcie/built-in.a
AR drivers/media/platform/imagination/built-in.a
AR drivers/media/pci/netup_unidvb/built-in.a
AR drivers/media/platform/intel/built-in.a
AR drivers/media/pci/intel/ipu3/built-in.a
AR drivers/media/platform/marvell/built-in.a
CC drivers/acpi/acpica/rscreate.o
AR drivers/media/pci/intel/ivsc/built-in.a
AR drivers/media/pci/intel/built-in.a
AR drivers/media/platform/mediatek/jpeg/built-in.a
AR drivers/media/pci/built-in.a
AR drivers/media/platform/mediatek/mdp/built-in.a
CC lib/usercopy.o
AR drivers/media/platform/mediatek/vcodec/common/built-in.a
AR drivers/media/platform/mediatek/vcodec/encoder/built-in.a
CC fs/nfs/nfs4client.o
CC drivers/scsi/sg.o
AR drivers/media/platform/mediatek/vcodec/decoder/built-in.a
AR drivers/media/platform/mediatek/vcodec/built-in.a
CC drivers/usb/storage/option_ms.o
AR drivers/media/platform/mediatek/vpu/built-in.a
AR drivers/media/platform/mediatek/mdp3/built-in.a
AR drivers/media/platform/mediatek/built-in.a
AR drivers/media/platform/microchip/built-in.a
AR drivers/media/platform/nuvoton/built-in.a
AR drivers/media/platform/nvidia/tegra-vde/built-in.a
AR drivers/media/platform/nvidia/built-in.a
CC net/core/dst_cache.o
AR drivers/media/platform/nxp/dw100/built-in.a
CC drivers/gpu/drm/i915/soc/intel_gmch.o
AR drivers/media/platform/nxp/imx-jpeg/built-in.a
AR drivers/media/platform/nxp/imx8-isi/built-in.a
AR drivers/media/platform/nxp/built-in.a
CC drivers/acpi/acpica/rsdumpinfo.o
AR drivers/media/platform/qcom/camss/built-in.a
CC kernel/kthread.o
AR drivers/media/platform/qcom/venus/built-in.a
CC arch/x86/kernel/smp.o
AR drivers/media/platform/raspberrypi/pisp_be/built-in.a
AR drivers/media/platform/qcom/built-in.a
AR drivers/media/platform/raspberrypi/built-in.a
CC lib/errseq.o
CC drivers/input/mouse/lifebook.o
CC drivers/usb/early/ehci-dbgp.o
AR drivers/media/platform/renesas/rcar-vin/built-in.a
AR drivers/media/platform/renesas/rzg2l-cru/built-in.a
CC drivers/gpu/drm/drm_crtc.o
AR drivers/media/platform/renesas/vsp1/built-in.a
CC kernel/sys_ni.o
AR drivers/media/platform/renesas/built-in.a
AR drivers/media/platform/rockchip/rga/built-in.a
CC drivers/acpi/pci_irq.o
AR drivers/media/platform/rockchip/rkisp1/built-in.a
AR drivers/media/platform/rockchip/built-in.a
CC drivers/usb/storage/usual-tables.o
CC lib/bucket_locks.o
AR drivers/media/platform/samsung/exynos-gsc/built-in.a
CC drivers/i2c/i2c-core-acpi.o
AR drivers/media/platform/samsung/exynos4-is/built-in.a
AR drivers/media/platform/samsung/s3c-camif/built-in.a
CC net/ipv4/igmp.o
CC drivers/acpi/acpi_apd.o
CC drivers/acpi/acpi_platform.o
AR drivers/media/platform/samsung/s5p-g2d/built-in.a
AR drivers/media/platform/samsung/s5p-jpeg/built-in.a
CC drivers/acpi/acpi_pnp.o
AR drivers/media/platform/samsung/s5p-mfc/built-in.a
AR drivers/media/platform/samsung/built-in.a
AR drivers/media/platform/st/sti/bdisp/built-in.a
CC net/sunrpc/sysfs.o
CC drivers/i2c/i2c-smbus.o
AR drivers/media/platform/sunxi/sun4i-csi/built-in.a
AR drivers/media/platform/st/sti/c8sectpfe/built-in.a
AR drivers/media/platform/sunxi/sun6i-csi/built-in.a
AR drivers/media/platform/st/sti/delta/built-in.a
CC drivers/acpi/acpica/rsinfo.o
CC net/ipv6/proc.o
AR drivers/media/platform/sunxi/sun6i-mipi-csi2/built-in.a
AR drivers/media/platform/st/sti/hva/built-in.a
AR drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/built-in.a
CC drivers/usb/host/ohci-hcd.o
AR drivers/media/platform/st/stm32/built-in.a
AR drivers/media/platform/st/built-in.a
AR drivers/media/platform/sunxi/sun8i-di/built-in.a
CC net/ipv4/fib_frontend.o
AR drivers/media/platform/sunxi/sun8i-rotate/built-in.a
AR drivers/media/platform/sunxi/built-in.a
AR drivers/media/platform/ti/am437x/built-in.a
AR drivers/media/platform/ti/cal/built-in.a
AR drivers/media/platform/ti/vpe/built-in.a
AR drivers/media/platform/ti/davinci/built-in.a
AR drivers/media/platform/ti/j721e-csi2rx/built-in.a
AR drivers/media/platform/ti/omap/built-in.a
AR drivers/media/platform/ti/omap3isp/built-in.a
CC net/ipv6/syncookies.o
AR drivers/media/platform/ti/built-in.a
CC net/ipv4/fib_semantics.o
CC net/ipv4/fib_trie.o
AR drivers/media/platform/verisilicon/built-in.a
AR drivers/media/platform/via/built-in.a
CC net/ipv4/fib_notifier.o
AR drivers/media/platform/xilinx/built-in.a
AR drivers/media/platform/built-in.a
CC net/core/gro_cells.o
AR drivers/media/usb/b2c2/built-in.a
AR drivers/media/usb/dvb-usb/built-in.a
CC net/core/failover.o
CC net/ipv4/inet_fragment.o
CC drivers/usb/core/buffer.o
AR drivers/media/usb/dvb-usb-v2/built-in.a
AR drivers/media/usb/s2255/built-in.a
AR drivers/pps/clients/built-in.a
AR drivers/media/usb/siano/built-in.a
AR drivers/pps/generators/built-in.a
AR drivers/media/usb/ttusb-budget/built-in.a
CC drivers/pps/pps.o
AR drivers/media/usb/ttusb-dec/built-in.a
AR drivers/media/usb/built-in.a
AR drivers/media/mmc/siano/built-in.a
AR drivers/media/mmc/built-in.a
CC drivers/acpi/acpica/rsio.o
CC drivers/ptp/ptp_clock.o
CC drivers/input/mouse/trackpoint.o
AR drivers/media/firewire/built-in.a
AR drivers/media/spi/built-in.a
CC drivers/power/supply/power_supply_core.o
CC drivers/acpi/acpica/rsirq.o
CC drivers/usb/host/ohci-pci.o
CC lib/generic-radix-tree.o
AR drivers/media/test-drivers/built-in.a
AR drivers/media/built-in.a
AR drivers/usb/storage/built-in.a
CC drivers/pps/kapi.o
CC arch/x86/kernel/smpboot.o
CC net/ipv6/calipso.o
CC net/netfilter/xt_state.o
AR drivers/net/ethernet/google/built-in.a
CC net/ipv4/ping.o
CC lib/bitmap-str.o
CC [M] drivers/gpu/drm/xe/xe_force_wake.o
CC drivers/gpu/drm/i915/soc/intel_pch.o
CC net/sunrpc/svc_xprt.o
CC drivers/power/supply/power_supply_sysfs.o
CC drivers/ptp/ptp_chardev.o
AR drivers/usb/early/built-in.a
CC drivers/acpi/acpica/rslist.o
CC drivers/input/mouse/cypress_ps2.o
CC drivers/usb/host/uhci-hcd.o
CC fs/nfs/nfs4session.o
AR drivers/net/ethernet/huawei/built-in.a
CC drivers/input/input-compat.o
CC kernel/nsproxy.o
CC drivers/net/ethernet/intel/e1000/e1000_main.o
AR drivers/i2c/built-in.a
CC drivers/pps/sysfs.o
CC drivers/power/supply/power_supply_leds.o
CC drivers/net/ethernet/intel/e1000e/82571.o
CC drivers/acpi/acpica/rsmemory.o
CC drivers/net/ethernet/intel/e100.o
CC drivers/usb/core/sysfs.o
CC kernel/notifier.o
CC drivers/scsi/scsi_sysfs.o
AR drivers/net/ethernet/i825xx/built-in.a
CC drivers/ptp/ptp_sysfs.o
CC net/mac80211/ethtool.o
CC drivers/input/input-mt.o
CC net/sunrpc/xprtmultipath.o
CC drivers/gpu/drm/i915/soc/intel_rom.o
CC drivers/acpi/power.o
CC mm/swap_slots.o
CC mm/dmapool.o
AR drivers/pps/built-in.a
CC [M] drivers/gpu/drm/xe/xe_ggtt.o
CC [M] drivers/gpu/drm/xe/xe_gpu_scheduler.o
CC lib/string_helpers.o
CC [M] net/netfilter/nf_log_syslog.o
AR net/core/built-in.a
CC fs/nfs/dns_resolve.o
CC drivers/net/ethernet/intel/e1000e/ich8lan.o
CC drivers/acpi/acpica/rsmisc.o
CC net/sunrpc/stats.o
CC drivers/power/supply/power_supply_hwmon.o
CC kernel/ksysfs.o
CC drivers/ptp/ptp_vclock.o
AR drivers/net/ethernet/broadcom/built-in.a
CC drivers/net/ethernet/intel/e1000e/80003es2lan.o
CC drivers/gpu/drm/i915/i915_memcpy.o
CC drivers/input/mouse/psmouse-smbus.o
CC net/ipv4/ip_tunnel_core.o
CC net/ipv4/gre_offload.o
CC drivers/usb/host/xhci.o
CC drivers/acpi/event.o
CC [M] drivers/gpu/drm/xe/xe_gsc.o
CC arch/x86/kernel/tsc_sync.o
CC fs/nfs/nfs4trace.o
CC drivers/acpi/acpica/rsserial.o
CC drivers/acpi/acpica/rsutils.o
CC fs/nfs/nfs4sysctl.o
CC drivers/net/ethernet/intel/e1000/e1000_hw.o
AR drivers/power/supply/built-in.a
AR drivers/power/built-in.a
CC drivers/usb/core/endpoint.o
AR drivers/net/ethernet/microsoft/built-in.a
CC fs/xattr.o
CC drivers/acpi/evged.o
CC mm/hugetlb.o
CC drivers/acpi/acpica/rsxface.o
CC drivers/net/ethernet/intel/e1000e/mac.o
CC drivers/net/ethernet/intel/e1000/e1000_ethtool.o
CC net/ipv4/metrics.o
CC drivers/gpu/drm/drm_displayid.o
CC fs/libfs.o
CC lib/hexdump.o
CC drivers/net/ethernet/intel/e1000/e1000_param.o
CC kernel/cred.o
CC net/ipv6/ah6.o
CC drivers/usb/core/devio.o
CC net/mac80211/rx.o
CC drivers/gpu/drm/i915/i915_mm.o
CC drivers/ptp/ptp_kvm_x86.o
CC net/ipv6/esp6.o
CC arch/x86/kernel/setup_percpu.o
CC lib/kstrtox.o
CC drivers/acpi/sysfs.o
AR drivers/scsi/built-in.a
CC drivers/usb/host/xhci-mem.o
CC [M] drivers/gpu/drm/xe/xe_gsc_debugfs.o
CC net/ipv6/sit.o
CC lib/iomap.o
CC drivers/gpu/drm/i915/i915_sw_fence.o
AR drivers/input/mouse/built-in.a
CC drivers/input/input-poller.o
CC drivers/acpi/acpica/tbdata.o
CC net/sunrpc/sysctl.o
CC [M] drivers/gpu/drm/xe/xe_gsc_proxy.o
CC drivers/hwmon/hwmon.o
CC drivers/net/ethernet/intel/e1000e/manage.o
CC arch/x86/kernel/mpparse.o
CC net/mac80211/spectmgmt.o
CC net/ipv6/addrconf_core.o
AR drivers/thermal/broadcom/built-in.a
AR drivers/thermal/renesas/built-in.a
AR drivers/thermal/samsung/built-in.a
CC drivers/thermal/intel/intel_tcc.o
AR drivers/thermal/st/built-in.a
AR drivers/thermal/qcom/built-in.a
CC drivers/ptp/ptp_kvm_common.o
AR drivers/thermal/tegra/built-in.a
CC drivers/acpi/acpica/tbfadt.o
AR drivers/thermal/mediatek/built-in.a
CC drivers/gpu/drm/i915/i915_sw_fence_work.o
CC drivers/acpi/property.o
CC lib/iomap_copy.o
CC drivers/thermal/intel/therm_throt.o
CC kernel/reboot.o
CC [M] net/netfilter/xt_mark.o
CC [M] drivers/gpu/drm/xe/xe_gsc_submit.o
CC net/ipv4/netlink.o
CC drivers/input/ff-core.o
CC fs/fs-writeback.o
CC drivers/gpu/drm/drm_drv.o
AR drivers/net/ethernet/litex/built-in.a
CC fs/pnode.o
CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.o
CC drivers/usb/host/xhci-ext-caps.o
CC lib/devres.o
CC net/ipv4/nexthop.o
AR drivers/watchdog/built-in.a
CC net/mac80211/tx.o
CC [M] net/netfilter/xt_nat.o
CC drivers/gpu/drm/i915/i915_syncmap.o
CC drivers/acpi/debugfs.o
CC drivers/usb/core/notify.o
CC drivers/input/touchscreen.o
CC drivers/acpi/acpica/tbfind.o
CC arch/x86/kernel/trace_clock.o
CC [M] drivers/gpu/drm/xe/xe_gt.o
CC drivers/acpi/acpi_lpat.o
CC mm/mmu_notifier.o
CC drivers/acpi/acpica/tbinstal.o
CC drivers/md/md.o
AR drivers/ptp/built-in.a
CC drivers/md/md-bitmap.o
CC drivers/md/md-autodetect.o
CC drivers/md/dm.o
CC arch/x86/kernel/trace.o
CC mm/migrate.o
CC lib/check_signature.o
CC net/mac80211/key.o
CC kernel/async.o
CC drivers/net/ethernet/intel/e1000e/nvm.o
CC drivers/gpu/drm/i915/i915_user_extensions.o
CC [M] net/netfilter/xt_LOG.o
AR drivers/net/ethernet/marvell/octeon_ep/built-in.a
AR drivers/net/ethernet/marvell/octeon_ep_vf/built-in.a
AR drivers/net/ethernet/marvell/octeontx2/built-in.a
AR drivers/net/ethernet/marvell/prestera/built-in.a
CC drivers/net/ethernet/marvell/sky2.o
CC drivers/cpufreq/cpufreq.o
AR drivers/net/ethernet/mellanox/built-in.a
CC lib/interval_tree.o
CC drivers/acpi/acpi_pcc.o
AR drivers/hwmon/built-in.a
CC drivers/acpi/ac.o
CC fs/splice.o
CC drivers/cpuidle/cpuidle.o
CC [M] drivers/gpu/drm/xe/xe_gt_ccs_mode.o
CC drivers/cpuidle/governors/menu.o
AR drivers/net/ethernet/meta/built-in.a
CC net/ipv4/udp_tunnel_stub.o
CC drivers/cpufreq/freq_table.o
CC drivers/thermal/thermal_core.o
AR net/sunrpc/built-in.a
CC net/ipv4/ip_tunnel.o
CC drivers/acpi/acpica/tbprint.o
CC drivers/usb/core/generic.o
CC fs/sync.o
CC drivers/input/ff-memless.o
CC drivers/net/ethernet/intel/e1000e/phy.o
CC drivers/acpi/acpica/tbutils.o
CC drivers/usb/core/quirks.o
CC drivers/md/dm-table.o
CC lib/assoc_array.o
AR drivers/thermal/intel/built-in.a
CC lib/bitrev.o
CC [M] net/netfilter/xt_MASQUERADE.o
CC fs/utimes.o
CC drivers/gpu/drm/i915/i915_debugfs.o
CC kernel/range.o
AR drivers/net/ethernet/intel/e1000/built-in.a
CC net/ipv6/exthdrs_core.o
CC net/ipv6/ip6_checksum.o
CC arch/x86/kernel/rethook.o
CC kernel/smpboot.o
CC drivers/acpi/button.o
CC drivers/cpufreq/cpufreq_performance.o
CC drivers/cpuidle/driver.o
AR drivers/net/ethernet/micrel/built-in.a
CC drivers/usb/host/xhci-ring.o
CC drivers/input/sparse-keymap.o
CC drivers/cpuidle/governors/haltpoll.o
AR drivers/mmc/built-in.a
AR drivers/ufs/built-in.a
AR drivers/net/ethernet/microchip/built-in.a
CC lib/crc-ccitt.o
AR drivers/firmware/arm_ffa/built-in.a
CC drivers/acpi/acpica/tbxface.o
AR drivers/firmware/arm_scmi/built-in.a
AR drivers/firmware/broadcom/built-in.a
AR drivers/firmware/cirrus/built-in.a
AR drivers/firmware/meson/built-in.a
AR drivers/firmware/microchip/built-in.a
CC mm/page_counter.o
CC drivers/firmware/efi/libstub/efi-stub-helper.o
AR drivers/crypto/stm32/built-in.a
CC drivers/clocksource/acpi_pm.o
AR drivers/crypto/xilinx/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gt_clock.o
AR drivers/crypto/hisilicon/built-in.a
AR drivers/crypto/intel/keembay/built-in.a
AR drivers/crypto/intel/ixp4xx/built-in.a
AR drivers/crypto/intel/built-in.a
CC [M] net/netfilter/xt_addrtype.o
AR drivers/crypto/starfive/built-in.a
AR drivers/crypto/built-in.a
CC drivers/net/ethernet/intel/e1000e/param.o
CC drivers/net/ethernet/intel/e1000e/ethtool.o
CC net/mac80211/util.o
CC drivers/usb/core/devices.o
AR drivers/net/ethernet/mscc/built-in.a
CC drivers/acpi/acpica/tbxfload.o
CC net/ipv4/sysctl_net_ipv4.o
CC drivers/clocksource/i8253.o
CC drivers/gpu/drm/drm_dumb_buffers.o
AR drivers/firmware/imx/built-in.a
CC lib/crc16.o
CC drivers/firmware/efi/efi-bgrt.o
CC arch/x86/kernel/vmcore_info_32.o
CC kernel/ucount.o
CC drivers/hid/usbhid/hid-core.o
CC drivers/hid/hid-core.o
CC net/ipv6/ip6_icmp.o
CC drivers/input/vivaldi-fmap.o
CC drivers/firmware/efi/efi.o
AR drivers/platform/x86/amd/built-in.a
AR drivers/platform/x86/intel/built-in.a
CC drivers/platform/x86/wmi.o
AR drivers/platform/surface/built-in.a
CC drivers/usb/core/phy.o
CC drivers/firmware/efi/libstub/gop.o
AR fs/nfs/built-in.a
CC arch/x86/kernel/machine_kexec_32.o
CC drivers/gpu/drm/drm_edid.o
HOSTCC lib/gen_crc32table
CC drivers/acpi/acpica/tbxfroot.o
CC drivers/usb/host/xhci-hub.o
CC mm/hugetlb_cgroup.o
CC drivers/thermal/thermal_sysfs.o
CC drivers/net/ethernet/intel/e1000e/netdev.o
CC drivers/mailbox/mailbox.o
CC drivers/md/dm-target.o
AR drivers/clocksource/built-in.a
CC lib/xxhash.o
CC drivers/input/input-leds.o
AS arch/x86/kernel/relocate_kernel_32.o
CC [M] drivers/gpu/drm/xe/xe_gt_freq.o
CC drivers/usb/host/xhci-dbg.o
CC kernel/regset.o
CC drivers/hid/usbhid/hiddev.o
AR drivers/cpuidle/governors/built-in.a
CC drivers/cpuidle/governor.o
CC drivers/firmware/efi/vars.o
CC drivers/acpi/fan_core.o
CC drivers/net/ethernet/intel/e1000e/ptp.o
CC drivers/firmware/efi/reboot.o
CC net/mac80211/parse.o
CC [M] drivers/gpu/drm/xe/xe_gt_idle.o
CC net/ipv6/output_core.o
CC drivers/acpi/acpica/utaddress.o
CC drivers/gpu/drm/i915/i915_debugfs_params.o
CC fs/d_path.o
CC drivers/acpi/acpica/utalloc.o
AR drivers/net/ethernet/myricom/built-in.a
CC drivers/mailbox/pcc.o
CC kernel/ksyms_common.o
CC drivers/usb/core/port.o
CC lib/genalloc.o
CC drivers/thermal/thermal_trip.o
CC drivers/cpufreq/cpufreq_userspace.o
CC drivers/cpuidle/sysfs.o
CC drivers/firmware/efi/memattr.o
CC drivers/firmware/efi/libstub/secureboot.o
CC drivers/gpu/drm/i915/i915_pmu.o
CC arch/x86/kernel/crash_dump_32.o
CC mm/early_ioremap.o
CC drivers/hid/usbhid/hid-pidff.o
CC drivers/input/evdev.o
AR net/netfilter/built-in.a
AR drivers/firmware/psci/built-in.a
CC lib/percpu_counter.o
CC drivers/platform/x86/wmi-bmof.o
AR drivers/net/ethernet/natsemi/built-in.a
CC drivers/firmware/efi/tpm.o
CC drivers/platform/x86/eeepc-laptop.o
CC drivers/acpi/acpica/utascii.o
CC drivers/md/dm-linear.o
CC lib/audit.o
CC drivers/usb/core/hcd-pci.o
CC drivers/cpufreq/cpufreq_ondemand.o
AR drivers/perf/built-in.a
CC drivers/firmware/efi/libstub/tpm.o
CC net/ipv4/proc.o
CC net/ipv4/fib_rules.o
CC net/mac80211/wme.o
CC drivers/thermal/thermal_helpers.o
CC arch/x86/kernel/crash.o
CC drivers/md/dm-stripe.o
AR drivers/firmware/qcom/built-in.a
AR drivers/net/ethernet/neterion/built-in.a
CC kernel/groups.o
AR drivers/mailbox/built-in.a
CC fs/stack.o
CC [M] drivers/gpu/drm/xe/xe_gt_mcr.o
CC drivers/acpi/acpica/utbuffer.o
CC drivers/hid/hid-input.o
CC drivers/cpuidle/poll_state.o
CC drivers/gpu/drm/drm_eld.o
CC arch/x86/kernel/module.o
AR drivers/hwtracing/intel_th/built-in.a
CC drivers/firmware/efi/memmap.o
CC drivers/usb/core/usb-acpi.o
CC lib/syscall.o
CC drivers/cpuidle/cpuidle-haltpoll.o
AR drivers/android/built-in.a
CC drivers/hid/hid-quirks.o
CC drivers/gpu/drm/drm_encoder.o
CC drivers/usb/host/xhci-trace.o
AR drivers/firmware/smccc/built-in.a
CC arch/x86/kernel/doublefault_32.o
CC net/mac80211/chan.o
CC drivers/firmware/efi/libstub/file.o
CC drivers/md/dm-ioctl.o
CC net/ipv6/protocol.o
CC lib/errname.o
CC arch/x86/kernel/early_printk.o
CC kernel/kcmp.o
CC mm/secretmem.o
CC drivers/usb/host/xhci-debugfs.o
CC fs/fs_struct.o
AR drivers/nvmem/layouts/built-in.a
AR drivers/net/ethernet/marvell/built-in.a
CC drivers/nvmem/core.o
CC net/ipv6/ip6_offload.o
CC drivers/thermal/thermal_hwmon.o
CC net/mac80211/trace.o
CC drivers/acpi/acpica/utcksum.o
CC mm/hmm.o
CC [M] drivers/gpu/drm/xe/xe_gt_pagefault.o
CC drivers/cpufreq/cpufreq_governor.o
AR drivers/firmware/tegra/built-in.a
AR drivers/cpuidle/built-in.a
CC drivers/gpu/drm/drm_file.o
CC net/ipv4/ipmr.o
CC drivers/md/dm-io.o
AR drivers/input/built-in.a
CC drivers/acpi/fan_attr.o
CC net/ipv4/ipmr_base.o
CC mm/memfd.o
CC lib/nlattr.o
CC net/ipv6/tcpv6_offload.o
CC drivers/platform/x86/p2sb.o
CC lib/cpu_rmap.o
AR drivers/firmware/xilinx/built-in.a
CC drivers/gpu/drm/i915/gt/gen2_engine_cs.o
CC kernel/freezer.o
CC mm/ptdump.o
AR drivers/hid/usbhid/built-in.a
CC drivers/gpu/drm/drm_fourcc.o
CC drivers/acpi/acpica/utcopy.o
CC net/mac80211/mlme.o
CC drivers/thermal/gov_step_wise.o
CC drivers/usb/host/xhci-pci.o
AR drivers/usb/core/built-in.a
CC drivers/gpu/drm/i915/gt/gen6_engine_cs.o
CC fs/statfs.o
CC lib/dynamic_queue_limits.o
CC drivers/gpu/drm/i915/gt/gen6_ppgtt.o
CC drivers/acpi/fan_hwmon.o
CC drivers/firmware/efi/libstub/mem.o
CC drivers/firmware/efi/libstub/random.o
CC arch/x86/kernel/hpet.o
CC drivers/md/dm-kcopyd.o
CC net/mac80211/tdls.o
CC fs/fs_pin.o
CC drivers/firmware/efi/capsule.o
CC drivers/firmware/dmi_scan.o
CC drivers/acpi/acpica/utexcep.o
CC drivers/cpufreq/cpufreq_governor_attr_set.o
CC drivers/cpufreq/acpi-cpufreq.o
CC drivers/acpi/acpi_video.o
CC drivers/gpu/drm/i915/gt/gen7_renderclear.o
CC [M] drivers/gpu/drm/xe/xe_gt_sysfs.o
AR drivers/net/ethernet/netronome/built-in.a
CC drivers/hid/hid-debug.o
CC drivers/thermal/gov_user_space.o
AR drivers/platform/x86/built-in.a
AR drivers/platform/built-in.a
AR drivers/net/ethernet/ni/built-in.a
CC drivers/firmware/efi/esrt.o
CC drivers/firmware/dmi-id.o
CC drivers/acpi/acpica/utdebug.o
AR drivers/nvmem/built-in.a
CC kernel/profile.o
CC kernel/stacktrace.o
CC drivers/cpufreq/amd-pstate.o
CC drivers/hid/hidraw.o
CC net/ipv4/syncookies.o
CC mm/execmem.o
CC arch/x86/kernel/amd_nb.o
CC drivers/firmware/efi/runtime-wrappers.o
CC fs/nsfs.o
CC drivers/acpi/video_detect.o
CC drivers/net/ethernet/nvidia/forcedeth.o
CC drivers/md/dm-sysfs.o
CC drivers/firmware/efi/libstub/randomalloc.o
CC drivers/acpi/acpica/utdecode.o
CC drivers/firmware/efi/libstub/pci.o
CC drivers/firmware/efi/libstub/skip_spaces.o
AR drivers/thermal/built-in.a
AR drivers/net/ethernet/oki-semi/built-in.a
CC net/ipv4/tunnel4.o
CC drivers/firmware/memmap.o
CC drivers/cpufreq/amd-pstate-trace.o
CC net/ipv6/exthdrs_offload.o
CC drivers/acpi/processor_driver.o
CC net/ipv4/ipconfig.o
CC lib/glob.o
CC arch/x86/kernel/kvm.o
CC drivers/hid/hid-generic.o
CC [M] drivers/gpu/drm/xe/xe_gt_throttle.o
CC drivers/cpufreq/intel_pstate.o
CC fs/fs_types.o
CC drivers/md/dm-stats.o
CC drivers/gpu/drm/drm_framebuffer.o
CC drivers/acpi/processor_thermal.o
CC drivers/hid/hid-a4tech.o
CC drivers/acpi/acpica/utdelete.o
CC drivers/firmware/efi/libstub/lib-cmdline.o
AR mm/built-in.a
CC kernel/dma.o
AR drivers/net/ethernet/packetengines/built-in.a
AR drivers/net/ethernet/qlogic/built-in.a
CC drivers/acpi/processor_idle.o
CC lib/strncpy_from_user.o
CC kernel/smp.o
CC lib/strnlen_user.o
CC net/mac80211/ocb.o
CC drivers/gpu/drm/i915/gt/gen8_engine_cs.o
CC drivers/acpi/processor_throttling.o
CC drivers/firmware/efi/libstub/lib-ctype.o
CC drivers/firmware/efi/capsule-loader.o
CC fs/fs_context.o
CC drivers/firmware/efi/libstub/alignedmem.o
CC net/mac80211/airtime.o
CC drivers/gpu/drm/i915/gt/gen8_ppgtt.o
AR drivers/usb/host/built-in.a
CC drivers/md/dm-rq.o
AR drivers/usb/built-in.a
CC arch/x86/kernel/kvmclock.o
CC drivers/acpi/acpica/uterror.o
CC lib/net_utils.o
CC drivers/gpu/drm/drm_gem.o
CC kernel/uid16.o
CC drivers/firmware/efi/earlycon.o
CC lib/sg_pool.o
AR drivers/net/ethernet/qualcomm/emac/built-in.a
AR drivers/net/ethernet/qualcomm/built-in.a
CC drivers/md/dm-io-rewind.o
CC net/ipv6/inet6_hashtables.o
CC drivers/md/dm-builtin.o
CC drivers/firmware/efi/libstub/relocate.o
CC drivers/acpi/acpica/uteval.o
CC [M] drivers/gpu/drm/xe/xe_gt_tlb_invalidation.o
CC drivers/gpu/drm/drm_ioctl.o
CC drivers/hid/hid-apple.o
CC net/ipv4/netfilter.o
CC arch/x86/kernel/paravirt.o
CC drivers/gpu/drm/i915/gt/intel_breadcrumbs.o
CC fs/fs_parser.o
CC net/mac80211/eht.o
CC drivers/gpu/drm/i915/gt/intel_context.o
CC net/ipv4/tcp_cubic.o
CC drivers/md/dm-raid1.o
CC arch/x86/kernel/pvclock.o
CC drivers/net/ethernet/realtek/8139too.o
CC drivers/firmware/efi/libstub/printk.o
CC drivers/acpi/processor_perflib.o
CC drivers/firmware/efi/libstub/vsprintf.o
CC drivers/acpi/acpica/utglobal.o
CC drivers/gpu/drm/i915/gt/intel_context_sseu.o
CC [M] drivers/gpu/drm/xe/xe_gt_topology.o
CC lib/stackdepot.o
CC fs/fsopen.o
CC drivers/hid/hid-belkin.o
CC drivers/gpu/drm/drm_lease.o
AR drivers/net/ethernet/renesas/built-in.a
CC net/mac80211/led.o
CC net/ipv6/mcast_snoop.o
CC drivers/net/ethernet/realtek/r8169_main.o
CC net/ipv4/tcp_sigpool.o
CC drivers/acpi/acpica/uthex.o
CC lib/asn1_decoder.o
CC drivers/gpu/drm/i915/gt/intel_engine_cs.o
CC drivers/acpi/container.o
CC kernel/kallsyms.o
GEN lib/oid_registry_data.c
CC drivers/acpi/acpica/utids.o
CC lib/ucs2_string.o
CC drivers/gpu/drm/i915/gt/intel_engine_heartbeat.o
CC net/mac80211/pm.o
CC fs/init.o
AR drivers/net/ethernet/rdc/built-in.a
CC arch/x86/kernel/pcspeaker.o
CC arch/x86/kernel/check.o
CC lib/sbitmap.o
AR drivers/net/ethernet/intel/e1000e/built-in.a
CC drivers/firmware/efi/libstub/x86-stub.o
AR drivers/net/ethernet/intel/built-in.a
CC drivers/gpu/drm/drm_managed.o
CC drivers/net/ethernet/realtek/r8169_firmware.o
CC [M] drivers/gpu/drm/xe/xe_guc.o
CC drivers/gpu/drm/i915/gt/intel_engine_pm.o
CC drivers/firmware/efi/libstub/smbios.o
AR drivers/firmware/efi/built-in.a
CC drivers/md/dm-log.o
CC net/mac80211/rc80211_minstrel_ht.o
CC net/ipv4/cipso_ipv4.o
CC lib/group_cpus.o
CC arch/x86/kernel/uprobes.o
AR drivers/net/ethernet/rocker/built-in.a
CC drivers/net/ethernet/realtek/r8169_phy_config.o
CC drivers/acpi/acpica/utinit.o
CC kernel/acct.o
CC drivers/hid/hid-cherry.o
CC drivers/gpu/drm/i915/gt/intel_engine_user.o
CC drivers/md/dm-region-hash.o
CC net/ipv4/xfrm4_policy.o
CC kernel/vmcore_info.o
CC net/ipv4/xfrm4_state.o
CC drivers/gpu/drm/i915/gt/intel_execlists_submission.o
CC drivers/acpi/acpica/utlock.o
AR drivers/net/ethernet/samsung/built-in.a
AR drivers/net/ethernet/seeq/built-in.a
AR drivers/net/ethernet/silan/built-in.a
AR drivers/net/ethernet/sis/built-in.a
CC drivers/gpu/drm/drm_mm.o
CC drivers/gpu/drm/drm_mode_config.o
STUBCPY drivers/firmware/efi/libstub/alignedmem.stub.o
CC arch/x86/kernel/perf_regs.o
CC drivers/hid/hid-chicony.o
CC drivers/gpu/drm/i915/gt/intel_ggtt.o
CC arch/x86/kernel/tracepoint.o
AR drivers/cpufreq/built-in.a
CC lib/fw_table.o
CC kernel/elfcorehdr.o
CC drivers/acpi/acpica/utmath.o
CC drivers/gpu/drm/drm_mode_object.o
AR drivers/net/ethernet/sfc/built-in.a
CC arch/x86/kernel/itmt.o
CC net/ipv4/xfrm4_input.o
CC fs/kernel_read_file.o
CC drivers/hid/hid-cypress.o
AR net/ipv6/built-in.a
CC kernel/crash_reserve.o
CC kernel/kexec_core.o
AR drivers/net/ethernet/smsc/built-in.a
CC drivers/gpu/drm/drm_modes.o
AR drivers/net/ethernet/socionext/built-in.a
CC drivers/gpu/drm/i915/gt/intel_ggtt_fencing.o
AR drivers/net/ethernet/stmicro/built-in.a
CC drivers/gpu/drm/drm_modeset_lock.o
CC drivers/gpu/drm/i915/gt/intel_gt.o
AR lib/lib.a
STUBCPY drivers/firmware/efi/libstub/efi-stub-helper.stub.o
STUBCPY drivers/firmware/efi/libstub/file.stub.o
CC drivers/acpi/acpica/utmisc.o
STUBCPY drivers/firmware/efi/libstub/gop.stub.o
STUBCPY drivers/firmware/efi/libstub/lib-cmdline.stub.o
STUBCPY drivers/firmware/efi/libstub/lib-ctype.stub.o
STUBCPY drivers/firmware/efi/libstub/mem.stub.o
CC drivers/gpu/drm/drm_plane.o
STUBCPY drivers/firmware/efi/libstub/pci.stub.o
STUBCPY drivers/firmware/efi/libstub/printk.stub.o
STUBCPY drivers/firmware/efi/libstub/random.stub.o
STUBCPY drivers/firmware/efi/libstub/randomalloc.stub.o
STUBCPY drivers/firmware/efi/libstub/relocate.stub.o
STUBCPY drivers/firmware/efi/libstub/secureboot.stub.o
CC net/mac80211/wbrf.o
STUBCPY drivers/firmware/efi/libstub/skip_spaces.stub.o
CC net/ipv4/xfrm4_output.o
STUBCPY drivers/firmware/efi/libstub/smbios.stub.o
AR drivers/net/ethernet/sun/built-in.a
CC fs/mnt_idmapping.o
STUBCPY drivers/firmware/efi/libstub/tpm.stub.o
STUBCPY drivers/firmware/efi/libstub/vsprintf.stub.o
CC [M] drivers/gpu/drm/xe/xe_guc_ads.o
STUBCPY drivers/firmware/efi/libstub/x86-stub.stub.o
AR drivers/firmware/efi/libstub/lib.a
CC drivers/gpu/drm/drm_prime.o
CC drivers/hid/hid-ezkey.o
AR drivers/firmware/built-in.a
GEN lib/crc32table.h
CC lib/oid_registry.o
CC arch/x86/kernel/umip.o
AR drivers/net/ethernet/nvidia/built-in.a
CC drivers/hid/hid-gyration.o
CC fs/remap_range.o
CC net/ipv4/xfrm4_protocol.o
CC drivers/acpi/acpica/utmutex.o
CC kernel/crash_core.o
CC drivers/md/dm-zero.o
CC drivers/gpu/drm/drm_print.o
CC [M] drivers/gpu/drm/xe/xe_guc_capture.o
AR drivers/net/ethernet/tehuti/built-in.a
CC fs/pidfs.o
CC arch/x86/kernel/unwind_frame.o
CC drivers/acpi/thermal_lib.o
CC drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.o
CC drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.o
CC fs/buffer.o
CC drivers/acpi/thermal.o
CC drivers/gpu/drm/drm_property.o
CC drivers/acpi/acpica/utnonansi.o
AR drivers/net/ethernet/ti/built-in.a
CC [M] drivers/gpu/drm/xe/xe_guc_ct.o
CC [M] drivers/gpu/drm/xe/xe_guc_db_mgr.o
CC drivers/gpu/drm/drm_rect.o
CC [M] drivers/gpu/drm/xe/xe_guc_hwconfig.o
CC kernel/kexec.o
CC lib/crc32.o
CC drivers/acpi/nhlt.o
CC drivers/acpi/acpica/utobject.o
CC [M] drivers/gpu/drm/xe/xe_guc_id_mgr.o
CC drivers/hid/hid-ite.o
AR drivers/net/ethernet/vertexcom/built-in.a
CC kernel/utsname.o
CC drivers/gpu/drm/i915/gt/intel_gt_clock_utils.o
CC fs/mpage.o
CC drivers/acpi/acpi_memhotplug.o
AR drivers/md/built-in.a
CC drivers/hid/hid-kensington.o
CC [M] drivers/gpu/drm/xe/xe_guc_klv_helpers.o
CC drivers/gpu/drm/i915/gt/intel_gt_debugfs.o
AR drivers/net/ethernet/via/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.o
CC drivers/acpi/ioapic.o
CC drivers/hid/hid-lg.o
CC fs/proc_namespace.o
AR arch/x86/kernel/built-in.a
AR drivers/net/ethernet/wangxun/built-in.a
CC drivers/acpi/acpica/utosi.o
AR arch/x86/built-in.a
CC kernel/pid_namespace.o
CC drivers/gpu/drm/i915/gt/intel_gt_irq.o
CC drivers/acpi/battery.o
CC drivers/gpu/drm/i915/gt/intel_gt_mcr.o
CC drivers/acpi/acpica/utownerid.o
CC drivers/acpi/bgrt.o
AR lib/built-in.a
CC fs/direct-io.o
AR drivers/net/ethernet/xilinx/built-in.a
AR drivers/net/ethernet/wiznet/built-in.a
CC [M] drivers/gpu/drm/xe/xe_guc_log.o
CC drivers/gpu/drm/drm_syncobj.o
AR drivers/net/ethernet/xircom/built-in.a
CC drivers/acpi/acpica/utpredef.o
CC kernel/stop_machine.o
CC drivers/acpi/acpica/utresdecode.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm.o
CC fs/eventpoll.o
CC drivers/hid/hid-lgff.o
AR drivers/net/ethernet/synopsys/built-in.a
CC fs/anon_inodes.o
CC [M] drivers/gpu/drm/xe/xe_guc_pc.o
AR drivers/net/ethernet/pensando/built-in.a
CC drivers/hid/hid-lg4ff.o
CC drivers/acpi/acpica/utresrc.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.o
CC drivers/acpi/spcr.o
AR net/ipv4/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_pm_irq.o
CC fs/signalfd.o
CC kernel/audit.o
CC drivers/hid/hid-lg-g15.o
CC drivers/gpu/drm/i915/gt/intel_gt_requests.o
CC [M] drivers/gpu/drm/xe/xe_guc_submit.o
CC drivers/acpi/acpica/utstate.o
CC drivers/gpu/drm/i915/gt/intel_gt_sysfs.o
CC drivers/gpu/drm/drm_sysfs.o
CC fs/timerfd.o
CC drivers/acpi/acpica/utstring.o
CC [M] drivers/gpu/drm/xe/xe_heci_gsc.o
CC drivers/acpi/acpica/utstrsuppt.o
CC drivers/acpi/acpica/utstrtoul64.o
CC kernel/auditfilter.o
CC drivers/hid/hid-microsoft.o
AR drivers/net/ethernet/realtek/built-in.a
AR drivers/net/ethernet/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.o
CC drivers/acpi/acpica/utxface.o
AR drivers/net/built-in.a
CC kernel/auditsc.o
CC fs/eventfd.o
CC drivers/gpu/drm/drm_trace_points.o
CC fs/aio.o
CC drivers/hid/hid-monterey.o
CC drivers/gpu/drm/i915/gt/intel_gtt.o
CC drivers/gpu/drm/i915/gt/intel_llc.o
CC kernel/audit_watch.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine.o
CC drivers/acpi/acpica/utxfinit.o
CC drivers/gpu/drm/i915/gt/intel_lrc.o
CC drivers/hid/hid-ntrig.o
CC fs/locks.o
CC drivers/acpi/acpica/utxferror.o
CC kernel/audit_fsnotify.o
CC drivers/gpu/drm/drm_vblank.o
CC drivers/hid/hid-pl.o
CC fs/binfmt_misc.o
CC kernel/audit_tree.o
CC drivers/acpi/acpica/utxfmutex.o
CC drivers/gpu/drm/drm_vblank_work.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.o
CC drivers/gpu/drm/i915/gt/intel_migrate.o
CC kernel/kprobes.o
CC drivers/hid/hid-petalynx.o
CC fs/binfmt_script.o
CC drivers/gpu/drm/i915/gt/intel_mocs.o
CC drivers/gpu/drm/drm_vma_manager.o
CC kernel/seccomp.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine_group.o
CC fs/binfmt_elf.o
CC drivers/hid/hid-redragon.o
CC kernel/relay.o
CC drivers/gpu/drm/drm_writeback.o
CC drivers/hid/hid-samsung.o
CC [M] drivers/gpu/drm/xe/xe_hw_fence.o
CC drivers/hid/hid-sony.o
CC drivers/gpu/drm/i915/gt/intel_ppgtt.o
AR drivers/acpi/acpica/built-in.a
AR drivers/acpi/built-in.a
CC drivers/gpu/drm/drm_panel.o
CC kernel/utsname_sysctl.o
CC drivers/gpu/drm/i915/gt/intel_rc6.o
CC fs/mbcache.o
CC [M] drivers/gpu/drm/xe/xe_huc.o
CC drivers/gpu/drm/drm_pci.o
CC kernel/delayacct.o
CC drivers/hid/hid-sunplus.o
CC drivers/gpu/drm/drm_debugfs.o
CC drivers/hid/hid-topseed.o
CC drivers/gpu/drm/i915/gt/intel_region_lmem.o
CC kernel/taskstats.o
CC fs/posix_acl.o
CC drivers/gpu/drm/drm_debugfs_crc.o
CC fs/coredump.o
CC [M] drivers/gpu/drm/xe/xe_irq.o
CC drivers/gpu/drm/i915/gt/intel_renderstate.o
CC kernel/tsacct.o
CC [M] drivers/gpu/drm/xe/xe_lrc.o
CC fs/drop_caches.o
CC drivers/gpu/drm/i915/gt/intel_reset.o
CC fs/sysctls.o
CC kernel/tracepoint.o
CC drivers/gpu/drm/i915/gt/intel_ring.o
CC [M] drivers/gpu/drm/xe/xe_migrate.o
CC drivers/gpu/drm/drm_panel_orientation_quirks.o
CC drivers/gpu/drm/drm_buddy.o
CC kernel/irq_work.o
CC drivers/gpu/drm/i915/gt/intel_ring_submission.o
CC kernel/static_call.o
CC fs/fhandle.o
CC [M] drivers/gpu/drm/xe/xe_mmio.o
CC [M] drivers/gpu/drm/xe/xe_mocs.o
CC drivers/gpu/drm/drm_gem_shmem_helper.o
CC drivers/gpu/drm/i915/gt/intel_rps.o
CC kernel/padata.o
CC drivers/gpu/drm/i915/gt/intel_sa_media.o
CC kernel/jump_label.o
CC [M] drivers/gpu/drm/xe/xe_module.o
CC drivers/gpu/drm/drm_atomic_helper.o
CC drivers/gpu/drm/i915/gt/intel_sseu.o
CC kernel/context_tracking.o
CC drivers/gpu/drm/drm_atomic_state_helper.o
CC drivers/gpu/drm/i915/gt/intel_sseu_debugfs.o
CC [M] drivers/gpu/drm/xe/xe_oa.o
CC kernel/iomem.o
CC drivers/gpu/drm/drm_crtc_helper.o
CC [M] drivers/gpu/drm/xe/xe_observation.o
CC kernel/rseq.o
CC drivers/gpu/drm/i915/gt/intel_timeline.o
CC drivers/gpu/drm/drm_damage_helper.o
CC drivers/gpu/drm/drm_encoder_slave.o
AR drivers/hid/built-in.a
CC drivers/gpu/drm/drm_flip_work.o
CC [M] drivers/gpu/drm/xe/xe_pat.o
CC drivers/gpu/drm/drm_format_helper.o
CC drivers/gpu/drm/i915/gt/intel_tlb.o
CC drivers/gpu/drm/drm_gem_atomic_helper.o
CC drivers/gpu/drm/i915/gt/intel_wopcm.o
CC [M] drivers/gpu/drm/xe/xe_pci.o
CC [M] drivers/gpu/drm/xe/xe_pcode.o
CC drivers/gpu/drm/i915/gt/intel_workarounds.o
CC drivers/gpu/drm/i915/gt/shmem_utils.o
CC drivers/gpu/drm/drm_gem_framebuffer_helper.o
CC drivers/gpu/drm/drm_kms_helper_common.o
CC [M] drivers/gpu/drm/xe/xe_pm.o
CC drivers/gpu/drm/drm_modeset_helper.o
CC drivers/gpu/drm/i915/gt/sysfs_engines.o
CC drivers/gpu/drm/i915/gt/intel_ggtt_gmch.o
CC [M] drivers/gpu/drm/xe/xe_preempt_fence.o
CC drivers/gpu/drm/drm_plane_helper.o
CC drivers/gpu/drm/drm_probe_helper.o
CC drivers/gpu/drm/i915/gt/gen6_renderstate.o
AR net/mac80211/built-in.a
AR net/built-in.a
CC drivers/gpu/drm/drm_self_refresh_helper.o
CC drivers/gpu/drm/i915/gt/gen7_renderstate.o
CC [M] drivers/gpu/drm/xe/xe_pt.o
CC drivers/gpu/drm/drm_simple_kms_helper.o
CC drivers/gpu/drm/i915/gt/gen8_renderstate.o
CC [M] drivers/gpu/drm/xe/xe_pt_walk.o
CC drivers/gpu/drm/bridge/panel.o
CC drivers/gpu/drm/i915/gt/gen9_renderstate.o
CC drivers/gpu/drm/drm_mipi_dsi.o
CC drivers/gpu/drm/i915/gem/i915_gem_busy.o
CC [M] drivers/gpu/drm/xe/xe_query.o
CC drivers/gpu/drm/i915/gem/i915_gem_clflush.o
CC [M] drivers/gpu/drm/drm_exec.o
CC [M] drivers/gpu/drm/xe/xe_range_fence.o
CC drivers/gpu/drm/i915/gem/i915_gem_context.o
CC drivers/gpu/drm/i915/gem/i915_gem_create.o
CC [M] drivers/gpu/drm/xe/xe_reg_sr.o
CC drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o
CC [M] drivers/gpu/drm/drm_gpuvm.o
CC drivers/gpu/drm/i915/gem/i915_gem_domain.o
AR fs/built-in.a
AR kernel/built-in.a
CC [M] drivers/gpu/drm/xe/xe_reg_whitelist.o
CC drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o
CC [M] drivers/gpu/drm/xe/xe_rtp.o
CC drivers/gpu/drm/i915/gem/i915_gem_internal.o
CC [M] drivers/gpu/drm/xe/xe_ring_ops.o
CC drivers/gpu/drm/i915/gem/i915_gem_lmem.o
CC [M] drivers/gpu/drm/xe/xe_sa.o
CC [M] drivers/gpu/drm/xe/xe_sched_job.o
CC [M] drivers/gpu/drm/drm_suballoc.o
CC [M] drivers/gpu/drm/xe/xe_step.o
CC drivers/gpu/drm/i915/gem/i915_gem_mman.o
CC [M] drivers/gpu/drm/xe/xe_sync.o
CC drivers/gpu/drm/i915/gem/i915_gem_object.o
CC [M] drivers/gpu/drm/xe/xe_tile.o
CC drivers/gpu/drm/i915/gem/i915_gem_pages.o
CC [M] drivers/gpu/drm/xe/xe_tile_sysfs.o
CC [M] drivers/gpu/drm/xe/xe_trace.o
CC drivers/gpu/drm/i915/gem/i915_gem_phys.o
CC [M] drivers/gpu/drm/drm_gem_ttm_helper.o
CC [M] drivers/gpu/drm/xe/xe_trace_bo.o
CC [M] drivers/gpu/drm/xe/xe_trace_guc.o
CC drivers/gpu/drm/i915/gem/i915_gem_pm.o
CC drivers/gpu/drm/i915/gem/i915_gem_region.o
CC drivers/gpu/drm/i915/gem/i915_gem_shmem.o
CC drivers/gpu/drm/i915/gem/i915_gem_shrinker.o
CC [M] drivers/gpu/drm/xe/xe_trace_lrc.o
CC drivers/gpu/drm/i915/gem/i915_gem_stolen.o
CC drivers/gpu/drm/i915/gem/i915_gem_throttle.o
CC [M] drivers/gpu/drm/xe/xe_ttm_sys_mgr.o
CC [M] drivers/gpu/drm/xe/xe_ttm_stolen_mgr.o
CC drivers/gpu/drm/i915/gem/i915_gem_tiling.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm.o
CC [M] drivers/gpu/drm/xe/xe_ttm_vram_mgr.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm_move.o
CC [M] drivers/gpu/drm/xe/xe_tuning.o
LD [M] drivers/gpu/drm/drm_suballoc_helper.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm_pm.o
CC [M] drivers/gpu/drm/xe/xe_uc.o
CC [M] drivers/gpu/drm/xe/xe_uc_fw.o
CC [M] drivers/gpu/drm/xe/xe_vm.o
CC [M] drivers/gpu/drm/xe/xe_vram.o
CC [M] drivers/gpu/drm/xe/xe_vram_freq.o
CC [M] drivers/gpu/drm/xe/xe_wait_user_fence.o
CC [M] drivers/gpu/drm/xe/xe_wa.o
CC drivers/gpu/drm/i915/gem/i915_gem_userptr.o
LD [M] drivers/gpu/drm/drm_ttm_helper.o
CC [M] drivers/gpu/drm/xe/xe_wopcm.o
CC drivers/gpu/drm/i915/gem/i915_gem_wait.o
CC drivers/gpu/drm/i915/gem/i915_gemfs.o
CC drivers/gpu/drm/i915/i915_active.o
CC [M] drivers/gpu/drm/xe/xe_hmm.o
CC [M] drivers/gpu/drm/xe/xe_hwmon.o
CC drivers/gpu/drm/i915/i915_cmd_parser.o
CC drivers/gpu/drm/i915/i915_deps.o
CC [M] drivers/gpu/drm/xe/xe_gt_sriov_vf.o
CC drivers/gpu/drm/i915/i915_gem.o
CC drivers/gpu/drm/i915/i915_gem_evict.o
CC [M] drivers/gpu/drm/xe/xe_guc_relay.o
CC [M] drivers/gpu/drm/xe/xe_memirq.o
CC drivers/gpu/drm/i915/i915_gem_gtt.o
CC [M] drivers/gpu/drm/xe/xe_sriov.o
CC [M] drivers/gpu/drm/xe/xe_sriov_vf.o
CC drivers/gpu/drm/i915/i915_gem_ww.o
CC drivers/gpu/drm/i915/i915_query.o
CC [M] drivers/gpu/drm/xe/display/ext/i915_irq.o
CC [M] drivers/gpu/drm/xe/display/ext/i915_utils.o
CC drivers/gpu/drm/i915/i915_request.o
CC [M] drivers/gpu/drm/xe/display/intel_bo.o
CC drivers/gpu/drm/i915/i915_scheduler.o
CC drivers/gpu/drm/i915/i915_trace_points.o
CC [M] drivers/gpu/drm/xe/display/intel_fb_bo.o
CC [M] drivers/gpu/drm/xe/display/intel_fbdev_fb.o
CC drivers/gpu/drm/i915/i915_ttm_buddy_manager.o
CC [M] drivers/gpu/drm/xe/display/xe_display.o
CC drivers/gpu/drm/i915/i915_vma.o
CC [M] drivers/gpu/drm/xe/display/xe_display_misc.o
CC [M] drivers/gpu/drm/xe/display/xe_display_rps.o
CC [M] drivers/gpu/drm/xe/display/xe_display_wa.o
CC [M] drivers/gpu/drm/xe/display/xe_dsb_buffer.o
CC [M] drivers/gpu/drm/xe/display/xe_fb_pin.o
CC [M] drivers/gpu/drm/xe/display/xe_hdcp_gsc.o
CC [M] drivers/gpu/drm/xe/display/xe_plane_initial.o
CC drivers/gpu/drm/i915/i915_vma_resource.o
CC [M] drivers/gpu/drm/xe/display/xe_tdf.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_dram.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_pch.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_rom.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc_heci_cmd_submit.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_ads.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_capture.o
CC [M] drivers/gpu/drm/xe/i915-display/icl_dsi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_alpm.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_atomic.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_atomic_plane.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_ct.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_audio.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_backlight.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_bios.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_log.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cdclk.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_color.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_rc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_combo_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_connector.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_submission.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_crtc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_crtc_state_dump.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cursor.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cx0_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_ddi.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_ddi_buf_trans.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_device.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_driver.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc_fw.o
CC drivers/gpu/drm/i915/gt/intel_gsc.o
CC drivers/gpu/drm/i915/i915_hwmon.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_irq.o
CC drivers/gpu/drm/i915/display/hsw_ips.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_params.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power.o
CC drivers/gpu/drm/i915/display/i9xx_plane.o
CC drivers/gpu/drm/i915/display/i9xx_display_sr.o
CC drivers/gpu/drm/i915/display/i9xx_wm.o
CC drivers/gpu/drm/i915/display/intel_alpm.o
CC drivers/gpu/drm/i915/display/intel_atomic.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power_map.o
CC drivers/gpu/drm/i915/display/intel_atomic_plane.o
CC drivers/gpu/drm/i915/display/intel_audio.o
CC drivers/gpu/drm/i915/display/intel_bios.o
CC drivers/gpu/drm/i915/display/intel_bo.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power_well.o
CC drivers/gpu/drm/i915/display/intel_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_trace.o
CC drivers/gpu/drm/i915/display/intel_cdclk.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_wa.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dkl_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dmc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp.o
CC drivers/gpu/drm/i915/display/intel_color.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_aux.o
CC drivers/gpu/drm/i915/display/intel_combo_phy.o
CC drivers/gpu/drm/i915/display/intel_connector.o
CC drivers/gpu/drm/i915/display/intel_crtc.o
CC drivers/gpu/drm/i915/display/intel_crtc_state_dump.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_aux_backlight.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_hdcp.o
CC drivers/gpu/drm/i915/display/intel_cursor.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_link_training.o
CC drivers/gpu/drm/i915/display/intel_display.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_mst.o
CC drivers/gpu/drm/i915/display/intel_display_driver.o
CC drivers/gpu/drm/i915/display/intel_display_irq.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_test.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpll.o
CC drivers/gpu/drm/i915/display/intel_display_params.o
CC drivers/gpu/drm/i915/display/intel_display_power.o
CC drivers/gpu/drm/i915/display/intel_display_power_map.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpll_mgr.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpt_common.o
CC drivers/gpu/drm/i915/display/intel_display_power_well.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_drrs.o
CC drivers/gpu/drm/i915/display/intel_display_reset.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsb.o
CC drivers/gpu/drm/i915/display/intel_display_rps.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi_dcs_backlight.o
CC drivers/gpu/drm/i915/display/intel_display_snapshot.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi_vbt.o
CC drivers/gpu/drm/i915/display/intel_display_wa.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_encoder.o
CC drivers/gpu/drm/i915/display/intel_dmc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fb.o
CC drivers/gpu/drm/i915/display/intel_dmc_wl.o
CC drivers/gpu/drm/i915/display/intel_dpio_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fbc.o
CC drivers/gpu/drm/i915/display/intel_dpll.o
CC drivers/gpu/drm/i915/display/intel_dpll_mgr.o
CC drivers/gpu/drm/i915/display/intel_dpt.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fdi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fifo_underrun.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_frontbuffer.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_global_state.o
CC drivers/gpu/drm/i915/display/intel_dpt_common.o
CC drivers/gpu/drm/i915/display/intel_drrs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_gmbus.o
CC drivers/gpu/drm/i915/display/intel_dsb.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdcp.o
CC drivers/gpu/drm/i915/display/intel_dsb_buffer.o
CC drivers/gpu/drm/i915/display/intel_fb.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdcp_gsc_message.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdmi.o
CC drivers/gpu/drm/i915/display/intel_fb_bo.o
CC drivers/gpu/drm/i915/display/intel_fb_pin.o
CC drivers/gpu/drm/i915/display/intel_fbc.o
CC drivers/gpu/drm/i915/display/intel_fdi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hotplug.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hotplug_irq.o
CC drivers/gpu/drm/i915/display/intel_fifo_underrun.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hti.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_link_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_lspcon.o
CC drivers/gpu/drm/i915/display/intel_frontbuffer.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_lock.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_setup.o
CC drivers/gpu/drm/i915/display/intel_global_state.o
CC drivers/gpu/drm/i915/display/intel_hdcp.o
CC drivers/gpu/drm/i915/display/intel_hdcp_gsc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_verify.o
CC drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_panel.o
CC drivers/gpu/drm/i915/display/intel_hotplug.o
CC drivers/gpu/drm/i915/display/intel_hotplug_irq.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pfit.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pmdemand.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pps.o
CC drivers/gpu/drm/i915/display/intel_hti.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_psr.o
CC drivers/gpu/drm/i915/display/intel_link_bw.o
CC drivers/gpu/drm/i915/display/intel_load_detect.o
CC drivers/gpu/drm/i915/display/intel_lpe_audio.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_qp_tables.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_quirks.o
CC drivers/gpu/drm/i915/display/intel_modeset_lock.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_snps_phy.o
CC drivers/gpu/drm/i915/display/intel_modeset_setup.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_tc.o
CC drivers/gpu/drm/i915/display/intel_modeset_verify.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vblank.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vdsc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vga.o
CC drivers/gpu/drm/i915/display/intel_overlay.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vrr.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dmc_wl.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_wm.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_scaler.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_universal_plane.o
CC drivers/gpu/drm/i915/display/intel_pch_display.o
CC drivers/gpu/drm/i915/display/intel_pch_refclk.o
CC drivers/gpu/drm/i915/display/intel_plane_initial.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_watermark.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_acpi.o
CC drivers/gpu/drm/i915/display/intel_pmdemand.o
CC drivers/gpu/drm/i915/display/intel_psr.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_opregion.o
CC drivers/gpu/drm/i915/display/intel_quirks.o
CC [M] drivers/gpu/drm/xe/xe_debugfs.o
CC drivers/gpu/drm/i915/display/intel_sprite.o
CC [M] drivers/gpu/drm/xe/xe_gt_debugfs.o
CC [M] drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.o
CC drivers/gpu/drm/i915/display/intel_sprite_uapi.o
CC [M] drivers/gpu/drm/xe/xe_gt_stats.o
CC [M] drivers/gpu/drm/xe/xe_guc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_tc.o
CC [M] drivers/gpu/drm/xe/xe_huc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_vblank.o
CC [M] drivers/gpu/drm/xe/xe_uc_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_debugfs.o
CC drivers/gpu/drm/i915/display/intel_vga.o
CC drivers/gpu/drm/i915/display/intel_wm.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_debugfs_params.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pipe_crc.o
CC drivers/gpu/drm/i915/display/skl_scaler.o
CC drivers/gpu/drm/i915/display/skl_universal_plane.o
CC drivers/gpu/drm/i915/display/skl_watermark.o
CC drivers/gpu/drm/i915/display/intel_acpi.o
CC drivers/gpu/drm/i915/display/intel_opregion.o
CC drivers/gpu/drm/i915/display/intel_display_debugfs.o
CC drivers/gpu/drm/i915/display/intel_display_debugfs_params.o
CC drivers/gpu/drm/i915/display/intel_pipe_crc.o
CC drivers/gpu/drm/i915/display/dvo_ch7017.o
CC drivers/gpu/drm/i915/display/dvo_ch7xxx.o
CC drivers/gpu/drm/i915/display/dvo_ivch.o
CC drivers/gpu/drm/i915/display/dvo_ns2501.o
CC drivers/gpu/drm/i915/display/dvo_sil164.o
CC drivers/gpu/drm/i915/display/dvo_tfp410.o
CC drivers/gpu/drm/i915/display/g4x_dp.o
CC drivers/gpu/drm/i915/display/g4x_hdmi.o
CC drivers/gpu/drm/i915/display/icl_dsi.o
CC drivers/gpu/drm/i915/display/intel_backlight.o
CC drivers/gpu/drm/i915/display/intel_crt.o
CC drivers/gpu/drm/i915/display/intel_cx0_phy.o
CC drivers/gpu/drm/i915/display/intel_ddi.o
CC drivers/gpu/drm/i915/display/intel_ddi_buf_trans.o
CC drivers/gpu/drm/i915/display/intel_display_device.o
CC drivers/gpu/drm/i915/display/intel_display_trace.o
CC drivers/gpu/drm/i915/display/intel_dkl_phy.o
CC drivers/gpu/drm/i915/display/intel_dp.o
CC drivers/gpu/drm/i915/display/intel_dp_aux.o
CC drivers/gpu/drm/i915/display/intel_dp_aux_backlight.o
CC drivers/gpu/drm/i915/display/intel_dp_hdcp.o
CC drivers/gpu/drm/i915/display/intel_dp_link_training.o
CC drivers/gpu/drm/i915/display/intel_dp_mst.o
CC drivers/gpu/drm/i915/display/intel_dp_test.o
CC drivers/gpu/drm/i915/display/intel_dsi.o
CC drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.o
CC drivers/gpu/drm/i915/display/intel_dsi_vbt.o
CC drivers/gpu/drm/i915/display/intel_dvo.o
CC drivers/gpu/drm/i915/display/intel_encoder.o
CC drivers/gpu/drm/i915/display/intel_gmbus.o
CC drivers/gpu/drm/i915/display/intel_hdmi.o
CC drivers/gpu/drm/i915/display/intel_lspcon.o
CC drivers/gpu/drm/i915/display/intel_lvds.o
CC drivers/gpu/drm/i915/display/intel_panel.o
CC drivers/gpu/drm/i915/display/intel_pfit.o
CC drivers/gpu/drm/i915/display/intel_pps.o
CC drivers/gpu/drm/i915/display/intel_qp_tables.o
CC drivers/gpu/drm/i915/display/intel_sdvo.o
CC drivers/gpu/drm/i915/display/intel_snps_phy.o
CC drivers/gpu/drm/i915/display/intel_tv.o
CC drivers/gpu/drm/i915/display/intel_vdsc.o
CC drivers/gpu/drm/i915/display/intel_vrr.o
CC drivers/gpu/drm/i915/display/vlv_dsi.o
CC drivers/gpu/drm/i915/display/vlv_dsi_pll.o
CC drivers/gpu/drm/i915/i915_perf.o
CC drivers/gpu/drm/i915/pxp/intel_pxp.o
CC drivers/gpu/drm/i915/pxp/intel_pxp_huc.o
CC drivers/gpu/drm/i915/pxp/intel_pxp_tee.o
CC drivers/gpu/drm/i915/i915_gpu_error.o
CC drivers/gpu/drm/i915/i915_vgpu.o
LD [M] drivers/gpu/drm/xe/xe.o
AR drivers/gpu/drm/i915/built-in.a
AR drivers/gpu/drm/built-in.a
AR drivers/gpu/built-in.a
AR drivers/built-in.a
AR built-in.a
AR vmlinux.a
LD vmlinux.o
OBJCOPY modules.builtin.modinfo
GEN modules.builtin
MODPOST Module.symvers
CC .vmlinux.export.o
CC [M] fs/efivarfs/efivarfs.mod.o
CC [M] .module-common.o
CC [M] drivers/gpu/drm/drm_exec.mod.o
CC [M] drivers/gpu/drm/drm_gpuvm.mod.o
CC [M] drivers/gpu/drm/drm_suballoc_helper.mod.o
CC [M] drivers/gpu/drm/drm_ttm_helper.mod.o
CC [M] drivers/gpu/drm/scheduler/gpu-sched.mod.o
CC [M] drivers/gpu/drm/xe/xe.mod.o
CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.mod.o
CC [M] net/netfilter/nf_log_syslog.mod.o
CC [M] net/netfilter/xt_mark.mod.o
CC [M] net/netfilter/xt_nat.mod.o
CC [M] net/netfilter/xt_LOG.mod.o
CC [M] net/netfilter/xt_MASQUERADE.mod.o
CC [M] net/netfilter/xt_addrtype.mod.o
CC [M] net/ipv4/netfilter/iptable_nat.mod.o
LD [M] fs/efivarfs/efivarfs.ko
LD [M] drivers/gpu/drm/drm_suballoc_helper.ko
LD [M] net/netfilter/xt_LOG.ko
LD [M] drivers/thermal/intel/x86_pkg_temp_thermal.ko
LD [M] net/netfilter/nf_log_syslog.ko
LD [M] drivers/gpu/drm/drm_exec.ko
LD [M] drivers/gpu/drm/scheduler/gpu-sched.ko
LD [M] net/netfilter/xt_mark.ko
LD [M] net/netfilter/xt_nat.ko
LD [M] drivers/gpu/drm/drm_ttm_helper.ko
LD [M] net/netfilter/xt_addrtype.ko
LD [M] net/netfilter/xt_MASQUERADE.ko
LD [M] net/ipv4/netfilter/iptable_nat.ko
LD [M] drivers/gpu/drm/xe/xe.ko
LD [M] drivers/gpu/drm/drm_gpuvm.ko
UPD include/generated/utsversion.h
CC init/version-timestamp.o
KSYMS .tmp_vmlinux0.kallsyms.S
AS .tmp_vmlinux0.kallsyms.o
LD .tmp_vmlinux1
NM .tmp_vmlinux1.syms
KSYMS .tmp_vmlinux1.kallsyms.S
AS .tmp_vmlinux1.kallsyms.o
LD .tmp_vmlinux2
NM .tmp_vmlinux2.syms
KSYMS .tmp_vmlinux2.kallsyms.S
AS .tmp_vmlinux2.kallsyms.o
LD vmlinux
NM System.map
SORTTAB vmlinux
RELOCS arch/x86/boot/compressed/vmlinux.relocs
RSTRIP vmlinux
CC arch/x86/boot/a20.o
AS arch/x86/boot/bioscall.o
CC arch/x86/boot/cmdline.o
AS arch/x86/boot/copy.o
HOSTCC arch/x86/boot/mkcpustr
CC arch/x86/boot/cpuflags.o
CC arch/x86/boot/cpucheck.o
CC arch/x86/boot/early_serial_console.o
CC arch/x86/boot/edd.o
CC arch/x86/boot/main.o
CC arch/x86/boot/memory.o
CC arch/x86/boot/pm.o
AS arch/x86/boot/pmjump.o
CC arch/x86/boot/printf.o
CC arch/x86/boot/regs.o
CC arch/x86/boot/string.o
CC arch/x86/boot/tty.o
CC arch/x86/boot/video.o
CC arch/x86/boot/video-mode.o
CC arch/x86/boot/version.o
CC arch/x86/boot/video-vga.o
CC arch/x86/boot/video-vesa.o
CC arch/x86/boot/video-bios.o
HOSTCC arch/x86/boot/tools/build
CPUSTR arch/x86/boot/cpustr.h
CC arch/x86/boot/cpu.o
LDS arch/x86/boot/compressed/vmlinux.lds
AS arch/x86/boot/compressed/kernel_info.o
AS arch/x86/boot/compressed/head_32.o
VOFFSET arch/x86/boot/compressed/../voffset.h
CC arch/x86/boot/compressed/string.o
CC arch/x86/boot/compressed/cmdline.o
CC arch/x86/boot/compressed/error.o
OBJCOPY arch/x86/boot/compressed/vmlinux.bin
HOSTCC arch/x86/boot/compressed/mkpiggy
CC arch/x86/boot/compressed/cpuflags.o
CC arch/x86/boot/compressed/early_serial_console.o
CC arch/x86/boot/compressed/kaslr.o
CC arch/x86/boot/compressed/acpi.o
CC arch/x86/boot/compressed/efi.o
GZIP arch/x86/boot/compressed/vmlinux.bin.gz
CC arch/x86/boot/compressed/misc.o
MKPIGGY arch/x86/boot/compressed/piggy.S
AS arch/x86/boot/compressed/piggy.o
LD arch/x86/boot/compressed/vmlinux
ZOFFSET arch/x86/boot/zoffset.h
OBJCOPY arch/x86/boot/vmlinux.bin
AS arch/x86/boot/header.o
LD arch/x86/boot/setup.elf
OBJCOPY arch/x86/boot/setup.bin
BUILD arch/x86/boot/bzImage
Kernel: arch/x86/boot/bzImage is ready (#1)
run-parts: executing /workspace/ci/hooks/20-kernel-doc
+ SRC_DIR=/workspace/kernel
+ cd /workspace/kernel
+ xargs ./scripts/kernel-doc -Werror -none include/uapi/drm/xe_drm.h
+ find drivers/gpu/drm/xe/ -name '*.[ch]' -not -path 'drivers/gpu/drm/xe/display/*'
date: invalid date ‘+%s’
All hooks done
^ permalink raw reply [flat|nested] 34+ messages in thread* ✗ CI.checksparse: warning for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (8 preceding siblings ...)
2024-11-28 16:13 ` ✓ CI.Hooks: " Patchwork
@ 2024-11-28 16:15 ` Patchwork
2024-11-28 16:33 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 16:15 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 74a57778be9b7768773c41c9ef84e8a81877adca
/root/linux/maintainer-tools/dim: line 2068: sparse: command not found
Sparse version:
Fast mode used, each commit won't be checked separately.
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 34+ messages in thread* ✓ Xe.CI.BAT: success for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (9 preceding siblings ...)
2024-11-28 16:15 ` ✗ CI.checksparse: warning " Patchwork
@ 2024-11-28 16:33 ` Patchwork
2024-11-29 0:07 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-21 0:59 ` [PATCH v10 0/4] Introduce DRM device wedged event Xaver Hugl
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-28 16:33 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1523 bytes --]
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : success
== Summary ==
CI Bug Log - changes from xe-2290-504ad21edb96c010757ff67158dc45a934529d5f_BAT -> xe-pw-138070v8_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-138070v8_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][1] ([Intel XE#1861]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
Build changes
-------------
* Linux: xe-2290-504ad21edb96c010757ff67158dc45a934529d5f -> xe-pw-138070v8
IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2290-504ad21edb96c010757ff67158dc45a934529d5f: 504ad21edb96c010757ff67158dc45a934529d5f
xe-pw-138070v8: 138070v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/index.html
[-- Attachment #2: Type: text/html, Size: 2088 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread* ✗ Xe.CI.Full: failure for Introduce DRM device wedged event (rev8)
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (10 preceding siblings ...)
2024-11-28 16:33 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-11-29 0:07 ` Patchwork
2025-01-21 0:59 ` [PATCH v10 0/4] Introduce DRM device wedged event Xaver Hugl
12 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2024-11-29 0:07 UTC (permalink / raw)
To: Raag Jadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 88346 bytes --]
== Series Details ==
Series: Introduce DRM device wedged event (rev8)
URL : https://patchwork.freedesktop.org/series/138070/
State : failure
== Summary ==
CI Bug Log - changes from xe-2290-504ad21edb96c010757ff67158dc45a934529d5f_full -> xe-pw-138070v8_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-138070v8_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-138070v8_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-138070v8_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_draw_crc@draw-method-render@xrgb8888-4tiled:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb8888-4tiled.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_draw_crc@draw-method-render@xrgb8888-4tiled.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ac-dp2-hdmi-a3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-dp-4-linear-to-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] +53 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@kms_flip_tiling@flip-change-tiling@pipe-d-dp-4-linear-to-4-rc-ccs-cc.html
* igt@xe_module_load@unload:
- shard-bmg: [PASS][6] -> [DMESG-WARN][7] +2 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_module_load@unload.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_module_load@unload.html
* igt@xe_vm@bind-array-conflict:
- shard-dg2-set2: [PASS][8] -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-dg2-466/igt@xe_vm@bind-array-conflict.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@xe_vm@bind-array-conflict.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-5:
- shard-dg2-set2: [INCOMPLETE][10] ([Intel XE#1727]) -> [DMESG-WARN][11] +1 other test dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-5.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-5.html
Known issues
------------
Here are the changes found in xe-pw-138070v8_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@all-cards:
- shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#3249])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@core_getversion@all-cards.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@core_getversion@all-cards.html
* igt@core_hotunplug@hotrebind:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#1885])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@core_hotunplug@hotrebind.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@core_hotunplug@hotrebind.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-adlp: [PASS][16] -> [DMESG-FAIL][17] ([Intel XE#1033] / [Intel XE#1727]) +1 other test dmesg-fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-3/igt@kms_async_flips@alternate-sync-async-flip.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-8/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-5-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2550]) +11 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-5-4-mc-ccs.html
* igt@kms_atomic_interruptible@legacy-dpms:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2423]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_atomic_interruptible@legacy-dpms.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [PASS][20] -> [FAIL][21] ([Intel XE#1426]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#316])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +85 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-5.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +15 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2325])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#306])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][35] ([Intel XE#1178])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_content_protection@atomic-dpms@pipe-a-dp-5.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#3468]) +4 other tests dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][40] ([Intel XE#1727] / [Intel XE#3226]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_draw_crc@draw-method-render:
- shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_draw_crc@draw-method-render.html
* igt@kms_draw_crc@draw-method-render@rgb565-4tiled:
- shard-bmg: [PASS][43] -> [DMESG-FAIL][44] ([Intel XE#1727] / [Intel XE#3468])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_draw_crc@draw-method-render@rgb565-4tiled.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_draw_crc@draw-method-render@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
- shard-bmg: [PASS][45] -> [DMESG-FAIL][46] ([Intel XE#3468])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#3486])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#3486])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: [PASS][52] -> [FAIL][53] ([Intel XE#2882]) +2 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp4:
- shard-dg2-set2: [PASS][56] -> [FAIL][57] ([Intel XE#301]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#2597])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp5:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][60] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-dp5.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-dp5:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][61] ([Intel XE#3468])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@b-dp5.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp5:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][62] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@d-dp5.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#2597] / [Intel XE#2635])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293] / [Intel XE#2380])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2293]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x:
- shard-adlp: [PASS][67] -> [FAIL][68] ([Intel XE#1874]) +2 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#651]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#2333]) +3 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-adlp: [PASS][71] -> [DMESG-WARN][72] ([Intel XE#2953] / [Intel XE#3086])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2136]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2311]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#653]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2313]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][77] -> [SKIP][78] ([Intel XE#455])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2423]) +51 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2136]) +15 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_pm_dc@dc5-dpms-negative.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#1430])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-rte:
- shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#2446]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_pm_rpm@basic-rte.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_pm_rpm@basic-rte.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#1489]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1489])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#899]) +2 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html
* igt@xe_eudebug@multigpu-basic-client-many:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2905]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@xe_eudebug@multigpu-basic-client-many.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2905]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][97] ([Intel XE#1473])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#288]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2360])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_threads@threads-hang-shared-vm-basic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][101] ([Intel XE#1727] / [Intel XE#358])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][102] ([Intel XE#3343])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1192])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_module_load@load:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#378])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#3467] / [Intel XE#3468])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@xe_module_load@many-reload.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@xe_module_load@many-reload.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#3573]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][108] ([Intel XE#3468])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-466/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][109] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-basic-exec:
- shard-adlp: [PASS][110] -> [ABORT][111] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-6/igt@xe_pm@s4-basic-exec.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-9/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2284])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_prime_self_import@basic-llseek-size:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1130]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_prime_self_import@basic-llseek-size.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#944])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [PASS][115] -> [SKIP][116] ([Intel XE#1130]) +116 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
* igt@xe_vm@large-userptr-split-misaligned-binds-2097152:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][117] ([Intel XE#1727]) +1 other test dmesg-warn
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-434/igt@xe_vm@large-userptr-split-misaligned-binds-2097152.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-user:
- shard-bmg: [FAIL][118] ([Intel XE#3339]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@core_setmaster@master-drop-set-user.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@unaligned-read:
- shard-bmg: [SKIP][120] ([Intel XE#2134]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@fbdev@unaligned-read.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@fbdev@unaligned-read.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][122] ([Intel XE#2136]) -> [PASS][123] +14 other tests pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [FAIL][124] ([Intel XE#1231]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][126] -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][128] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][130] ([Intel XE#3486]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][132] ([Intel XE#301]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][134] ([Intel XE#3321] / [Intel XE#3487]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][136] ([Intel XE#2423]) -> [PASS][137] +65 other tests pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][138] ([Intel XE#1430]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-lnl: [DMESG-WARN][140] ([Intel XE#3184]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-lnl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [SKIP][142] ([Intel XE#2446]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_pm_rpm@i2c.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-adlp: [DMESG-WARN][144] ([Intel XE#1033] / [Intel XE#1727]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-9/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [DMESG-WARN][146] ([Intel XE#2953] / [Intel XE#3086]) -> [PASS][147] +1 other test pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-9/igt@kms_vblank@ts-continuation-dpms-suspend.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_exec_balancer@many-cm-virtual-rebind:
- shard-adlp: [FAIL][148] -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-1/igt@xe_exec_balancer@many-cm-virtual-rebind.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-4/igt@xe_exec_balancer@many-cm-virtual-rebind.html
* igt@xe_exec_fault_mode@once-userptr:
- shard-lnl: [DMESG-WARN][150] -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-lnl-4/igt@xe_exec_fault_mode@once-userptr.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-lnl-1/igt@xe_exec_fault_mode@once-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-adlp: [DMESG-WARN][152] ([Intel XE#3086] / [Intel XE#3343]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-9/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_intel_bb@intel-bb-blit-x:
- shard-bmg: [SKIP][154] ([Intel XE#1130]) -> [PASS][155] +127 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_intel_bb@intel-bb-blit-x.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_intel_bb@intel-bb-blit-x.html
* igt@xe_module_load@reload:
- shard-bmg: [FAIL][156] ([Intel XE#3625]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_module_load@reload.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_module_load@reload.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-adlp: [FAIL][158] ([Intel XE#958]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-2/igt@xe_pm_residency@toggle-gt-c6.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-1/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_render_copy@render-full-compressed@render-tile64-256x256:
- shard-bmg: [DMESG-WARN][160] ([Intel XE#3468]) -> [PASS][161] +8 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-3/igt@xe_render_copy@render-full-compressed@render-tile64-256x256.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-4/igt@xe_render_copy@render-full-compressed@render-tile64-256x256.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][162] ([Intel XE#2327]) -> [SKIP][163] ([Intel XE#2136]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][164] ([Intel XE#2136]) -> [SKIP][165] ([Intel XE#2327]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-FAIL][166] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][167] ([Intel XE#3468])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [DMESG-FAIL][168] ([Intel XE#3468]) -> [DMESG-WARN][169] ([Intel XE#3468]) +1 other test dmesg-warn
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][170] ([Intel XE#1124]) -> [SKIP][171] ([Intel XE#2136]) +7 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [FAIL][172] ([Intel XE#1231]) -> [DMESG-FAIL][173] ([Intel XE#324])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: [SKIP][174] ([Intel XE#2328]) -> [SKIP][175] ([Intel XE#2136])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][176] ([Intel XE#2136]) -> [SKIP][177] ([Intel XE#610])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][178] ([Intel XE#2136]) -> [SKIP][179] ([Intel XE#1124]) +6 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][180] ([Intel XE#367]) -> [SKIP][181] ([Intel XE#2423]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][182] ([Intel XE#2423]) -> [SKIP][183] ([Intel XE#367]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][184] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][185] ([Intel XE#2136])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][186] ([Intel XE#2136]) -> [SKIP][187] ([Intel XE#3432])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: [SKIP][188] ([Intel XE#3432]) -> [SKIP][189] ([Intel XE#2136])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][190] ([Intel XE#2136]) -> [SKIP][191] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
- shard-bmg: [SKIP][192] ([Intel XE#2136]) -> [SKIP][193] ([Intel XE#2887]) +8 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][194] ([Intel XE#2887]) -> [SKIP][195] ([Intel XE#2136]) +10 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][196] ([Intel XE#2423]) -> [SKIP][197] ([Intel XE#2325])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: [SKIP][198] ([Intel XE#2325]) -> [SKIP][199] ([Intel XE#2423])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_chamelium_color@ctm-negative.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][200] ([Intel XE#2252]) -> [SKIP][201] ([Intel XE#2423]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-bmg: [SKIP][202] ([Intel XE#2423]) -> [SKIP][203] ([Intel XE#2252]) +4 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][204] ([Intel XE#2423]) -> [FAIL][205] ([Intel XE#1178])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_content_protection@atomic.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: [SKIP][206] ([Intel XE#2341]) -> [SKIP][207] ([Intel XE#2423])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_content_protection@mei-interface.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-bmg: [SKIP][208] ([Intel XE#2423]) -> [SKIP][209] ([Intel XE#2341])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_content_protection@type1.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: [SKIP][210] ([Intel XE#2320]) -> [SKIP][211] ([Intel XE#2423]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: [SKIP][212] ([Intel XE#2321]) -> [SKIP][213] ([Intel XE#2423])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x512.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-bmg: [SKIP][214] ([Intel XE#2423]) -> [SKIP][215] ([Intel XE#2320]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][216] ([Intel XE#3468] / [Intel XE#877]) -> [DMESG-WARN][217] ([Intel XE#877])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [DMESG-FAIL][218] ([Intel XE#3468]) -> [SKIP][219] ([Intel XE#2423]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: [SKIP][220] ([Intel XE#1508]) -> [SKIP][221] ([Intel XE#2136])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-bmg: [SKIP][222] ([Intel XE#2423]) -> [SKIP][223] ([Intel XE#2323])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: [SKIP][224] ([Intel XE#2244]) -> [SKIP][225] ([Intel XE#2136]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: [SKIP][226] ([Intel XE#2372]) -> [SKIP][227] ([Intel XE#2423])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: [SKIP][228] ([Intel XE#2423]) -> [SKIP][229] ([Intel XE#2374])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_feature_discovery@psr2.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [DMESG-WARN][230] ([Intel XE#3468]) -> [SKIP][231] ([Intel XE#2423]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: [SKIP][232] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][233] ([Intel XE#2136]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: [SKIP][234] ([Intel XE#2136]) -> [SKIP][235] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][236] ([Intel XE#2311]) -> [SKIP][237] ([Intel XE#2136]) +20 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][238] ([Intel XE#2136]) -> [SKIP][239] ([Intel XE#2311]) +20 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-adlp: [TIMEOUT][240] ([Intel XE#1033] / [Intel XE#1727]) -> [FAIL][241] ([Intel XE#1861])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][242] ([Intel XE#2333]) -> [SKIP][243] ([Intel XE#2136]) +8 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: [INCOMPLETE][244] ([Intel XE#1727]) -> [SKIP][245] ([Intel XE#2136])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][246] ([Intel XE#2136]) -> [FAIL][247] ([Intel XE#2333]) +5 other tests fail
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: [SKIP][248] ([Intel XE#2136]) -> [SKIP][249] ([Intel XE#2352])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][250] ([Intel XE#2311]) -> [SKIP][251] ([Intel XE#2312])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][252] ([Intel XE#2136]) -> [SKIP][253] ([Intel XE#2313]) +21 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][254] ([Intel XE#2313]) -> [SKIP][255] ([Intel XE#2136]) +18 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: [SKIP][256] ([Intel XE#2502]) -> [SKIP][257] ([Intel XE#2423])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: [SKIP][258] ([Intel XE#2423]) -> [SKIP][259] ([Intel XE#2340])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][260] ([Intel XE#2136]) -> [SKIP][261] ([Intel XE#2934]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: [SKIP][262] ([Intel XE#2927]) -> [SKIP][263] ([Intel XE#2136])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: [SKIP][264] ([Intel XE#2423]) -> [SKIP][265] ([Intel XE#2486])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: [SKIP][266] ([Intel XE#2423]) -> [SKIP][267] ([Intel XE#2493])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_plane_multiple@tiling-y.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: [SKIP][268] ([Intel XE#2763]) -> [SKIP][269] ([Intel XE#2423]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][270] ([Intel XE#2136]) -> [SKIP][271] ([Intel XE#870])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][272] ([Intel XE#2136]) -> [SKIP][273] ([Intel XE#2392]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][274] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][275] ([Intel XE#2446])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][276] ([Intel XE#2136]) -> [SKIP][277] ([Intel XE#1489]) +5 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-bmg: [SKIP][278] ([Intel XE#1489]) -> [SKIP][279] ([Intel XE#2136]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#2387]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][282] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][283] ([Intel XE#2136]) +11 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_psr@psr-basic.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: [SKIP][284] ([Intel XE#2136]) -> [SKIP][285] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][286] ([Intel XE#2414]) -> [SKIP][287] ([Intel XE#2136])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: [SKIP][288] ([Intel XE#2136]) -> [SKIP][289] ([Intel XE#2414])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: [SKIP][290] ([Intel XE#2423]) -> [SKIP][291] ([Intel XE#2330])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: [SKIP][292] ([Intel XE#3414]) -> [SKIP][293] ([Intel XE#2423])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-270.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: [SKIP][294] ([Intel XE#1435]) -> [SKIP][295] ([Intel XE#2423])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: [SKIP][296] ([Intel XE#2423]) -> [SKIP][297] ([Intel XE#1499])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_vrr@flip-dpms.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][298] ([Intel XE#1499]) -> [SKIP][299] ([Intel XE#2423]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-bmg: [SKIP][300] ([Intel XE#2423]) -> [SKIP][301] ([Intel XE#756])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@kms_writeback@writeback-check-output.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@kms_writeback@writeback-check-output.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: [SKIP][302] ([Intel XE#2423]) -> [SKIP][303] ([Intel XE#1091] / [Intel XE#2849])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: [SKIP][304] ([Intel XE#1130]) -> [SKIP][305] ([Intel XE#2905]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][306] ([Intel XE#2905]) -> [SKIP][307] ([Intel XE#1130]) +6 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_eudebug_online@single-step-one.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_eudebug_online@single-step-one.html
* igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind:
- shard-bmg: [DMESG-WARN][308] ([Intel XE#3468]) -> [SKIP][309] ([Intel XE#1130]) +5 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: [SKIP][310] ([Intel XE#2322]) -> [SKIP][311] ([Intel XE#1130]) +5 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: [SKIP][312] ([Intel XE#1130]) -> [SKIP][313] ([Intel XE#2322]) +6 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind-imm:
- shard-bmg: [DMESG-WARN][314] ([Intel XE#1727]) -> [SKIP][315] ([Intel XE#1130]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-imm.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-imm.html
* igt@xe_exec_reset@parallel-close-execqueues-close-fd:
- shard-bmg: [SKIP][316] ([Intel XE#1130]) -> [DMESG-WARN][317] ([Intel XE#3468])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_exec_reset@parallel-close-execqueues-close-fd.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_exec_reset@parallel-close-execqueues-close-fd.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][318] ([Intel XE#3467]) -> [SKIP][319] ([Intel XE#1130])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [SKIP][320] ([Intel XE#1130]) -> [DMESG-WARN][321] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][322] ([Intel XE#3343]) -> [SKIP][323] ([Intel XE#1130]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][324] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][325] ([Intel XE#3343])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-FAIL][326] ([Intel XE#3467]) -> [DMESG-FAIL][327] ([Intel XE#3467] / [Intel XE#3468])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: [SKIP][328] ([Intel XE#2248]) -> [SKIP][329] ([Intel XE#1130])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: [SKIP][330] ([Intel XE#1130]) -> [SKIP][331] ([Intel XE#2284])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_pm@d3cold-basic.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][332] ([Intel XE#2284]) -> [SKIP][333] ([Intel XE#1130])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_pm@d3cold-multiple-execs.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-bmg: [DMESG-WARN][334] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][335] ([Intel XE#1130])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_pm@d3hot-mmap-vram.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][336] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][337] ([Intel XE#1130])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: [SKIP][338] ([Intel XE#944]) -> [SKIP][339] ([Intel XE#1130]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-6/igt@xe_query@multigpu-query-cs-cycles.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: [SKIP][340] ([Intel XE#1130]) -> [SKIP][341] ([Intel XE#944]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-2290-504ad21edb96c010757ff67158dc45a934529d5f/shard-bmg-1/igt@xe_query@multigpu-query-gt-list.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/shard-bmg-3/igt@xe_query@multigpu-query-gt-list.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3086
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
[Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* Linux: xe-2290-504ad21edb96c010757ff67158dc45a934529d5f -> xe-pw-138070v8
IGT_8129: 363499a879fee5b9b7eda8acf7c772bce3423493 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2290-504ad21edb96c010757ff67158dc45a934529d5f: 504ad21edb96c010757ff67158dc45a934529d5f
xe-pw-138070v8: 138070v8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-138070v8/index.html
[-- Attachment #2: Type: text/html, Size: 108072 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread* Re: [PATCH v10 0/4] Introduce DRM device wedged event
2024-11-28 15:37 [PATCH v10 0/4] Introduce DRM device wedged event Raag Jadav
` (11 preceding siblings ...)
2024-11-29 0:07 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-21 0:59 ` Xaver Hugl
2025-01-22 4:48 ` Raag Jadav
12 siblings, 1 reply; 34+ messages in thread
From: Xaver Hugl @ 2025-01-21 0:59 UTC (permalink / raw)
To: Raag Jadav
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev
Hi,
I experimented with using this in KWin, and
https://invent.kde.org/plasma/kwin/-/merge_requests/7027/diffs?commit_id=6da40f1b9e2bc94615a436de4778880cee16f940
makes it fall back to a software renderer when a rebind is required to
recover the GPU.
Making it also survive the rebind properly is more challenging
(current version of the MR doesn't do it for you and just crashes if
you do it with a udev rule or manually), but it's doable - and not a
problem of the API.
I'd really like to have the PID of the client that triggered the GPU
reset, so that we can kill it if multiple resets are triggered in a
row (or switch to software rendering if it's KWin itself) and show a
user-friendly notification about why their app(s) crashed, but that
can be added later.
- Xaver
^ permalink raw reply [flat|nested] 34+ messages in thread* Re: [PATCH v10 0/4] Introduce DRM device wedged event
2025-01-21 0:59 ` [PATCH v10 0/4] Introduce DRM device wedged event Xaver Hugl
@ 2025-01-22 4:48 ` Raag Jadav
0 siblings, 0 replies; 34+ messages in thread
From: Raag Jadav @ 2025-01-22 4:48 UTC (permalink / raw)
To: Xaver Hugl
Cc: airlied, simona, lucas.demarchi, rodrigo.vivi, jani.nikula,
andriy.shevchenko, lina, michal.wajdeczko, christian.koenig,
intel-xe, intel-gfx, dri-devel, himal.prasad.ghimiray,
aravind.iddamsetty, anshuman.gupta, alexander.deucher,
andrealmeid, amd-gfx, kernel-dev
On Tue, Jan 21, 2025 at 01:59:47AM +0100, Xaver Hugl wrote:
> Hi,
>
> I experimented with using this in KWin, and
> https://invent.kde.org/plasma/kwin/-/merge_requests/7027/diffs?commit_id=6da40f1b9e2bc94615a436de4778880cee16f940
> makes it fall back to a software renderer when a rebind is required to
> recover the GPU.
> Making it also survive the rebind properly is more challenging
> (current version of the MR doesn't do it for you and just crashes if
> you do it with a udev rule or manually), but it's doable - and not a
> problem of the API.
>
> I'd really like to have the PID of the client that triggered the GPU
> reset, so that we can kill it if multiple resets are triggered in a
> row (or switch to software rendering if it's KWin itself) and show a
> user-friendly notification about why their app(s) crashed, but that
> can be added later.
Excellent! While we have our consumer implementation in progress, it's
always good to have wider adoption.
Thank you for your contribution.
Raag
^ permalink raw reply [flat|nested] 34+ messages in thread