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)
Mar 16 2024, 2:47 AM
Unknown Object (File)
Mar 16 2024, 2:43 AM
Unknown Object (File)
Mar 16 2024, 2:43 AM
Unknown Object (File)
Mar 16 2024, 2:43 AM
Unknown Object (File)
Mar 12 2024, 6:39 AM
Unknown Object (File)
Feb 25 2024, 1:40 PM
Unknown Object (File)
Feb 6 2024, 12:48 PM
Unknown Object (File)
Jan 7 2024, 3:32 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.