An error occurred fetching the project authors.
  1. 05 Oct, 2015 1 commit
  2. 18 Sep, 2015 1 commit
  3. 25 Aug, 2015 1 commit
  4. 04 Aug, 2015 1 commit
  5. 30 Jul, 2015 1 commit
  6. 10 Jun, 2015 1 commit
  7. 26 May, 2015 1 commit
    • Kirill A. Shutemov's avatar
      kernel: use the gnu89 standard explicitly · d87c4481
      Kirill A. Shutemov authored
      commit 51b97e35 upstream.
      
      Sasha Levin reports:
       "gcc5 changes the default standard to c11, which makes kernel build
        unhappy
      
        Explicitly define the kernel standard to be gnu89 which should keep
        everything working exactly like it was before gcc5"
      
      There are multiple small issues with the new default, but the biggest
      issue seems to be that the old - and very useful - GNU extension to
      allow a cast in front of an initializer has gone away.
      
      Patch updated by Kirill:
       "I'm pretty sure all gcc versions you can build kernel with supports
        -std=gnu89.  cc-option is redunrant.
      
        We also need to adjust HOSTCFLAGS otherwise allmodconfig fails for me"
      
      Note by Andrew Pinski:
       "Yes it was reported and both problems relating to this extension has
        been added to gnu99 and gnu11.  Though there are other issues with the
        kernel dealing with extern inline have different semantics between
        gnu89 and gnu99/11"
      
      End result: we may be able to move up to a newer stdc model eventually,
      but right now the newer models have some annoying deficiencies, so the
      traditional "gnu89" model ends up being the preferred one.
      Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
      Singed-off-by: default avatarKirill A. Shutemov <kirill.shutemov@linux.intel.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
      d87c4481
  8. 20 May, 2015 1 commit
  9. 30 Apr, 2015 1 commit
  10. 27 Apr, 2015 1 commit
  11. 09 Apr, 2015 1 commit
  12. 16 Mar, 2015 1 commit
  13. 16 Feb, 2015 1 commit
  14. 29 Jan, 2015 1 commit
  15. 13 Jan, 2015 1 commit
  16. 06 Dec, 2014 1 commit
  17. 03 Dec, 2014 1 commit
  18. 15 Nov, 2014 1 commit
  19. 31 Oct, 2014 1 commit
  20. 17 Oct, 2014 1 commit
  21. 26 Sep, 2014 2 commits
  22. 03 Sep, 2014 1 commit
  23. 26 Aug, 2014 1 commit
  24. 30 Jul, 2014 2 commits
    • Jiri Slaby's avatar
      Linux 3.12.26 · d83a3234
      Jiri Slaby authored
      d83a3234
    • Linus Torvalds's avatar
      Fix gcc-4.9.0 miscompilation of load_balance() in scheduler · 5c8c5c98
      Linus Torvalds authored
      commit 2062afb4 upstream.
      
      Michel Dänzer and a couple of other people reported inexplicable random
      oopses in the scheduler, and the cause turns out to be gcc mis-compiling
      the load_balance() function when debugging is enabled.  The gcc bug
      apparently goes back to gcc-4.5, but slight optimization changes means
      that it now showed up as a problem in 4.9.0 and 4.9.1.
      
      The instruction scheduling problem causes gcc to schedule a spill
      operation to before the stack frame has been created, which in turn can
      corrupt the spilled value if an interrupt comes in.  There may be other
      effects of this bug too, but that's the code generation problem seen in
      Michel's case.
      
      This is fixed in current gcc HEAD, but the workaround as suggested by
      Markus Trippelsdorf is pretty simple: use -fno-var-tracking-assignments
      when compiling the kernel, which disables the gcc code that causes the
      problem.  This can result in slightly worse debug information for
      variable accesses, but that is infinitely preferable to actual code
      generation problems.
      
      Doing this unconditionally (not just for CONFIG_DEBUG_INFO) also allows
      non-debug builds to verify that the debug build would be identical: we
      can do
      
          export GCC_COMPARE_DEBUG=1
      
      to make gcc internally verify that the result of the build is
      independent of the "-g" flag (it will make the compiler build everything
      twice, toggling the debug flag, and compare the results).
      
      Without the "-fno-var-tracking-assignments" option, the build would fail
      (even with 4.8.3 that didn't show the actual stack frame bug) with a gcc
      compare failure.
      
      See also gcc bugzilla:
      
        https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61801Reported-by: default avatarMichel Dänzer <michel@daenzer.net>
      Suggested-by: default avatarMarkus Trippelsdorf <markus@trippelsdorf.de>
      Cc: Jakub Jelinek <jakub@redhat.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
      5c8c5c98
  25. 18 Jul, 2014 1 commit
  26. 04 Jul, 2014 1 commit
  27. 23 Jun, 2014 1 commit
  28. 11 Jun, 2014 1 commit
  29. 29 May, 2014 1 commit
  30. 15 May, 2014 1 commit
  31. 05 May, 2014 1 commit
  32. 18 Apr, 2014 1 commit
  33. 03 Apr, 2014 1 commit
  34. 31 Mar, 2014 1 commit
  35. 24 Mar, 2014 1 commit
  36. 10 Mar, 2014 1 commit
  37. 22 Feb, 2014 1 commit
  38. 20 Feb, 2014 1 commit