From: Nathan Scott Date: Sat, 17 Jun 2006 06:11:37 +0000 (+0000) Subject: Comment out extsize setting for all allocators until delalloc accounting issue resolved. X-Git-Tag: v1.1.0~633 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=26fdd3c59c0334258fb32ae7c0648147ccf79d01;p=xfstests-dev.git Comment out extsize setting for all allocators until delalloc accounting issue resolved. Merge of master-melb:xfs-cmds:26268a by kenmcd. --- diff --git a/ltp/fsstress.c b/ltp/fsstress.c index 13a6315b..27f7307c 100644 --- a/ltp/fsstress.c +++ b/ltp/fsstress.c @@ -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;