From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: [PATCH 07/34] xen/common: sched_sedf: Remove unused functions Date: Tue, 25 Mar 2014 16:55:14 +0000 Message-ID: <1395766541-23979-8-git-send-email-julien.grall@linaro.org> References: <1395766541-23979-1-git-send-email-julien.grall@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WSUdz-0008J3-TV for xen-devel@lists.xenproject.org; Tue, 25 Mar 2014 16:56:08 +0000 Received: by mail-ee0-f46.google.com with SMTP id t10so675722eei.5 for ; Tue, 25 Mar 2014 09:56:04 -0700 (PDT) In-Reply-To: <1395766541-23979-1-git-send-email-julien.grall@linaro.org> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: George Dunlap , stefano.stabellini@citrix.com, Julien Grall , tim@xen.org, ian.campbell@citrix.com List-Id: xen-devel@lists.xenproject.org Clang 3.5 will fail to compile xen/common/sched_sedf.c because some function are not used: sched_sedf.c:141:20: error: unused function 'extraq_add_head' [-Werror,-Wunused-function] static inline void extraq_add_head(struct vcpu *d, int i) ^ sched_sedf.c:147:20: error: unused function 'extraq_add_tail' [-Werror,-Wunused-function] static inline void extraq_add_tail(struct vcpu *d, int i) Signed-off-by: Julien Grall Cc: George Dunlap --- xen/common/sched_sedf.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/xen/common/sched_sedf.c b/xen/common/sched_sedf.c index 7c24171..0c9011a 100644 --- a/xen/common/sched_sedf.c +++ b/xen/common/sched_sedf.c @@ -138,18 +138,6 @@ static inline int extraq_on(struct vcpu *d, int i) (EXTRALIST(d,i)->next != EXTRALIST(d,i))); } -static inline void extraq_add_head(struct vcpu *d, int i) -{ - list_add(EXTRALIST(d,i), EXTRAQ(d->processor,i)); - ASSERT(extraq_on(d, i)); -} - -static inline void extraq_add_tail(struct vcpu *d, int i) -{ - list_add_tail(EXTRALIST(d,i), EXTRAQ(d->processor,i)); - ASSERT(extraq_on(d, i)); -} - static inline void extraq_del(struct vcpu *d, int i) { struct list_head *list = EXTRALIST(d,i); -- 1.7.10.4