Deleted Added
full compact
42c42
< * $FreeBSD: head/sys/fs/ext2fs/ext2_vnops.c 221128 2011-04-27 18:25:35Z jhb $
---
> * $FreeBSD: head/sys/fs/ext2fs/ext2_vnops.c 221166 2011-04-28 14:27:17Z jhb $
741c741
< error = ext2_update(vp, 1);
---
> error = ext2_update(vp, !DOINGASYNC(vp));
887c887
< if ((error = ext2_update(fvp, 1)) != 0) {
---
> if ((error = ext2_update(fvp, !DOINGASYNC(fvp))) != 0) {
946c946
< error = ext2_update(tdvp, 1);
---
> error = ext2_update(tdvp, !DOINGASYNC(tdvp));
1214c1214
< error = ext2_update(dvp, 1);
---
> error = ext2_update(dvp, !DOINGASYNC(dvp));
1658c1658
< error = ext2_update(tvp, 1);
---
> error = ext2_update(tvp, !DOINGASYNC(tvp));