From 26c069b284f1f9cd144e2c4e8b0fa8ee4b25bc83 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 24 May 2009 20:54:26 -0700 Subject: Align free_high_memory to a 64K boundary There might be some minor performance gains from aligning free_high_memory to a 64K boundary... so we might as well do so. Signed-off-by: H. Peter Anvin --- core/syslinux.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/syslinux.ld') diff --git a/core/syslinux.ld b/core/syslinux.ld index 97294e85..7a7f01ef 100644 --- a/core/syslinux.ld +++ b/core/syslinux.ld @@ -257,6 +257,6 @@ SECTIONS _end = .; /* COM32R and kernels are loaded after our own PM code */ - . = ALIGN(4096); + . = ALIGN(65536); free_high_memory = .; } -- cgit v1.2.1