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)
Sat, May 25, 2:16 AM
Unknown Object (File)
Thu, May 23, 9:09 PM
Unknown Object (File)
May 18 2024, 8:30 PM
Unknown Object (File)
May 5 2024, 12:33 PM
Unknown Object (File)
May 2 2024, 12:56 PM
Unknown Object (File)
Apr 18 2024, 2:30 PM
Unknown Object (File)
Apr 18 2024, 11:10 AM
Unknown Object (File)
Apr 18 2024, 10:11 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