1. 03 Jun, 2020 6 commits
  2. 20 May, 2020 5 commits
  3. 14 May, 2020 1 commit
  4. 12 May, 2020 5 commits
  5. 08 May, 2020 1 commit
  6. 06 May, 2020 1 commit
  7. 21 Apr, 2020 1 commit
  8. 15 Apr, 2020 2 commits
  9. 14 Apr, 2020 4 commits
  10. 10 Mar, 2020 6 commits
  11. 03 Mar, 2020 1 commit
    • Dimitris Lampridis's avatar
      driver: respect stack frame limit · 181ad487
      Dimitris Lampridis authored
      svec_fpga_app_init() declares too many local buffers that are allocated on the stack.
      
      On some versions of GCC this is detected and reported, causing a warning that is promoted to an
      error. Example:
      
      svec-core-fpga.c:710:1: error: the frame size of 1968 bytes is larger than 1024 bytes
      [-Werror=frame-larger-than=]
      
      Since apparently it is not a very good idea to increase the stack frame size limit [1], the solution
      implemented here is to switch to dynimically allocating the biggest buffer (struct resource res[]).
      
      [1]: https://gcc.gnu.org/onlinedocs/gccint/Stack-Checking.html#Stack-Checking
      "The maximum size of a stack frame, in bytes. GCC will generate probe instructions in non-leaf
      functions to ensure at least this many bytes of stack are available. If a stack frame is larger than
      this size, stack checking will not be reliable and GCC will issue a warning. The default is chosen
      so that GCC only generates one instruction on most systems. You should normally not change the
      default value of this macro."
      Signed-off-by: Dimitris Lampridis's avatarDimitris Lampridis <dimitris.lampridis@cern.ch>
      181ad487
  12. 17 Feb, 2020 3 commits
  13. 12 Feb, 2020 4 commits