lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
July
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
June 2022
----- 2025 -----
July 2025
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
3 participants
1374 discussions
Start a n
N
ew thread
Change in meta-telephony[201705]: osmo-hnbgw: depend on osmo-mgw
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/meta-telephony/+/28474
) Change subject: osmo-hnbgw: depend on osmo-mgw ...................................................................... osmo-hnbgw: depend on osmo-mgw Fix for: | checking for LIBOSMOMGCPCLIENT... no | configure: error: Package requirements (libosmo-mgcp-client >= 1.9.0) were not met: | | No package 'libosmo-mgcp-client' found Required since osmo-hnbgw Ib9b62e0145184b91c56ce5d8870760bfa49cc5a4. Change-Id: I79b0525cff5030d72235640eddeabd7540f1bcf9 --- M recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: pespin: Looks good to me, approved; Verified diff --git a/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc b/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc index 3e45f9b..696c864 100644 --- a/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc +++ b/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc @@ -3,7 +3,7 @@ LICENSE = "AGPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=73f1eb20517c55bf9493b7dd6e480788" -DEPENDS = "libosmocore libosmo-netif libosmo-sccp osmo-iuh libasn1c lksctp-tools" +DEPENDS = "libosmocore libosmo-netif libosmo-sccp osmo-iuh libasn1c lksctp-tools osmo-mgw" INC_PR="r0.${META_TELEPHONY_OSMO_INC}" -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28474
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: I79b0525cff5030d72235640eddeabd7540f1bcf9 Gerrit-Change-Number: 28474 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-CC: osmith <osmith(a)sysmocom.de> Gerrit-MessageType: merged
3 years
1
0
0
0
Change in meta-telephony[201705]: osmo-ggsn: update libgtp-queue_depth_32.patch
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/meta-telephony/+/28475
) Change subject: osmo-ggsn: update libgtp-queue_depth_32.patch ...................................................................... osmo-ggsn: update libgtp-queue_depth_32.patch Adjust to change in osmo-ggsn I6034b0fab2b2e5962314c2fca2f893246ce5cf4f ("libgtp: Define retransmit QUEUE_SIZE relative to PDP_MAX (increase)"). Set it to 128, as Pau suggested. Fix for: Applying patch libgtp-queue_depth_32.patch patching file gtp/queue.h Hunk #1 FAILED at 19. Change-Id: Ib8803fba7d1308042d12186009344b2a61abb6e3 --- A recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch D recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch M recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb 3 files changed, 36 insertions(+), 15 deletions(-) Approvals: pespin: Looks good to me, approved; Verified diff --git a/recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch b/recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch new file mode 100644 index 0000000..53ac7ef --- /dev/null +++ b/recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch @@ -0,0 +1,34 @@ +From 2e0112520892b8f6a794c16bf3d025a7d10a89a5 Mon Sep 17 00:00:00 2001 +From: Oliver Smith <osmith(a)sysmocom.de> +Date: Wed, 2 Mar 2022 11:24:31 +0100 +Subject: [PATCH] libgtp: set PDP_MAX to 128 + +Reduce PDP_MAX and therefore QUEUE_SIZE (which is PDP_MAX * 2, see +gtp/queue.h). Harald explained why: + + libgtp statically allocates immensely large queues for packet + re-transmissions by default, way too much to run OsmoSGSN or + OpenGGSN/OsmoGGSN on the small ARM926EJS of sysmoBTS 1002. + +Related:
https://gerrit.osmocom.org/c/meta-telephony/+/4092/2#message-8ec2174fac6c0b…
+Change-Id: I97d5db8f2def4d628a6c4e67c27f07c7200b94d4 +--- + gtp/pdp.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gtp/pdp.h b/gtp/pdp.h +index 4dcdde46..9587f31e 100644 +--- a/gtp/pdp.h ++++ b/gtp/pdp.h +@@ -24,7 +24,7 @@ struct gsn_t; + #define LOGPDPX(ss, level, pdp, fmt, args...) \ + LOGP(ss, level, "PDP(%s:%u): " fmt, imsi_gtp2str(&(pdp)->imsi), (pdp)->nsapi, ## args) + +-#define PDP_MAX 1024 /* Max number of PDP contexts */ ++#define PDP_MAX 128 /* Max number of PDP contexts */ + #define PDP_MAXNSAPI 16 /* Max number of NSAPI */ + + #define PDP_EUA_ORG_IETF 0xF1 +-- +2.30.2 + diff --git a/recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch b/recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch deleted file mode 100644 index 52bc37b..0000000 --- a/recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/gtp/queue.h b/gtp/queue.h -index 556b6ef..d59a1a3 100644 ---- a/gtp/queue.h -+++ b/gtp/queue.h -@@ -19,7 +19,7 @@ - - #define QUEUE_DEBUG 0 /* Print debug information */ - --#define QUEUE_SIZE 1024 /* Size of retransmission queue */ -+#define QUEUE_SIZE 32 /* Size of retransmission queue */ - #define QUEUE_HASH_SIZE 65536 /* Size of hash table (2^16) */ - - struct qmsg_t { /* Holder for queued packets */ diff --git a/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb b/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb index 5498d3d..8c63418 100644 --- a/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb +++ b/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb @@ -3,7 +3,7 @@ S = "${WORKDIR}/git" SRCREV = "1.8.0" SRC_URI = "
git://git.osmocom.org/osmo-ggsn;protocol=git;tag=${SRCREV};nobranch=1
\ - file://libgtp-queue_depth_32.patch \ + file://0001-libgtp-set-PDP_MAX-to-128.patch \ " PV = "1.8.0+gitr${SRCPV}" -PR = "${INC_PR}.0" +PR = "${INC_PR}.1" -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28475
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: Ib8803fba7d1308042d12186009344b2a61abb6e3 Gerrit-Change-Number: 28475 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-CC: osmith <osmith(a)sysmocom.de> Gerrit-MessageType: merged
3 years
1
0
0
0
Change in meta-telephony[201705]: Update Osmocom recipes to latest tags (release 202206)
by pespin
Attention is currently required from: osmith, laforge. pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/meta-telephony/+/28476
) Change subject: Update Osmocom recipes to latest tags (release 202206) ...................................................................... Patch Set 1: Verified+1 Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28476
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: I4622051150eb80a9239673f4dc4b9be68fd8d374 Gerrit-Change-Number: 28476 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-Attention: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Comment-Date: Wed, 29 Jun 2022 11:54:00 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years
1
0
0
0
Change in meta-telephony[201705]: osmo-ggsn: update libgtp-queue_depth_32.patch
by pespin
pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/meta-telephony/+/28475
) Change subject: osmo-ggsn: update libgtp-queue_depth_32.patch ...................................................................... Patch Set 1: Verified+1 Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28475
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: Ib8803fba7d1308042d12186009344b2a61abb6e3 Gerrit-Change-Number: 28475 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-CC: osmith <osmith(a)sysmocom.de> Gerrit-Comment-Date: Wed, 29 Jun 2022 11:53:56 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years
1
0
0
0
Change in meta-telephony[201705]: osmo-hnbgw: depend on osmo-mgw
by pespin
pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/meta-telephony/+/28474
) Change subject: osmo-hnbgw: depend on osmo-mgw ...................................................................... Patch Set 1: Verified+1 Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28474
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: I79b0525cff5030d72235640eddeabd7540f1bcf9 Gerrit-Change-Number: 28474 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-CC: osmith <osmith(a)sysmocom.de> Gerrit-Comment-Date: Wed, 29 Jun 2022 11:53:52 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years
1
0
0
0
Change in meta-telephony[201705]: Update Osmocom recipes to latest tags (release 202206)
by pespin
Attention is currently required from: osmith, laforge. pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/meta-telephony/+/28476
) Change subject: Update Osmocom recipes to latest tags (release 202206) ...................................................................... Patch Set 1: (1 comment) Patchset: PS1: TODO when merged: rebase laforge/nightly. -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28476
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: I4622051150eb80a9239673f4dc4b9be68fd8d374 Gerrit-Change-Number: 28476 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Attention: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Comment-Date: Wed, 29 Jun 2022 11:51:18 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No Gerrit-MessageType: comment
3 years
1
0
0
0
Change in meta-telephony[201705]: Update Osmocom recipes to latest tags (release 202206)
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/meta-telephony/+/28476
) Change subject: Update Osmocom recipes to latest tags (release 202206) ...................................................................... Update Osmocom recipes to latest tags (release 202206) Change-Id: I4622051150eb80a9239673f4dc4b9be68fd8d374 --- M recipes-osmocom/libasn1c/libasn1c_git.bb M recipes-osmocom/libosmo-abis/libosmo-abis_git.bb M recipes-osmocom/libosmo-netif/libosmo-netif_git.bb M recipes-osmocom/libosmo-sccp/libosmo-sccp_git.bb M recipes-osmocom/libosmocore/libosmocore_git.bb M recipes-osmocom/openbsc/openbsc_git.bb M recipes-osmocom/osmo-bsc/osmo-bsc_git.bb M recipes-osmocom/osmo-gbproxy/osmo-gbproxy_git.bb M recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb M recipes-osmocom/osmo-hlr/osmo-hlr_git.bb M recipes-osmocom/osmo-hnbgw/osmo-hnbgw_git.bb M recipes-osmocom/osmo-iuh/osmo-iuh_git.bb M recipes-osmocom/osmo-mgw/osmo-mgw_git.bb M recipes-osmocom/osmo-msc/osmo-msc_git.bb M recipes-osmocom/osmo-pcap/osmo-pcap_git.bb M recipes-osmocom/osmo-sgsn/osmo-sgsn_git.bb M recipes-osmocom/osmo-sip-connector/osmo-sip-connector_git.bb M recipes-osmocom/osmo-sysmon/osmo-sysmon_git.bb 18 files changed, 38 insertions(+), 38 deletions(-) git pull ssh://gerrit.osmocom.org:29418/meta-telephony refs/changes/76/28476/1 diff --git a/recipes-osmocom/libasn1c/libasn1c_git.bb b/recipes-osmocom/libasn1c/libasn1c_git.bb index 9d3fd37..6be7086 100644 --- a/recipes-osmocom/libasn1c/libasn1c_git.bb +++ b/recipes-osmocom/libasn1c/libasn1c_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "0.9.33" +SRCREV = "0.9.34" SRC_URI = "
git://git.osmocom.org/libasn1c.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "0.9.33+gitr${SRCPV}" +PV = "0.9.34+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/libosmo-abis/libosmo-abis_git.bb b/recipes-osmocom/libosmo-abis/libosmo-abis_git.bb index 9f35364..b863e17 100644 --- a/recipes-osmocom/libosmo-abis/libosmo-abis_git.bb +++ b/recipes-osmocom/libosmo-abis/libosmo-abis_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.2.0" +SRCREV = "1.3.0" SRC_URI = "
git://git.osmocom.org/libosmo-abis.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.2.0+gitr${SRCPV}" +PV = "1.3.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/libosmo-netif/libosmo-netif_git.bb b/recipes-osmocom/libosmo-netif/libosmo-netif_git.bb index 09d6c72..abd28e8 100644 --- a/recipes-osmocom/libosmo-netif/libosmo-netif_git.bb +++ b/recipes-osmocom/libosmo-netif/libosmo-netif_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.1.0" +SRCREV = "1.2.0" SRC_URI = "
git://git.osmocom.org/libosmo-netif.git;protocol=git;tag=${SRCREV};nobranch…
" -PV = "1.1.0+gitr${SRCPV}" +PV = "1.2.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/libosmo-sccp/libosmo-sccp_git.bb b/recipes-osmocom/libosmo-sccp/libosmo-sccp_git.bb index a90fae5..0858ac9 100644 --- a/recipes-osmocom/libosmo-sccp/libosmo-sccp_git.bb +++ b/recipes-osmocom/libosmo-sccp/libosmo-sccp_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.5.0" +SRCREV = "1.6.0" SRC_URI = "
git://git.osmocom.org/libosmo-sccp.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.5.0+gitr${SRCPV}" +PV = "1.6.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/libosmocore/libosmocore_git.bb b/recipes-osmocom/libosmocore/libosmocore_git.bb index 3c56eb7..b721865 100644 --- a/recipes-osmocom/libosmocore/libosmocore_git.bb +++ b/recipes-osmocom/libosmocore/libosmocore_git.bb @@ -1,9 +1,9 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.6.0" +SRCREV = "1.7.0" SRC_URI = "
git://git.osmocom.org/libosmocore.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.6.0+gitr${SRCPV}" +PV = "1.7.0+gitr${SRCPV}" PR = "${INC_PR}.0" PACKAGES =+ "libosmoctrl libosmocodec libosmogb libosmogsm libosmovty osmo-arfcn osmo-auc-gen osmo-config-merge" diff --git a/recipes-osmocom/openbsc/openbsc_git.bb b/recipes-osmocom/openbsc/openbsc_git.bb index b763685..6b1d87e 100644 --- a/recipes-osmocom/openbsc/openbsc_git.bb +++ b/recipes-osmocom/openbsc/openbsc_git.bb @@ -1,10 +1,10 @@ require ${PN}.inc -PV = "1.4.1+gitr${SRCPV}" +PV = "1.4.2+gitr${SRCPV}" PRINC = "0" PR = "${INC_PR}.0" -SRCREV = "83fbbeb56c45d84321fa3218c8afd5b3644a2ca2" +SRCREV = "21cebdfa29829975e5b94688f3fc8d0b10e3fa14" SRC_URI += "
git://git.osmocom.org/openbsc.git;protocol=git
" S = "${WORKDIR}/git/openbsc" diff --git a/recipes-osmocom/osmo-bsc/osmo-bsc_git.bb b/recipes-osmocom/osmo-bsc/osmo-bsc_git.bb index 7854ae8..d556c06 100644 --- a/recipes-osmocom/osmo-bsc/osmo-bsc_git.bb +++ b/recipes-osmocom/osmo-bsc/osmo-bsc_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.8.1" +SRCREV = "1.9.0" SRC_URI = "
git://git.osmocom.org/osmo-bsc.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.8.1+gitr${SRCPV}" +PV = "1.9.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-gbproxy/osmo-gbproxy_git.bb b/recipes-osmocom/osmo-gbproxy/osmo-gbproxy_git.bb index 19e6b99..06800e8 100644 --- a/recipes-osmocom/osmo-gbproxy/osmo-gbproxy_git.bb +++ b/recipes-osmocom/osmo-gbproxy/osmo-gbproxy_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "0.1.0" +SRCREV = "0.3.0" SRC_URI = "
git://git.osmocom.org/osmo-gbproxy.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "0.1.0+gitr${SRCPV}" +PV = "0.3.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb b/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb index 8c63418..ddfb9e3 100644 --- a/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb +++ b/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb @@ -1,9 +1,9 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.8.0" +SRCREV = "1.9.0" SRC_URI = "
git://git.osmocom.org/osmo-ggsn;protocol=git;tag=${SRCREV};nobranch=1
\ file://0001-libgtp-set-PDP_MAX-to-128.patch \ " -PV = "1.8.0+gitr${SRCPV}" -PR = "${INC_PR}.1" +PV = "1.9.0+gitr${SRCPV}" +PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-hlr/osmo-hlr_git.bb b/recipes-osmocom/osmo-hlr/osmo-hlr_git.bb index 8eaf2bb..b70366c 100644 --- a/recipes-osmocom/osmo-hlr/osmo-hlr_git.bb +++ b/recipes-osmocom/osmo-hlr/osmo-hlr_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.4.0" +SRCREV = "1.5.0" SRC_URI = "
git://git.osmocom.org/osmo-hlr.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.4.0+gitr${SRCPV}" +PV = "1.5.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-hnbgw/osmo-hnbgw_git.bb b/recipes-osmocom/osmo-hnbgw/osmo-hnbgw_git.bb index 04b1ddc..4f312cd 100644 --- a/recipes-osmocom/osmo-hnbgw/osmo-hnbgw_git.bb +++ b/recipes-osmocom/osmo-hnbgw/osmo-hnbgw_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.2.1" +SRCREV = "1.3.0" SRC_URI = "
git://git.osmocom.org/osmo-hnbgw.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.2.1+gitr${SRCPV}" +PV = "1.3.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-iuh/osmo-iuh_git.bb b/recipes-osmocom/osmo-iuh/osmo-iuh_git.bb index c10fc66..aed46a6 100644 --- a/recipes-osmocom/osmo-iuh/osmo-iuh_git.bb +++ b/recipes-osmocom/osmo-iuh/osmo-iuh_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.2.0" +SRCREV = "1.3.0" SRC_URI = "
git://git.osmocom.org/osmo-iuh.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.2.0+gitr${SRCPV}" +PV = "1.3.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-mgw/osmo-mgw_git.bb b/recipes-osmocom/osmo-mgw/osmo-mgw_git.bb index 35eae67..4b04bf5 100644 --- a/recipes-osmocom/osmo-mgw/osmo-mgw_git.bb +++ b/recipes-osmocom/osmo-mgw/osmo-mgw_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.9.0" +SRCREV = "1.10.0" SRC_URI = "
git://git.osmocom.org/osmo-mgw.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.9.0+gitr${SRCPV}" +PV = "1.10.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-msc/osmo-msc_git.bb b/recipes-osmocom/osmo-msc/osmo-msc_git.bb index e6ae1f4..f6e857e 100644 --- a/recipes-osmocom/osmo-msc/osmo-msc_git.bb +++ b/recipes-osmocom/osmo-msc/osmo-msc_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.8.0" +SRCREV = "1.9.0" SRC_URI = "
git://git.osmocom.org/osmo-msc.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.8.0+gitr${SRCPV}" +PV = "1.9.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-pcap/osmo-pcap_git.bb b/recipes-osmocom/osmo-pcap/osmo-pcap_git.bb index 4e351d6..79595dd 100644 --- a/recipes-osmocom/osmo-pcap/osmo-pcap_git.bb +++ b/recipes-osmocom/osmo-pcap/osmo-pcap_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "0.2.1" +SRCREV = "0.4.0" SRC_URI = "
git://git.osmocom.org/osmo-pcap.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "0.2.1+gitr${SRCPV}" +PV = "0.4.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-sgsn/osmo-sgsn_git.bb b/recipes-osmocom/osmo-sgsn/osmo-sgsn_git.bb index 401ed24..e788fb4 100644 --- a/recipes-osmocom/osmo-sgsn/osmo-sgsn_git.bb +++ b/recipes-osmocom/osmo-sgsn/osmo-sgsn_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.8.0" +SRCREV = "1.9.0" SRC_URI = "
git://git.osmocom.org/osmo-sgsn.git;protocol=git;tag=${SRCREV};nobranch=1
" -PV = "1.8.0+gitr${SRCPV}" +PV = "1.9.0+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-sip-connector/osmo-sip-connector_git.bb b/recipes-osmocom/osmo-sip-connector/osmo-sip-connector_git.bb index 5087a40..6f123ff 100644 --- a/recipes-osmocom/osmo-sip-connector/osmo-sip-connector_git.bb +++ b/recipes-osmocom/osmo-sip-connector/osmo-sip-connector_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "1.6.0" +SRCREV = "1.6.1" SRC_URI = "
git://git.osmocom.org/osmo-sip-connector.git;protocol=git;tag=${SRCREV};nob…
" -PV = "1.6.0+gitr${SRCPV}" +PV = "1.6.1+gitr${SRCPV}" PR = "${INC_PR}.0" diff --git a/recipes-osmocom/osmo-sysmon/osmo-sysmon_git.bb b/recipes-osmocom/osmo-sysmon/osmo-sysmon_git.bb index 97122ba..3b05360 100644 --- a/recipes-osmocom/osmo-sysmon/osmo-sysmon_git.bb +++ b/recipes-osmocom/osmo-sysmon/osmo-sysmon_git.bb @@ -1,7 +1,7 @@ require ${PN}.inc S = "${WORKDIR}/git" -SRCREV = "faea029a466fec48236403aa10d0b1a00f144763" -SRC_URI = "
git://git.osmocom.org/osmo-sysmon.git;protocol=git
" -PV = "0.3.0+gitr${SRCPV}" +SRCREV = "0.3.2" +SRC_URI = "
git://git.osmocom.org/osmo-sysmon.git;protocol=git;tag=${SRCREV};nobranch=1
" +PV = "0.3.2+gitr${SRCPV}" PR = "${INC_PR}.0" -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28476
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: I4622051150eb80a9239673f4dc4b9be68fd8d374 Gerrit-Change-Number: 28476 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: newchange
3 years
1
0
0
0
Change in meta-telephony[201705]: osmo-hnbgw: depend on osmo-mgw
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/meta-telephony/+/28474
) Change subject: osmo-hnbgw: depend on osmo-mgw ...................................................................... osmo-hnbgw: depend on osmo-mgw Fix for: | checking for LIBOSMOMGCPCLIENT... no | configure: error: Package requirements (libosmo-mgcp-client >= 1.9.0) were not met: | | No package 'libosmo-mgcp-client' found Required since osmo-hnbgw Ib9b62e0145184b91c56ce5d8870760bfa49cc5a4. Change-Id: I79b0525cff5030d72235640eddeabd7540f1bcf9 --- M recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/meta-telephony refs/changes/74/28474/1 diff --git a/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc b/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc index 3e45f9b..696c864 100644 --- a/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc +++ b/recipes-osmocom/osmo-hnbgw/osmo-hnbgw.inc @@ -3,7 +3,7 @@ LICENSE = "AGPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=73f1eb20517c55bf9493b7dd6e480788" -DEPENDS = "libosmocore libosmo-netif libosmo-sccp osmo-iuh libasn1c lksctp-tools" +DEPENDS = "libosmocore libosmo-netif libosmo-sccp osmo-iuh libasn1c lksctp-tools osmo-mgw" INC_PR="r0.${META_TELEPHONY_OSMO_INC}" -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28474
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: I79b0525cff5030d72235640eddeabd7540f1bcf9 Gerrit-Change-Number: 28474 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-CC: osmith <osmith(a)sysmocom.de> Gerrit-MessageType: newchange
3 years
1
0
0
0
Change in meta-telephony[201705]: osmo-ggsn: update libgtp-queue_depth_32.patch
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/meta-telephony/+/28475
) Change subject: osmo-ggsn: update libgtp-queue_depth_32.patch ...................................................................... osmo-ggsn: update libgtp-queue_depth_32.patch Adjust to change in osmo-ggsn I6034b0fab2b2e5962314c2fca2f893246ce5cf4f ("libgtp: Define retransmit QUEUE_SIZE relative to PDP_MAX (increase)"). Set it to 128, as Pau suggested. Fix for: Applying patch libgtp-queue_depth_32.patch patching file gtp/queue.h Hunk #1 FAILED at 19. Change-Id: Ib8803fba7d1308042d12186009344b2a61abb6e3 --- A recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch D recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch M recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb 3 files changed, 36 insertions(+), 15 deletions(-) git pull ssh://gerrit.osmocom.org:29418/meta-telephony refs/changes/75/28475/1 diff --git a/recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch b/recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch new file mode 100644 index 0000000..53ac7ef --- /dev/null +++ b/recipes-osmocom/osmo-ggsn/files/0001-libgtp-set-PDP_MAX-to-128.patch @@ -0,0 +1,34 @@ +From 2e0112520892b8f6a794c16bf3d025a7d10a89a5 Mon Sep 17 00:00:00 2001 +From: Oliver Smith <osmith(a)sysmocom.de> +Date: Wed, 2 Mar 2022 11:24:31 +0100 +Subject: [PATCH] libgtp: set PDP_MAX to 128 + +Reduce PDP_MAX and therefore QUEUE_SIZE (which is PDP_MAX * 2, see +gtp/queue.h). Harald explained why: + + libgtp statically allocates immensely large queues for packet + re-transmissions by default, way too much to run OsmoSGSN or + OpenGGSN/OsmoGGSN on the small ARM926EJS of sysmoBTS 1002. + +Related:
https://gerrit.osmocom.org/c/meta-telephony/+/4092/2#message-8ec2174fac6c0b…
+Change-Id: I97d5db8f2def4d628a6c4e67c27f07c7200b94d4 +--- + gtp/pdp.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gtp/pdp.h b/gtp/pdp.h +index 4dcdde46..9587f31e 100644 +--- a/gtp/pdp.h ++++ b/gtp/pdp.h +@@ -24,7 +24,7 @@ struct gsn_t; + #define LOGPDPX(ss, level, pdp, fmt, args...) \ + LOGP(ss, level, "PDP(%s:%u): " fmt, imsi_gtp2str(&(pdp)->imsi), (pdp)->nsapi, ## args) + +-#define PDP_MAX 1024 /* Max number of PDP contexts */ ++#define PDP_MAX 128 /* Max number of PDP contexts */ + #define PDP_MAXNSAPI 16 /* Max number of NSAPI */ + + #define PDP_EUA_ORG_IETF 0xF1 +-- +2.30.2 + diff --git a/recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch b/recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch deleted file mode 100644 index 52bc37b..0000000 --- a/recipes-osmocom/osmo-ggsn/files/libgtp-queue_depth_32.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/gtp/queue.h b/gtp/queue.h -index 556b6ef..d59a1a3 100644 ---- a/gtp/queue.h -+++ b/gtp/queue.h -@@ -19,7 +19,7 @@ - - #define QUEUE_DEBUG 0 /* Print debug information */ - --#define QUEUE_SIZE 1024 /* Size of retransmission queue */ -+#define QUEUE_SIZE 32 /* Size of retransmission queue */ - #define QUEUE_HASH_SIZE 65536 /* Size of hash table (2^16) */ - - struct qmsg_t { /* Holder for queued packets */ diff --git a/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb b/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb index 5498d3d..8c63418 100644 --- a/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb +++ b/recipes-osmocom/osmo-ggsn/osmo-ggsn_git.bb @@ -3,7 +3,7 @@ S = "${WORKDIR}/git" SRCREV = "1.8.0" SRC_URI = "
git://git.osmocom.org/osmo-ggsn;protocol=git;tag=${SRCREV};nobranch=1
\ - file://libgtp-queue_depth_32.patch \ + file://0001-libgtp-set-PDP_MAX-to-128.patch \ " PV = "1.8.0+gitr${SRCPV}" -PR = "${INC_PR}.0" +PR = "${INC_PR}.1" -- To view, visit
https://gerrit.osmocom.org/c/meta-telephony/+/28475
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: meta-telephony Gerrit-Branch: 201705 Gerrit-Change-Id: Ib8803fba7d1308042d12186009344b2a61abb6e3 Gerrit-Change-Number: 28475 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-CC: osmith <osmith(a)sysmocom.de> Gerrit-MessageType: newchange
3 years
1
0
0
0
Change in docker-playground[master]: release-tarball-build-dist: move osmo-ci code here
by pespin
Attention is currently required from: osmith. pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/docker-playground/+/28462
) Change subject: release-tarball-build-dist: move osmo-ci code here ...................................................................... Patch Set 1: Code-Review+1 -- To view, visit
https://gerrit.osmocom.org/c/docker-playground/+/28462
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground Gerrit-Branch: master Gerrit-Change-Id: I4cf66097f508c029f688ec8af1cab2238d42f84f Gerrit-Change-Number: 28462 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-Attention: osmith <osmith(a)sysmocom.de> Gerrit-Comment-Date: Wed, 29 Jun 2022 11:48:28 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years
1
0
0
0
← Newer
1
...
7
8
9
10
11
12
13
...
138
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
Results per page:
10
25
50
100
200