aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/paging/kheap.c
diff options
context:
space:
mode:
authorMarvin Borner2019-10-13 12:45:13 +0200
committerMarvin Borner2019-10-13 12:49:14 +0200
commit58804851fc49f6db1c87f791d39779766108efb0 (patch)
treee6d03188c0c252bca65442f4c6a3a980de2140d8 /src/kernel/paging/kheap.c
parent0e6ede5c596527e69e22e525b5dc5278440b27b2 (diff)
Improved code quality
Diffstat (limited to 'src/kernel/paging/kheap.c')
-rw-r--r--src/kernel/paging/kheap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/paging/kheap.c b/src/kernel/paging/kheap.c
index 94aa547..e4f3d20 100644
--- a/src/kernel/paging/kheap.c
+++ b/src/kernel/paging/kheap.c
@@ -55,7 +55,7 @@ uint32_t kmalloc(uint32_t sz) {
static void expand(uint32_t new_size, heap_t *heap) {
assert(new_size > heap->end_address - heap->start_address);
- if (new_size & 0xFFFFF000 != 0) {
+ if ((new_size & 0xFFFFF000) != 0) {
new_size &= 0xFFFFF000;
new_size += 0x1000;
}
@@ -100,7 +100,7 @@ static int find_smallest_hole(uint32_t size, unsigned char page_align, heap_t *h
if (page_align > 0) {
uint32_t location = (uint32_t) header;
int offset = 0;
- if ((location + sizeof(header_t)) & 0xFFFFF000 != 0)
+ if (((location + sizeof(header_t)) & 0xFFFFF000) != 0)
offset = 0x1000 - (location + sizeof(header_t)) % 0x1000;
int hole_size = (int) header->size - offset;
@@ -128,7 +128,7 @@ heap_t *create_heap(uint32_t start, uint32_t end_addr, uint32_t max, unsigned ch
heap->index = place_ordered_array((void *) start, HEAP_INDEX_SIZE, &header_t_less_than);
start += sizeof(type_t) * HEAP_INDEX_SIZE;
- if (start & 0xFFFFF000 != 0) {
+ if ((start & 0xFFFFF000) != 0) {
start &= 0xFFFFF000;
start += 0x1000;
}