Page MenuHomeFreeBSD

filt_fsevent: only record interested events
ClosedPublic

Authored by rew on Feb 27 2021, 7:47 PM.
Tags
None
Referenced Files
F159122222: D28974.id85006.diff
Wed, Jun 10, 8:59 AM
F159118295: D28974.id.diff
Wed, Jun 10, 7:59 AM
Unknown Object (File)
Sun, Jun 7, 5:36 PM
Unknown Object (File)
Fri, Jun 5, 7:53 AM
Unknown Object (File)
Sat, May 30, 10:49 AM
Unknown Object (File)
Tue, May 26, 8:36 PM
Unknown Object (File)
Tue, May 26, 8:35 PM
Unknown Object (File)
Mon, May 18, 9:17 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 37443
Build 34332: arc lint + arc unit

Event Timeline

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

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.