[Bug 275295] Linuxulator: faccessat2 unsupported flag 0x100
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 275295] Linuxulator: faccessat2 unsupported flag 0x100"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 24 Nov 2023 15:06:46 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=275295 --- Comment #2 from Ed Maste <emaste@freebsd.org> --- Ah, more extensive change is required, note the XXX comment in linux_faccessat2: int linux_faccessat2(struct thread *td, struct linux_faccessat2_args *args) { int flags, unsupported; /* XXX. AT_SYMLINK_NOFOLLOW is not supported by kern_accessat */ unsupported = args->flags & ~(LINUX_AT_EACCESS | LINUX_AT_EMPTY_PATH); if (unsupported != 0) { linux_msg(td, "faccessat2 unsupported flag 0x%x", unsupported); return (EINVAL); } -- You are receiving this mail because: You are the assignee for the bug.