* [PATCH -rt] Trivial changes to mm/page_alloc.c in -rt git tree
@ 2009-02-01 19:47 Luis Henriques
2009-02-01 20:12 ` Steven Rostedt
0 siblings, 1 reply; 2+ messages in thread
From: Luis Henriques @ 2009-02-01 19:47 UTC (permalink / raw)
To: Steven Rostedt; +Cc: linux-rt-users, linux-kernel
Some trivial changes in function drain_zone_pages, in -rt tree.
Invocations to functions get_cpu_lock_cpu_irqsave/restore in function
drain_zone_pages missing the ';' character.
---
mm/page_alloc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 238e192..3b18a12 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -889,14 +889,14 @@ void drain_zone_pages(int cpu, struct zone *zone, struct per_cpu_pages *pcp)
unsigned long flags;
int to_drain;
- get_cpu_lock_cpu_irqsave(zone, cpu, flags)
+ get_cpu_lock_cpu_irqsave(zone, cpu, flags);
if (pcp->count >= pcp->batch)
to_drain = pcp->batch;
else
to_drain = pcp->count;
free_pages_bulk(zone, to_drain, &pcp->list, 0);
pcp->count -= to_drain;
- put_cpu_lock_irqrestore(zone, cpu, flags)
+ put_cpu_lock_irqrestore(zone, cpu, flags);
}
#endif
--
1.5.6.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH -rt] Trivial changes to mm/page_alloc.c in -rt git tree
2009-02-01 19:47 [PATCH -rt] Trivial changes to mm/page_alloc.c in -rt git tree Luis Henriques
@ 2009-02-01 20:12 ` Steven Rostedt
0 siblings, 0 replies; 2+ messages in thread
From: Steven Rostedt @ 2009-02-01 20:12 UTC (permalink / raw)
To: Luis Henriques; +Cc: linux-rt-users, LKML, Peter Zijlstra
Thanks, I'll add this Monday. Peter's having some issues with his
semi-colon key ;-)
-- Steve
On Sun, 1 Feb 2009, Luis Henriques wrote:
> Some trivial changes in function drain_zone_pages, in -rt tree.
>
> Invocations to functions get_cpu_lock_cpu_irqsave/restore in function
> drain_zone_pages missing the ';' character.
>
> ---
> mm/page_alloc.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 238e192..3b18a12 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -889,14 +889,14 @@ void drain_zone_pages(int cpu, struct zone *zone, struct per_cpu_pages *pcp)
> unsigned long flags;
> int to_drain;
>
> - get_cpu_lock_cpu_irqsave(zone, cpu, flags)
> + get_cpu_lock_cpu_irqsave(zone, cpu, flags);
> if (pcp->count >= pcp->batch)
> to_drain = pcp->batch;
> else
> to_drain = pcp->count;
> free_pages_bulk(zone, to_drain, &pcp->list, 0);
> pcp->count -= to_drain;
> - put_cpu_lock_irqrestore(zone, cpu, flags)
> + put_cpu_lock_irqrestore(zone, cpu, flags);
> }
> #endif
>
> --
> 1.5.6.5
>
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-02-01 20:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-01 19:47 [PATCH -rt] Trivial changes to mm/page_alloc.c in -rt git tree Luis Henriques
2009-02-01 20:12 ` Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox