summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-04-11 17:28:17 +0000
committerMiles Bader <miles@gnu.org>1996-04-11 17:28:17 +0000
commit07d12810458cf507849afae4f1dcee9c6827a9fa (patch)
treecec66ff25e19660c2aa36d4bc44b3569c62b5ddf
parent83bd0d3fdcaca4aab87bae6dfd079ac9d437cd29 (diff)
(struct disknode): Get rid of NUMBER field; all references replaced by
references to the CACHE_ID field in the corresponding node.
-rw-r--r--ext2fs/ext2fs.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/ext2fs/ext2fs.h b/ext2fs/ext2fs.h
index c47bd2fc..bef59a3d 100644
--- a/ext2fs/ext2fs.h
+++ b/ext2fs/ext2fs.h
@@ -141,9 +141,6 @@ void *memscan(void *buf, unsigned char ch, unsigned len);
/* ext2fs specific per-file data. */
struct disknode
{
- /* The inode number of this file. */
- ino_t number;
-
/* For a directory, this array holds the number of directory entries in
each DIRBLKSIZE piece of the directory. */
int *dirents;
@@ -313,10 +310,6 @@ dino (ino_t inum)
/* Write all active disknodes into the inode pager. */
void write_all_disknodes ();
-/* Fetch inode INUM, set *NPP to the node structure; gain one user reference
- and lock the node. */
-error_t iget (ino_t inum, struct node **npp);
-
/* Lookup node INUM (which must have a reference already) and return it
without allocating any new references. */
struct node *ifind (ino_t inum);