Commit 3ed5c2f0 authored by Michael Holzheu's avatar Michael Holzheu Committed by Pavel Emelyanov

criu/files: Fix wait_fds_event() for 64 bit platforms

The htole64() function returns a 64 bit value. This is stored in
a 32 bit integer in wait_fds_event() which results in 0 for big-endian
64 bit platforms. The fuxtex() system call also requires 32 bit values.

Fix this and use htole32() also for 64 bit platforms.
Signed-off-by: 's avatarMichael Holzheu <holzheu@linux.vnet.ibm.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 624aa178
......@@ -178,11 +178,8 @@ void wait_fds_event(void)
{
futex_t *f = &current->task_st;
int value;
#if BITS_PER_LONG == 64
value = htole64(FDS_EVENT);
#else
value = htole32(FDS_EVENT);
#endif
futex_wait_if_cond(f, value, &);
clear_fds_event();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment