From: Davidlohr Bueso Date: Wed, 14 Dec 2016 23:06:40 +0000 (-0800) Subject: ipc/sem: explicitly inline check_restart X-Git-Tag: Ubuntu-5.13.0-19.19~14442^2~60 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=4663d3e8f21652f33c698fcc2bf20f61499d9c3e;p=mirror_ubuntu-jammy-kernel.git ipc/sem: explicitly inline check_restart The compiler already does this, but make it explicit. This helper is really small and also used in update_queue's main loop, which is O(N^2) scanning. Inline and avoid the function overhead. Link: http://lkml.kernel.org/r/1474225896-10066-5-git-send-email-dave@stgolabs.net Signed-off-by: Davidlohr Bueso Cc: Manfred Spraul Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/ipc/sem.c b/ipc/sem.c index c14883f5a4b5..084e1f55ca72 100644 --- a/ipc/sem.c +++ b/ipc/sem.c @@ -772,7 +772,7 @@ static void unlink_queue(struct sem_array *sma, struct sem_queue *q) * modified the array. * Note that wait-for-zero operations are handled without restart. */ -static int check_restart(struct sem_array *sma, struct sem_queue *q) +static inline int check_restart(struct sem_array *sma, struct sem_queue *q) { /* pending complex alter operations are too difficult to analyse */ if (!list_empty(&sma->pending_alter))