From: Lennart Poettering Date: Tue, 14 Jul 2026 08:56:19 +0000 (+0200) Subject: repart: say when we are calculating Verity data X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=628c3f25f1670c59a9cccef8febf02ec9981da96;p=thirdparty%2Fsystemd.git repart: say when we are calculating Verity data We say when we encrypt a partition, let's also say when we calculate verity protection data. --- diff --git a/src/repart/repart.c b/src/repart/repart.c index 645d22ea646..bd8df612633 100644 --- a/src/repart/repart.c +++ b/src/repart/repart.c @@ -6006,6 +6006,9 @@ static int partition_format_verity_hash( if (r < 0) return r; + if (p->partno != UINT64_MAX) + log_info("Calculating Verity protection data for future partition %" PRIu64 "...", p->partno); + if (!node) { r = partition_target_prepare(context, p, p->new_size, /* need_path= */ true, &t); if (r < 0)