Skip to content
Snippets Groups Projects
  1. May 13, 2017
    • Cedric Roux's avatar
      rewrite phy_stats_exist · 9eaee53b
      Cedric Roux authored
      We have to test that all active CCs of a given UE exist in the PHY layer.
      Maybe not the end of the story...
      9eaee53b
  2. May 12, 2017
  3. Apr 18, 2017
  4. Apr 14, 2017
  5. Apr 12, 2017
  6. Apr 11, 2017
  7. Apr 10, 2017
    • Cedric Roux's avatar
      bugfix: increase RLC UM header size · 94f880ad
      Cedric Roux authored
      The constant RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU is set to 24. This is
      too low. Running a downlink TCP iperf with a 10MHz or 20MHz cell
      leads to lots of the following warning in the log:
      
      [RLC][W][SN 792] Bad RLC header! Discard this RLC PDU (size=618)
      
      The problem is that the uplink RLC PDU contains a lot of TCP ack.
      We can see much more than 24 of them. The RLC layer is not happy
      and discards the PDU.
      
      Putting 256 for RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU (arbitrarily chosen,
      big but not too big) solves the problem, at least for 10MHz.
      94f880ad
    • Cedric Roux's avatar
      minor: bad comparison · fbcc9a23
      Cedric Roux authored
      it was:
      
          *num_li_pP >= RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU
      
      it should be:
      
          *num_li_pP > RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU
      fbcc9a23
    • Cedric Roux's avatar
      Merge branch 'develop_integration_w14' into 'develop' · 38abafed
      Cedric Roux authored
      develop_integration_w14 into develop
      
      Summary of changes:
      - minor bug fixes, minor improvements
      
      See merge request !173
      2017.w14
      38abafed
    • Cedric Roux's avatar
      integration fix: change the way to print the version · 10113a35
      Cedric Roux authored
      Using "system" to call "git log" is too error-prone.
      In the test setup, lte-softmodem was blocked because
      "git log" uses a pager ("less") and the pager was
      waiting for the user to press enter.
      
      We could pass "--no-pager" to "git log" but then
      what if someone runs the softmodem out of the source
      tree?
      
      cmake defines PACKAGE_VERSION, we can use that instead,
      as is done in openair-cn.
      10113a35
    • Cedric Roux's avatar
  8. Apr 08, 2017
  9. Apr 07, 2017
  10. Apr 03, 2017
    • Cedric Roux's avatar
      hotfix: revert value of 'rb_table_index' · e7f1cf42
      Cedric Roux authored
      This reverts commit 7f24927c.
      
      With value 13 uplink TDD for a 10MHz configuration was not working.
      UDP traffic sent with: "iperf -c XX -u -b10M" was crashing
      the eNB.
      e7f1cf42
    • gabrielC's avatar
      commit id added to the log · 666ae5d0
      gabrielC authored
      666ae5d0
    • Cedric Roux's avatar
      Merge branch 'develop_integration_w13' into 'develop' · 316f6aba
      Cedric Roux authored
      Develop integration w13
      
      Summary of changes:
      - RLC AM reworking (a lot has changed)
      - several bug fixes
        * support processing multiple MAC RAR control elements in a single MSG2
        * fix ACK/NACK resetting
        * do not correct USRP frequency from carrier offset estimation when --ue-carrier-scan == off
        * fix TDD uplink due to incorrect PUCCH format for SR in TDD
        * several other simple fixes
      - better support for LMS SDR
      
      See merge request !168
      2017.w13
      316f6aba
    • Cedric Roux's avatar
      integration fix: fixes for pthread_getname_np · c36c0453
      Cedric Roux authored
      - define _GNU_SOURCE before including pthread.h
      - do not use static for the array 'threadname' used
        to store the name, it makes it a global variable
        accessed by several threads in parallel
      - increase size of 'threadname' (maybe not necessary)
      - properly indent #define / #under (# should be at column 1)
      c36c0453
  11. Mar 30, 2017
  12. Mar 29, 2017
  13. Mar 28, 2017
Loading