Re: [PATCH 04/10] bsd-user: Implement freebsd11_mknod, freebsd11_mknodat and mknodat

2022-06-20 Thread Warner Losh
On Mon, Jun 20, 2022 at 1:13 PM Richard Henderson < richard.hender...@linaro.org> wrote: > On 6/20/22 10:42, Warner Losh wrote: > > These implement both the old-pre INO64 mknod variations, as well as the > > now current INO64 variant. To implement the old stuff, we use some > > linker magic to

Re: [PATCH 04/10] bsd-user: Implement freebsd11_mknod, freebsd11_mknodat and mknodat

2022-06-20 Thread Richard Henderson
On 6/20/22 10:42, Warner Losh wrote: These implement both the old-pre INO64 mknod variations, as well as the now current INO64 variant. To implement the old stuff, we use some linker magic to bind to the old versions of these functions. Signed-off-by: Stacey Son Signed-off-by: Michal Meloun

[PATCH 04/10] bsd-user: Implement freebsd11_mknod, freebsd11_mknodat and mknodat

2022-06-20 Thread Warner Losh
These implement both the old-pre INO64 mknod variations, as well as the now current INO64 variant. To implement the old stuff, we use some linker magic to bind to the old versions of these functions. Signed-off-by: Stacey Son Signed-off-by: Michal Meloun Signed-off-by: Warner Losh ---