On Mon, May 26, 2008 at 04:06:41PM +0000, kt-usenet@xxxxxxxxxxxxxxxxxx wrote: > On Mon, 26 May 2008 16:26:07 +0200, Sebastien Gross wrote: > > > I do understand that syncing filesystem is usefull and needed. > > > > But is there a good idea to add a --no-sync option to prevent that > > behaviour ? > > Just a user here, but I would prefer it if it didn't sync at all. If I > want to sync it, I will, or the operating system will handle it like it > does with all other file accesses. Well I guess I missed something in my explanation. I do my backup to an usb stick (somewhere like /media/usb0) and I work in git dirs (somewhere in /srv/git-repo). Obviously these 2 mount points are in different physical devices. In a common run the system would sync cache and storage media when needed. But git (both prune and prune-packed command) call the sync() function before pruning objects and packs: builtin-prune-packed.c: int cmd_prune_packed(int argc, const char **argv, const char *prefix) ... sync(); prune_packed_objects(opts); return 0; } The code is exactly the same in builtin-prune.c. calling sync is a good way to be sure that no unsaved data remains in ram and then everything would be included in the packs. This must remain the default behaviour. But in some case, sync() would also act on usb storage (which is my case) and would be very slow. I do repack a lot of repositories something such as: for d in *.git; do cd $d; git repack -a -d; cd ..; done In the same time if I use the usb stick to do some backup on it, it would change all the time then sync() would flush a changed cache for each call. That's why I suggested to add a --no-sync option to bypass the sync() call. In any case this would be a dangerous option to not use unless you know what you are doing. Cheers -- Sébastien Gross -- 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