Page MenuHomeFreeBSD

make tmpfs.h friendly with _KERNEL undefined
ClosedPublic

Authored by dougm on Dec 19 2019, 4:16 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Dec 2, 11:07 AM
Unknown Object (File)
Nov 26 2025, 7:17 AM
Unknown Object (File)
Nov 26 2025, 6:03 AM
Unknown Object (File)
Nov 23 2025, 7:48 PM
Unknown Object (File)
Nov 23 2025, 10:25 AM
Unknown Object (File)
Nov 22 2025, 2:53 PM
Unknown Object (File)
Nov 21 2025, 12:17 AM
Unknown Object (File)
Nov 18 2025, 1:43 AM
Subscribers

Details

Summary

Including <sys/tmpfs.h> into non-kernel software leads to a compilation error because, without _KERNEL defined, the macro TMPFS_VALIDATE_DIR is invoked, but never defined. User-level software that includes sys/tmpfs.h must define _KERNEL to make the definition of TMPFS_VALIDATE_DIR visible.

This change puts all the inline functions that, directly or indirectly, invoke MPASS into the scope of the _KERNEL block, allowing many user-space includers of <sys/tmpfs.h> to stop defining _KERNEL.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

sys/fs/tmpfs/tmpfs.h
407

The practice of including headers from headers is discouraged. It should be handled by consumer.

538

This is fine.

dougm edited the summary of this revision. (Show Details)

Remove #include <sys/lock.h> from tmpfs.h.

Leave #include <sys/queue.h> and #include <sys/tree.h> in tmpfs.h.

This revision is now accepted and ready to land.Dec 19 2019, 4:31 PM