Page MenuHomeFreeBSD

ffs: remove unused thread argument from ffs_reload()
ClosedPublic

Authored by rew on Jul 9 2021, 11:58 PM.
Tags
None
Referenced Files
F161706746: D31127.id94670.diff
Mon, Jul 6, 3:20 AM
Unknown Object (File)
Fri, Jul 3, 5:38 AM
Unknown Object (File)
Fri, Jul 3, 4:39 AM
Unknown Object (File)
Fri, Jun 12, 2:33 AM
Unknown Object (File)
Wed, Jun 10, 4:37 AM
Unknown Object (File)
Mon, Jun 8, 2:25 PM
Unknown Object (File)
May 18 2026, 1:29 AM
Unknown Object (File)
May 18 2026, 1:29 AM
Subscribers

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

rew requested review of this revision.Jul 9 2021, 11:58 PM
sys/ufs/ffs/ffs_vfsops.c
541

How do you know this is curthread here?

sys/ufs/ffs/ffs_vfsops.c
358

It gets assigned here

541

Before commit a92a971bbb94ad5b, vget() would assert that td == curthread.

In the above commit, the thread argument was dropped from vget().

vget() was the last consumer of the thread argument in ffs_reload(); curthread or the thread argument isn't referenced at all in ffs_reload().

imp added inline comments.
sys/ufs/ffs/ffs_vfsops.c
541

Then this looks good to me... I'd get kib or kirk to bless

This revision is now accepted and ready to land.Jul 10 2021, 1:33 AM