Page MenuHomeFreeBSD

filt_fsevent: only record interested events
ClosedPublic

Authored by rew on Feb 27 2021, 7:47 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 18, 1:09 AM
Unknown Object (File)
Sat, Mar 15, 6:38 PM
Unknown Object (File)
Fri, Mar 14, 12:25 PM
Unknown Object (File)
Fri, Mar 14, 2:53 AM
Unknown Object (File)
Feb 23 2025, 3:16 PM
Unknown Object (File)
Feb 7 2025, 10:24 PM
Unknown Object (File)
Dec 6 2024, 9:45 AM
Unknown Object (File)
Dec 5 2024, 4:19 PM
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.