From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 485391FF141 for ; Mon, 30 Mar 2026 23:48:37 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 264BF9652; Mon, 30 Mar 2026 23:49:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=rchrist.io; s=default; t=1774906773; bh=UmwEdEhQKzsdZMxoPs1ig1sTdyxIEF67gBYYU6jAmMM=; h=From:To:Cc:Subject:Date:From; b=P8IwtjRpNoj/1R+BL4AJqfA/br2uM7FQqVAmlgzEfG20aJdNoaO+Goh8v0qzPP7Fh 4P9ze0RzXiEYBtMkZpAot753gSzmcvyGJ4vZLwWUH7AydYXILKQqlpIoI9hJFKjj0m zXdUPWNmEIhHxTt0kWNelgk/7QIVzCAd4EyfmRV8YV9Vda9YmTpLfb4+PLMD/zjXGe PcTgbzFEQD4hi4HlqE3YTvg97awmBfigGpJLHOzGgsds5t7ZZB99Rb3CI+YjLcYTlo ioKZFi5CTA8DxA0CMzLQYV0Ea/rPjA3+1+YPpWvWfw52rNpHspRRYIFQkJ+aUYhNzW vWk1IzwDNM9Cw== From: Robin Christ To: pve-devel@lists.proxmox.com Subject: [PATCH ifupdown2 0/4] Fix multiple Single VXLAN Devices in bridge and some dry-run fixes Date: Mon, 30 Mar 2026 23:39:17 +0200 Message-ID: <20260330213921.533853-1-robin@rchrist.io> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 1.500 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain DMARC_MISSING 0.1 Missing DMARC policy RCVD_IN_DNSWL_NONE -0.0001 Sender listed at https://www.dnswl.org/, no trust SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: NJTGX2223BR5I4KJCYJIDJZVFUNG7FXS X-Message-ID-Hash: NJTGX2223BR5I4KJCYJIDJZVFUNG7FXS X-MailFrom: robin@rchrist.io X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Robin Christ X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: From: Robin Christ This patch series primarily fixes multiple Single VXLAN Devices in a bridge not working properly. It also contains some fixes for the dry-run mode. Note: I've never used the git e-mail workflow before (1970 has called, they want their workflow back). Sorry if what I'm sending isn't up to the mailing list standards :) My company e-mail doesn't work with git send-email, hence the two different e-mail addresses.. Robin Christ (4): nlcache: Fix missing nodad option in addr_add_dry_run nlcache: Add missing link_set_mtu_dry_run method iproute2: Fix bridge_link_update_vni_filter for dry-run bridge: Fix multiple Single VXLAN Devices in bridge not having tunnel_info applied on first run ...ing-nodad-option-in-addr_add_dry_run.patch | 35 ++++++ ...-missing-link_set_mtu_dry_run-method.patch | 25 +++++ ...e_link_update_vni_filter-for-dry-run.patch | 62 +++++++++++ ...tiple-single-vxlan-devices-in-bridge.patch | 101 ++++++++++++++++++ debian/patches/series | 4 + 5 files changed, 227 insertions(+) create mode 100644 debian/patches/pve/0016-nlcache-fix-missing-nodad-option-in-addr_add_dry_run.patch create mode 100644 debian/patches/pve/0017-nlcache-add-missing-link_set_mtu_dry_run-method.patch create mode 100644 debian/patches/pve/0018-iproute2-fix-bridge_link_update_vni_filter-for-dry-run.patch create mode 100644 debian/patches/pve/0019-bridge-fix-multiple-single-vxlan-devices-in-bridge.patch -- 2.47.3