Thiago Jung Bauermann wrote: > I found out that the fchownat() syscall generates an incorrect audit > record on ppc64. It shows the syscall number for chown() instead of > fchownat(). > [...] > name="/proc/self/fd/3/test.txt" inode=161935 dev=08:05 mode=0100644
This just means that either the libc or the kernel lack the support for the actual fchownat syscall. The emulation code is using chown on files in /proc/self/fd and this is what you see here. The one thing that is wrong is that /proc/self/fd/3/test.txt doesn't exist. The "files" in /proc/*/fd are something like symlinks. -- ➧ Ulrich Drepper ➧ Red Hat, Inc. ➧ 444 Castro St ➧ Mountain View, CA ❖
signature.asc
Description: OpenPGP digital signature
-- redhat-lspp mailing list [email protected] https://www.redhat.com/mailman/listinfo/redhat-lspp
