summaryrefslogtreecommitdiff
path: root/linux-uml/linux-uml-2.6.7/silly_panic.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /linux-uml/linux-uml-2.6.7/silly_panic.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'linux-uml/linux-uml-2.6.7/silly_panic.patch')
-rw-r--r--linux-uml/linux-uml-2.6.7/silly_panic.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/linux-uml/linux-uml-2.6.7/silly_panic.patch b/linux-uml/linux-uml-2.6.7/silly_panic.patch
deleted file mode 100644
index 38d3516691..0000000000
--- a/linux-uml/linux-uml-2.6.7/silly_panic.patch
+++ /dev/null
@@ -1,22 +0,0 @@
----
-
- uml-linux-2.6.7-paolo/arch/um/kernel/trap_kern.c | 6 ++++--
- 1 files changed, 4 insertions(+), 2 deletions(-)
-
-diff -puN arch/um/kernel/trap_kern.c~silly_panic arch/um/kernel/trap_kern.c
---- uml-linux-2.6.7/arch/um/kernel/trap_kern.c~silly_panic 2004-06-28 21:42:06.025387464 +0200
-+++ uml-linux-2.6.7-paolo/arch/um/kernel/trap_kern.c 2004-06-28 21:43:47.676934080 +0200
-@@ -54,8 +54,10 @@ int handle_page_fault(unsigned long addr
- if(is_write && !(vma->vm_flags & VM_WRITE))
- goto out;
- page = address & PAGE_MASK;
-- if(page == (unsigned long) current_thread + PAGE_SIZE)
-- panic("Kernel stack overflow");
-+ if (mode_tt) {
-+ if(page == (unsigned long) current_thread + PAGE_SIZE)
-+ panic("Kernel stack overflow");
-+ }
- pgd = pgd_offset(mm, page);
- pmd = pmd_offset(pgd, page);
- do {
-_