]> git.ipfire.org Git - thirdparty/util-linux.git/commit
libblkid: topology/ioctl: correctly handle kernel types
authorThomas Weißschuh <thomas@t-8ch.de>
Tue, 2 Apr 2024 16:55:29 +0000 (18:55 +0200)
committerThomas Weißschuh <thomas@t-8ch.de>
Wed, 3 Apr 2024 10:24:42 +0000 (12:24 +0200)
commita10081a52c48a5232db30d8e0a7a7570cc8163ae
treea654a49235a1a4654771b4bbbd836cfbfcb43b78
parent2722b40012740372daf3585b7c071fcbede13359
libblkid: topology/ioctl: correctly handle kernel types

Commit 5d71d711d07a ("libblkid: topolicy/ioctl: use union for multiple data types")
incorrectly assumed that set_ulong and set_int refer to the type
returned by the kernel. Instead the different function pointer names
refer to the types of the function pointers.
However all ioctls, except for the later added BLKGETDISKSEQ, return
32bit integers.
This made libblkid also interpret the upper 32bits too, leading to
garbage values.

Introduce a new member 'kernel_size' to also handle the 64bit
BLKGETDISKSEQ.

Drop data.ul as it is no actually used.

Closes #2904
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
libblkid/src/topology/ioctl.c