commit | 7ad00b9e47f0c065d7c278df98252436c6bb451b | [log] [tgz] |
---|---|---|
author | Daniel Leung <daniel.leung@intel.com> | Thu Jul 22 13:13:17 2021 -0700 |
committer | Christopher Friedt <chrisfriedt@gmail.com> | Thu Aug 26 21:16:22 2021 -0400 |
tree | d63158b17c15c3b260fb9935668bc9c4d2c98c15 | |
parent | 2117a2a44b040455ab31d08b1c3cdcc3e46af30d [diff] |
kernel: syscall: pin generated inline functions Although they are marked as an inline functions, the compiler may decide not to inline them which would result in them being outside the pinned text section. Since these functions are required for userspace to work correctly, pin them in physical memory. This also applies to k_is_user_context(). Signed-off-by: Daniel Leung <daniel.leung@intel.com>