From 4cf346631c93d51851e6c932d957b0505f185d49 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Mon, 5 Jan 2015 13:38:31 +0100 Subject: [PATCH] kdbus.h: close ioctl number gap (ABI break) 0x32 was used by KDBUS_CMD_CANCEL which was removed. Close the number gap and reuse that number for CMD_FREE. Signed-off-by: Daniel Mack --- kdbus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdbus.h b/kdbus.h index 75af6da..5165ba3 100644 --- a/kdbus.h +++ b/kdbus.h @@ -1024,7 +1024,7 @@ struct kdbus_cmd_match { struct kdbus_cmd_send) #define KDBUS_CMD_RECV _IOWR(KDBUS_IOCTL_MAGIC, 0x31, \ struct kdbus_cmd_recv) -#define KDBUS_CMD_FREE _IOW(KDBUS_IOCTL_MAGIC, 0x33, \ +#define KDBUS_CMD_FREE _IOW(KDBUS_IOCTL_MAGIC, 0x32, \ struct kdbus_cmd_free) #define KDBUS_CMD_NAME_ACQUIRE _IOWR(KDBUS_IOCTL_MAGIC, 0x40, \ -- 2.34.1