From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: passt.top; dkim=pass (2048-bit key; secure) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.a=rsa-sha256 header.s=202502 header.b=WDTxUS35; dkim-atps=neutral Received: from mail.ozlabs.org (mail.ozlabs.org [IPv6:2404:9400:2221:ea00::3]) by passt.top (Postfix) with ESMTPS id 9651A5A061A for ; Mon, 10 Feb 2025 10:18:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202502; t=1739179087; bh=1y+O5Umhwampv729fCJvpk7v4DlfhcEaMwaYbLS6tCE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WDTxUS352rizVhhQdrdg7y1yZHTDNDZaZNVQC+iUotMELyGD7Sl9NMszS0uUfMcF6 FAjCUnbv8KyAyUqRdmxJWJDuRVCuSqZDI+XNd6CIHgMfZzea9Xg7n7A+tNvPJIWitg YFoqYvC4VEhM6eEdZCC/DVfmnMCJeVPXmt4XqlDKVi7A7tIAgFPzhkhPiR41GZy0kZ v6hBpxWTLmpnkF2GEi1PSos68/D2gqbAYW1jSlS0dY4gLTF9C4J457sfrsizyrzl88 dhWrUUrZG2GGyng4zbyj7B7r0K0Q4bZpCb/niIwNXs0TYOf6QU39Pji2n1/kxdLpAA UbuJeWGIVqOIg== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4YrzWg4jlbz4wcm; Mon, 10 Feb 2025 20:18:07 +1100 (AEDT) From: David Gibson To: passt-dev@passt.top, Stefano Brivio Subject: [PATCH v14 02/14] fixup: Remove unused iov field in struct migrate_stage Date: Mon, 10 Feb 2025 20:17:53 +1100 Message-ID: <20250210091805.2261228-3-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250210091805.2261228-1-david@gibson.dropbear.id.au> References: <20250210091805.2261228-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: X4USA7XB5ATKXFM7TMEPS35FWRRTRWJZ X-Message-ID-Hash: X4USA7XB5ATKXFM7TMEPS35FWRRTRWJZ X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Signed-off-by: David Gibson --- migrate.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/migrate.h b/migrate.h index d2997795..2c51cd97 100644 --- a/migrate.h +++ b/migrate.h @@ -24,7 +24,6 @@ struct migrate_header { * @name: Stage name (for debugging) * @source: Callback to implement this stage on the source * @target: Callback to implement this stage on the target - * @iov: Optional data section to transfer */ struct migrate_stage { const char *name; @@ -32,8 +31,6 @@ struct migrate_stage { int (*target)(struct ctx *c, const struct migrate_stage *stage, int fd); /* Add here separate rollback callbacks if needed */ - - struct iovec iov; }; /** -- 2.48.1