]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - include/parent.h
xfsprogs: Release v4.19.0-rc1
[thirdparty/xfsprogs-dev.git] / include / parent.h
1 // SPDX-License-Identifier: LGPL-2.1
2 /*
3 * Copyright (c) 2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6 #ifndef __PARENT_H__
7 #define __PARENT_H__
8
9 typedef struct parent {
10 __u64 p_ino;
11 __u32 p_gen;
12 __u16 p_reclen;
13 char p_name[1];
14 } parent_t;
15
16 typedef struct parent_cursor {
17 __u32 opaque[4]; /* an opaque cookie */
18 } parent_cursor_t;
19
20 #endif