summaryrefslogtreecommitdiff
path: root/src/missing.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-09-23 17:11:19 +0200
committerLennart Poettering <lennart@poettering.net>2010-09-23 17:11:19 +0200
commit746f89063666be8c4d538271c646585ac4fc4353 (patch)
tree23e82ec97c9a014e95485f42a3618f2532bb9fcc /src/missing.h
parent0511502083378313767ec4a6b950d124528c21e4 (diff)
readahead: add btrfs defrag support
Diffstat (limited to 'src/missing.h')
-rw-r--r--src/missing.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/missing.h b/src/missing.h
index 539979e1bd..ff5dcb4092 100644
--- a/src/missing.h
+++ b/src/missing.h
@@ -101,4 +101,25 @@ static inline int fanotify_mark(int fanotify_fd, unsigned int flags, uint64_t ma
return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask, dfd, pathname);
}
+#ifndef BTRFS_IOCTL_MAGIC
+#define BTRFS_IOCTL_MAGIC 0x94
+#endif
+
+#ifndef BTRFS_PATH_NAME_MAX
+#define BTRFS_PATH_NAME_MAX 4087
+#endif
+
+struct btrfs_ioctl_vol_args {
+ int64_t fd;
+ char name[BTRFS_PATH_NAME_MAX + 1];
+};
+
+#ifndef BTRFS_IOC_DEFRAG
+#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, struct btrfs_ioctl_vol_args)
+#endif
+
+#ifndef BTRFS_SUPER_MAGIC
+#define BTRFS_SUPER_MAGIC 0x9123683E
+#endif
+
#endif