Page MenuHomeFreeBSD

pseudofs: Simplify pfs_visible_proc
ClosedPublic

Authored by dchagin on Apr 1 2023, 3:20 PM.
Referenced Files
Unknown Object (File)
Thu, Oct 16, 9:54 AM
Unknown Object (File)
Wed, Oct 15, 9:11 AM
Unknown Object (File)
Mon, Oct 13, 7:19 AM
Unknown Object (File)
Sun, Oct 12, 6:58 AM
Unknown Object (File)
Thu, Oct 2, 3:42 AM
Unknown Object (File)
Thu, Oct 2, 3:09 AM
Unknown Object (File)
Thu, Oct 2, 12:54 AM
Unknown Object (File)
Wed, Oct 1, 3:58 PM
Subscribers

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Perhaps better to drop visible entirely:

if (proc->p_flag & P_WEXIT)
        return (0);
if (p_cansee(td, proc) != 0)
        return (0);
if (pn->pn_vis && pn_vis(td, proc, pn) == 0)
        return (0);
return (1);
This revision is now accepted and ready to land.Apr 1 2023, 9:58 PM
This revision was automatically updated to reflect the committed changes.