Comment out extsize setting for all allocators until delalloc accounting issue resolved.

Merge of master-melb:xfs-cmds:26268a by kenmcd.
This commit is contained in:
Nathan Scott
2006-06-17 06:11:37 +00:00
parent 1e1fa61c88
commit 26fdd3c59c
+2
View File
@@ -1713,11 +1713,13 @@ creat_f(int opno, long r)
init_pathname(&f);
e1 = (random() % 100);
type = rtpct ? ((e1 > rtpct) ? FT_REG : FT_RTF) : FT_REG;
#ifdef NOTYET
if (type == FT_RTF) /* rt always gets an extsize */
extsize = (random() % 10) + 1;
else if (e1 < 10) /* one-in-ten get an extsize */
extsize = random() % 1024;
else
#endif
extsize = 0;
e = generate_fname(fep, type, &f, &id, &v);
v |= v1;