On Sun, Sep 17, 2023 at 10:39 PM Karim Taha <[email protected]> wrote:
> From: Stacey Son <[email protected]> > > Signed-off-by: Stacey Son <[email protected]> > Signed-off-by: Karim Taha <[email protected]> > Reviewed-by: Richard Henderson <[email protected]> > --- > bsd-user/bsd-proc.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > Reviewed-by: Warner Losh <[email protected]> > diff --git a/bsd-user/bsd-proc.c b/bsd-user/bsd-proc.c > index 68410a0aa9..19e39a2f76 100644 > --- a/bsd-user/bsd-proc.c > +++ b/bsd-user/bsd-proc.c > @@ -38,3 +38,13 @@ int target_to_host_resource(int code) > return code; > } > > +rlim_t target_to_host_rlim(abi_llong target_rlim) > +{ > + return tswap64(target_rlim); > +} > + > +abi_llong host_to_target_rlim(rlim_t rlim) > +{ > + return tswap64(rlim); > +} > + > -- > 2.42.0 > >
