Sage Weil | de57606 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1 | #ifndef _FS_CEPH_TYPES_H |
| 2 | #define _FS_CEPH_TYPES_H |
| 3 | |
| 4 | /* needed before including ceph_fs.h */ |
| 5 | #include <linux/in.h> |
| 6 | #include <linux/types.h> |
| 7 | #include <linux/fcntl.h> |
| 8 | #include <linux/string.h> |
| 9 | |
| 10 | #include "ceph_fs.h" |
| 11 | #include "ceph_frag.h" |
Sage Weil | 1654dd0 | 2009-11-06 21:55:25 -0800 | [diff] [blame] | 12 | #include "ceph_hash.h" |
Sage Weil | de57606 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 13 | |
| 14 | /* |
| 15 | * Identify inodes by both their ino AND snapshot id (a u64). |
| 16 | */ |
| 17 | struct ceph_vino { |
| 18 | u64 ino; |
| 19 | u64 snap; |
| 20 | }; |
| 21 | |
| 22 | |
| 23 | /* context for the caps reservation mechanism */ |
| 24 | struct ceph_cap_reservation { |
| 25 | int count; |
| 26 | }; |
| 27 | |
| 28 | |
| 29 | #endif |