Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751672AbdFILI7 (ORCPT ); Fri, 9 Jun 2017 07:08:59 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:39007 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751531AbdFILI6 (ORCPT ); Fri, 9 Jun 2017 07:08:58 -0400 From: Colin King To: Luca Abeni , Ingo Molnar , Peter Zijlstra , linux-kernel@vger.kernel.org Cc: kernel-janitors@vger.kernel.org Subject: [PATCH][-next] sched/deadline: make new function grub_reclaim static Date: Fri, 9 Jun 2017 12:08:51 +0100 Message-Id: <20170609110851.16822-1-colin.king@canonical.com> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 958 Lines: 27 From: Colin Ian King Make function grub_reclaim static to clean up the following sparse warning: "warning: symbol 'grub_reclaim' was not declared. Should it be static?" Signed-off-by: Colin Ian King --- kernel/sched/deadline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c index e12f85975857..2ddb4e6d820f 100644 --- a/kernel/sched/deadline.c +++ b/kernel/sched/deadline.c @@ -1052,7 +1052,7 @@ extern bool sched_rt_bandwidth_account(struct rt_rq *rt_rq); * should be larger than 2^(64 - 20 - 8), which is more than 64 seconds. * So, overflow is not an issue here. */ -u64 grub_reclaim(u64 delta, struct rq *rq, struct sched_dl_entity *dl_se) +static u64 grub_reclaim(u64 delta, struct rq *rq, struct sched_dl_entity *dl_se) { u64 u_inact = rq->dl.this_bw - rq->dl.running_bw; /* Utot - Uact */ u64 u_act; -- 2.11.0