* [PATCH] fix two warnings on mm/percpu.c
@ 2009-10-07 6:12 Zhenwen Xu
2009-10-07 7:30 ` Américo Wang
0 siblings, 1 reply; 2+ messages in thread
From: Zhenwen Xu @ 2009-10-07 6:12 UTC (permalink / raw)
To: linux-mm; +Cc: linux-kernel
fix those two warnings:
mm/percpu.c: In function a??pcpu_embed_first_chunka??:
mm/percpu.c:1873: warning: comparison of distinct pointer types lacks a cast
mm/percpu.c:1879: warning: format a??%lxa?? expects type a??long unsigned inta??, but
argument 2 has type a??size_t
Signed-off-by: Zhenwen Xu <helight.xu@gmail.com>
---
mm/percpu.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/mm/percpu.c b/mm/percpu.c
index 4a048ab..fc0fc6a 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -1817,7 +1817,8 @@ int __init pcpu_embed_first_chunk(size_t reserved_size, ssize_t dyn_size,
void *base = (void *)ULONG_MAX;
void **areas = NULL;
struct pcpu_alloc_info *ai;
- size_t size_sum, areas_size, max_distance;
+ size_t size_sum, areas_size;
+ unsigned long max_distance;
int group, i, rc;
ai = pcpu_build_alloc_info(reserved_size, dyn_size, atom_size,
--
1.6.3.3
--
--------------------------------
http://zhwen.org - Open and Free
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] fix two warnings on mm/percpu.c
2009-10-07 6:12 [PATCH] fix two warnings on mm/percpu.c Zhenwen Xu
@ 2009-10-07 7:30 ` Américo Wang
0 siblings, 0 replies; 2+ messages in thread
From: Américo Wang @ 2009-10-07 7:30 UTC (permalink / raw)
To: Zhenwen Xu; +Cc: linux-mm, linux-kernel
On Wed, Oct 7, 2009 at 2:12 PM, Zhenwen Xu <helight.xu@gmail.com> wrote:
> fix those two warnings:
>
> mm/percpu.c: In function ‘pcpu_embed_first_chunk’:
> mm/percpu.c:1873: warning: comparison of distinct pointer types lacks a cast
> mm/percpu.c:1879: warning: format ‘%lx’ expects type ‘long unsigned int’, but
> argument 2 has type ‘size_t
It is fixed:
http://patchwork.kernel.org/patch/51565/
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-10-07 7:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-07 6:12 [PATCH] fix two warnings on mm/percpu.c Zhenwen Xu
2009-10-07 7:30 ` Américo Wang
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).