Skip to content

Changes

Summary

  1. resources.conf: Update octphy net_device (details)
  2. log: Use sys._getframe() to avoid stat(2) calls (details)
  3. modem: deactivate_context: Fix dbg message (details)
  4. templates: osmo-msc: Remove unused option reject cause (details)
  5. templates: osmo-msc: Remove unused option auth policy (details)
  6. modem: deactive_context: Log when context is successfully deactivated (details)
  7. modem: Remove ctx after deactivating it (details)
  8. contrib: build-osmo-trx: build new dep libosmocore (details)
  9. modem: Identify modems by sysfs path instead of ofono dbus path (details)
  10. pcap_recorder: log printing pcap file name as dbg (details)
Commit 4792f40f6a05b33a61f8eaec936c233213ebe55d by Pau Espin Pedrol
resources.conf: Update octphy net_device
Interface naming model changed after switching to debian9. eth1 is now
named enp2s0.
Change-Id: I86422452e6fd52015361d9e8508b7c74e20847a4
The file was modified example/resources.conf
Commit 257ee10967ab61d497cd207ed38b3fcd564bb79c by Pau Espin Pedrol
log: Use sys._getframe() to avoid stat(2) calls
The Osmo MS driver is launching many many processes and I would like to
use the logging framework for the code as well. Unfortunately the
inspect/traceback code will use a linecache which will execute stat(2)
on one or more python files.
Related: OS#2927 Change-Id: I8f6bacadcf74d3aa25db1e1f41644f64aa19cf92
The file was modified src/osmo_gsm_tester/log.py
Commit 263dd3b6003aa33393bf201d9b0a0b70cd108bc5 by Pau Espin Pedrol
modem: deactivate_context: Fix dbg message
Change-Id: Ib3cb72ebcbfbf53693a2d76ca1592ef7d394dd87
The file was modified src/osmo_gsm_tester/modem.py
Commit 342694150e0c1aff95b1d0b659677011e5a199b2 by Pau Espin Pedrol
templates: osmo-msc: Remove unused option reject cause
Commit osmo-msc 27b40c601c41fde70446ad553629494234c07662 removes this
option from default configuration as it is really not used in osmo-msc,
it comes from osmo-nitb times.
Change-Id: Iac1948113514414e7573f3bbfb3ce82e6c49adb6
The file was modified src/osmo_gsm_tester/templates/osmo-msc.cfg.tmpl
Commit b17295bb219ebfb6df280bdc21b184087efedd47 by Pau Espin Pedrol
templates: osmo-msc: Remove unused option auth policy
Commit osmo-msc 098aa71e83a86200a18088927b4753909f5ed518 removes this
option from default configuration as it is really not used in osmo-msc,
it comes from osmo-nitb times.
Change-Id: I928379ebabfc776f33b9f345d92a7a4a533fe25f
The file was modified src/osmo_gsm_tester/templates/osmo-msc.cfg.tmpl
The file was modified example/defaults.conf
Commit b05aa3cea27feb1df90fe6fd2c9f34219c196949 by Pau Espin Pedrol
modem: deactive_context: Log when context is successfully deactivated
Change-Id: Ibe40a954aa4548e54b48c444014d7dbd2da9d956
The file was modified src/osmo_gsm_tester/modem.py
Commit cdac297b8915e11985f0ea271d601a71b915c3d4 by Pau Espin Pedrol
modem: Remove ctx after deactivating it
Change-Id: Ib0e2a8ae8d9885fa44c9cc1f7dc7c7948abd683c
The file was modified src/osmo_gsm_tester/modem.py
Commit b2a94e843067dfd9b6acc8c1043e9613b06ddf55 by Pau Espin Pedrol
contrib: build-osmo-trx: build new dep libosmocore
Since 8b843e5bed6e3dab1068b86805e557a196f9aa4c, osmo-trx depends on
libosmocore.
Change-Id: I63d09339da5be7af638efe9e07f0c0ed31738ed1
The file was modified contrib/jenkins-build-osmo-trx.sh
Commit e25cf04aeb320b4a859ba5b1337e953321880595 by Pau Espin Pedrol
modem: Identify modems by sysfs path instead of ofono dbus path
ofono dbus paths are non-deterministic and can change over time for a
given modem. For instance when ofono is restartd or if a modem crashes
and the object is destroyed and re-announced by udev.
Requires at least ofono 1df92289d4e09a1e2db0b189b5153a4c238f98f1, which
implemented the feature to export the sysfs path to modem properties.
Related: OS#2509
Change-Id: Ibc45a196abadded2706dc9d57b6a3a796b43a201
The file was modified example/resources.conf
The file was modified src/osmo_gsm_tester/modem.py
Commit 2c48c349980b1a1018b83669f2dfcc6427897d57 by Pau Espin Pedrol
pcap_recorder: log printing pcap file name as dbg
The log message is quite long and makes it difficult to read the log
even with debug disabled.
Change-Id: I593c0ce02bf7a3a9d26cf1fcc7d523a313cb72eb
The file was modified src/osmo_gsm_tester/pcap_recorder.py