On Mon, 16 Mar 2026 at 07:10, Michael Tokarev <[email protected]> wrote: > > The following changes since commit fff352b9b6080e580aa1fadd29b4eccf4cb2922a: > > Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging > (2026-03-12 15:21:06 +0000) > > are available in the Git repository at: > > https://gitlab.com/mjt0k/qemu.git tags/pull-trivial-patches > > for you to fetch changes up to 4ba98cfd263ba3e657b9d18c90bc5a4f2dcb0c63: > > rename CONFIG_EPOLL_CREATE1 to CONFIG_EPOLL, and stop checking for epoll in > meson.build (2026-03-16 10:05:25 +0300) > > ---------------------------------------------------------------- > trivial patches for 2026-03-16 > > a few patches accumulated in trivial-patches tree to date. > A larger part of it is my linux-user cleanup series. > > ----------------------------------------------------------------
Hi; this fails to build on some configs, eg: https://gitlab.com/qemu-project/qemu/-/jobs/13506360670 ../net/slirp.c:72:12: error: ‘get_last_str_sep’ defined but not used [-Werror=unused-function] 72 | static int get_last_str_sep(char *buf, int buf_size, const char **pp, int sep) | ^~~~~~~~~~~~~~~~ Looks like one of the patches defines the function unconditionally but puts the only callsite inside an ifdef, so if the config means we don't compile the code that calls it then the compiler complains about the unused function. thanks -- PMM
