From a1bff7dbe3ad8950d8cf1b5640aa7a7b2e89211d Mon Sep 17 00:00:00 2001 From: Jean-Pierre André Date: Mon, 11 Mar 2019 18:35:23 +0100 Subject: Defined the (*ioctl)() commands as unsigned int (#381) Instead of the Posix ioctl(2) command, Linux uses its own variant of ioctl() in which the commands are requested as "unsigned long" and truncated to 32 bits by the fuse kernel module. Transmitting the commands to user space file systems as "unsigned int" is a workaround for processing ioctl() commands which do not fit into a signed int. --- ChangeLog.rst | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ChangeLog.rst') diff --git a/ChangeLog.rst b/ChangeLog.rst index 74bd0be..ca04319 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,7 @@ +* Changed ioctl commands to "unsigned int" in order to support commands + which do not fit into a signed int. Commands issued by applications + are still truncated to 32 bits. + libfuse 3.4.2 (2019-03-09) ========================== -- cgit v1.2.3