aboutsummaryrefslogtreecommitdiff
path: root/ext2fs/ext2fs.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-10-08 23:10:09 +0000
committerRoland McGrath <roland@gnu.org>2002-10-08 23:10:09 +0000
commit73b011e7bc07c57b140f3851a452b33d209dfddc (patch)
tree773165fc78742386f0ac979b7f3b822cd688076c /ext2fs/ext2fs.h
parent25bb7089abd2256734497a7250915ff8694e39f2 (diff)
downloadhurd-73b011e7bc07c57b140f3851a452b33d209dfddc.tar.gz
hurd-73b011e7bc07c57b140f3851a452b33d209dfddc.tar.bz2
hurd-73b011e7bc07c57b140f3851a452b33d209dfddc.zip
2002-10-08 Roland McGrath <roland@frob.com>
* ext2fs.h (struct disknode): New member `info_i_translator'. * inode.c (diskfs_set_translator): Update NP->dn->info_i_translator. * ialloc.c (diskfs_alloc_node): Clear a nonzero translator block in the on-disk inode just as we do for data blocks.
Diffstat (limited to 'ext2fs/ext2fs.h')
-rw-r--r--ext2fs/ext2fs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext2fs/ext2fs.h b/ext2fs/ext2fs.h
index 8e73ae0a..cae9d47f 100644
--- a/ext2fs/ext2fs.h
+++ b/ext2fs/ext2fs.h
@@ -1,6 +1,6 @@
/* Common definitions for the ext2 filesystem translator
- Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1999, 2002 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
@@ -160,6 +160,7 @@ struct disknode
/* Random extra info used by the ext2 routines. */
struct ext2_inode_info info;
+ uint32_t info_i_translator; /* That struct from Linux source lacks this. */
/* This file's pager. */
struct pager *pager;