1. 07 Sep, 2018 12 commits
  2. 06 Sep, 2018 4 commits
  3. 05 Sep, 2018 18 commits
  4. 04 Sep, 2018 6 commits
    • Cedric Roux's avatar
      bugfix: fix memory error · eaebe514
      Cedric Roux authored
      Using valgrind revealed that those two arrays
      were too small. Let's use 512 bytes, which should
      be enough for every practical cases.
      eaebe514
    • Cedric Roux's avatar
      bugfix: fix compilation problem · 0bdf7e49
      Cedric Roux authored
      This includes damages check_vcd.c in the T tracer
      (in develop branch).
      0bdf7e49
    • Cedric Roux's avatar
      bugfix: fix crash when UE disconnects · 6e128277
      Cedric Roux authored
      Using the basic simulator and valgrind, it was found that
      the lack of initialization of those two pointers leads to
      some very nasty behavior of some other parts of the system.
      6e128277
    • Haruki NAOI's avatar
      Revert "Fix: --log-mem options is erased." · 81eb0e4e
      Haruki NAOI authored
      This reverts commit 3182183860680bb07fea0881a5f52b1191dbea3e.
      81eb0e4e
    • Cedric Roux's avatar
      bugfix: use correct comparison · cb8753fe
      Cedric Roux authored
      The comparison in AssertFatal was not correct,
      taking the opposite meaning to the one expected.
      cb8753fe
    • Cedric Roux's avatar
      bugfix: add handling of DFT 768 everywhere it's needed · 7ec4e6d0
      Cedric Roux authored
      In the eNB it's not really used for the moment because there
      is a limitation to uplink scheduling. In
      openair2/LAYER2/MAC/eNB_scheduler_ulsch.c we have:
      
                  while (((rb_table[rb_table_index] > (N_RB_UL - 1 - first_rb[CC_id]))
                          || (rb_table[rb_table_index] > 45))
      
      That limits uplink scheduling to at most 44 RBs. The 768 case is for
      64 RBs.
      7ec4e6d0