Whamcloud - gitweb
Many files:
[tools/e2fsprogs.git] / relocate / relocate.h
1 /*
2  * relocate.h
3  * 
4  * Copyright (C) 1996 Theodore Ts'o.  This file may be redistributed
5  * under the terms of the GNU Public License.
6  */
7
8 struct ext2_relocate_entry {
9         __u32   new, old;
10         __u32   owner;
11 }
12
13 struct ext2_relocate_struct {
14         int     magic;
15         int     count;
16         int     size;
17         int     max;
18         struct ext2_relocate_entry *entries;
19 };
20
21 typedef struct ext2_relocate_struct  *ext2_relocate_table;