Attention is currently required from: laforge, dexter.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995 )
Change subject: RLCMAC_CSN1_Types: Add release 6 additions to PacketCellChangeNotification
......................................................................
Patch Set 1:
(1 comment)
File library/RLCMAC_CSN1_Types.ttcn:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995/comment/adb307a5_ac8d…
PS1, Line 969: utran_cell_list_index
Actually, this field should also be part of the list.
```
type record of UtranCCNMesurementReportItem ReportingQuantityList;
type record UtranCCNMesurementReportItem {
uint7_t cell_list_index,
uint6_t reporting_quantity
} with { variant "" };
type record UtranCCNMesurementReport {
uint3_t n_3g,
ReportingQuantityList cells,
} with { ... };
```
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995
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: I4e1c63c06fb89111765df187a93db563e77c3fc4
Gerrit-Change-Number: 32995
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Thu, 25 May 2023 15:09:12 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: laforge, dexter.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995 )
Change subject: RLCMAC_CSN1_Types: Add release 6 additions to PacketCellChangeNotification
......................................................................
Patch Set 1: Code-Review-1
(3 comments)
File library/RLCMAC_CSN1_Types.ttcn:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995/comment/84f9d546_65fc…
PS1, Line 946: fdd_arfcn_presence
This definition is not entirely correct. Below is my understanding of TS 44.060:
* if this bit is `'0'B`, then neither `fdd_arfcn` nor the other FDD related fields are present, i.e. the next field in the bitstream would be `tdd_arfcn_presence`;
* if this bit is `'1'B`, then both `fdd_arfcn` and `scrambling_code` and at least `bandwith_fdd_presence` are present in the bitstream.
Taking this into account, your definition should look as follows:
```
type record UtranTargetCellFdd {
uint14_t arfcn,
BIT1 bandwith_presence,
uint3_t bandwith optional,
uint10_t scrambling_code
} with {
variant (bandwith) "PRESENCE(bandwith_presence = '1'B)"
};
type record UtranTargetCellTdd {
uint14_t arfcn,
BIT1 bandwith_presence,
uint3_t bandwith optional,
uint7_t cell_parameter,
BIT1 sync_case
} with {
variant (bandwith) "PRESENCE(bandwith_presence = '1'B)"
};
type record UtranTargetCell {
BIT1 fdd_presence,
UtranTargetCellFdd fdd optional,
BIT1 tdd_presence,
UtranTargetCellTdd tdd optional,
uint6_t reporting_quantity
} with {
variant (fdd) "PRESENCE(fdd_presence = '1'B)"
variant (tdd) "PRESENCE(tdd_presence = '1'B)"
};
```
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995/comment/14110677_9046…
PS1, Line 972: "LENGTHTO(reporting_quantity)"
Note that `n_3g := 0` means that `reporting_quantity` contains 1 element. This should actually be: `LENGTHTO(reporting_quantity) - 1`.
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995/comment/cf62cf51_e062…
PS1, Line 1001: utran_ba_used
missing `optional`
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32995
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: I4e1c63c06fb89111765df187a93db563e77c3fc4
Gerrit-Change-Number: 32995
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Thu, 25 May 2023 14:59:12 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: merlinchlosta, dexter.
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/pysim/+/32688 )
Change subject: docs: add SUPI/SUCI usage example
......................................................................
Patch Set 3:
(1 comment)
File docs/suci-tutorial.rst:
https://gerrit.osmocom.org/c/pysim/+/32688/comment/211e6edf_1a4aaf91
PS3, Line 100: 0272DA71976234CE833A6907425867B82E074D44EF907DFB4B3E21C1C2256EBCD1
any specific reason you chose the compressed form, rather than the uncompressed form? According to RFC5480 Section 2.2:
> Implementations of Elliptic Curve Cryptography according to this
> document MUST support the uncompressed form and MAY support the
> compressed form of the ECC public key.
So I would have assumed using the uncompressed form maximizes compatibility/interoperability?
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/32688
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I2908ea9df7e78c596554731085902e2ab7278328
Gerrit-Change-Number: 32688
Gerrit-PatchSet: 3
Gerrit-Owner: merlinchlosta <merlin.chlosta(a)rub.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: merlinchlosta <merlin.chlosta(a)rub.de>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Thu, 25 May 2023 14:56:13 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: fixeria.
Hello Jenkins Builder, fixeria,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmocom-bb/+/32973
to look at the new patch set (#5).
Change subject: layer23: modem: Forward Paging Request Type 1/2 to rlcmac layer
......................................................................
layer23: modem: Forward Paging Request Type 1/2 to rlcmac layer
The RLCMAC layer in libosmo-gprs-rlcmac will decode the messages and if
matching the MS, forward it to GMM, who will see if it requires initiating
a packet access procedure.
Change-Id: Iee4b5ee5e1e5874b550dd8536b095bf0b5eeb8f4
---
M src/host/layer23/src/modem/grr.c
1 file changed, 57 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/73/32973/5
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/32973
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Iee4b5ee5e1e5874b550dd8536b095bf0b5eeb8f4
Gerrit-Change-Number: 32973
Gerrit-PatchSet: 5
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newpatchset