All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sched: remove unneeded __ref tag
@ 2009-06-15  5:34 Li Zefan
  2009-06-15  5:41 ` Pekka Enberg
  2009-06-17 14:18 ` [tip:sched/urgent] sched: Remove " tip-bot for Li Zefan
  0 siblings, 2 replies; 3+ messages in thread
From: Li Zefan @ 2009-06-15  5:34 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Pekka Enberg, LKML

Those two functions no longer call alloc_bootmmem_cpumask_var(), so
no need to tag them with __init_refok.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 kernel/sched.c        |    2 +-
 kernel/sched_cpupri.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 6032f51..54e47bc 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -7828,7 +7828,7 @@ static void rq_attach_root(struct rq *rq, struct root_domain *rd)
 		free_rootdomain(old_rd);
 }
 
-static int __init_refok init_rootdomain(struct root_domain *rd, bool bootmem)
+static int init_rootdomain(struct root_domain *rd, bool bootmem)
 {
 	gfp_t gfp = GFP_KERNEL;
 
diff --git a/kernel/sched_cpupri.c b/kernel/sched_cpupri.c
index 7deffc9..e6c2517 100644
--- a/kernel/sched_cpupri.c
+++ b/kernel/sched_cpupri.c
@@ -152,7 +152,7 @@ void cpupri_set(struct cpupri *cp, int cpu, int newpri)
  *
  * Returns: -ENOMEM if memory fails.
  */
-int __init_refok cpupri_init(struct cpupri *cp, bool bootmem)
+int cpupri_init(struct cpupri *cp, bool bootmem)
 {
 	gfp_t gfp = GFP_KERNEL;
 	int i;
-- 
1.5.4.rc3


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

* Re: [PATCH] sched: remove unneeded __ref tag
  2009-06-15  5:34 [PATCH] sched: remove unneeded __ref tag Li Zefan
@ 2009-06-15  5:41 ` Pekka Enberg
  2009-06-17 14:18 ` [tip:sched/urgent] sched: Remove " tip-bot for Li Zefan
  1 sibling, 0 replies; 3+ messages in thread
From: Pekka Enberg @ 2009-06-15  5:41 UTC (permalink / raw)
  To: Li Zefan; +Cc: Ingo Molnar, LKML

On Mon, Jun 15, 2009 at 8:34 AM, Li Zefan<lizf@cn.fujitsu.com> wrote:
> Those two functions no longer call alloc_bootmmem_cpumask_var(), so
> no need to tag them with __init_refok.
>
> Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>

Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>

Thanks Li!

> ---
>  kernel/sched.c        |    2 +-
>  kernel/sched_cpupri.c |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/sched.c b/kernel/sched.c
> index 6032f51..54e47bc 100644
> --- a/kernel/sched.c
> +++ b/kernel/sched.c
> @@ -7828,7 +7828,7 @@ static void rq_attach_root(struct rq *rq, struct root_domain *rd)
>                free_rootdomain(old_rd);
>  }
>
> -static int __init_refok init_rootdomain(struct root_domain *rd, bool bootmem)
> +static int init_rootdomain(struct root_domain *rd, bool bootmem)
>  {
>        gfp_t gfp = GFP_KERNEL;
>
> diff --git a/kernel/sched_cpupri.c b/kernel/sched_cpupri.c
> index 7deffc9..e6c2517 100644
> --- a/kernel/sched_cpupri.c
> +++ b/kernel/sched_cpupri.c
> @@ -152,7 +152,7 @@ void cpupri_set(struct cpupri *cp, int cpu, int newpri)
>  *
>  * Returns: -ENOMEM if memory fails.
>  */
> -int __init_refok cpupri_init(struct cpupri *cp, bool bootmem)
> +int cpupri_init(struct cpupri *cp, bool bootmem)
>  {
>        gfp_t gfp = GFP_KERNEL;
>        int i;
> --
> 1.5.4.rc3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

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

* [tip:sched/urgent] sched: Remove unneeded __ref tag
  2009-06-15  5:34 [PATCH] sched: remove unneeded __ref tag Li Zefan
  2009-06-15  5:41 ` Pekka Enberg
@ 2009-06-17 14:18 ` tip-bot for Li Zefan
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Li Zefan @ 2009-06-17 14:18 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, penberg, lizf, tglx, mingo

Commit-ID:  fd5e1b5dbaa8b4aacc0e251d74182eda37062194
Gitweb:     http://git.kernel.org/tip/fd5e1b5dbaa8b4aacc0e251d74182eda37062194
Author:     Li Zefan <lizf@cn.fujitsu.com>
AuthorDate: Mon, 15 Jun 2009 13:34:19 +0800
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Wed, 17 Jun 2009 16:08:04 +0200

sched: Remove unneeded __ref tag

Those two functions no longer call alloc_bootmmem_cpumask_var(),
so no need to tag them with __init_refok.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
LKML-Reference: <4A35DD5B.9050106@cn.fujitsu.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>


---
 kernel/sched.c        |    2 +-
 kernel/sched_cpupri.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 8fb88a9..0056795 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -7828,7 +7828,7 @@ static void rq_attach_root(struct rq *rq, struct root_domain *rd)
 		free_rootdomain(old_rd);
 }
 
-static int __init_refok init_rootdomain(struct root_domain *rd, bool bootmem)
+static int init_rootdomain(struct root_domain *rd, bool bootmem)
 {
 	gfp_t gfp = GFP_KERNEL;
 
diff --git a/kernel/sched_cpupri.c b/kernel/sched_cpupri.c
index 7deffc9..e6c2517 100644
--- a/kernel/sched_cpupri.c
+++ b/kernel/sched_cpupri.c
@@ -152,7 +152,7 @@ void cpupri_set(struct cpupri *cp, int cpu, int newpri)
  *
  * Returns: -ENOMEM if memory fails.
  */
-int __init_refok cpupri_init(struct cpupri *cp, bool bootmem)
+int cpupri_init(struct cpupri *cp, bool bootmem)
 {
 	gfp_t gfp = GFP_KERNEL;
 	int i;

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

end of thread, other threads:[~2009-06-17 14:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-15  5:34 [PATCH] sched: remove unneeded __ref tag Li Zefan
2009-06-15  5:41 ` Pekka Enberg
2009-06-17 14:18 ` [tip:sched/urgent] sched: Remove " tip-bot for Li Zefan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.