add 2.6.17.4

svn path=/dists/trunk/linux-2.6/; revision=6959
This commit is contained in:
maximilian attems 2006-07-07 13:29:48 +00:00
parent 21fd24d5f7
commit c465426197
3 changed files with 17 additions and 2 deletions

4
debian/changelog vendored
View File

@ -37,11 +37,13 @@ linux-2.6 (2.6.17-3) UNRELEASED; urgency=low
Set deadline as default iosched and CONFIG_NR_CPUS=32. (closes: 295680)
* Set CONFIG_SERIAL_8250_RN_UARTS=16 for all archs beside mips/m68k unless
explicitly set on a specific value. (closes: 377151)
* Add stable release 2.6.17.4:
- fix prctl privilege escalation and suid_dumpable (CVE-2006-2451)
[ Sven Luther ]
* Re-enabled fs-asfs patch.
-- maximilian attems <maks@sternwelten.at> Fri, 7 Jul 2006 12:37:43 +0200
-- maximilian attems <maks@sternwelten.at> Fri, 7 Jul 2006 15:23:43 +0200
linux-2.6 (2.6.17-2) unstable; urgency=low

13
debian/patches/2.6.17.4 vendored Normal file
View File

@ -0,0 +1,13 @@
diff --git a/kernel/sys.c b/kernel/sys.c
index 0b6ec0e..59273f7 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1991,7 +1991,7 @@ asmlinkage long sys_prctl(int option, un
error = current->mm->dumpable;
break;
case PR_SET_DUMPABLE:
- if (arg2 < 0 || arg2 > 2) {
+ if (arg2 < 0 || arg2 > 1) {
error = -EINVAL;
break;
}

View File

@ -2,4 +2,4 @@
+ 2.6.17.2
+ 2.6.17.3
+ fs-asfs.patch
+ 2.6.17.4