Projects
osmocom:master
osmo-bts
Log In
Username
Password
Error getting diff: tar:
×
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 5
View file
osmo-bts.spec
Changed
@@ -14,13 +14,13 @@ Name: osmo-bts Requires: osmocom-master -Version: 1.5.0.34.0db3 +Version: 1.5.0.35.83964 Release: 0 Summary: Osmocom BTS-Side code (Abis, scheduling) License: AGPL-3.0-or-later AND GPL-2.0-only Group: Productivity/Telephony/Servers URL: https://osmocom.org/projects/osmobts -Source: osmo-bts_1.5.0.34.0db3.tar.xz +Source: osmo-bts_1.5.0.35.83964.tar.xz Source1: rpmlintrc BuildRequires: autoconf BuildRequires: automake
View file
commit_0db38d6521020d76563ca65d8f92d5ca463708b0.txt
Deleted
View file
commit_8396471638d95318d41b85bf7f3e4ad7eee678ea.txt
Added
View file
osmo-bts_1.5.0.34.0db3.dsc -> osmo-bts_1.5.0.35.83964.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-bts Binary: osmo-bts, osmo-bts-trx, osmo-bts-trx-dbg, osmo-bts-virtual, osmo-bts-virtual-dbg, osmo-bts-doc Architecture: any all -Version: 1.5.0.34.0db3 +Version: 1.5.0.35.83964 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/osmobts Standards-Version: 3.9.8 @@ -17,8 +17,8 @@ osmo-bts-virtual deb net optional arch=any osmo-bts-virtual-dbg deb debug extra arch=any Checksums-Sha1: - 0b5d04add2b59ca91d69e8eac576c6cc2854de3c 461220 osmo-bts_1.5.0.34.0db3.tar.xz + 7c9fb61f6d0d3064ec78e0df6094faa7cfcd3795 461048 osmo-bts_1.5.0.35.83964.tar.xz Checksums-Sha256: - ab924cc919a0d289f7b0b098a63118ed7c40198c92a1a8a3e27cdb9f0f99506c 461220 osmo-bts_1.5.0.34.0db3.tar.xz + fdffc1d8ff768dee8361de10f48bfa16a9c2b5476410f7a5e24c0e39b6e1ac89 461048 osmo-bts_1.5.0.35.83964.tar.xz Files: - bf76b6adcf1cd0db562a7cacbe99f4dd 461220 osmo-bts_1.5.0.34.0db3.tar.xz + f632955e89142364821d52f274e29a7c 461048 osmo-bts_1.5.0.35.83964.tar.xz
View file
osmo-bts_1.5.0.34.0db3.tar.xz/.tarball-version -> osmo-bts_1.5.0.35.83964.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.5.0.34-0db3 +1.5.0.35-83964
View file
osmo-bts_1.5.0.34.0db3.tar.xz/debian/changelog -> osmo-bts_1.5.0.35.83964.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-bts (1.5.0.34.0db3) unstable; urgency=medium +osmo-bts (1.5.0.35.83964) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Tue, 04 Oct 2022 14:11:29 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 04 Oct 2022 14:48:09 +0000 osmo-bts (1.5.0) unstable; urgency=medium
View file
osmo-bts_1.5.0.34.0db3.tar.xz/src/common/osmux.c -> osmo-bts_1.5.0.35.83964.tar.xz/src/common/osmux.c
Changed
@@ -25,6 +25,7 @@ #include <stdint.h> #include <stdbool.h> #include <inttypes.h> +#include <unistd.h> #include <osmocom/core/logging.h> #include <osmocom/core/utils.h> @@ -288,14 +289,19 @@ bts->osmux.batch_size = OSMUX_BATCH_DEFAULT_MAX; bts->osmux.dummy_padding = false; INIT_LLIST_HEAD(&bts->osmux.osmux_handle_list); + bts->osmux.fd.fd = -1; return 0; } void bts_osmux_release(struct gsm_bts *bts) { - /* FIXME: not needed? YES,we probably need to iterare over - bts->osmux.osmux_handle_list and free everything there, see - osmux_handle_put() */ + /* bts->osmux.osmux_handle_list should end up empty when all lchans are + * released/freed upon talloc_free(bts). */ + /* If bts->osmux.fd.data is NULL, bts is being released/freed without + * passing bts_osmux_init()/through bts_osmux_open() and hence fd is + * probably 0 (memzeored). Avoid accessing it if not initialized. */ + if (bts->osmux.fd.fd != -1 && bts->osmux.fd.data) + osmo_fd_close(&bts->osmux.fd); } /* Called after config file read, start services */
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.