chiark / gitweb /
util.h: include missing.h, for struct file_handle
authorSimon McVittie <simon.mcvittie@collabora.co.uk>
Fri, 1 Aug 2014 14:53:07 +0000 (15:53 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 3 Aug 2014 04:28:12 +0000 (00:28 -0400)
This breaks udev-builtin-btrfs.c, which reinvents some of missing.h,
so use missing.h there too.

[zj: removed #include "config.h" and wrapped #include <linux/btrfs.h>
     in ifdef HAVE_LINUX_BTRFS_H as discussed on the mailing list.]

src/shared/util.h
src/udev/udev-builtin-btrfs.c

index fd999bd9426f709b21a4568e8b2dd95c1c04cef7..3e89aaf17fe2a1e9640a355c4a7c084a921c9436 100644 (file)
@@ -84,6 +84,7 @@
 #endif
 
 #include "macro.h"
+#include "missing.h"
 #include "time-util.h"
 
 /* What is interpreted as whitespace? */
index 4e80a1d1d14407c7b82ff05fdb74ddc922e646ef..49fa16559f61d310e1253e47421616f1f2b8a264 100644 (file)
 #include <fcntl.h>
 #include <errno.h>
 #include <sys/ioctl.h>
+#ifdef HAVE_LINUX_BTRFS_H
+#include <linux/btrfs.h>
+#endif
 
+#include "missing.h"
 #include "udev.h"
 
-#define BTRFS_PATH_NAME_MAX 4087
-struct btrfs_ioctl_vol_args {
-        int64_t fd;
-        char name[BTRFS_PATH_NAME_MAX + 1];
-};
-#define BTRFS_IOCTL_MAGIC 0x94
 #define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, struct btrfs_ioctl_vol_args)
 
 static int builtin_btrfs(struct udev_device *dev, int argc, char *argv[], bool test) {