laforge has uploaded a new patch set (#2). ( https://gerrit.osmocom.org/c/osmo-ci/+/30529 )
Change subject: obs-mirror: Also keep nightly builds for Debian 10
......................................................................
obs-mirror: Also keep nightly builds for Debian 10
It seems that some users are running nightly builds in production on
EOL Debian 10, which we never imagined and hence didn't keep an archive
of those builds :/
Change-Id: I40c628e032e2c7ce8447657319a7c1206933c163
---
M contrib/obs-mirror/obs-mirror-include.txt
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/29/30529/2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30529
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I40c628e032e2c7ce8447657319a7c1206933c163
Gerrit-Change-Number: 30529
Gerrit-PatchSet: 2
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newpatchset
laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/30528 )
Change subject: obs-mirror: Keep nightly packages for 22.04, not 21.04
......................................................................
obs-mirror: Keep nightly packages for 22.04, not 21.04
We typically keep nightly builds for the latest version of each
distribution. That is correct for CentOS and Debian, but we forgot
to update Ubuntu from 21.04 to 22.04 it seems :(
Change-Id: Ic82dfc7e8c4f4a362f7d05b5bc2069d42a0bcdb2
---
M contrib/obs-mirror/obs-mirror-include.txt
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/28/30528/1
diff --git a/contrib/obs-mirror/obs-mirror-include.txt b/contrib/obs-mirror/obs-mirror-include.txt
index 122b093..c7f43db 100644
--- a/contrib/obs-mirror/obs-mirror-include.txt
+++ b/contrib/obs-mirror/obs-mirror-include.txt
@@ -12,4 +12,4 @@
nightly/CentOS_8
nightly/Debian_11
nightly/Raspbian_11
-nightly/xUbuntu_21.04
+nightly/xUbuntu_22.04
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30528
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ic82dfc7e8c4f4a362f7d05b5bc2069d42a0bcdb2
Gerrit-Change-Number: 30528
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newchange
laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/30527 )
Change subject: obs-mirror: Keep latest build also for Ubuntu 22.04
......................................................................
obs-mirror: Keep latest build also for Ubuntu 22.04
Ubuntu 22.04 is very much a stable/maintained distribution, so we
should keep an archive of "latest" builds for it.
Change-Id: I54988915ec4bcf2ebb1e5cd23ceb049789c56bca
---
M contrib/obs-mirror/obs-mirror-include.txt
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/27/30527/1
diff --git a/contrib/obs-mirror/obs-mirror-include.txt b/contrib/obs-mirror/obs-mirror-include.txt
index 6510e74..122b093 100644
--- a/contrib/obs-mirror/obs-mirror-include.txt
+++ b/contrib/obs-mirror/obs-mirror-include.txt
@@ -7,6 +7,7 @@
latest/xUbuntu_18.04
latest/xUbuntu_20.04
latest/xUbuntu_21.04
+latest/xUbuntu_22.04
nightly/CentOS_8
nightly/Debian_11
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/30527
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I54988915ec4bcf2ebb1e5cd23ceb049789c56bca
Gerrit-Change-Number: 30527
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newchange
neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-upf/+/30492 )
Change subject: nft: incoming GTP-U: match on local IP, not remote IP
......................................................................
nft: incoming GTP-U: match on local IP, not remote IP
Change-Id: Ib6db148ca350107b2fc7adcaec0fc2930ffcbcde
---
M src/osmo-upf/upf_nft.c
1 file changed, 3 insertions(+), 3 deletions(-)
Approvals:
laforge: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/osmo-upf/upf_nft.c b/src/osmo-upf/upf_nft.c
index 1b7d9c0..695ec20 100644
--- a/src/osmo-upf/upf_nft.c
+++ b/src/osmo-upf/upf_nft.c
@@ -129,9 +129,9 @@
/* Match only UDP packets */
OSMO_STRBUF_PRINTF(sb, " meta l4proto udp");
- /* Match on packets coming in from from_peer */
- OSMO_STRBUF_PRINTF(sb, " ip saddr ");
- OSMO_STRBUF_APPEND(sb, osmo_sockaddr_to_str_buf2, from_peer->addr_remote);
+ /* Match on packets coming in at specific local IP */
+ OSMO_STRBUF_PRINTF(sb, " ip daddr ");
+ OSMO_STRBUF_APPEND(sb, osmo_sockaddr_to_str_buf2, from_peer->addr_local);
/* Match on the TEID in the header */
OSMO_STRBUF_PRINTF(sb, " @ih,32,32 0x%08x", from_peer->teid_local);
--
To view, visit https://gerrit.osmocom.org/c/osmo-upf/+/30492
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-upf
Gerrit-Branch: master
Gerrit-Change-Id: Ib6db148ca350107b2fc7adcaec0fc2930ffcbcde
Gerrit-Change-Number: 30492
Gerrit-PatchSet: 3
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de>
Gerrit-MessageType: merged