qemu-e2k/linux-user
Laurent Vivier 7f254c5cb8 linux-user: remove useless padding in flock64 structure
Since commit 8efb2ed5ec ("linux-user: Correct signedness of
target_flock l_start and l_len fields"), flock64 structure uses
abi_llong for l_start and l_len in place of "unsigned long long"
this should force them to be aligned accordingly to the target
rules. So we can remove the padding field and the QEMU_PACKED
attribute.

I have compared the result of the following program before and
after the change:

    cat -> flock64_dump  <<EOF
    p/d sizeof(struct target_flock64)
    p/d &((struct target_flock64 *)0)->l_type
    p/d &((struct target_flock64 *)0)->l_whence
    p/d &((struct target_flock64 *)0)->l_start
    p/d &((struct target_flock64 *)0)->l_len
    p/d &((struct target_flock64 *)0)->l_pid
    quit
    EOF

    for file in build/all/*-linux-user/qemu-* ; do
    echo $file
    gdb -batch -nx -x flock64_dump $file 2> /dev/null
    done

The sizeof() changes because we remove the QEMU_PACKED.
The new size is 32 (except for i386 and m68k) and this is
the real size of "struct flock64" on the target architecture.

The following architectures differ:
aarch64_be, aarch64, alpha, armeb, arm, cris, hppa, nios2, or1k,
riscv32, riscv64, s390x.

For a subset of these architectures, I have checked with the following
program the new structure is the correct one:

  #include <stdio.h>
  #define __USE_LARGEFILE64
  #include <fcntl.h>

  int main(void)
  {
	  printf("struct flock64 %d\n", sizeof(struct flock64));
	  printf("l_type %d\n", &((struct flock64 *)0)->l_type);
	  printf("l_whence %d\n", &((struct flock64 *)0)->l_whence);
	  printf("l_start %d\n", &((struct flock64 *)0)->l_start);
	  printf("l_len %d\n", &((struct flock64 *)0)->l_len);
	  printf("l_pid %d\n", &((struct flock64 *)0)->l_pid);
  }

[I have checked aarch64, alpha, hppa, s390x]

For ARM, the target_flock64 becomes the EABI definition, so we need to
define the OABI one in place of the EABI one and use it when it is
needed.

I have also fixed the alignment value for sh4 (to align llong on 4 bytes)
(see c2e3dee6e0 "linux-user: Define target alignment size")
[We should check alignment properties for cris, nios2 and or1k]

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20180502215730.28162-1-laurent@vivier.eu>
2018-05-03 18:40:19 +02:00
..
aarch64 linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
alpha linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
arm linux-user: remove useless padding in flock64 structure 2018-05-03 18:40:19 +02:00
cris linux-user: move cris cpu loop to cris directory 2018-04-30 09:48:15 +02:00
host linux-user: Fix register used for 6th and 7th syscall argument on aarch64 2018-02-18 18:52:32 +01:00
hppa linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
i386 linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
m68k linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
microblaze linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
mips linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
mips64 linux-user: move mips/mips64 cpu loop to mips directory 2018-04-30 09:48:07 +02:00
nios2 linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
openrisc linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
ppc linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
riscv linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
s390x linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
sh4 linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
sparc linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
sparc64 linux-user: move sparc/sparc64 cpu loop to sparc directory 2018-04-30 09:48:03 +02:00
tilegx linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
x86_64 linux-user: move i386/x86_64 cpu loop to i386 directory 2018-04-30 09:47:57 +02:00
xtensa linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
Makefile.objs linux-user: create a dummy per arch cpu_loop.c 2018-04-30 09:47:55 +02:00
cpu_loop-common.h linux-user: create a dummy per arch cpu_loop.c 2018-04-30 09:47:55 +02:00
elfload.c linux-user: ARM-FDPIC: Add support of FDPIC for ARM. 2018-05-03 18:25:29 +02:00
errno_defs.h linux-user: Handle ERFKILL and EHWPOISON 2017-01-22 18:14:10 -08:00
flat.h Support for 32 bit ABI on 64 bit targets (only enabled Sparc64) 2007-10-14 16:27:31 +00:00
flatload.c linux-user: Fix error handling in flatload.c target_pread() 2016-09-21 14:27:19 +03:00
ioctls.h linux-user: Implement ioctl cmd TIOCGPTPEER 2018-02-18 18:52:32 +01:00
linux_loop.h linux-user: Add loop control ioctls 2016-07-19 15:22:33 +03:00
linuxload.c linux-user: Clean up includes 2016-01-29 15:07:22 +00:00
m68k-sim.c linux-user: Clean up includes 2016-01-29 15:07:22 +00:00
main.c linux-user: move xtensa cpu loop to xtensa directory 2018-04-30 09:48:32 +02:00
mmap.c linux-user: drop unused target_msync function 2018-03-13 11:30:22 -07:00
qemu.h linux-user: ARM-FDPIC: Add support of FDPIC for ARM. 2018-05-03 18:25:29 +02:00
safe-syscall.S linux-user: Provide safe_syscall for fixing races between signals and syscalls 2016-05-27 14:49:51 +03:00
signal-common.h linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
signal.c linux-user: introduce target_sigsp() and target_save_altstack() 2018-05-03 18:29:15 +02:00
socket.h linux-user: Add HPPA socket.h definitions 2017-01-23 09:52:39 -08:00
strace.c linux-user: fix O_TMPFILE handling 2017-10-16 16:00:56 +03:00
strace.list linux-user: add rt_tgsigqueueinfo() strace 2017-05-29 14:56:08 +03:00
syscall.c linux-user: remove useless padding in flock64 structure 2018-05-03 18:40:19 +02:00
syscall_defs.h linux-user: remove useless padding in flock64 structure 2018-05-03 18:40:19 +02:00
syscall_types.h linux-user: Add FICLONE and FICLONERANGE ioctls 2017-02-16 15:29:30 +01:00
target_flat.h linux-user/FLAT: allow targets to override FLAT processing 2011-02-09 10:33:54 +02:00
trace-events trace-events: fix code style: print 0x before hex numbers 2017-08-01 12:13:07 +01:00
uaccess.c util: move declarations out of qemu-common.h 2016-03-22 22:20:17 +01:00
uname.c linux-user: Clean up includes 2016-01-29 15:07:22 +00:00
uname.h Clean up decorations and whitespace around header guards 2016-07-12 16:20:46 +02:00
vm86.c linux-user: Clean up includes 2016-01-29 15:07:22 +00:00