Attention is currently required from: neels.
Hello Jenkins Builder, laforge, pespin, lynxis lazus,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmocore/+/26606
to look at the new patch set (#3).
Change subject: PFCP: add DLPFCP and osmo-upf port numbers
......................................................................
PFCP: add DLPFCP and osmo-upf port numbers
Related: SYS#5599
Change-Id: I0a46b147ec6a76d909df28136cfd2b764b2c75ea
---
M include/osmocom/core/logging.h
M include/osmocom/ctrl/ports.h
M include/osmocom/vty/ports.h
M src/logging.c
M tests/logging/logging_vty_test.vty
5 files changed, 15 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/06/26606/3
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/26606
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I0a46b147ec6a76d909df28136cfd2b764b2c75ea
Gerrit-Change-Number: 26606
Gerrit-PatchSet: 3
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: neels <nhofmeyr(a)sysmocom.de>
Gerrit-MessageType: newpatchset
Bjoern Riemer has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/26958 )
Change subject: catch and ignore SwMatchError on probing for AID's
......................................................................
catch and ignore SwMatchError on probing for AID's
When probing applications on a card by running select_adf_by_aid()
SwMatchError exceptions indicating the non exsistance of that
application on the card should be ignored.
Change-Id: I3aa7deaf46bdf352a201c3089b3714405a06f281
---
M pySim/filesystem.py
1 file changed, 7 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/58/26958/1
diff --git a/pySim/filesystem.py b/pySim/filesystem.py
index dfe1677..32688db 100644
--- a/pySim/filesystem.py
+++ b/pySim/filesystem.py
@@ -1113,11 +1113,13 @@
# Some card applications may not be registered in EF.DIR, we will actively
# probe for those applications
for f in set(apps_profile) - set(apps_taken):
- data, sw = self.card.select_adf_by_aid(f.aid)
- if sw == "9000":
- print(" %s: %s" % (f.name, f.aid))
- apps_taken.append(f)
-
+ try:
+ data, sw = self.card.select_adf_by_aid(f.aid)
+ if sw == "9000":
+ print(" %s: %s" % (f.name, f.aid))
+ apps_taken.append(f)
+ except SwMatchError:
+ pass
return apps_taken
def reset(self, cmd_app=None) -> Hexstr:
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/26958
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I3aa7deaf46bdf352a201c3089b3714405a06f281
Gerrit-Change-Number: 26958
Gerrit-PatchSet: 1
Gerrit-Owner: Bjoern Riemer <bjoern.c3(a)nixda.biz>
Gerrit-MessageType: newchange
Bjoern Riemer has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/26956 )
Change subject: add missing bit definition for NG-RAN in xAcT
......................................................................
add missing bit definition for NG-RAN in xAcT
when encoding the AcT value bit 11 is correctly set
when NG-RAN is present in the string representation,
however the decoding of bit 11 was missing.
Change-Id: I910df28c4c59ec94cce9603377786325f6d8c1a3
---
M pySim/utils.py
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/56/26956/1
diff --git a/pySim/utils.py b/pySim/utils.py
index e30c970..1806d0d 100644
--- a/pySim/utils.py
+++ b/pySim/utils.py
@@ -464,6 +464,7 @@
act_list = [
{'bit': 15, 'name': "UTRAN"},
{'bit': 14, 'name': "E-UTRAN"},
+ {'bit': 11, 'name': "NG-RAN"},
{'bit': 7, 'name': "GSM"},
{'bit': 6, 'name': "GSM COMPACT"},
{'bit': 5, 'name': "cdma2000 HRPD"},
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/26956
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I910df28c4c59ec94cce9603377786325f6d8c1a3
Gerrit-Change-Number: 26956
Gerrit-PatchSet: 1
Gerrit-Owner: Bjoern Riemer <bjoern.c3(a)nixda.biz>
Gerrit-MessageType: newchange
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/dahdi-linux/+/26951 )
Change subject: How did this ever work... stdbool.h is not in the kernel.
......................................................................
Patch Set 1: Verified+1
--
To view, visit https://gerrit.osmocom.org/c/dahdi-linux/+/26951
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: dahdi-linux
Gerrit-Branch: master
Gerrit-Change-Id: I36438e35bb99325e1ac86b68c1746670a9851e4a
Gerrit-Change-Number: 26951
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Comment-Date: Thu, 20 Jan 2022 17:20:42 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26952 )
Change subject: library/GTPv2_Emulation: fix timer not being started in f_uecups_xceive()
......................................................................
library/GTPv2_Emulation: fix timer not being started in f_uecups_xceive()
This change fixes the following error:
Dynamic test case error: None of the branches can be chosen in
the alt statement in file GTPv2_Emulation.ttcn
between lines 362 and 370.
which may happen when osmo-uecups-daemon fails to create a tunnel
due to insufficient permissions.
Change-Id: Icb229aed7fa9dedcf999837ec6ad249ab4fdebb7
Related: SYS#5602
---
M library/GTPv2_Emulation.ttcn
1 file changed, 1 insertion(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
diff --git a/library/GTPv2_Emulation.ttcn b/library/GTPv2_Emulation.ttcn
index 8074269..f07afcb 100644
--- a/library/GTPv2_Emulation.ttcn
+++ b/library/GTPv2_Emulation.ttcn
@@ -359,6 +359,7 @@
var UECUPS_RecvFrom mrf;
UECUPS.send(t_UECUPS_Send(g_uecups_conn_id, tx));
+ T.start;
alt {
[] UECUPS.receive(tr_UECUPS_RecvFrom_R(rx_t)) -> value mrf { }
[] UECUPS.receive(tr_SctpAssocChange) { repeat; }
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26952
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Icb229aed7fa9dedcf999837ec6ad249ab4fdebb7
Gerrit-Change-Number: 26952
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged