Skip to content
Snippets Groups Projects
  1. Mar 22, 2018
    • Robert Schmidt's avatar
      FlexRAN: make agent_id for identification purposes, discern from mod_id · e7a60fc9
      Robert Schmidt authored
      The agent_id is a uint64 consisting of: module ID (i.e. mod_id, the several
      instances of OAI at once, 16 bit), the enb_id from the configuration file (32
      bit) and the cell_id from the configuration file (16 bit).
      
      The module ID is part of the agent ID but it is easier to have it directly in
      the struct.
      e7a60fc9
  2. Mar 19, 2018
    • Cedric Roux's avatar
      bugfix: send UL NACK (on PHICH) at the right place · d3938147
      Cedric Roux authored
      The PHICH was not programmed for the last round (4) because it was
      not programmed in rx_sdu but in schedule_ulsch_rnti, only in case
      of a programmed retransmission (there is obviously no retransmission
      programmed after the last round).
      
      The case of Msg3 is not handled. To be done somehow.
      d3938147
  3. Mar 15, 2018
  4. Mar 09, 2018
  5. Mar 08, 2018
    • oai's avatar
      more NB-IoT integration · da50d68b
      oai authored
      da50d68b
    • oai's avatar
    • oai's avatar
    • Cedric Roux's avatar
      cleanup MAC PDU generation (plus some general cleanup) · 1a8d81ba
      Cedric Roux authored
      The code was very unclear and potentially buggy.
      This new version is more robust.
      
      We can waste up to 2 bytes because the last header in the MAC PDU
      does not contain a length field and when we request data from RLC
      we suppose a 3-bytes MAC header. This might be optimized at some
      point, but the benefit would be low.
      
      This commit also contains some general cleanup:
      - formatting
      - variables' types: let's use 'int' instead of trying to be clever
        by using small types that may generate bugs if the value is
        too big
      - remove 'tpc_accumulated' which was globally used for all UEs
        and has no purpose other than logging. We may want to rework
        a bit the TPC machinery at some point. As the code is today
        we may repeatedly send TPC over and over without caring about
        the 3GPP limits, in which case no one knows how the UE is
        supposed to behave: does it clamp the current max value or does
        it accumulate over and over and take the clamped value to compute
        its actual power? If we send a reverse TPC (reduce power instead
        of increase) does it do it immediately or does it have to decrease
        n+1 times if we previously ordered it to increase n times?)
      
      We do not address the problem of prioritizing LCIDs. As of today there
      is only one dedicated traffic channel (DTCH), so it's not a problem
      at this point.
      
      What has been tested:
      - monolithic eNB 5/10/20MHz with one cots UE, TCP/UDP UL/DL. At 20MHz the
        machine used was not capable of keeping up, generating lots of Us
        and Ls when the throughput reaches 60Mb/s. USRP B210 was used.
      1a8d81ba
  6. Mar 02, 2018
    • Robert Schmidt's avatar
    • Robert Schmidt's avatar
      8cace653
    • Cedric Roux's avatar
      hotfix: fix bad RLC UM packet creation · 26d68e9c
      Cedric Roux authored
      Running TCP DL traffic with one connected UE showed a lot of
      fluctuations in throughput. After analysis it was found that
      sometimes the RLC UM PDU was not correct. It contained one byte
      more than it should. On the receiver side, the TCP packet
      contained in the RLC packet seems to be rejected by the TCP
      stack of the UE (it has one byte more than it should),
      leading to a brutal reduction of the throughput, probably due
      to some congestion detection in the TCP implementation.
      Or something.
      
      This hotfix seems to solve the problem. Using iperf in downlink
      with a 5MHz eNB, we see no more fluctuations, the traffic is
      very steady at 16.8Mb/s, as reported by the iperf server running
      on the phone. (17.5 in the PHY plot of the T tracer.)
      
      A rewrite of both the MAC and RLC UM packet generation is needed.
      The code is way too complex for what it does and may contain
      several similar problems that only trigger in specific rare
      conditions.
      26d68e9c
  7. Mar 01, 2018
  8. Feb 22, 2018
  9. Feb 20, 2018
  10. Feb 19, 2018
  11. Feb 16, 2018
    • Cedric Roux's avatar
      bugfix: fix bad conflict resolutions from previous commits · 2d6dd02b
      Cedric Roux authored
      Some more fixes for some bad conflict resolutions.
      
      I ran:
      
          git diff 2018.w04 2018.w05
      
      And saw some problems with config_sib2.
      
      There was also something strange in openair2/LAYER2/openair2_proc.c
      in the function dump_eNB_l2_stats. Maybe the fix is wrong for
      this one. To be checked.
      2d6dd02b
  12. Feb 15, 2018
  13. Feb 14, 2018
    • Cedric Roux's avatar
      fixup previous bad merge (UE disconnection did not work properly anymore) · 91332d39
      Cedric Roux authored
      Doing airplane mode off to connect a cots UE followed by airplane mode on
      to disconnect it gives very bad results (bad disconnection with lots of
      UL failures followed by lots of logs in the eNB). It used to work properly
      after the work done by Xu Bo.
      
      It turns out that in 2018.w04 things were still working okay. But
      in 2018.w05 no.
      
      So I ran:
      
          git diff 2018.w04 2018.w05
      
      And I checked all the modifications that I thought were relevant
      (everything related to the UE, oaisim, if4 and fapi has not been checked).
      
      This commits takes back the version of 2018.w04.
      
      The modifications in openair2/RRC/LITE/rrc_eNB.c are necessary, I think.
      
      The other modifications may not be necessary or even wrong. To be checked
      at some point.
      91332d39
    • Niccolò Iardella's avatar
      Niccolo: Add sorting policy · 7e3b1f5d
      Niccolò Iardella authored
      7e3b1f5d
    • Robert Schmidt's avatar
      return 0 for unsigned in RAN API · 50f70531
      Robert Schmidt authored
      50f70531
  14. Feb 13, 2018
  15. Feb 12, 2018
Loading