2009-10-07 06:14:43

by helight.xu

[permalink] [raw]
Subject: [PATCH] fix two warnings on mm/percpu.c

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

Signed-off-by: Zhenwen Xu <[email protected]>
---
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


2009-10-07 07:31:58

by Cong Wang

[permalink] [raw]
Subject: Re: [PATCH] fix two warnings on mm/percpu.c

On Wed, Oct 7, 2009 at 2:12 PM, Zhenwen Xu <[email protected]> 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/