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)
May 30 2026, 12:46 AM
Unknown Object (File)
May 29 2026, 2:46 AM
Unknown Object (File)
May 28 2026, 3:47 AM
Unknown Object (File)
May 27 2026, 10:54 PM
Unknown Object (File)
May 21 2026, 4:42 PM
Unknown Object (File)
May 20 2026, 8:02 AM
Unknown Object (File)
May 17 2026, 12:13 AM
Unknown Object (File)
Apr 29 2026, 4:19 PM
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