When I ported fsstress from the XFS testsuite to run standalone I introduced
a bug which broke some test cases. This patch fixes it. Found by
Andrew Morton.
Please apply.
-Andi
Index: testcases/kernel/fs/fsstress/fsstress.c
===================================================================
RCS file: /cvsroot/ltp/ltp/testcases/kernel/fs/fsstress/fsstress.c,v
retrieving revision 1.2
diff -u -u -r1.2 fsstress.c
--- testcases/kernel/fs/fsstress/fsstress.c 17 Jan 2002 20:50:12 -0000 1.2
+++ testcases/kernel/fs/fsstress/fsstress.c 13 Oct 2002 02:59:39 -0000
@@ -1676,8 +1676,8 @@
esz = a.fsx_estsize;
}
- add_to_flist(type, id, parid);
#endif
+ add_to_flist(type, id, parid);
close(fd);
}
if (v)
|