summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Linux 3.18.100v3.18.100Greg Kroah-Hartman2018-03-181-1/+1
|
* Linux 3.18.99v3.18.99Greg Kroah-Hartman2018-03-111-1/+1
|
* Linux 3.18.98v3.18.98Greg Kroah-Hartman2018-03-031-1/+1
|
* Linux 3.18.97v3.18.97Greg Kroah-Hartman2018-02-281-1/+1
|
* Linux 3.18.96v3.18.96Greg Kroah-Hartman2018-02-251-1/+1
|
* Linux 3.18.95v3.18.95Greg Kroah-Hartman2018-02-161-1/+1
|
* Linux 3.18.94v3.18.94Greg Kroah-Hartman2018-02-071-1/+1
|
* Linux 3.18.93v3.18.93Greg Kroah-Hartman2018-01-311-1/+1
|
* Linux 3.18.92v3.18.92Greg Kroah-Hartman2018-01-171-1/+1
|
* Linux 3.18.91v3.18.91Greg Kroah-Hartman2018-01-021-1/+1
|
* kbuild: add '-fno-stack-check' to kernel build optionsLinus Torvalds2018-01-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | commit 3ce120b16cc548472f80cf8644f90eda958cf1b6 upstream. It appears that hardened gentoo enables "-fstack-check" by default for gcc. That doesn't work _at_all_ for the kernel, because the kernel stack doesn't act like a user stack at all: it's much smaller, and it doesn't auto-expand on use. So the extra "probe one page below the stack" code generated by -fstack-check just breaks the kernel in horrible ways, causing infinite double faults etc. [ I have to say, that the particular code gcc generates looks very stupid even for user space where it works, but that's a separate issue. ] Reported-and-tested-by: Alexander Tsoy <alexander@tsoy.me> Reported-and-tested-by: Toralf Förster <toralf.foerster@gmx.de> Cc: Dave Hansen <dave.hansen@intel.com> Cc: Jiri Kosina <jikos@kernel.org> Cc: Andy Lutomirski <luto@amacapital.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
* Linux 3.18.90v3.18.90Greg Kroah-Hartman2017-12-251-1/+1
|
* Linux 3.18.89v3.18.89Greg Kroah-Hartman2017-12-201-1/+1
|
* Linux 3.18.88v3.18.88Greg Kroah-Hartman2017-12-161-1/+1
|
* Linux 3.18.87v3.18.87Greg Kroah-Hartman2017-12-091-1/+1
|
* Linux 3.18.86v3.18.86Greg Kroah-Hartman2017-12-051-1/+1
|
* Linux 3.18.85v3.18.85Greg Kroah-Hartman2017-11-301-1/+1
|
* Linux 3.18.84v3.18.84Greg Kroah-Hartman2017-11-241-1/+1
|
* Linux 3.18.83v3.18.83Greg Kroah-Hartman2017-11-211-1/+1
|
* Linux 3.18.82v3.18.82Greg Kroah-Hartman2017-11-181-1/+1
|
* Linux 3.18.81v3.18.81Greg Kroah-Hartman2017-11-151-1/+1
|
* Linux 3.18.80v3.18.80Greg Kroah-Hartman2017-11-081-1/+1
|
* Linux 3.18.79v3.18.79Greg Kroah-Hartman2017-11-021-1/+1
|
* Linux 3.18.78v3.18.78Greg Kroah-Hartman2017-10-271-1/+1
|
* Linux 3.18.77v3.18.77Greg Kroah-Hartman2017-10-211-1/+1
|
* Linux 3.18.76v3.18.76Greg Kroah-Hartman2017-10-181-1/+1
|
* Linux 3.18.75v3.18.75Greg Kroah-Hartman2017-10-121-1/+1
|
* Linux 3.18.74v3.18.74Greg Kroah-Hartman2017-10-081-1/+1
|
* Linux 3.18.73v3.18.73Greg Kroah-Hartman2017-10-051-1/+1
|
* Linux 3.18.72v3.18.72Greg Kroah-Hartman2017-09-271-1/+1
|
* Linux 3.18.71v3.18.71Greg Kroah-Hartman2017-09-131-1/+1
|
* Linux 3.18.70v3.18.70Greg Kroah-Hartman2017-09-071-1/+1
|
* Linux 3.18.69v3.18.69Greg Kroah-Hartman2017-09-021-1/+1
|
* Linux 3.18.68v3.18.68Greg Kroah-Hartman2017-08-301-1/+1
|
* Linux 3.18.67v3.18.67Greg Kroah-Hartman2017-08-241-1/+1
|
* Linux 3.18.66v3.18.66Greg Kroah-Hartman2017-08-161-1/+1
|
* Linux 3.18.65v3.18.65Greg Kroah-Hartman2017-08-121-1/+1
|
* Linux 3.18.64v3.18.64Greg Kroah-Hartman2017-08-111-1/+1
|
* Linux 3.18.63v3.18.63Greg Kroah-Hartman2017-07-271-1/+1
|
* disable new gcc-7.1.1 warnings for nowLinus Torvalds2017-07-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | commit bd664f6b3e376a8ef4990f87d08271cc2d01ba9a upstream. I made the mistake of upgrading my desktop to the new Fedora 26 that comes with gcc-7.1.1. There's nothing wrong per se that I've noticed, but I now have 1500 lines of warnings, mostly from the new format-truncation warning triggering all over the tree. We use 'snprintf()' and friends in a lot of places, and often know that the numbers are fairly small (ie a controller index or similar), but gcc doesn't know that, and sees an 'int', and thinks that it could be some huge number. And then complains when our buffers are not able to fit the name for the ten millionth controller. These warnings aren't necessarily bad per se, and we probably want to look through them subsystem by subsystem, but at least during the merge window they just mean that I can't even see if somebody is introducing any *real* problems when I pull. So warnings disabled for now. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
* Linux 3.18.62v3.18.62Greg Kroah-Hartman2017-07-211-1/+1
|
* Linux 3.18.61v3.18.61Greg Kroah-Hartman2017-07-151-1/+1
|
* Linux 3.18.60v3.18.60Greg Kroah-Hartman2017-07-051-1/+1
|
* Linux 3.18.59v3.18.59Greg Kroah-Hartman2017-06-291-1/+1
|
* Linux 3.18.58v3.18.58Greg Kroah-Hartman2017-06-261-1/+1
|
* Linux 3.18.57v3.18.57Greg Kroah-Hartman2017-06-141-1/+1
|
* Linux 3.18.56v3.18.56Greg Kroah-Hartman2017-06-071-1/+1
|
* Linux 3.18.55v3.18.55Greg Kroah-Hartman2017-05-251-1/+1
|
* Linux 3.18.54v3.18.54Greg Kroah-Hartman2017-05-201-1/+1
|
* Linux 3.18.53v3.18.53Greg Kroah-Hartman2017-05-151-1/+1
|