From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id C55266CE47 for ; Thu, 12 Aug 2021 11:55:19 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id B57F321790 for ; Thu, 12 Aug 2021 11:55:19 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 97C4C21782 for ; Thu, 12 Aug 2021 11:55:15 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 63168430E7 for ; Thu, 12 Aug 2021 11:55:15 +0200 (CEST) Date: Thu, 12 Aug 2021 11:55:04 +0200 From: Fabian =?iso-8859-1?q?Gr=FCnbichler?= To: Proxmox VE development discussion References: <20210806110711.687041-1-l.stechauner@proxmox.com> In-Reply-To: <20210806110711.687041-1-l.stechauner@proxmox.com> MIME-Version: 1.0 User-Agent: astroid/0.15.0 (https://github.com/astroidmail/astroid) Message-Id: <1628761779.4i3161p63f.astroid@nora.none> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 0 AWL 0.431 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] applied: [PATCH common] fix #2368: network: extend infiniband recognition in regex X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2021 09:55:19 -0000 On August 6, 2021 1:07 pm, Lorenz Stechauner wrote: > Signed-off-by: Lorenz Stechauner > --- > src/PVE/Network.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/src/PVE/Network.pm b/src/PVE/Network.pm > index bb574e0..c6d3ee1 100644 > --- a/src/PVE/Network.pm > +++ b/src/PVE/Network.pm > @@ -16,7 +16,7 @@ use Socket qw(NI_NUMERICHOST NI_NUMERICSERV); > =20 > # host network related utility functions > =20 > -our $PHYSICAL_NIC_RE =3D qr/(?:eth\d+|en[^:.]+|ib\d+)/; > +our $PHYSICAL_NIC_RE =3D qr/(?:eth\d+|en[^:.]+|ib[^:.]+/); that ')' moved to the wrong place - I fixed it up when applying, but=20 please test your code is syntactically correct / compiles / works as=20 expected also for (supposedly :-P) trivial changes ;) > =20 > our $ipv4_reverse_mask =3D [ > '0.0.0.0', > --=20 > 2.30.2 >=20 >=20 >=20 > _______________________________________________ > pve-devel mailing list > pve-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel >=20 >=20 >=20