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
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
October 2022
----- 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
2 participants
2331 discussions
Start a n
N
ew thread
Change in osmo-mgw[master]: osmux: Simplify and constify param passing
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-mgw/+/29644
) Change subject: osmux: Simplify and constify param passing ...................................................................... osmux: Simplify and constify param passing Parameters passed to several functions are rearrange to make code simplier to follow, as well as dependencies between the different functions. As a result, some parameters can be marked as const while doing the change. Change-Id: Idebd4a66630c16548f557632a54d6b7e1b3906fd --- M include/osmocom/mgcp/osmux.h M src/libosmo-mgcp/mgcp_osmux.c M src/libosmo-mgcp/mgcp_protocol.c 3 files changed, 24 insertions(+), 34 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/44/29644/1 diff --git a/include/osmocom/mgcp/osmux.h b/include/osmocom/mgcp/osmux.h index 903d58b..ae843fc 100644 --- a/include/osmocom/mgcp/osmux.h +++ b/include/osmocom/mgcp/osmux.h @@ -10,13 +10,12 @@ int osmux_init(struct mgcp_trunk *trunk); int osmux_init_conn(struct mgcp_conn_rtp *conn); -int osmux_enable_conn(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn, - const struct osmo_sockaddr *addr); +int conn_osmux_enable(struct mgcp_conn_rtp *conn); void conn_osmux_disable(struct mgcp_conn_rtp *conn); int conn_osmux_allocate_local_cid(struct mgcp_conn_rtp *conn); void conn_osmux_release_local_cid(struct mgcp_conn_rtp *conn); int osmux_xfrm_to_osmux(char *buf, int buf_len, struct mgcp_conn_rtp *conn); -int osmux_send_dummy(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn); +int osmux_send_dummy(struct mgcp_conn_rtp *conn); void osmux_cid_pool_get(uint8_t osmux_cid); int osmux_cid_pool_get_next(void); diff --git a/src/libosmo-mgcp/mgcp_osmux.c b/src/libosmo-mgcp/mgcp_osmux.c index ebb41a6..f820276 100644 --- a/src/libosmo-mgcp/mgcp_osmux.c +++ b/src/libosmo-mgcp/mgcp_osmux.c @@ -151,11 +151,10 @@ /* Allocate free OSMUX handle */ static struct osmux_handle * -osmux_handle_alloc(struct mgcp_conn_rtp *conn, const struct osmo_sockaddr *rem_addr) +osmux_handle_alloc(const struct mgcp_trunk *trunk, const struct osmo_sockaddr *rem_addr) { struct osmux_handle *h; - struct mgcp_trunk *trunk = conn->conn->endp->trunk; - struct mgcp_config *cfg = trunk->cfg; + const struct mgcp_config *cfg = trunk->cfg; h = talloc_zero(trunk, struct osmux_handle); if (!h) @@ -186,7 +185,7 @@ /* Lookup existing handle for a specified address, if the handle can not be * found, the function will automatically allocate one */ static struct osmux_in_handle * -osmux_handle_find_or_create(struct mgcp_conn_rtp *conn, const struct osmo_sockaddr *rem_addr) +osmux_handle_find_or_create(const struct mgcp_trunk *trunk, const struct osmo_sockaddr *rem_addr) { struct osmux_handle *h; @@ -194,7 +193,7 @@ if (h != NULL) return h->in; - h = osmux_handle_alloc(conn, rem_addr); + h = osmux_handle_alloc(trunk, rem_addr); if (h == NULL) return NULL; @@ -245,7 +244,7 @@ /* Lookup the endpoint that corresponds to the specified address (port) */ static struct mgcp_conn_rtp* -osmux_conn_lookup(struct mgcp_trunk *trunk, uint8_t local_cid, const struct osmo_sockaddr *rem_addr) +osmux_conn_lookup(const struct mgcp_trunk *trunk, uint8_t local_cid, const struct osmo_sockaddr *rem_addr) { struct mgcp_endpoint *endp; struct mgcp_conn *conn = NULL; @@ -292,7 +291,7 @@ static void scheduled_from_osmux_tx_rtp_cb(struct msgb *msg, void *data) { struct mgcp_conn_rtp *conn = data; - struct mgcp_endpoint *endp = conn->conn->endp; + const struct mgcp_endpoint *endp = conn->conn->endp; struct osmux_handle *h = osmux_xfrm_input_get_deliver_cb_data(conn->osmux.in); struct osmo_rtp_msg_ctx *mc = OSMO_RTP_MSG_CTX(msg); *mc = (struct osmo_rtp_msg_ctx){ @@ -327,16 +326,13 @@ return msg; } -/* Updates endp osmux state and returns 0 if it can process messages, -1 otherwise */ -static int endp_osmux_state_check(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn, +/* Updates conn osmux state and returns 0 if it can process messages, -1 otherwise */ +static int conn_osmux_state_check(struct mgcp_conn_rtp *conn, bool sending) { - struct osmo_sockaddr rem_addr; - switch(conn->osmux.state) { case OSMUX_STATE_ACTIVATING: - rem_addr = conn->end.addr; - if (osmux_enable_conn(endp, conn, &rem_addr) < 0) { + if (conn_osmux_enable(conn) < 0) { LOGPCONN(conn->conn, DOSMUX, LOGL_ERROR, "Could not enable osmux for conn on %s: %s\n", sending ? "sent" : "received", @@ -347,7 +343,7 @@ "Osmux %s CID %u towards %s is now enabled\n", sending ? "sent" : "received", sending ? conn->osmux.remote_cid : conn->osmux.local_cid, - osmo_sockaddr_to_str(&rem_addr)); + osmo_sockaddr_to_str(&conn->end.addr)); return 0; case OSMUX_STATE_ENABLED: return 0; @@ -362,8 +358,8 @@ /* Old versions of osmux used to send dummy packets [0x23 0x<CID>] to punch the * hole in the NAT. Let's handle them speficially. */ -static int osmux_handle_legacy_dummy(struct mgcp_trunk *trunk, const struct osmo_sockaddr *rem_addr, - struct msgb *msg) +static int osmux_handle_legacy_dummy(const struct mgcp_trunk *trunk, const struct osmo_sockaddr *rem_addr, + struct msgb *msg) { uint8_t osmux_cid = msg->data[1]; struct mgcp_conn_rtp *conn; @@ -375,7 +371,7 @@ goto out; } - endp_osmux_state_check(conn->conn->endp, conn, false); + conn_osmux_state_check(conn, false); /* Only needed to punch hole in firewall, it can be dropped */ out: msgb_free(msg); @@ -413,7 +409,6 @@ rem = msg->len; while((osmuxh = osmux_xfrm_output_pull(msg)) != NULL) { - struct mgcp_endpoint *endp; struct mgcp_conn_rtp *conn_src; conn_src = osmux_conn_lookup(trunk, osmuxh->circuit_id, &rem_addr); @@ -424,10 +419,9 @@ rem = msg->len; continue; } - endp = conn_src->conn->endp; mgcp_conn_watchdog_kick(conn_src->conn); - if (endp_osmux_state_check(endp, conn_src, false) == 0) { + if (conn_osmux_state_check(conn_src, false) == 0) { rtpconn_osmux_rate_ctr_inc(conn_src, OSMUX_CHUNKS_RX_CTR); rtpconn_osmux_rate_ctr_add(conn_src, OSMUX_OCTETS_RX_CTR, osmux_chunk_length(msg, rem)); @@ -505,12 +499,9 @@ } /*! enable OSXMUX circuit for a specified connection. - * \param[in] endp mgcp endpoint (configuration) - * \param[in] conn connection to disable - * \param[in] addr IP address and port of remote OSMUX endpoint + * \param[in] conn connection to enable * \returns 0 on success, -1 on ERROR */ -int osmux_enable_conn(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn, - const struct osmo_sockaddr *rem_addr) +int conn_osmux_enable(struct mgcp_conn_rtp *conn) { /*! If osmux is enabled, initialize the output handler. This handler is * used to reconstruct the RTP flow from osmux. The RTP SSRC is @@ -521,8 +512,9 @@ * overlapping RTP SSRC traveling to the BTSes behind the BSC, * similarly, for flows traveling to the MSC. */ + const struct mgcp_trunk *trunk = conn->conn->endp->trunk; static const uint32_t rtp_ssrc_winlen = UINT32_MAX / (OSMUX_CID_MAX + 1); - uint16_t osmux_dummy = endp->trunk->cfg->osmux_dummy; + uint16_t osmux_dummy = trunk->cfg->osmux_dummy; /* Check if osmux is enabled for the specified connection */ if (conn->osmux.state != OSMUX_STATE_ACTIVATING) { @@ -539,7 +531,7 @@ return -1; } - conn->osmux.in = osmux_handle_find_or_create(conn, rem_addr); + conn->osmux.in = osmux_handle_find_or_create(trunk, &conn->end.addr); if (!conn->osmux.in) { LOGPCONN(conn->conn, DOSMUX, LOGL_ERROR, "Cannot allocate input osmux handle for conn:%s\n", @@ -627,10 +619,9 @@ } /*! send RTP dummy packet to OSMUX connection port. - * \param[in] endp mcgp endpoint that holds the RTP connection * \param[in] conn associated RTP connection * \returns bytes sent, -1 on error */ -int osmux_send_dummy(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn) +int osmux_send_dummy(struct mgcp_conn_rtp *conn) { char ipbuf[INET6_ADDRSTRLEN]; struct osmux_hdr *osmuxh; @@ -646,7 +637,7 @@ * approach is simple though. */ - if (endp_osmux_state_check(endp, conn, true) < 0) + if (conn_osmux_state_check(conn, true) < 0) return 0; buf_len = sizeof(struct osmux_hdr) + osmo_amr_bytes(AMR_FT_0); diff --git a/src/libosmo-mgcp/mgcp_protocol.c b/src/libosmo-mgcp/mgcp_protocol.c index b4a4792..d92725a 100644 --- a/src/libosmo-mgcp/mgcp_protocol.c +++ b/src/libosmo-mgcp/mgcp_protocol.c @@ -330,7 +330,7 @@ return; if (mgcp_conn_rtp_is_osmux(conn)) - osmux_send_dummy(endp, conn); + osmux_send_dummy(conn); else mgcp_send_dummy(endp, conn); } -- To view, visit
https://gerrit.osmocom.org/c/osmo-mgw/+/29644
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw Gerrit-Branch: master Gerrit-Change-Id: Idebd4a66630c16548f557632a54d6b7e1b3906fd Gerrit-Change-Number: 29644 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: newchange
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:latest/osmo-gsm-manuals in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/os…
Package network:osmocom:latest/osmo-gsm-manuals failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:latest osmo-gsm-manuals Last lines of build log: [ 65s] [356/471] installing libsub-override-perl-0.09-3 [ 65s] [357/471] installing preview-latex-style-12.2-1 [ 65s] [358/471] installing intltool-debian-0.35.0+20060710.5 [ 65s] [359/471] installing libdpkg-perl-1.21.9 [ 66s] [360/471] installing libpaper-utils-1.1.28+b1 [ 66s] [361/471] installing mailcap-3.70+nmu1 [ 66s] [362/471] installing autoconf-2.71-2 [ 66s] [363/471] installing libfile-find-rule-perl-0.34-2 [ 66s] [364/471] installing lmodern-2.005-1 [ 67s] [365/471] installing sgml-data-2.0.11+nmu1 [ 68s] [366/471] installing libstdc++-12-dev-12.2.0-5 [ 68s] [367/471] installing libatk-bridge2.0-0-2.46.0-3 [ 68s] [368/471] installing libfontconfig1-2.13.1-4.5 [ 68s] Processing triggers for sgml-base (1.30) ... [ 68s] [369/471] installing libtool-2.4.7-4 [ 69s] [370/471] installing libenchant-2-2-2.3.3-1 [ 69s] [371/471] installing libpam-modules-1.5.2-3 [ 69s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 69s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 69s] Errors were encountered while processing: [ 69s] .init_b_cache/libpam-modules.deb [ 69s] exit ... [ 69s] ### VM INTERACTION START ### [ 69s] [ 55.370113][ T1] sysrq: Power Off [ 69s] [ 55.373144][ T396] reboot: Power down [ 69s] ### VM INTERACTION END ### [ 69s] [ 69s] old-atreju5 failed "build osmo-gsm-manuals-dev_1.3.0.dsc" at Thu Oct 6 10:59:08 UTC 2022. [ 69s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo-gsm-manuals in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo-gsm-manuals failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly osmo-gsm-manuals Last lines of build log: [ 75s] [356/471] installing libsub-override-perl-0.09-3 [ 75s] [357/471] installing preview-latex-style-12.2-1 [ 75s] [358/471] installing intltool-debian-0.35.0+20060710.5 [ 75s] [359/471] installing libdpkg-perl-1.21.9 [ 75s] [360/471] installing libpaper-utils-1.1.28+b1 [ 75s] [361/471] installing mailcap-3.70+nmu1 [ 75s] [362/471] installing autoconf-2.71-2 [ 75s] [363/471] installing libfile-find-rule-perl-0.34-2 [ 75s] [364/471] installing lmodern-2.005-1 [ 77s] [365/471] installing sgml-data-2.0.11+nmu1 [ 78s] [366/471] installing libstdc++-12-dev-12.2.0-5 [ 78s] [367/471] installing libatk-bridge2.0-0-2.46.0-3 [ 78s] [368/471] installing libfontconfig1-2.13.1-4.5 [ 78s] Processing triggers for sgml-base (1.30) ... [ 78s] [369/471] installing libtool-2.4.7-4 [ 78s] [370/471] installing libenchant-2-2-2.3.3-1 [ 78s] [371/471] installing libpam-modules-1.5.2-3 [ 79s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 79s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 79s] Errors were encountered while processing: [ 79s] .init_b_cache/libpam-modules.deb [ 79s] exit ... [ 79s] ### VM INTERACTION START ### [ 79s] [ 62.128829][ T1] sysrq: Power Off [ 79s] [ 62.131435][ T16] reboot: Power down [ 79s] ### VM INTERACTION END ### [ 79s] [ 79s] lamb22 failed "build osmo-gsm-manuals-dev_1.3.0.4.4c92.202210060052.dsc" at Thu Oct 6 10:59:21 UTC 2022. [ 79s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:nightly/libusrp in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/l…
Package network:osmocom:nightly/libusrp failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly libusrp Last lines of build log: [ 67s] [266/389] installing util-linux-2.38.1-1 [ 68s] [267/389] installing libarchive-zip-perl-1.68-1 [ 68s] [268/389] installing libdebhelper-perl-13.9.1 [ 68s] [269/389] installing libsub-override-perl-0.09-3 [ 68s] [270/389] installing intltool-debian-0.35.0+20060710.5 [ 68s] [271/389] installing libdpkg-perl-1.21.9 [ 68s] [272/389] installing libexpat1-dev-2.4.9-1 [ 68s] [273/389] installing libnuma-dev-2.0.15-1 [ 68s] [274/389] installing zlib1g-dev-1:1.2.11.dfsg-4.1 [ 68s] [275/389] installing autoconf-2.71-2 [ 69s] [276/389] installing libfile-find-rule-perl-0.34-2 [ 69s] [277/389] installing libicu-dev-71.1-3 [ 70s] [278/389] installing python3-3.10.6-1 [ 70s] [279/389] installing libstdc++-12-dev-12.2.0-5 [ 71s] [280/389] installing libtool-2.4.7-4 [ 71s] [281/389] installing libpmix2-4.2.0+really.4.1.2-3 [ 71s] [282/389] installing libpam-modules-1.5.2-3 [ 71s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 71s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 71s] Errors were encountered while processing: [ 71s] .init_b_cache/libpam-modules.deb [ 71s] exit ... [ 71s] ### VM INTERACTION START ### [ 71s] [ 56.225388][ T1] sysrq: Power Off [ 71s] [ 56.229625][ T16] reboot: Power down [ 71s] ### VM INTERACTION END ### [ 71s] [ 71s] lamb16 failed "build libusrp_3.4.6.2.7f277.202210060052.dsc" at Thu Oct 6 10:59:10 UTC 2022. [ 71s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:latest/limesuite in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/li…
Package network:osmocom:latest/limesuite failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:latest limesuite Last lines of build log: [ 68s] [312/384] installing libsystemd-shared-251.5-1 [ 69s] [313/384] installing libglx-mesa0-22.2.0-1 [ 69s] [314/384] installing libarchive-zip-perl-1.68-1 [ 69s] [315/384] installing libdebhelper-perl-13.9.1 [ 69s] [316/384] installing libsub-override-perl-0.09-3 [ 69s] [317/384] installing intltool-debian-0.35.0+20060710.5 [ 69s] [318/384] installing libdpkg-perl-1.21.9 [ 69s] [319/384] installing autoconf-2.71-2 [ 69s] [320/384] installing libfile-find-rule-perl-0.34-2 [ 69s] [321/384] installing libwxbase3.0-dev-3.0.5.1+dfsg-5 [ 69s] update-alternatives: using /usr/lib/x86_64-linux-gnu/wx/config/base-unicode-3.0 to provide /usr/bin/wx-config (wx-config) in auto mode [ 69s] [322/384] installing libglx0-1.5.0-1 [ 69s] [323/384] installing libstdc++-12-dev-12.2.0-5 [ 70s] [324/384] installing libatk-bridge2.0-0-2.46.0-3 [ 70s] [325/384] installing libfontconfig1-2.13.1-4.5 [ 70s] [326/384] installing libtool-2.4.7-4 [ 70s] [327/384] installing libpam-modules-1.5.2-3 [ 70s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 70s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 70s] Errors were encountered while processing: [ 70s] .init_b_cache/libpam-modules.deb [ 70s] exit ... [ 70s] ### VM INTERACTION START ### [ 71s] [ 56.400933][ T1] sysrq: Power Off [ 71s] [ 56.405528][ T16] reboot: Power down [ 71s] ### VM INTERACTION END ### [ 71s] [ 71s] lamb27 failed "build limesuite_22.09.0.dsc" at Thu Oct 6 10:59:10 UTC 2022. [ 71s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:nightly/rebar3 in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/r…
Package network:osmocom:nightly/rebar3 failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly rebar3 Last lines of build log: [ 70s] [347/444] installing util-linux-2.38.1-1 [ 70s] [348/444] installing libsystemd-shared-251.5-1 [ 71s] [349/444] installing libglx-mesa0-22.2.0-1 [ 71s] [350/444] installing libarchive-zip-perl-1.68-1 [ 71s] [351/444] installing libdebhelper-perl-13.9.1 [ 71s] [352/444] installing libsub-override-perl-0.09-3 [ 71s] [353/444] installing intltool-debian-0.35.0+20060710.5 [ 71s] [354/444] installing libdpkg-perl-1.21.9 [ 71s] [355/444] installing autoconf-2.71-2 [ 71s] [356/444] installing libfile-find-rule-perl-0.34-2 [ 71s] [357/444] installing libglx0-1.5.0-1 [ 71s] [358/444] installing libstdc++-12-dev-12.2.0-5 [ 72s] [359/444] installing libatk-bridge2.0-0-2.46.0-3 [ 72s] [360/444] installing libfontconfig1-2.13.1-4.5 [ 72s] [361/444] installing libtool-2.4.7-4 [ 72s] [362/444] installing libenchant-2-2-2.3.3-1 [ 72s] [363/444] installing libpam-modules-1.5.2-3 [ 72s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 72s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 72s] Errors were encountered while processing: [ 72s] .init_b_cache/libpam-modules.deb [ 72s] exit ... [ 72s] ### VM INTERACTION START ### [ 73s] [ 57.055286][ T1] sysrq: Power Off [ 73s] [ 57.058481][ T16] reboot: Power down [ 73s] ### VM INTERACTION END ### [ 73s] [ 73s] old-cirrus1 failed "build rebar3_3.18.0~osmo2.dsc" at Thu Oct 6 10:59:14 UTC 2022. [ 73s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:latest/rebar3 in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/re…
Package network:osmocom:latest/rebar3 failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:latest rebar3 Last lines of build log: [ 67s] [347/444] installing util-linux-2.38.1-1 [ 68s] [348/444] installing libsystemd-shared-251.5-1 [ 68s] [349/444] installing libglx-mesa0-22.2.0-1 [ 68s] [350/444] installing libarchive-zip-perl-1.68-1 [ 68s] [351/444] installing libdebhelper-perl-13.9.1 [ 68s] [352/444] installing libsub-override-perl-0.09-3 [ 68s] [353/444] installing intltool-debian-0.35.0+20060710.5 [ 68s] [354/444] installing libdpkg-perl-1.21.9 [ 68s] [355/444] installing autoconf-2.71-2 [ 69s] [356/444] installing libfile-find-rule-perl-0.34-2 [ 69s] [357/444] installing libglx0-1.5.0-1 [ 69s] [358/444] installing libstdc++-12-dev-12.2.0-5 [ 69s] [359/444] installing libatk-bridge2.0-0-2.46.0-3 [ 69s] [360/444] installing libfontconfig1-2.13.1-4.5 [ 69s] [361/444] installing libtool-2.4.7-4 [ 69s] [362/444] installing libenchant-2-2-2.3.3-1 [ 69s] [363/444] installing libpam-modules-1.5.2-3 [ 70s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 70s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 70s] Errors were encountered while processing: [ 70s] .init_b_cache/libpam-modules.deb [ 70s] exit ... [ 70s] ### VM INTERACTION START ### [ 70s] [ 53.278375][ T1] sysrq: Power Off [ 70s] [ 53.280774][ T16] reboot: Power down [ 70s] ### VM INTERACTION END ### [ 70s] [ 70s] hurricane3 failed "build rebar3_3.18.0~osmo2.dsc" at Thu Oct 6 10:59:04 UTC 2022. [ 70s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:latest/libusrp in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/li…
Package network:osmocom:latest/libusrp failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:latest libusrp Last lines of build log: [ 64s] [266/389] installing util-linux-2.38.1-1 [ 65s] [267/389] installing libarchive-zip-perl-1.68-1 [ 65s] [268/389] installing libdebhelper-perl-13.9.1 [ 65s] [269/389] installing libsub-override-perl-0.09-3 [ 65s] [270/389] installing intltool-debian-0.35.0+20060710.5 [ 65s] [271/389] installing libdpkg-perl-1.21.9 [ 65s] [272/389] installing libexpat1-dev-2.4.9-1 [ 65s] [273/389] installing libnuma-dev-2.0.15-1 [ 65s] [274/389] installing zlib1g-dev-1:1.2.11.dfsg-4.1 [ 65s] [275/389] installing autoconf-2.71-2 [ 65s] [276/389] installing libfile-find-rule-perl-0.34-2 [ 65s] [277/389] installing libicu-dev-71.1-3 [ 67s] [278/389] installing python3-3.10.6-1 [ 67s] [279/389] installing libstdc++-12-dev-12.2.0-5 [ 67s] [280/389] installing libtool-2.4.7-4 [ 67s] [281/389] installing libpmix2-4.2.0+really.4.1.2-3 [ 67s] [282/389] installing libpam-modules-1.5.2-3 [ 68s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 68s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 68s] Errors were encountered while processing: [ 68s] .init_b_cache/libpam-modules.deb [ 68s] exit ... [ 68s] ### VM INTERACTION START ### [ 68s] [ 51.315922][ T1] sysrq: Power Off [ 68s] [ 51.318801][ T16] reboot: Power down [ 68s] ### VM INTERACTION END ### [ 68s] [ 68s] old-cirrus2 failed "build libusrp_3.4.6.dsc" at Thu Oct 6 10:59:02 UTC 2022. [ 68s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:nightly/libosmo-dsp in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/l…
Package network:osmocom:nightly/libosmo-dsp failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly libosmo-dsp Last lines of build log: [ 55s] [187/224] installing man-db-2.10.2-3 [ 55s] Not building database; man-db/auto-update is not 'true'. [ 56s] [188/224] installing perl-5.34.0-5 [ 56s] [189/224] installing libpam-modules-bin-1.5.2-3 [ 56s] [190/224] installing libc6-dev-2.35-2 [ 56s] [191/224] installing util-linux-2.38.1-1 [ 57s] [192/224] installing libarchive-zip-perl-1.68-1 [ 57s] [193/224] installing libdebhelper-perl-13.9.1 [ 57s] [194/224] installing liberror-perl-0.17029-1 [ 57s] [195/224] installing libsub-override-perl-0.09-3 [ 57s] [196/224] installing intltool-debian-0.35.0+20060710.5 [ 57s] [197/224] installing libdpkg-perl-1.21.9 [ 57s] [198/224] installing autoconf-2.71-2 [ 57s] [199/224] installing libfile-find-rule-perl-0.34-2 [ 57s] [200/224] installing libstdc++-12-dev-12.2.0-5 [ 58s] [201/224] installing libtool-2.4.7-4 [ 58s] [202/224] installing libpam-modules-1.5.2-3 [ 58s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 58s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 58s] Errors were encountered while processing: [ 58s] .init_b_cache/libpam-modules.deb [ 58s] exit ... [ 58s] ### VM INTERACTION START ### [ 58s] [ 44.217971][ T1] sysrq: Power Off [ 58s] [ 44.221507][ T16] reboot: Power down [ 58s] ### VM INTERACTION END ### [ 58s] [ 58s] lamb59 failed "build libosmodsp_0.4.0.6.1dfd.202210060052.dsc" at Thu Oct 6 10:59:00 UTC 2022. [ 58s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
Build failure of network:osmocom:latest/eclipse-titan in Debian_Unstable/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/ec…
Package network:osmocom:latest/eclipse-titan failed to build in Debian_Unstable/x86_64 Check out the package for editing: osc checkout network:osmocom:latest eclipse-titan Last lines of build log: [ 60s] [245/294] installing libglx-mesa0-22.2.0-1 [ 60s] [246/294] installing libarchive-zip-perl-1.68-1 [ 60s] [247/294] installing libdebhelper-perl-13.9.1 [ 61s] [248/294] installing libsub-override-perl-0.09-3 [ 61s] [249/294] installing intltool-debian-0.35.0+20060710.5 [ 61s] [250/294] installing libdpkg-perl-1.21.9 [ 61s] [251/294] installing tcl-expect-5.45.4-2+b1 [ 61s] [252/294] installing tcl8.6-8.6.12+dfsg-1+b1 [ 61s] [253/294] installing autoconf-2.71-2 [ 61s] [254/294] installing libfile-find-rule-perl-0.34-2 [ 61s] [255/294] installing libicu-dev-71.1-3 [ 63s] [256/294] installing libglx0-1.5.0-1 [ 63s] [257/294] installing libstdc++-12-dev-12.2.0-5 [ 63s] [258/294] installing libfontconfig1-2.13.1-4.5 [ 63s] [259/294] installing libncurses-dev-6.3+20220423-2 [ 63s] [260/294] installing libtool-2.4.7-4 [ 64s] [261/294] installing libpam-modules-1.5.2-3 [ 64s] dpkg: error processing archive .init_b_cache/libpam-modules.deb (--install): [ 64s] trying to overwrite '/usr/share/man/man5/namespace.conf.5.gz', which is also in package libpam-modules-bin 1.5.2-3 [ 64s] Errors were encountered while processing: [ 64s] .init_b_cache/libpam-modules.deb [ 64s] exit ... [ 64s] ### VM INTERACTION START ### [ 64s] [ 50.344286][ T1] sysrq: Power Off [ 64s] [ 50.346848][ T16] reboot: Power down [ 64s] ### VM INTERACTION END ### [ 64s] [ 64s] lamb21 failed "build eclipse-titan_8.0.0-1.dsc" at Thu Oct 6 10:59:05 UTC 2022. [ 64s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
2 years, 8 months
1
0
0
0
← Newer
1
...
180
181
182
183
184
185
186
...
234
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
Results per page:
10
25
50
100
200