blob: 57488ecd7d4ef59adb0c57f3836d2803eb3170ed [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David Sterba9888c342018-04-03 19:16:55 +02002
Balaji Raobe6e8dc2008-07-21 02:01:56 +05303#ifndef BTRFS_EXPORT_H
4#define BTRFS_EXPORT_H
5
6#include <linux/exportfs.h>
7
8extern const struct export_operations btrfs_export_ops;
9
10struct btrfs_fid {
11 u64 objectid;
12 u64 root_objectid;
13 u32 gen;
14
15 u64 parent_objectid;
16 u32 parent_gen;
17
18 u64 parent_root_objectid;
19} __attribute__ ((packed));
20
21#endif