From: Lennart Poettering Date: Wed, 17 Apr 2013 16:45:45 +0000 (+0200) Subject: bus: replace aligned_alloc() with memalign() everywhere X-Git-Tag: v202~33 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=c556fe792d4075a365b276e51666a8009d7dca19;ds=sidebyside bus: replace aligned_alloc() with memalign() everywhere aligned_alloc() is C11 and not available everywhere. Also it would require us to align the size value. So let's just invoke memalign() instead, which is universally available and doesn't have any alignment restrictions on the size parameter. --- diff --git a/src/libsystemd-bus/bus-kernel.c b/src/libsystemd-bus/bus-kernel.c index 086877eb8..2bb1b9a19 100644 --- a/src/libsystemd-bus/bus-kernel.c +++ b/src/libsystemd-bus/bus-kernel.c @@ -24,6 +24,7 @@ #endif #include +#include #include "util.h" @@ -199,7 +200,7 @@ static int bus_message_setup_kmsg(sd_bus *b, sd_bus_message *m) { sz += ALIGN8(offsetof(struct kdbus_msg_item, str) + dl + 1); } - m->kdbus = aligned_alloc(8, sz); + m->kdbus = memalign(8, sz); if (!m->kdbus) return -ENOMEM; @@ -500,7 +501,7 @@ int bus_kernel_read_message(sd_bus *bus, sd_bus_message **m) { for (;;) { void *q; - q = aligned_alloc(8, sz); + q = memalign(8, sz); if (!q) return -errno;