Page MenuHomeFreeBSD

riscv trap_pfault: remove unneeded hold of the process around vm_fault() call.
ClosedPublic

Authored by kib on Sep 13 2019, 7:22 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 7, 5:19 PM
Unknown Object (File)
Mon, Sep 29, 4:43 AM
Unknown Object (File)
Sep 10 2025, 1:21 AM
Unknown Object (File)
Sep 2 2025, 1:26 AM
Unknown Object (File)
Aug 31 2025, 2:24 PM
Unknown Object (File)
Aug 4 2025, 10:32 PM
Unknown Object (File)
Aug 2 2025, 6:46 PM
Unknown Object (File)
Jul 25 2025, 11:52 PM
Subscribers

Details

Summary

This is re-appearance of the nop code removed from other arches in r287625.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj added inline comments.
sys/riscv/riscv/trap.c
240 ↗(On Diff #62059)

Wasn't this incorrect for faults on pipe_map or exec_map?

This revision is now accepted and ready to land.Sep 13 2019, 7:42 PM
sys/riscv/riscv/trap.c
240 ↗(On Diff #62059)

Incorrect what ? pipe or exec maps are kernel submaps. What do you mean exactly ?

sys/riscv/riscv/trap.c
240 ↗(On Diff #62059)

Sorry, I meant that the comment seemed incorrect. I don't see why we would lock a process for faults on a user map, but not a fault on pipe_map. Anyway, it is not important.