Re: [PATCH 06/13] fork: Add generic vmalloced stack support

2016-06-16 Thread Andy Lutomirski
On Thu, Jun 16, 2016 at 10:25 AM, Kees Cook wrote: > On Wed, Jun 15, 2016 at 5:28 PM, Andy Lutomirski wrote: >> If CONFIG_VMAP_STACK is selected, kernel stacks are allocated with >> vmalloc_node. >> >> Signed-off-by: Andy Lutomirski >> --- >> arch/Kconfig | 12 >> kernel/fork.c |

Re: [PATCH 06/13] fork: Add generic vmalloced stack support

2016-06-16 Thread Kees Cook
On Wed, Jun 15, 2016 at 5:28 PM, Andy Lutomirski wrote: > If CONFIG_VMAP_STACK is selected, kernel stacks are allocated with > vmalloc_node. > > Signed-off-by: Andy Lutomirski > --- > arch/Kconfig | 12 > kernel/fork.c | 45 + > 2 files c

[PATCH 06/13] fork: Add generic vmalloced stack support

2016-06-15 Thread Andy Lutomirski
If CONFIG_VMAP_STACK is selected, kernel stacks are allocated with vmalloc_node. Signed-off-by: Andy Lutomirski --- arch/Kconfig | 12 kernel/fork.c | 45 + 2 files changed, 49 insertions(+), 8 deletions(-) diff --git a/arch/Kconfig b/ar