Page MenuHomeFreeBSD

Add exec_sysvec_init_abi() to setup non native sysentvecs.
ClosedPublic

Authored by dchagin on Jun 25 2021, 3:45 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 16, 10:52 PM
Unknown Object (File)
Tue, Apr 16, 8:22 PM
Unknown Object (File)
Sun, Mar 31, 7:52 AM
Unknown Object (File)
Feb 14 2024, 9:13 PM
Unknown Object (File)
Feb 14 2024, 9:13 PM
Unknown Object (File)
Feb 14 2024, 9:13 PM
Unknown Object (File)
Feb 14 2024, 9:13 PM
Unknown Object (File)
Feb 14 2024, 9:13 PM
Subscribers

Details

Summary

For future use in the Linux emulation layer add a new
exec_sysvec_init_abi() method which will fill timekeep_base and
sharedpage_obj for non native abi.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 40105
Build 36994: arc lint + arc unit

Event Timeline

Can you de-duplicate this with exec_sysvec_init()? For instance, could you make exec_sysvec_init() call into your new function?

Perhaps your function would need to take some flags. Or better, parametrize exec_sysinit_abi() so that you can use it instead of make practically a copy.

sys/kern/kern_sharedpage.c
324–332

Why do you need to check this condition? The assert on the previous line verified that the condition is true.

here was a mistake, now it's ok, runtime tested.

sys/kern/kern_sharedpage.c
319

Add {} around then statement, it is multi-line.

352

This one should be conditional on ABI_FREEBSD as well, perhaps?

397

Should sv->sv_shared_page_obj == 0 (NULL BTW?) and sv->sv_shared_page_base != 0 asserts moved to exec_sysvec_init() ?

401

Now, with the changes to exec_sysvec_init(), what is the reason to have exec_sysvec_init_abi()? It only asserts some state.

sys/kern/kern_sharedpage.c
315

I think that this assert (sv_shared_page_base != 0) should be only done if SV_SHP flag is set.

indeed, fixed, now its good.

kib added inline comments.
sys/kern/kern_sharedpage.c
353

This can be written as a single check

((flags  & (SV_ABI_MASK | SV_RNG_SEED_VER) ) ==  (SV_ABI_FREEBSD | SV_RNG_SEED_VER))

but it is up to you.

This revision is now accepted and ready to land.Jun 26 2021, 1:55 PM