]> git.pld-linux.org Git - packages/kernel.git/blame - kernel-vserver-fixes.patch
- disable strict host->guest separation; it doesn't work currently and it's usefull...
[packages/kernel.git] / kernel-vserver-fixes.patch
CommitLineData
2380c486
JR
1Missing header for routes patch, caused vs2.3 route.h mixing
2--- a/net/ipv4/netfilter/nf_nat_core.c~ 2008-01-24 23:58:37.000000000 +0100
3+++ a/net/ipv4/netfilter/nf_nat_core.c 2008-03-30 21:00:19.349593833 +0200
4@@ -15,6 +15,7 @@
5 #include <net/checksum.h>
6 #include <net/icmp.h>
7 #include <net/ip.h>
8+#include <net/route.h>
9 #include <net/tcp.h> /* For tcp_prot in getorigdst */
10 #include <linux/icmp.h>
11 #include <linux/udp.h>
2bf5ad28
AM
12--- linux-2.6.33/arch/x86/kernel/process.c~ 2010-02-24 19:52:17.000000000 +0100
13+++ linux-2.6.33/arch/x86/kernel/process.c 2010-02-25 23:44:56.487156216 +0100
cc283cfa
AM
14@@ -110,8 +110,8 @@
15 board = dmi_get_system_info(DMI_BOARD_NAME);
2bf5ad28
AM
16
17 printk(KERN_CONT "\n");
cc283cfa 18- printk(KERN_DEFAULT "Pid: %d, comm: %.20s %s %s %.*s",
f5b73038 19- current->pid, current->comm, print_tainted(),
cc283cfa
AM
20+ printk(KERN_DEFAULT "Pid: %d, xid: #%u, comm: %.20s %s %s %.*s",
21+ current->pid, current->xid, current->comm, print_tainted(),
c72ef0bc
AM
22 init_utsname()->release,
23 (int)strcspn(init_utsname()->version, " "),
cc283cfa 24 init_utsname()->version);
c72ef0bc
AM
25--- linux-2.6.31/arch/x86/kernel/dumpstack.c~ 2009-09-16 08:32:02.000000000 +0200
26+++ linux-2.6.31/arch/x86/kernel/dumpstack.c 2009-09-17 21:58:13.778791960 +0200
27@@ -180,8 +180,8 @@
763640ca 28 unsigned long stack;
c72ef0bc 29
763640ca 30 bp = stack_frame(current, NULL);
c72ef0bc 31- printk("Pid: %d, comm: %.20s %s %s %.*s\n",
f5b73038 32- current->pid, current->comm, print_tainted(),
eafd3803 33+ printk("Pid: %d, comm: %.20s xid: #%u %s %s %.*s\n",
f5b73038 34+ current->pid, current->comm, current->xid, print_tainted(),
c72ef0bc
AM
35 init_utsname()->release,
36 (int)strcspn(init_utsname()->version, " "),
37 init_utsname()->version);
372f0e0c 38
969f5c41 39
This page took 0.102555 seconds and 4 git commands to generate.