diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-10 21:41:39 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-10 21:41:39 -0500 |
commit | abede81c4fb2e3b85d8760f25e3da39d2c69a134 (patch) | |
tree | 26c893ec108d837eb9171d678c55a1cea7b22af4 /fs/btrfs/export.h | |
parent | c9d557c19f94df42db78d4a5de4d25feee694bad (diff) | |
parent | c59765042f53a79a7a65585042ff463b69cb248c (diff) |
Merge commit 'v2.6.29-rc1' into core/urgent
Diffstat (limited to 'fs/btrfs/export.h')
-rw-r--r-- | fs/btrfs/export.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fs/btrfs/export.h b/fs/btrfs/export.h new file mode 100644 index 000000000000..074348a95841 --- /dev/null +++ b/fs/btrfs/export.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #ifndef BTRFS_EXPORT_H | ||
2 | #define BTRFS_EXPORT_H | ||
3 | |||
4 | #include <linux/exportfs.h> | ||
5 | |||
6 | extern const struct export_operations btrfs_export_ops; | ||
7 | |||
8 | struct btrfs_fid { | ||
9 | u64 objectid; | ||
10 | u64 root_objectid; | ||
11 | u32 gen; | ||
12 | |||
13 | u64 parent_objectid; | ||
14 | u32 parent_gen; | ||
15 | |||
16 | u64 parent_root_objectid; | ||
17 | } __attribute__ ((packed)); | ||
18 | |||
19 | #endif | ||