Re: [PATCH] fs: heap/bss calculation ignore special section.

2015-06-24 Thread Noam Camus
; linux-kernel@vger.kernel.org Cc: vgu...@synopsys.com; Gilad Ben Yossef; Chris Metcalf; Noam Camus Subject: [PATCH] fs: heap/bss calculation ignore special section. From: Noam Camus Today bss/heap is placed above last loaded sections. However if STACK_TOP is not equal to TASK_SIZE we wish

Re: [PATCH] fs: heap/bss calculation ignore special section.

2015-06-24 Thread Noam Camus
; linux-kernel@vger.kernel.org Cc: vgu...@synopsys.com; Gilad Ben Yossef; Chris Metcalf; Noam Camus Subject: [PATCH] fs: heap/bss calculation ignore special section. From: Noam Camus no...@ezchip.com Today bss/heap is placed above last loaded sections. However if STACK_TOP is not equal to TASK_SIZE

[PATCH] fs: heap/bss calculation ignore special section.

2015-06-09 Thread Noam Camus
From: Noam Camus Today bss/heap is placed above last loaded sections. However if STACK_TOP is not equal to TASK_SIZE we wish to ignore such sections mapped to this gap between STACK_TOP and TASK_SIZE. set_brk will never work for such case. So at the moment this addition is just a sanity check.

[PATCH] fs: heap/bss calculation ignore special section.

2015-06-09 Thread Noam Camus
From: Noam Camus no...@ezchip.com Today bss/heap is placed above last loaded sections. However if STACK_TOP is not equal to TASK_SIZE we wish to ignore such sections mapped to this gap between STACK_TOP and TASK_SIZE. set_brk will never work for such case. So at the moment this addition is just