Skip to content
Snippets Groups Projects
  1. May 12, 2017
    • Gabriel's avatar
      bug fixes from Fujitsu (bug 21) · 98a7a16e
      Gabriel authored and Cédric Roux's avatar Cédric Roux committed
      Note: this fix does not solve the issue with how
      this buffer is used in this function, but I'm not
      sure this code is used at all (Cédric Roux).
      
      ----------------------------------------------------------
      bug 21
      
      Ttile:
      PAYLOAD_MAX=1500, so this coding results in index overflow.
      Additionally, operator "!=" just compairs something, this
      coding is meaningless.
      
      Bug Location:
      buffer[PAYLOAD_MAX] != '\0';
      
      Note:
      Detected by CppCheck
      ----------------------------------------------------------
      98a7a16e
    • Gabriel's avatar
      bug fixes from Fujitsu (bugs 18, 19, 20) · bdaef795
      Gabriel authored and Cédric Roux's avatar Cédric Roux committed
      ----------------------------------------------------------
      bug 18
      
      Ttile:
      Probably he/she wants to copy the contents of arrays, but
      this coding doesn't copy anything, moreover index overflow
      occurs.
      
      Bug Location:
      u2e_t[UE_id][eNB_id]->tx_data[3]=tx[eNB_id][3];
      u2e_t[UE_id][eNB_id]->rx_data[3]=rx[NB_eNB_INST+UE_id][3];
      
      Note:
      Detected by CppCheck
      ----------------------------------------------------------
      bug 19
      
      Title:
      Probably he/she wants to copy the contents of arrays, but
      this coding doesn't copy anything, moreover index overflow
      occurs.
      
      Bug Location:
      e2u_t[eNB_id][UE_id]->tx_data[3]=tx[NB_eNB_INST+UE_id][3];
      e2u_t[eNB_id][UE_id]->rx_data[3]=rx[eNB_id][3];
      
      Note:
      Detected by CppCheck
      ----------------------------------------------------------
      bug 20
      
      Title:
      Probably he/she wants to copy the contents of arrays, but
      this coding doesn't copy anything, moreover index overflow
      occurs.
      
      Bug Location:
      tx_data[3]=cthread->tx_data[3];
      rx_data[3]=cthread->rx_data[3];
      
      Note:
      Detected by CppCheck
      ----------------------------------------------------------
      bdaef795
  2. Apr 18, 2017
  3. Apr 14, 2017
  4. Apr 12, 2017
  5. Apr 11, 2017
  6. Apr 10, 2017
  7. Apr 08, 2017
  8. Apr 07, 2017
  9. Apr 03, 2017
    • Cédric Roux's avatar
      hotfix: revert value of 'rb_table_index' · e7f1cf42
      Cédric 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
    • Gabriel's avatar
      commit id added to the log · 666ae5d0
      Gabriel authored
      666ae5d0
    • Cédric Roux's avatar
      Merge branch 'develop_integration_w13' into 'develop' · 316f6aba
      Cédric 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
    • Cédric Roux's avatar
      integration fix: fixes for pthread_getname_np · c36c0453
      Cédric 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
  10. Mar 30, 2017
  11. Mar 29, 2017
  12. Mar 28, 2017
Loading