Commit
f8f57747222 ("generic/530: fix shutdown failure of generic/530 in
overlay") improperly clears an overlayfs test failure by shutting down
the filesystem after all the tempfiles are closed, which totally defeats
the purpose of both generic/530 and xfs/501. Revert this commit so we
can fix it properly.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
static int max_fd = -1;
static unsigned int nr_opened = 0;
static float start_time;
+static int shutdown_fs = 0;
void clock_time(float *time)
{
end_time - start_time);
fflush(stdout);
+ if (shutdown_fs) {
+ /*
+ * Flush the log so that we have to process the
+ * unlinked inodes the next time we mount.
+ */
+ int flag = XFS_FSOP_GOING_FLAGS_LOGFLUSH;
+ int ret;
+
+ ret = ioctl(min_fd, XFS_IOC_GOINGDOWN, &flag);
+ if (ret) {
+ perror("shutdown");
+ exit(2);
+ }
+ exit(0);
+ }
+
clock_time(&start_time);
for (fd = min_fd; fd <= max_fd; fd++)
close(fd);
if (ret)
perror(argv[1]);
}
+ if (argc > 2 && !strcmp(argv[2], "shutdown"))
+ shutdown_fs = 1;
clock_time(&start_time);
while (1)
# Open a lot of unlinked files
echo create >> $seqres.full
-$here/src/t_open_tmpfiles $SCRATCH_MNT >> $seqres.full
-_scratch_shutdown -f
-
+$here/src/t_open_tmpfiles $SCRATCH_MNT shutdown >> $seqres.full
# Unmount to prove that we can clean it all
echo umount >> $seqres.full
# Open a lot of unlinked files
echo create >> $seqres.full
-$here/src/t_open_tmpfiles $SCRATCH_MNT >> $seqres.full
-_scratch_shutdown -f
-
+$here/src/t_open_tmpfiles $SCRATCH_MNT shutdown >> $seqres.full
# Unmount to prove that we can clean it all
echo umount >> $seqres.full