Bug 50261 - Invalid d_type on readdir(), but e2fsck sees correct type
Summary: Invalid d_type on readdir(), but e2fsck sees correct type
Status: RESOLVED OBSOLETE
Alias: None
Product: File System
Classification: Unclassified
Component: ext4 (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: fs_ext4@kernel-bugs.osdl.org
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-08 09:40 UTC by Bernd Schubert
Modified: 2013-07-22 16:28 UTC (History)
0 users

See Also:
Kernel Version: 3.11
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description Bernd Schubert 2012-11-08 09:40:08 UTC
While writing the on-disk-format upgrade tool for the next fhgfs version, I also added a sanity check for the hash-directories. And while testing it it reported a problem:

* Migrating inodes... (Processing 8192 hash directories...)
* Progress: 
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/A7 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/177 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/739 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/835 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/D84 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/111C type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/13C1 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/15B7 type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/17EB type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/19CA type: 8
Warning entry is not a directory: /fhgfs/meta/meta.dir//entries/1FD4 type: 8

So somehow those few directories out of 8192 (for dentries and inodes, each, so two times 8192) seem to have a wrong directory type. 
So I went ahead and checked if e2fsck would correct it. But e2fsck reported no errors. So I went further ahead and added some debug code to e2fsck and indeed, e2fsck sees the correct type:

inode: 6293106 nameLen: 4 entryName: 17EB fileType: 2 should_be: 2

(fprintf line in check_filetype() ).

For verification, the stat() output also looks right:

schubert@squeeze2 ~>stat /fhgfs/meta/meta.dir//entries/17EB
  File: `/fhgfs/meta/meta.dir//entries/17EB'
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: fe10h/65040d    Inode: 6293106     Links: 2
Access: (0755/drwxr-xr-x)  Uid: ( 5741/schubert)   Gid: (  100/   users)
Access: 2012-11-07 13:37:00.280689000 +0100
Modify: 2012-10-31 16:27:14.024689006 +0100
Change: 2012-10-31 16:27:14.024689006 +0100


So somehow either libc or kernel report a wrong file_type field for those dentries. I will do some in-kernel debugging later on.
Comment 1 Bernd Schubert 2013-07-22 16:28:07 UTC
Hmm, no idea why, but I cannot reproduce it anymore. When it occured it was very reproducible, but I didn't have time to investigate that time.
So I'm closing it for now.

Note You need to log in before you can comment on or make changes to this bug.