]> Git Repo - linux.git/blob - arch/x86/realmode/rm/stack.S
net: udp: prefer listeners bound to an address
[linux.git] / arch / x86 / realmode / rm / stack.S
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)
This page took 0.032736 seconds and 4 git commands to generate.