From 26fdd3c59c0334258fb32ae7c0648147ccf79d01 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Sat, 17 Jun 2006 06:11:37 +0000 Subject: [PATCH] Comment out extsize setting for all allocators until delalloc accounting issue resolved. Merge of master-melb:xfs-cmds:26268a by kenmcd. --- ltp/fsstress.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.47.3