forked from Openwrt/openwrt
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
24 lines
821 B
Diff
24 lines
821 B
Diff
From 4eb6bc43ec2202fa484b4c37d1baf90479584ceb Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Tue, 31 Oct 2023 11:15:38 +0000
|
|
Subject: [PATCH 0712/1085] drm/vc4: Log the size of the dlist allocation that
|
|
was attempted
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_hvs.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hvs.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hvs.c
|
|
@@ -659,7 +659,8 @@ vc4_hvs_alloc_dlist_entry(struct vc4_hvs
|
|
dlist_count);
|
|
spin_unlock_irqrestore(&hvs->mm_lock, flags);
|
|
if (ret) {
|
|
- drm_err(dev, "Failed to allocate DLIST entry: %d\n", ret);
|
|
+ drm_err(dev, "Failed to allocate DLIST entry. Requested size=%zu. ret=%d\n",
|
|
+ dlist_count, ret);
|
|
return ERR_PTR(ret);
|
|
}
|
|
|