From 628c3f25f1670c59a9cccef8febf02ec9981da96 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 14 Jul 2026 10:56:19 +0200 Subject: [PATCH] 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. --- src/repart/repart.c | 3 +++ 1 file changed, 3 insertions(+) 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)