markers: assembly definition should also align on 128
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Mon, 14 Feb 2011 17:22:26 +0000 (12:22 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Mon, 14 Feb 2011 17:22:26 +0000 (12:22 -0500)
Needed to match the expected C layout.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
include/ust/marker.h

index a1f55b0b76338f6db9fa7d4c7309b3f7f6ba862c..ef3c1bd8acfd7fb30f1eeccccf4016d2364d6063 100644 (file)
@@ -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 */ \
This page took 0.024118 seconds and 4 git commands to generate.