1. 28 Feb, 2017 1 commit
  2. 27 Feb, 2017 10 commits
  3. 24 Feb, 2017 3 commits
  4. 23 Feb, 2017 9 commits
  5. 15 Feb, 2017 1 commit
    • Adam Wujek's avatar
      proto-ext-whiterabbit: change the order of fields in struct wr_servo_state · 62e4d20d
      Adam Wujek authored
      In wrpc's SNMP we store an offset between beginning of a structure and
      particullar field. To save memory we store this offset as a uint8_t, which
      limits the offset of a filed to 255 bytes. It was necessary to move following
      fields below 255 offset:
      --n_err_state
      --n_err_offset
      --n_err_delta_rtt
      
      Compiling wrpc-sw with an offset greater than 255, a compiler prints warnings
      like:
      lib/snmp.c:405:2: warning: large integer implicitly truncated to unsigned type
      Signed-off-by: Adam Wujek's avatarAdam Wujek <adam.wujek@cern.ch>
      62e4d20d
  6. 14 Feb, 2017 1 commit
  7. 13 Feb, 2017 1 commit
  8. 03 Feb, 2017 1 commit
  9. 31 Jan, 2017 11 commits
  10. 17 Jan, 2017 1 commit
  11. 13 Jan, 2017 1 commit
    • Alessandro Rubini's avatar
      general: avoid linux/ includes when possible · 922e2caf
      Alessandro Rubini authored
      Building with musl was spitting errors for redefined data structures.
      Use the standard headers when available (I found not alternatives to
      linux/if_packet.h, but it spits no error).
      
      Then, ifr.ifr_data is "caddr_t" not "void *" in musl, so cast the
      pointer being assigned to silent a warning.
      
      Finally, the fields of udphdr in musl use different names unless wi
      add _GNU_SOURCE -- most likely musl is more posixly-correct, I didn't check.
      Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
      922e2caf