diff options
author | Li Yang <leoli@freescale.com> | 2006-09-29 18:15:52 +0800 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-10-02 20:27:47 +1000 |
commit | 5e980823581682d1566e7b5089cf827ddd5f3c94 (patch) | |
tree | 62cb2475517700805ac473ea3f1752ff9eb6bed6 /include | |
parent | 07bd1c4a82d1787d6acc32b5e3873cca24f39769 (diff) | |
download | op-kernel-dev-5e980823581682d1566e7b5089cf827ddd5f3c94.zip op-kernel-dev-5e980823581682d1566e7b5089cf827ddd5f3c94.tar.gz |
[POWERPC] Fix rheap alignment problem
Honor alignment parameter in the rheap allocator. This is needed by
qe_lib.
Remove compile warning.
Signed-off-by: Pantelis Antoniou <pantelis@embeddedalley.com>
Signed-off-by: Li Yang <leoli@freescale.com>
Acked-by: Kumar Galak <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/rheap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-ppc/rheap.h b/include/asm-ppc/rheap.h index e6ca1f6..65b9322 100644 --- a/include/asm-ppc/rheap.h +++ b/include/asm-ppc/rheap.h @@ -62,6 +62,10 @@ extern int rh_attach_region(rh_info_t * info, void *start, int size); /* Detach a free region */ extern void *rh_detach_region(rh_info_t * info, void *start, int size); +/* Allocate the given size from the remote heap (with alignment) */ +extern void *rh_alloc_align(rh_info_t * info, int size, int alignment, + const char *owner); + /* Allocate the given size from the remote heap */ extern void *rh_alloc(rh_info_t * info, int size, const char *owner); |