Commit 326691ad authored by Christophe Leroy's avatar Christophe Leroy Committed by Michael Ellerman

powerpc/mm/slice: Remove intermediate bitmap copy

bitmap_or() and bitmap_andnot() can work properly with dst identical
to src1 or src2. There is no need of an intermediate result bitmap
that is copied back to dst in a second step.
Signed-off-by: default avatarChristophe Leroy <christophe.leroy@c-s.fr>
Reviewed-by: default avatarAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Reviewed-by: default avatarNicholas Piggin <npiggin@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 51d42f0f
...@@ -388,21 +388,17 @@ static unsigned long slice_find_area(struct mm_struct *mm, unsigned long len, ...@@ -388,21 +388,17 @@ static unsigned long slice_find_area(struct mm_struct *mm, unsigned long len,
static inline void slice_or_mask(struct slice_mask *dst, struct slice_mask *src) static inline void slice_or_mask(struct slice_mask *dst, struct slice_mask *src)
{ {
DECLARE_BITMAP(result, SLICE_NUM_HIGH);
dst->low_slices |= src->low_slices; dst->low_slices |= src->low_slices;
bitmap_or(result, dst->high_slices, src->high_slices, SLICE_NUM_HIGH); bitmap_or(dst->high_slices, dst->high_slices, src->high_slices,
bitmap_copy(dst->high_slices, result, SLICE_NUM_HIGH); SLICE_NUM_HIGH);
} }
static inline void slice_andnot_mask(struct slice_mask *dst, struct slice_mask *src) static inline void slice_andnot_mask(struct slice_mask *dst, struct slice_mask *src)
{ {
DECLARE_BITMAP(result, SLICE_NUM_HIGH);
dst->low_slices &= ~src->low_slices; dst->low_slices &= ~src->low_slices;
bitmap_andnot(result, dst->high_slices, src->high_slices, SLICE_NUM_HIGH); bitmap_andnot(dst->high_slices, dst->high_slices, src->high_slices,
bitmap_copy(dst->high_slices, result, SLICE_NUM_HIGH); SLICE_NUM_HIGH);
} }
#ifdef CONFIG_PPC_64K_PAGES #ifdef CONFIG_PPC_64K_PAGES
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment