git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Git on Windows maps creation time onto changed time
@ 2018-02-01 23:10 Keith Goldfarb
  2018-02-01 23:22 ` Ævar Arnfjörð Bjarmason
  2018-02-02 17:38 ` Johannes Sixt
  0 siblings, 2 replies; 7+ messages in thread
From: Keith Goldfarb @ 2018-02-01 23:10 UTC (permalink / raw)
  To: git

Dear git,

While tracking down a problem with a filesystem shared by Windows and Ubuntu, I came across the following code in compat/mingw.c (ming_fstat(), also in do_lstat()):

	if (GetFileInformationByHandle(fh, &fdata)) {
		buf->st_ino = 0;
		buf->st_gid = 0;
		buf->st_uid = 0;
		buf->st_nlink = 1;
		buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes);
		buf->st_size = fdata.nFileSizeLow |
			(((off_t)fdata.nFileSizeHigh)<<32);
		buf->st_dev = buf->st_rdev = 0; /* not used by Git */
		buf->st_atime = filetime_to_time_t(&(fdata.ftLastAccessTime));
		buf->st_mtime = filetime_to_time_t(&(fdata.ftLastWriteTime));
		buf->st_ctime = filetime_to_time_t(&(fdata.ftCreationTime));
		return 0;
	}

The assignment of buf->st_ctime doesn’t seem right to me. I understand there’s no good choice here, but I think a better choice would be to duplicate the definition used for st_mtime.

Background: When I do a git status on Windows and then later on Ubuntu (or the other order), it is extremely slow, as the entire tree is being traversed. I tracked it down to this difference in definition of c_time. Yes, I know about the core.trustctime variable, but my problem aside this seems like an unwise choice.

Thanks for listening,

K.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-02-02 23:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-01 23:10 Git on Windows maps creation time onto changed time Keith Goldfarb
2018-02-01 23:22 ` Ævar Arnfjörð Bjarmason
2018-02-02 17:38 ` Johannes Sixt
2018-02-02 18:45   ` Keith Goldfarb
2018-02-02 21:18     ` Johannes Schindelin
2018-02-02 22:44       ` Keith Goldfarb
2018-02-02 23:01         ` Johannes Schindelin

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).