Index: kernel/genarch/src/fb/fb.c
===================================================================
--- kernel/genarch/src/fb/fb.c	(revision 36470ce8f1d0f0e1ac58746fc8bd8bf3bed80974)
+++ kernel/genarch/src/fb/fb.c	(revision 13db20447e9ad45e946906ed3a8fb2e7b7de7f23)
@@ -618,5 +618,5 @@
 	}
 
-	instance->backbuf = (uint16_t *) malloc(bbsize, 0);
+	instance->backbuf = (uint16_t *) malloc(bbsize, FRAME_ATOMIC);
 	if (!instance->backbuf) {
 		LOG("Unable to allocate backbuffer.");
@@ -626,5 +626,5 @@
 	}
 
-	instance->glyphs = (uint8_t *) malloc(glyphsize, 0);
+	instance->glyphs = (uint8_t *) malloc(glyphsize, FRAME_ATOMIC);
 	if (!instance->glyphs) {
 		LOG("Unable to allocate glyphs.");
@@ -635,5 +635,5 @@
 	}
 
-	instance->bgscan = malloc(instance->bgscanbytes, 0);
+	instance->bgscan = malloc(instance->bgscanbytes, FRAME_ATOMIC);
 	if (!instance->bgscan) {
 		LOG("Unable to allocate background pixel.");
