From 0b5d1bcfa2239ae33188ee919aad16e03a6971cf Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 14 Feb 2011 12:22:26 -0500 Subject: [PATCH] markers: assembly definition should also align on 128 Needed to match the expected C layout. Signed-off-by: Mathieu Desnoyers --- include/ust/marker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ust/marker.h b/include/ust/marker.h index a1f55b0..ef3c1bd 100644 --- a/include/ust/marker.h +++ b/include/ust/marker.h @@ -111,7 +111,7 @@ struct marker { asm volatile ( \ /*".section __markers\n\t"*/ \ ".section __markers,\"aw\",@progbits\n\t" \ - ".balign 8\n\t" \ + ".balign 128\n\t" \ "2:\n\t" \ _ASM_PTR "(__mstrtab_" __stringify(channel) "_" __stringify(name) "_channel_" __stringify(unique) ")\n\t" /* channel string */ \ _ASM_PTR "(__mstrtab_" __stringify(channel) "_" __stringify(name) "_name_" __stringify(unique) ")\n\t" /* name string */ \ -- 2.34.1