Page MenuHomeFreeBSD

filt_fsevent: only record interested events
ClosedPublic

Authored by rew on Feb 27 2021, 7:47 PM.
Tags
None
Referenced Files
F169915370: D28974.id85006.diff
Wed, Sep 2, 11:12 PM
F169833102: D28974.id84835.diff
Wed, Sep 2, 5:13 PM
Unknown Object (File)
Wed, Sep 2, 9:28 AM
Unknown Object (File)
Wed, Sep 2, 12:35 AM
Unknown Object (File)
Tue, Sep 1, 11:31 PM
Unknown Object (File)
Mon, Aug 31, 11:21 PM
Unknown Object (File)
Mon, Aug 31, 4:33 PM
Unknown Object (File)
Mon, Aug 31, 8:53 AM
Subscribers

Details

Summary

Previously, all EVFILT_FS events that were triggered, were also
activated.

Diff Detail

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

Event Timeline

rew requested review of this revision.Feb 27 2021, 7:47 PM
sys/kern/vfs_subr.c
6019–6020

Stylish (kn->kn_sfflags & hint) != 0

6020

But then shouldn't this be

kn->kn_fflags |= kn->kn_sfflags & hint;

?

rew marked an inline comment as done.Feb 28 2021, 9:14 AM
rew added inline comments.
sys/kern/vfs_subr.c
6020

now that you mention it, that does read better..

This revision is now accepted and ready to land.Feb 28 2021, 5:25 PM
This revision was automatically updated to reflect the committed changes.
rew marked an inline comment as done.