search for: testbugdir

Displaying 1 result from an estimated 1 matches for "testbugdir".

2004 Dec 05
1
BUG in fs/ext3/dir.c
...at_buf; if (argc != 3) { fprintf(stderr, "Usage: %s <no. of files> <filename length>\n", argv[0]); exit(1); } else { no_of_files = atoi(argv[1]); filename_length = atoi(argv[2]); } /* Create necessary dirs. */ (void)mkdir("testbugdir", S_IRUSR|S_IWUSR|S_IXUSR); (void)mkdir("testbugdir/input", S_IRUSR|S_IWUSR|S_IXUSR); (void)mkdir("testbugdir/output", S_IRUSR|S_IWUSR|S_IXUSR); /* Create input files. */ strcpy(pathname, "testbugdir/input/"); ptr = pathname + strlen(pathname);...