Page MenuHomeFreeBSD

make tmpfs.h friendly with _KERNEL undefined
ClosedPublic

Authored by dougm on Dec 19 2019, 4:16 AM.
Tags
None
Referenced Files
F137022514: D22874.id.diff
Fri, Nov 21, 12:17 AM
Unknown Object (File)
Tue, Nov 18, 1:43 AM
Unknown Object (File)
Sun, Nov 16, 8:32 PM
Unknown Object (File)
Sat, Nov 15, 11:46 PM
Unknown Object (File)
Sat, Nov 1, 2:51 AM
Unknown Object (File)
Tue, Oct 28, 8:45 AM
Unknown Object (File)
Tue, Oct 28, 8:37 AM
Unknown Object (File)
Sun, Oct 26, 1:56 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.

537

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