[systemd-commits] src/shared
Lennart Poettering
lennart at kemper.freedesktop.org
Mon May 14 13:57:26 PDT 2012
src/shared/missing.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 990478a0ef17c59a29a644c3b2efaca2db66021e
Author: Andreas Schwab <schwab at linux-m68k.org>
Date: Tue May 8 19:18:26 2012 +0200
missing: Fix broken syscall(__NR_fanotify_mark... on ppc32
The same situation as on o32 mips.
diff --git a/src/shared/missing.h b/src/shared/missing.h
index 5951e06..ecedf72 100644
--- a/src/shared/missing.h
+++ b/src/shared/missing.h
@@ -133,7 +133,7 @@ static inline int fanotify_init(unsigned int flags, unsigned int event_f_flags)
static inline int fanotify_mark(int fanotify_fd, unsigned int flags, uint64_t mask,
int dfd, const char *pathname) {
-#if defined _MIPS_SIM && _MIPS_SIM == _MIPS_SIM_ABI32
+#if defined _MIPS_SIM && _MIPS_SIM == _MIPS_SIM_ABI32 || defined __powerpc__ && !defined __powerpc64__
union {
uint64_t _64;
uint32_t _32[2];
More information about the systemd-commits
mailing list