Page MenuHomeFreeBSD

pseudofs: Simplify pfs_visible_proc
ClosedPublic

Authored by dchagin on Apr 1 2023, 3:20 PM.
Referenced Files
Unknown Object (File)
Sun, May 17, 11:28 AM
Unknown Object (File)
Sat, May 16, 10:36 PM
Unknown Object (File)
Sat, May 16, 5:59 PM
Unknown Object (File)
Fri, May 15, 7:34 PM
Unknown Object (File)
Fri, May 15, 7:33 PM
Unknown Object (File)
Fri, May 15, 7:33 PM
Unknown Object (File)
Fri, May 15, 7:26 PM
Unknown Object (File)
Thu, May 14, 5:39 AM
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.