Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / include / linux / ceph / types.h
blob27cd973d3881b2bcaf798ed2128c1306fddfa106
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _FS_CEPH_TYPES_H
3 #define _FS_CEPH_TYPES_H
5 /* needed before including ceph_fs.h */
6 #include <linux/in.h>
7 #include <linux/types.h>
8 #include <linux/fcntl.h>
9 #include <linux/string.h>
11 #include <linux/ceph/ceph_fs.h>
12 #include <linux/ceph/ceph_frag.h>
13 #include <linux/ceph/ceph_hash.h>
16 * Identify inodes by both their ino AND snapshot id (a u64).
18 struct ceph_vino {
19 u64 ino;
20 u64 snap;
24 /* context for the caps reservation mechanism */
25 struct ceph_cap_reservation {
26 int count;
30 #endif