Re: [PATCH v2 17/17] odb/source-packed: drop pointer to "files" parent source
From: Patrick Steinhardt <hidden>
Date: 2026-06-17 07:26:56
From: Patrick Steinhardt <hidden>
Date: 2026-06-17 07:26:56
On Tue, Jun 16, 2026 at 05:51:43PM -0500, Justin Tobler wrote:
On 26/06/09 10:51AM, Patrick Steinhardt wrote:quoted
@@ -626,7 +625,7 @@ static void prepare_pack(const char *full_name, size_t full_name_len, report_garbage(PACKDIR_FILE_GARBAGE, full_name); } -static void prepare_packed_git_one(struct odb_source *source) +static void prepare_packed_git_one(struct odb_source_packed *source)At first I was a bit confused to see this change here, but IIUC previously this function was passed the "base" source of the "files" ODB. Now that we have a proper "packed" source we can use that directly instead.
Yes, exactly. Thanks for your review! Patrick