From 737e283988f5b9fdc8ea8d131f33dd975e412e71 Mon Sep 17 00:00:00 2001 From: Stefano Avallone Date: Thu, 21 May 2020 12:59:23 +0200 Subject: [PATCH] wifi: Remove high latency TX vector tags --- CHANGES.html | 1 + src/mesh/model/dot11s/airtime-metric.cc | 2 +- src/wifi/model/aarf-wifi-manager.cc | 6 - src/wifi/model/aarf-wifi-manager.h | 1 - src/wifi/model/aarfcd-wifi-manager.cc | 6 - src/wifi/model/aarfcd-wifi-manager.h | 1 - src/wifi/model/amrr-wifi-manager.cc | 6 - src/wifi/model/amrr-wifi-manager.h | 1 - src/wifi/model/aparf-wifi-manager.cc | 6 - src/wifi/model/aparf-wifi-manager.h | 1 - src/wifi/model/arf-wifi-manager.cc | 6 - src/wifi/model/arf-wifi-manager.h | 1 - src/wifi/model/cara-wifi-manager.cc | 6 - src/wifi/model/cara-wifi-manager.h | 1 - src/wifi/model/constant-rate-wifi-manager.cc | 6 - src/wifi/model/constant-rate-wifi-manager.h | 1 - src/wifi/model/ideal-wifi-manager.cc | 6 - src/wifi/model/ideal-wifi-manager.h | 1 - src/wifi/model/mac-low.cc | 6 +- src/wifi/model/minstrel-ht-wifi-manager.cc | 6 - src/wifi/model/minstrel-ht-wifi-manager.h | 1 - src/wifi/model/minstrel-wifi-manager.cc | 6 - src/wifi/model/minstrel-wifi-manager.h | 1 - src/wifi/model/onoe-wifi-manager.cc | 21 +- src/wifi/model/onoe-wifi-manager.h | 1 - src/wifi/model/parf-wifi-manager.cc | 6 - src/wifi/model/parf-wifi-manager.h | 1 - src/wifi/model/qos-txop.cc | 1 - src/wifi/model/rraa-wifi-manager.cc | 6 - src/wifi/model/rraa-wifi-manager.h | 1 - src/wifi/model/rrpaa-wifi-manager.cc | 6 - src/wifi/model/rrpaa-wifi-manager.h | 1 - src/wifi/model/tx-vector-tag.cc | 197 ------------------ src/wifi/model/tx-vector-tag.h | 135 ------------ src/wifi/model/txop.cc | 1 - src/wifi/model/wifi-remote-station-manager.cc | 85 +------- src/wifi/model/wifi-remote-station-manager.h | 37 +--- src/wifi/test/power-rate-adaptation-test.cc | 97 ++++----- src/wifi/wscript | 2 - 39 files changed, 78 insertions(+), 599 deletions(-) delete mode 100644 src/wifi/model/tx-vector-tag.cc delete mode 100644 src/wifi/model/tx-vector-tag.h diff --git a/CHANGES.html b/CHANGES.html index 625e8eb7d..f2558d139 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -88,6 +88,7 @@ transmitted.
  • The preferred way to declare instances of CommandLine is now through a macro: COMMANDLINE (cmd). This enables us to add the CommandLine::Usage() message to the Doxygen for the program.
  • New ...FailSafe () variants of the Config is used to connect PDCP TraceSources of eNB and UE in RadioBearerStatsConnector class. It is required for the simulations using RLC SM where PDCP objects are not created for data radio bearers.
  • T310 timer in LteUeRrc class is stopped if the UE receives RRCConnectionReconfiguration including the mobilityControlInfo. This change is introduced following the 3GPP standard TS36331 sec 5.3.5.4.
  • +
  • The wifi High Latency tags have been removed. They required quite some hacks and were not really needed. The only rate manager (Onoe) that was making use of them has been adjusted to get rid of them.
  • Changes to build system: