diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-03-26 04:39:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:57:15 -0500 |
commit | 55b0f8a68ab475cc68f88d1e7a873490869d022e (patch) | |
tree | f569dd577e7fd53a15a9d3bb69868bbc941aac93 /arch | |
parent | 6ecf66ae49390bb790673d46e5fb723edcc3733b (diff) |
[PATCH] bitops: ia64: make partial_page.bitmap an unsigned long
The find_*_bit() routines are defined to work on a pointer to unsigned long.
But partial_page.bitmap is unsigned int and it is passed to find_*_bit() in
arch/ia64/ia32/sys_ia32.c. So the compiler will print warnings.
This patch changes to unsigned long instead.
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/ia32/ia32priv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/ia32/ia32priv.h b/arch/ia64/ia32/ia32priv.h index 68ceb4e690c7..ccb98ed48e58 100644 --- a/arch/ia64/ia32/ia32priv.h +++ b/arch/ia64/ia32/ia32priv.h | |||
@@ -29,9 +29,9 @@ | |||
29 | struct partial_page { | 29 | struct partial_page { |
30 | struct partial_page *next; /* linked list, sorted by address */ | 30 | struct partial_page *next; /* linked list, sorted by address */ |
31 | struct rb_node pp_rb; | 31 | struct rb_node pp_rb; |
32 | /* 64K is the largest "normal" page supported by ia64 ABI. So 4K*32 | 32 | /* 64K is the largest "normal" page supported by ia64 ABI. So 4K*64 |
33 | * should suffice.*/ | 33 | * should suffice.*/ |
34 | unsigned int bitmap; | 34 | unsigned long bitmap; |
35 | unsigned int base; | 35 | unsigned int base; |
36 | }; | 36 | }; |
37 | 37 | ||