repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hugetlb: introduce generic version of hugetlb_free_pgd_range
[linux/fpc-iii.git]
/
arch
/
x86
/
realmode
/
rm
/
stack.S
blob
8d4cb64799eaeaacc766b19fff8508b59a622d02
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Common heap and stack allocations
4
*/
5
6
#include <linux/linkage.h>
7
8
.data
9
GLOBAL(HEAP)
10
.long rm_heap
11
GLOBAL(heap_end)
12
.long rm_stack
13
14
.bss
15
.balign 16
16
GLOBAL(rm_heap)
17
.space 2048
18
GLOBAL(rm_stack)
19
.space 2048
20
GLOBAL(rm_stack_end)