All of lore.kernel.org
 help / color / mirror / Atom feed
* struct dirent *ent->d_type weirdness
@ 2005-09-19 13:58 Kristian Köhntopp
  2005-09-19 14:33 ` Vladimir V. Saveliev
  0 siblings, 1 reply; 5+ messages in thread
From: Kristian Köhntopp @ 2005-09-19 13:58 UTC (permalink / raw)
  To: reiserfs-list


I have a machine running under 2.6.13-SMP, using reiserfs 3.6. On 
this machine, directories are flagged strangely and thus code 
which operates properly under ext3 fails with reiserfs.

Why is this, and what am I doing wrong?

My goal is to walk a spool directory recursively and deal with 
all files inside directories that I encounter. For that, I check 
struct dirent *ent->d_type and get unexpected results.


mx15:/tmp # uname -a
Linux mx15 2.6.13web #4 SMP Fri Sep 16 16:03:39 CEST 2005 i686 
unknown

mx15:/tmp # cat rtest.cpp
#include <stdio.h>
#include <dirent.h>

int main(int argc, char** argv)
{
struct dirent *ent = NULL;
DIR *dd = NULL;

dd = opendir(argv[1]);
if (dd != NULL) {
         while ((ent = readdir(dd)) != NULL) {
	 /* disable actual test and print ent->d_type */
	 /* ent->d_type==DT_DIR && ent->d_name[1]==0 && ent->d_name[0]>0 
&& ent->d_name[0]!='.'*/
		if (1) {
			printf("%s (%d) \n", ent->d_name, ent->d_type);
		}
         }
         closedir(dd);
}
}
mx15:/tmp # ./rtest /netsite/var/spool/wmail.reiser
. (0)
.. (0)
head (0)
dbclub02 (0)
mx15:/tmp # df -Th /netsite/var/spool/wmail.reiser
Dateisystem   Typ    Größe Benut  Verf Ben% Eingehängt auf
/reiserfile
           reiserfs    2.0G   33M  2.0G 
2% /netsite/var/spool/wmail.reiser



Kristian

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-09-22 15:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-19 13:58 struct dirent *ent->d_type weirdness Kristian Köhntopp
2005-09-19 14:33 ` Vladimir V. Saveliev
2005-09-19 16:25   ` Kristian Koehntopp
2005-09-19 17:14   ` Andreas Dilger
2005-09-22 15:03   ` Grzegorz Jaśkiewicz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.