summaryrefslogtreecommitdiff
path: root/src/udev
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-08-01 15:53:07 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2014-08-03 00:28:12 -0400
commitdced15575f7bf172e3c9d798c43477539525558c (patch)
tree2fd54bdcd17cd2338278e98be3ef40c8b8369bd8 /src/udev
parent0943f4b7b22fb676fcd9ede50f8133bf6d4a270b (diff)
util.h: include missing.h, for struct file_handle
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.]
Diffstat (limited to 'src/udev')
-rw-r--r--src/udev/udev-builtin-btrfs.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/udev/udev-builtin-btrfs.c b/src/udev/udev-builtin-btrfs.c
index 4e80a1d1d..49fa16559 100644
--- a/src/udev/udev-builtin-btrfs.c
+++ b/src/udev/udev-builtin-btrfs.c
@@ -24,15 +24,13 @@
#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) {