From 5c54bdbf855ac26d154ad8b8f22a71edf03651ba Mon Sep 17 00:00:00 2001 From: Nic Henke Date: Fri, 9 Dec 2016 15:18:01 -0700 Subject: [PATCH] Change type for DATA_VERSION ioctl to __u64 For consistency and to keep upstream users (scout-utils, etc) from needing to include different type headers, we'll change the type to match the rest of the header. Signed-off-by: Nic Henke --- kmod/src/ioctl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmod/src/ioctl.h b/kmod/src/ioctl.h index be5e5d9f..e84db63c 100644 --- a/kmod/src/ioctl.h +++ b/kmod/src/ioctl.h @@ -83,7 +83,7 @@ struct scoutfs_ioctl_ino_path { #define SCOUTFS_IOC_INODE_DATA_SINCE _IOW(SCOUTFS_IOCTL_MAGIC, 3, \ struct scoutfs_ioctl_inodes_since) -#define SCOUTFS_IOC_DATA_VERSION _IOW(SCOUTFS_IOCTL_MAGIC, 4, u64) +#define SCOUTFS_IOC_DATA_VERSION _IOW(SCOUTFS_IOCTL_MAGIC, 4, __u64) struct scoutfs_ioctl_release { __u64 offset;