diff options
author | Miles Bader <miles@gnu.org> | 1996-08-30 17:47:15 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-08-30 17:47:15 +0000 |
commit | 6596980003f9e97d6f6c220df0d97f976ab662fc (patch) | |
tree | a78192085fe91898feebb8bf8ba9b9531166209a /ext2fs | |
parent | 7c139988ed8fdf985d8d13db89b8a4439047d036 (diff) |
(struct disknode): New member `dir_idx'.
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/ext2fs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext2fs/ext2fs.h b/ext2fs/ext2fs.h index b84b0446..ceee9093 100644 --- a/ext2fs/ext2fs.h +++ b/ext2fs/ext2fs.h @@ -184,6 +184,9 @@ struct disknode /* True if the last page of the file has been made writable, but is only partially allocated. */ int last_page_partially_writable; + + /* Index to start a directory lookup at. */ + int dir_idx; }; struct user_pager_info |