Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F151626498
D3094.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
6 KB
Referenced Files
None
Subscribers
None
D3094.id.diff
View Options
Index: head/sys/arm/arm/machdep.c
===================================================================
--- head/sys/arm/arm/machdep.c
+++ head/sys/arm/arm/machdep.c
@@ -44,6 +44,7 @@
#include "opt_compat.h"
#include "opt_ddb.h"
+#include "opt_kstack_pages.h"
#include "opt_platform.h"
#include "opt_sched.h"
#include "opt_timer.h"
Index: head/sys/arm/at91/at91_machdep.c
===================================================================
--- head/sys/arm/at91/at91_machdep.c
+++ head/sys/arm/at91/at91_machdep.c
@@ -43,6 +43,7 @@
* Created : 17/09/94
*/
+#include "opt_kstack_pages.h"
#include "opt_platform.h"
#include <sys/cdefs.h>
Index: head/sys/arm/cavium/cns11xx/econa_machdep.c
===================================================================
--- head/sys/arm/cavium/cns11xx/econa_machdep.c
+++ head/sys/arm/cavium/cns11xx/econa_machdep.c
@@ -38,6 +38,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/param.h>
#include <sys/systm.h>
Index: head/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c
===================================================================
--- head/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c
+++ head/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c
@@ -44,6 +44,7 @@
*/
#include "opt_ddb.h"
+#include "opt_kstack_pages.h"
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
Index: head/sys/arm/xscale/i80321/ep80219_machdep.c
===================================================================
--- head/sys/arm/xscale/i80321/ep80219_machdep.c
+++ head/sys/arm/xscale/i80321/ep80219_machdep.c
@@ -48,6 +48,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/param.h>
#include <sys/systm.h>
Index: head/sys/arm/xscale/i80321/iq31244_machdep.c
===================================================================
--- head/sys/arm/xscale/i80321/iq31244_machdep.c
+++ head/sys/arm/xscale/i80321/iq31244_machdep.c
@@ -48,6 +48,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/param.h>
#include <sys/systm.h>
Index: head/sys/arm/xscale/i8134x/crb_machdep.c
===================================================================
--- head/sys/arm/xscale/i8134x/crb_machdep.c
+++ head/sys/arm/xscale/i8134x/crb_machdep.c
@@ -48,6 +48,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/param.h>
#include <sys/systm.h>
Index: head/sys/arm/xscale/ixp425/avila_machdep.c
===================================================================
--- head/sys/arm/xscale/ixp425/avila_machdep.c
+++ head/sys/arm/xscale/ixp425/avila_machdep.c
@@ -48,6 +48,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/param.h>
#include <sys/systm.h>
Index: head/sys/arm/xscale/pxa/pxa_machdep.c
===================================================================
--- head/sys/arm/xscale/pxa/pxa_machdep.c
+++ head/sys/arm/xscale/pxa/pxa_machdep.c
@@ -46,6 +46,7 @@
*/
#include "opt_ddb.h"
+#include "opt_kstack_pages.h"
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
Index: head/sys/arm64/arm64/locore.S
===================================================================
--- head/sys/arm64/arm64/locore.S
+++ head/sys/arm64/arm64/locore.S
@@ -27,6 +27,7 @@
*/
#include "assym.s"
+#include "opt_kstack_pages.h"
#include <sys/syscall.h>
#include <machine/asm.h>
#include <machine/armreg.h>
@@ -51,8 +52,6 @@
* We are loaded at a 2MiB aligned address
*/
-#define INIT_STACK_SIZE (PAGE_SIZE * 4)
-
.text
.globl _start
_start:
Index: head/sys/arm64/arm64/mp_machdep.c
===================================================================
--- head/sys/arm64/arm64/mp_machdep.c
+++ head/sys/arm64/arm64/mp_machdep.c
@@ -28,6 +28,7 @@
*
*/
+#include "opt_kstack_pages.h"
#include "opt_platform.h"
#include <sys/cdefs.h>
Index: head/sys/arm64/arm64/swtch.S
===================================================================
--- head/sys/arm64/arm64/swtch.S
+++ head/sys/arm64/arm64/swtch.S
@@ -30,6 +30,7 @@
*/
#include "assym.s"
+#include "opt_kstack_pages.h"
#include "opt_sched.h"
#include <machine/asm.h>
Index: head/sys/ddb/db_ps.c
===================================================================
--- head/sys/ddb/db_ps.c
+++ head/sys/ddb/db_ps.c
@@ -30,6 +30,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#include <sys/param.h>
#include <sys/cons.h>
#include <sys/jail.h>
Index: head/sys/ddb/db_sym.c
===================================================================
--- head/sys/ddb/db_sym.c
+++ head/sys/ddb/db_sym.c
@@ -31,6 +31,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#include <sys/param.h>
#include <sys/pcpu.h>
#include <sys/smp.h>
Index: head/sys/i386/i386/locore.s
===================================================================
--- head/sys/i386/i386/locore.s
+++ head/sys/i386/i386/locore.s
@@ -41,6 +41,7 @@
#include "opt_bootp.h"
#include "opt_compat.h"
+#include "opt_kstack_pages.h"
#include "opt_nfsroot.h"
#include "opt_pmap.h"
Index: head/sys/powerpc/booke/pmap.c
===================================================================
--- head/sys/powerpc/booke/pmap.c
+++ head/sys/powerpc/booke/pmap.c
@@ -51,6 +51,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#include <sys/param.h>
#include <sys/conf.h>
#include <sys/malloc.h>
Index: head/sys/sparc64/sparc64/exception.S
===================================================================
--- head/sys/sparc64/sparc64/exception.S
+++ head/sys/sparc64/sparc64/exception.S
@@ -58,6 +58,7 @@
#include "opt_compat.h"
#include "opt_ddb.h"
+#include "opt_kstack_pages.h"
#include <machine/asi.h>
#include <machine/asmacros.h>
Index: head/sys/sparc64/sparc64/stack_machdep.c
===================================================================
--- head/sys/sparc64/sparc64/stack_machdep.c
+++ head/sys/sparc64/sparc64/stack_machdep.c
@@ -27,6 +27,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/stack.h>
Index: head/sys/sparc64/sparc64/support.S
===================================================================
--- head/sys/sparc64/sparc64/support.S
+++ head/sys/sparc64/sparc64/support.S
@@ -27,6 +27,8 @@
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
+#include "opt_kstack_pages.h"
+
#include <sys/errno.h>
#include <machine/asi.h>
Index: head/sys/x86/xen/pv.c
===================================================================
--- head/sys/x86/xen/pv.c
+++ head/sys/x86/xen/pv.c
@@ -31,6 +31,7 @@
__FBSDID("$FreeBSD$");
#include "opt_ddb.h"
+#include "opt_kstack_pages.h"
#include <sys/param.h>
#include <sys/bus.h>
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Apr 10, 2:44 PM (17 h, 23 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31231673
Default Alt Text
D3094.id.diff (6 KB)
Attached To
Mode
D3094: Fix KSTACK_PAGES issue
Attached
Detach File
Event Timeline
Log In to Comment