diff options
author | Roland McGrath <roland@gnu.org> | 1999-10-03 22:52:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-10-03 22:52:43 +0000 |
commit | ec38189f01d703d747e441e00cf847b09382df38 (patch) | |
tree | 8c866526b1fe9a0f1ec1a7ef376361b24f2fcb73 | |
parent | faed4188861a70551f5e46b2d982cd286bc6ce99 (diff) |
1999-10-03 Roland McGrath <roland@baalperazim.frob.com>
* dir.c (file_type_ext2): #if 0 out.
(diskfs_direnter_hard): #if 0 out code to set file_type field in
directory entries. Instead, always set it to zero.
-rw-r--r-- | ext2fs/dir.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext2fs/dir.c b/ext2fs/dir.c index 9422db94..0e518f83 100644 --- a/ext2fs/dir.c +++ b/ext2fs/dir.c @@ -113,6 +113,7 @@ static const unsigned char ext2_file_type[EXT2_FT_MAX] = [EXT2_FT_SOCK] = DT_SOCK, [EXT2_FT_SYMLINK] = DT_LNK, }; +#if 0 static const unsigned char file_type_ext2[] = { [DT_UNKNOWN] = EXT2_FT_UNKNOWN, @@ -124,6 +125,7 @@ static const unsigned char file_type_ext2[] = [DT_SOCK] = EXT2_FT_SOCK, [DT_LNK] = EXT2_FT_SYMLINK, }; +#endif /* Implement the diskfs_lookup from the diskfs library. See <hurd/diskfs.h> for the interface specification. */ @@ -622,10 +624,19 @@ diskfs_direnter_hard (struct node *dp, const char *name, struct node *np, rec_len field is already filled in. Now fill in the rest. */ new->inode = np->cache_id; +#if 0 + /* XXX We cannot enable this code because file types can change + (and conceivably quite often) with translator settings. + There is no way for the translator that determines the type of + the virtual node to cause all the directory entries linked to + its underlying inode to reflect the proper type. */ new->file_type = (EXT2_HAS_INCOMPAT_FEATURE (sblock, EXT2_FEATURE_INCOMPAT_FILETYPE) ? file_type_ext2[IFTODT (np->dn_stat.st_mode & S_IFMT)] : 0); +#else + new->file_type = 0; +#endif new->name_len = namelen; memcpy (new->name, name, namelen); |