diff options
author | Alexey Dobriyan | 2020-08-11 18:37:05 -0700 |
---|---|---|
committer | Linus Torvalds | 2020-08-12 10:58:02 -0700 |
commit | 00898e8599a184ae05e2c00903e85dc80d82a43d (patch) | |
tree | e01cab661a0cf7702220d03cfa320f8cb8c1cc49 /ipc/shm.c | |
parent | a3ec9f38a97545b5923a90a1052cbdb3683b9631 (diff) |
ipc: uninline functions
Two functions are only called via function pointers, don't bother
inlining them.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Manfred Spraul <manfred@colorfullife.com>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Link: http://lkml.kernel.org/r/20200710200312.GA960353@localhost.localdomain
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/shm.c')
-rw-r--r-- | ipc/shm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/shm.c b/ipc/shm.c index bf38d7e2fbe9..fd296135a5e6 100644 --- a/ipc/shm.c +++ b/ipc/shm.c @@ -711,8 +711,7 @@ no_file: /* * Called with shm_ids.rwsem and ipcp locked. */ -static inline int shm_more_checks(struct kern_ipc_perm *ipcp, - struct ipc_params *params) +static int shm_more_checks(struct kern_ipc_perm *ipcp, struct ipc_params *params) { struct shmid_kernel *shp; |