From: Mathieu Desnoyers Date: Mon, 14 Feb 2011 17:22:26 +0000 (-0500) Subject: markers: assembly definition should also align on 128 X-Git-Tag: v0.12~60 X-Git-Url: http://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=0b5d1bcfa2239ae33188ee919aad16e03a6971cf markers: assembly definition should also align on 128 Needed to match the expected C layout. Signed-off-by: Mathieu Desnoyers --- 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 */ \