LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] sched/deadline: make function ‘grub_reclaim’ static
@ 2018-05-16 20:09 Mathieu Malaterre
  2018-05-18  7:37 ` [tip:sched/urgent] sched/deadline: Make the grub_reclaim() function static tip-bot for Mathieu Malaterre
  0 siblings, 1 reply; 2+ messages in thread
From: Mathieu Malaterre @ 2018-05-16 20:09 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Mathieu Malaterre, Peter Zijlstra, linux-kernel

Since function ‘grub_reclaim’ can be made static, make it so.
Silence the following gcc warning (W=1):

  kernel/sched/deadline.c:1120:5: warning: no previous prototype for ‘grub_reclaim’ [-Wmissing-prototypes]

Signed-off-by: Mathieu Malaterre <malat@debian.org>
---
 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 d6196bc6cbb5..1356afd1eeb6 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -1117,7 +1117,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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [tip:sched/urgent] sched/deadline: Make the grub_reclaim() function static
  2018-05-16 20:09 [PATCH] sched/deadline: make function ‘grub_reclaim’ static Mathieu Malaterre
@ 2018-05-18  7:37 ` tip-bot for Mathieu Malaterre
  0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Mathieu Malaterre @ 2018-05-18  7:37 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: peterz, mingo, hpa, torvalds, linux-kernel, tglx, malat

Commit-ID:  3febfc8a219a036633b57a34c6678e21b6a0580d
Gitweb:     https://git.kernel.org/tip/3febfc8a219a036633b57a34c6678e21b6a0580d
Author:     Mathieu Malaterre <malat@debian.org>
AuthorDate: Wed, 16 May 2018 22:09:02 +0200
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Fri, 18 May 2018 09:05:22 +0200

sched/deadline: Make the grub_reclaim() function static

Since the grub_reclaim() function can be made static, make it so.

Silences the following GCC warning (W=1):

  kernel/sched/deadline.c:1120:5: warning: no previous prototype for ‘grub_reclaim’ [-Wmissing-prototypes]

Signed-off-by: Mathieu Malaterre <malat@debian.org>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20180516200902.959-1-malat@debian.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 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 d6196bc6cbb5..1356afd1eeb6 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -1117,7 +1117,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;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-05-18  7:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-16 20:09 [PATCH] sched/deadline: make function ‘grub_reclaim’ static Mathieu Malaterre
2018-05-18  7:37 ` [tip:sched/urgent] sched/deadline: Make the grub_reclaim() function static tip-bot for Mathieu Malaterre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).