Bug 448284 - Mesa commit 83916ae0, "egl/wayland: add initial dma-buf feedback support" interacts badly with kwin_wayland's dma-buf feedback code, causing Mesa to fallback to llvmpipe
Summary: Mesa commit 83916ae0, "egl/wayland: add initial dma-buf feedback support" int...
Status: RESOLVED FIXED
Alias: None
Product: kwin
Classification: Plasma
Component: egl (show other bugs)
Version: git master
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: KWin default assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-01-11 22:07 UTC by Kyle Devir
Modified: 2022-01-15 04:19 UTC (History)
4 users (show)

See Also:
Latest Commit:
Version Fixed In: 5.24
Sentry Crash Report:


Attachments
kwin_wayland log with kwin_*.debug=true (16.47 KB, text/plain)
2022-01-13 19:41 UTC, Jason
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Kyle Devir 2022-01-11 22:07:24 UTC
Mesa bug report: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5844

Relevant comment from Leandro Ribeiro:

"Kwin is exposing zwp_linux_dmabuf_v1 version 4 and then advertising formats/modifiers through dma-buf modifier events. From zwp_linux_dmabuf_v1 version 4 onward, modifier events should not be advertised. Instead, clients should receive them using dma-buf feedback interface. See https://gitlab.freedesktop.org/wayland/wayland-protocols/-/blob/main/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml#L156. This is one issue that I can see from this log, and that should be fixed in Kwin.
Because of what I've described above, in Mesa EGL we ignore the dma-buf modifier events if zwp_linux_dmabuf_v1 version is >= 4. As Mesa EGL is unable to map the dma-buf feedback format table that it receives from Kwin, Mesa EGL didn't receive formats/modifiers from zwp_linux_dmabuf_v1. IIUC this is why it fallback to llvmpipe and you have 4 FPS.

> How do I get at the dma-buf feedback format table event data?

I was thinking about adding some prints to default_dmabuf_feedback_format_table() (in platform_wayland.c). In this function Mesa EGL receives the fd of the format table from Kwin. But thinking twice, I don't think this would be very helpful. Instead, it's better to debug Kwin to find out what's wrong with the format table fd it sends to Mesa EGL.
I've tried to take a look at the commit that added dma-buf feedback to Kwin, but I'm unfamiliar with the code. Maybe the person who wrote the commit can help you?"
Comment 1 Zamundaaa 2022-01-13 15:43:06 UTC
To be frank, I have absolutely on clue what's happening - map shouldn't fail, and it doesn't on my end. Could you add some debug prints in Mesas surface_dmabuf_feedback_format_table? Of interest would be the fd, and errno after mmap.
Comment 2 Jason 2022-01-13 17:32:08 UTC
Since I'm affected by this issue as well, I've added debug prints to default_dmabuf_feedback_format_table for fd and errno after mmap. The fd I got is 19 and the errno is 22 (EINVAL). The reason why mmap fails with EINVAL appears to be because the 2nd argument (size_t len) is 0, as hardcoding a non-zero value makes it succeed.
Comment 3 Bug Janitor Service 2022-01-13 19:01:33 UTC
A possibly relevant merge request was started @ https://invent.kde.org/plasma/kwin/-/merge_requests/1875
Comment 4 Zamundaaa 2022-01-13 19:04:22 UTC
The only way I see that the size can be 0 is when querying the available formats fails. I added some logging in the MR, maybe you can check out what it says for you?
Comment 5 Jason 2022-01-13 19:41:34 UTC
Created attachment 145426 [details]
kwin_wayland log with kwin_*.debug=true

With that MR I get the following new line: 
kwin_scene_opengl: EGL driver advertises 29 supported dmabuf formats with modifiers

None of the qCCritical messages triggered.
Comment 6 Zamundaaa 2022-01-14 00:00:25 UTC
Git commit 4b8b8b765262822ccc6599a9767bed587f751950 by Xaver Hugl.
Committed on 13/01/2022 at 23:43.
Pushed by zamundaaa into branch 'master'.

egldmabuf: add some logging about supported formats

May help diagnose some bugs

M  +4    -0    src/platformsupport/scenes/opengl/egl_dmabuf.cpp

https://invent.kde.org/plasma/kwin/commit/4b8b8b765262822ccc6599a9767bed587f751950
Comment 7 Bug Janitor Service 2022-01-14 00:02:47 UTC
A possibly relevant merge request was started @ https://invent.kde.org/plasma/kwin/-/merge_requests/1876
Comment 8 Kyle Devir 2022-01-14 05:51:00 UTC
@jason

> Since I'm affected by this issue as well, I've added debug prints to default_dmabuf_feedback_format_table for fd and errno after mmap.

Thanks for the testing, as I don't know how to do that.
Comment 9 Zamundaaa 2022-01-14 09:32:08 UTC
Git commit aae86f73e140afd526efad8a9308ff811299de04 by Xaver Hugl.
Committed on 14/01/2022 at 09:32.
Pushed by zamundaaa into branch 'Plasma/5.24'.

egldmabuf: add some logging about supported formats

May help diagnose some bugs


(cherry picked from commit 4b8b8b765262822ccc6599a9767bed587f751950)

M  +4    -0    src/platformsupport/scenes/opengl/egl_dmabuf.cpp

https://invent.kde.org/plasma/kwin/commit/aae86f73e140afd526efad8a9308ff811299de04
Comment 10 Jason 2022-01-14 09:35:31 UTC
With MR 1876, the wayland-egl format table warnings are gone and nothing falls back to llvmpipe anymore.

Thanks!
Comment 11 Zamundaaa 2022-01-14 10:26:53 UTC
Git commit 031bb305e3868b85f1b08145953f021f9b8a938e by Xaver Hugl.
Committed on 14/01/2022 at 09:27.
Pushed by zamundaaa into branch 'master'.

egldmabuf: if modifiers are not supported, send DRM_FORMAT_MOD_INVALID

An empty modifier list will get ignored and does not mean implicit
modifiers are allowed

M  +1    -1    src/platformsupport/scenes/opengl/egl_dmabuf.cpp

https://invent.kde.org/plasma/kwin/commit/031bb305e3868b85f1b08145953f021f9b8a938e
Comment 12 Zamundaaa 2022-01-14 10:28:39 UTC
Git commit a5bca1f1a92bc256c3df538bab7716817872b800 by Xaver Hugl.
Committed on 14/01/2022 at 10:28.
Pushed by zamundaaa into branch 'Plasma/5.24'.

egldmabuf: if modifiers are not supported, send DRM_FORMAT_MOD_INVALID

An empty modifier list will get ignored and does not mean implicit
modifiers are allowed


(cherry picked from commit 031bb305e3868b85f1b08145953f021f9b8a938e)

M  +1    -1    src/platformsupport/scenes/opengl/egl_dmabuf.cpp

https://invent.kde.org/plasma/kwin/commit/a5bca1f1a92bc256c3df538bab7716817872b800
Comment 13 Zamundaaa 2022-01-14 10:32:16 UTC
Ah, Polaris doesn't really have modifier support, the extension is supported but doesn't expose any modifiers. That explains it
Comment 14 Kyle Devir 2022-01-14 13:27:07 UTC
Can confirm there is no fallback to llvmpipe now. Thanks for the hard work, as usual. :)