View | Details | Raw Unified | Return to bug 128832
Collapse All | Expand All

(-)sys/ufs/ffs/ffs_snapshot.c (+4 lines)
Lines 345-350 Link Here
345
		if (error)
345
		if (error)
346
			goto out;
346
			goto out;
347
		bawrite(nbp);
347
		bawrite(nbp);
348
		if (cg % 10 == 0)
349
			ffs_syncvnode(vp, MNT_WAIT);
348
	}
350
	}
349
	/*
351
	/*
350
	 * Copy all the cylinder group maps. Although the
352
	 * Copy all the cylinder group maps. Although the
Lines 366-371 Link Here
366
			goto out;
368
			goto out;
367
		error = cgaccount(cg, vp, nbp, 1);
369
		error = cgaccount(cg, vp, nbp, 1);
368
		bawrite(nbp);
370
		bawrite(nbp);
371
		if (cg % 10 == 0)
372
			ffs_syncvnode(vp, MNT_WAIT);
369
		if (error)
373
		if (error)
370
			goto out;
374
			goto out;
371
	}
375
	}

Return to bug 128832