Module Name:    src
Committed By:   skrll
Date:           Sun Oct  7 18:03:59 UTC 2018

Modified Files:
        src/sys/arch/aarch64/conf: kern.ldscript

Log Message:
Don't use a magic number for COHERENCY_UNIT use COHERENCY_UNIT


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/aarch64/conf/kern.ldscript

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/aarch64/conf/kern.ldscript
diff -u src/sys/arch/aarch64/conf/kern.ldscript:1.9 src/sys/arch/aarch64/conf/kern.ldscript:1.10
--- src/sys/arch/aarch64/conf/kern.ldscript:1.9	Mon Sep 10 17:25:21 2018
+++ src/sys/arch/aarch64/conf/kern.ldscript	Sun Oct  7 18:03:59 2018
@@ -42,17 +42,17 @@ SECTIONS
 		*(.data)
 	}
 
-	. = ALIGN(64);	/* COHERENCY_UNIT */
+	. = ALIGN(COHERENCY_UNIT);
 	.data.cacheline_aligned :
 	{
 		*(.data.cacheline_aligned)
 	}
-	. = ALIGN(64);	/* COHERENCY_UNIT */
+	. = ALIGN(COHERENCY_UNIT);
 	.data.read_mostly :
 	{
 		*(.data.read_mostly)
 	}
-	. = ALIGN(64);	/* COHERENCY_UNIT */
+	. = ALIGN(COHERENCY_UNIT);
 
 	_edata = .;
 	PROVIDE (edata = .);

Reply via email to