Page MenuHomeFreeBSD

ufs: st_rdev is only meaningful for special nodes
ClosedPublic

Authored by kib on Aug 17 2025, 1:05 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Nov 23, 5:54 AM
Unknown Object (File)
Sat, Nov 22, 1:15 PM
Unknown Object (File)
Sat, Nov 22, 12:00 PM
Unknown Object (File)
Thu, Nov 20, 8:36 PM
Unknown Object (File)
Wed, Nov 19, 6:02 PM
Unknown Object (File)
Wed, Oct 29, 10:16 AM
Unknown Object (File)
Wed, Oct 29, 9:31 AM
Unknown Object (File)
Wed, Oct 29, 9:29 AM
Subscribers

Details

Summary
Instead of leaking di_db[0] (for regular files this is the index of the
first block of the file), return NODEV when not a special node.

Reported by:    des

Diff Detail

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

Event Timeline

kib requested review of this revision.Aug 17 2025, 1:05 PM

There are 46 instances of (foo->v_type == VBLK || foo->v_type == VCHR) or its negation in the tree, and this adds four. That's probably a sign that we should have a macro for it.

This revision is now accepted and ready to land.Aug 17 2025, 1:52 PM