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?"
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.
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.
A possibly relevant merge request was started @ https://invent.kde.org/plasma/kwin/-/merge_requests/1875
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?
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.
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
A possibly relevant merge request was started @ https://invent.kde.org/plasma/kwin/-/merge_requests/1876
@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.
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
With MR 1876, the wayland-egl format table warnings are gone and nothing falls back to llvmpipe anymore. Thanks!
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
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
Ah, Polaris doesn't really have modifier support, the extension is supported but doesn't expose any modifiers. That explains it
Can confirm there is no fallback to llvmpipe now. Thanks for the hard work, as usual. :)