Date: Fri, 24 Nov 2023 15:06:46 +0000 From: bugzilla-noreply@freebsd.org To: bugs@FreeBSD.org Subject: [Bug 275295] Linuxulator: faccessat2 unsupported flag 0x100 Message-ID: <bug-275295-227-lEdCd9ahqH@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-275295-227@https.bugs.freebsd.org/bugzilla/> References: <bug-275295-227@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D275295 --- 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 =3D args->flags & ~(LINUX_AT_EACCESS | LINUX_AT_EMPTY_P= ATH); if (unsupported !=3D 0) { linux_msg(td, "faccessat2 unsupported flag 0x%x", unsupport= ed); return (EINVAL); } --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-275295-227-lEdCd9ahqH>