KVM: selftests: elf: Include <endian.h> instead of <bits/endian.h>
authorHisam Mehboob <hisamshar@gmail.com>
Thu, 9 Apr 2026 16:40:22 +0000 (21:40 +0500)
committerPaolo Bonzini <pbonzini@redhat.com>
Sat, 23 May 2026 08:05:26 +0000 (10:05 +0200)
commit2d42c7cf1a2dad694db0c518b0e004502859f11c
treef470008de25117373a234b8e43133c61be891b4e
parent06c4f99526784938663a5e82b1ea1b67a4794491
KVM: selftests: elf: Include <endian.h> instead of <bits/endian.h>

<bits/endian.h> is a glibc-internal header that explicitly states it
should never be included directly:

  #error "Never use <bits/endian.h> directly; include <endian.h> instead."

Replace it with the correct public header <endian.h> which works on
all C libraries including musl. Building KVM selftests with musl-gcc
fails with:

  lib/elf.c:10:10: fatal error: bits/endian.h: No such file or directory

Fixes: 6089ae0bd5e1 ("kvm: selftests: add sync_regs_test")
Signed-off-by: Hisam Mehboob <hisamshar@gmail.com>
Message-ID: <20260409164020.1575176-4-hisamshar@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tools/testing/selftests/kvm/lib/elf.c