xref: /freebsd/sys/contrib/openzfs/include/sys/zfs_stat.h (revision 61145dc2b94f12f6a47344fb9aac702321880e43)
1 // SPDX-License-Identifier: CDDL-1.0
2 /*
3  * CDDL HEADER START
4  *
5  * The contents of this file are subject to the terms of the
6  * Common Development and Distribution License (the "License").
7  * You may not use this file except in compliance with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or https://opensource.org/licenses/CDDL-1.0.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24  */
25 
26 #ifndef	_SYS_FS_ZFS_STAT_H
27 #define	_SYS_FS_ZFS_STAT_H
28 
29 #ifdef _KERNEL
30 #include <sys/isa_defs.h>
31 #include <sys/types32.h>
32 #include <sys/dmu.h>
33 #endif
34 
35 #ifdef	__cplusplus
36 extern "C" {
37 #endif
38 
39 /*
40  * A limited number of zpl level stats are retrievable
41  * with an ioctl.  zfs diff is the current consumer.
42  */
43 typedef struct zfs_stat {
44 	uint64_t	zs_gen;
45 	uint64_t	zs_mode;
46 	uint64_t	zs_links;
47 	uint64_t	zs_ctime[2];
48 } zfs_stat_t;
49 
50 extern int zfs_obj_to_stats(objset_t *osp, uint64_t obj, zfs_stat_t *sb,
51     char *buf, int len);
52 
53 #ifdef	__cplusplus
54 }
55 #endif
56 
57 #endif	/* _SYS_FS_ZFS_STAT_H */
58