From: Elijah Newren <newren@gmail.com> To: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com> Cc: Elijah Newren via GitGitGadget <gitgitgadget@gmail.com>, Git Mailing List <git@vger.kernel.org>, Victoria Dye <vdye@github.com>, Derrick Stolee <stolee@gmail.com>, Lessley Dennington <lessleydennington@gmail.com> Subject: Re: [PATCH v2 5/5] Accelerate clear_skip_worktree_from_present_files() by caching Date: Wed, 16 Feb 2022 20:40:48 -0800 [thread overview] Message-ID: <CABPp-BHbpO7CUXApVcEuv-Q-+_+oCTh_gmRO9UOwQPYPsbAH+A@mail.gmail.com> (raw) In-Reply-To: <CABPp-BEog_CBEjx3FBGdUAhjwrPPDuP54HWQssAWnGeUnr0cBg@mail.gmail.com> On Wed, Feb 16, 2022 at 8:30 AM Elijah Newren <newren@gmail.com> wrote: > > On Wed, Feb 16, 2022 at 1:37 AM Ævar Arnfjörð Bjarmason > <avarab@gmail.com> wrote: > > > > On Fri, Jan 14 2022, Elijah Newren via GitGitGadget wrote: > > ... > > > + > > > + /* Free previous dirname, and cache path's dirname */ > > > + *dirname = path; > > > + *dir_len = newdir - path + 1; > > > + > > > + tmp = xstrndup(path, *dir_len); > > > + *dir_found = !lstat(tmp, &st); > > > > In most other places we're a bit more careful about lstat() error handling, e.g.: > > > > builtin/init-db.c: if (lstat(path->buf, &st_git)) { > > builtin/init-db.c- if (errno != ENOENT) > > builtin/init-db.c- die_errno(_("cannot stat '%s'"), path->buf); > > builtin/init-db.c- } > > > > Shouldn't we do the same here and at least error() on return values of > > -1 with an accompanying errno that isn't ENOENT? > > If we should do that everywhere, should we have an xlstat in wrapper.[ch]? Turns out we already DO have a file_exists() wrapper function, but it's found in dir.c rather than wrapper.[ch]. However, it doesn't bother to check errno either...
next prev parent reply other threads:[~2022-02-17 4:41 UTC|newest] Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-01-13 16:43 [PATCH 0/5] Remove the present-despite-SKIP_WORKTREE class of bugs (for sparse-checkouts) Elijah Newren via GitGitGadget 2022-01-13 16:43 ` [PATCH 1/5] t1011: add testcase demonstrating accidental loss of user modifications Elijah Newren via GitGitGadget 2022-01-13 16:43 ` [PATCH 2/5] unpack-trees: fix accidental loss of user changes Elijah Newren via GitGitGadget 2022-01-13 16:43 ` [PATCH 3/5] repo_read_index: clear SKIP_WORKTREE bit from files present in worktree Elijah Newren via GitGitGadget 2022-01-13 16:43 ` [PATCH 4/5] Update documentation related to sparsity and the skip-worktree bit Elijah Newren via GitGitGadget 2022-01-13 16:43 ` [PATCH 5/5] Accelerate clear_skip_worktree_from_present_files() by caching Elijah Newren via GitGitGadget 2022-01-13 23:35 ` Elijah Newren 2022-01-14 15:59 ` [PATCH v2 0/5] Remove the present-despite-SKIP_WORKTREE class of bugs (for sparse-checkouts) Elijah Newren via GitGitGadget 2022-01-14 15:59 ` [PATCH v2 1/5] t1011: add testcase demonstrating accidental loss of user modifications Elijah Newren via GitGitGadget 2022-02-16 8:51 ` Ævar Arnfjörð Bjarmason 2022-02-16 16:02 ` Elijah Newren 2022-01-14 15:59 ` [PATCH v2 2/5] unpack-trees: fix accidental loss of user changes Elijah Newren via GitGitGadget 2022-01-14 15:59 ` [PATCH v2 3/5] repo_read_index: clear SKIP_WORKTREE bit from files present in worktree Elijah Newren via GitGitGadget 2022-02-16 8:57 ` Ævar Arnfjörð Bjarmason 2022-02-16 16:08 ` Elijah Newren 2022-02-19 1:06 ` Jonathan Nieder 2022-02-19 16:42 ` Elijah Newren 2022-02-19 18:14 ` Jonathan Nieder 2022-02-20 5:28 ` Elijah Newren 2022-02-20 16:56 ` Derrick Stolee 2022-02-22 23:17 ` Jonathan Nieder 2022-01-14 15:59 ` [PATCH v2 4/5] Update documentation related to sparsity and the skip-worktree bit Elijah Newren via GitGitGadget 2022-02-16 9:15 ` Ævar Arnfjörð Bjarmason 2022-02-16 16:21 ` Elijah Newren 2022-01-14 15:59 ` [PATCH v2 5/5] Accelerate clear_skip_worktree_from_present_files() by caching Elijah Newren via GitGitGadget 2022-01-15 1:39 ` Victoria Dye 2022-02-16 9:32 ` Ævar Arnfjörð Bjarmason 2022-02-16 16:30 ` Elijah Newren 2022-02-17 4:40 ` Elijah Newren [this message] 2022-01-15 1:51 ` [PATCH v2 0/5] Remove the present-despite-SKIP_WORKTREE class of bugs (for sparse-checkouts) Victoria Dye
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: http://vger.kernel.org/majordomo-info.html * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=CABPp-BHbpO7CUXApVcEuv-Q-+_+oCTh_gmRO9UOwQPYPsbAH+A@mail.gmail.com \ --to=newren@gmail.com \ --cc=avarab@gmail.com \ --cc=git@vger.kernel.org \ --cc=gitgitgadget@gmail.com \ --cc=lessleydennington@gmail.com \ --cc=stolee@gmail.com \ --cc=vdye@github.com \ --subject='Re: [PATCH v2 5/5] Accelerate clear_skip_worktree_from_present_files() by caching' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this 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).