C Git uses fsync() to ensure that a pack file is stable on disk before it starts to delete any other copies of the data, or before it tries to update refs to refer to data stored in the pack. This makes it a lot less likely that a repository will see corruption due to refs pointing at unavailable objects. We now force our pack and its associated .idx file to disk before we close the file descriptors, but after we have finished reading and writing all of the data. This way we can be fairly certain a future user of the data (like a RefUpdate) always has objects. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../src/org/spearce/jgit/transport/IndexPack.java | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java b/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java index db9268e..7b1f7ee 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java +++ b/org.spearce.jgit/src/org/spearce/jgit/transport/IndexPack.java @@ -259,6 +259,8 @@ public void index(final ProgressMonitor progress) throws IOException { fixThinPack(progress); } } + if (packOut != null) + packOut.getChannel().force(true); packDigest = null; baseById = null; @@ -510,6 +512,7 @@ private void writeIdx() throws IOException { else iw = PackIndexWriter.createVersion(os, outputVersion); iw.write(list, packcsum); + os.getChannel().force(true); } finally { os.close(); } -- 1.6.0.174.gd789c -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html