diff options
author | Günther Noack <[email protected]> | 2023-12-08 16:51:13 +0100 |
---|---|---|
committer | Mickaël Salaün <[email protected]> | 2024-01-03 12:07:57 +0100 |
commit | 3406ebade1a84d1cdb0c342e1506b97a579d3834 (patch) | |
tree | be08efabda982ca71d58792c3451aa909c325070 | |
parent | da279087b9d9f288609380baf2b6bb89874769d7 (diff) |
landlock: Remove remaining "inline" modifiers in .c files [v6.6]
For module-internal static functions, compilers are already in a good
position to decide whether to inline them or not.
Suggested-by: Mickaël Salaün <[email protected]>
Signed-off-by: Günther Noack <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
[mic: Split patch for Linux 6.6]
Signed-off-by: Mickaël Salaün <[email protected]>
-rw-r--r-- | security/landlock/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/landlock/fs.c b/security/landlock/fs.c index b67990e8f32f..9ba989ef46a5 100644 --- a/security/landlock/fs.c +++ b/security/landlock/fs.c @@ -1086,7 +1086,7 @@ static int hook_path_truncate(const struct path *const path) * Returns the access rights that are required for opening the given file, * depending on the file type and open mode. */ -static inline access_mask_t +static access_mask_t get_required_file_open_access(const struct file *const file) { access_mask_t access = 0; |