Index: uspace/libc/arch/sparc64/_link.ld.in
===================================================================
--- uspace/libc/arch/sparc64/_link.ld.in	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/arch/sparc64/_link.ld.in	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -8,7 +8,7 @@
 
 SECTIONS {
-	. = 0x2000;
+	. = 0x4000;
 
-	.init ALIGN(0x2000) : SUBALIGN(0x2000) {
+	.init ALIGN(0x4000) : SUBALIGN(0x4000) {
 		*(.init);
 	} :text
@@ -18,9 +18,9 @@
 	} :text
 	
-	.got ALIGN(0x2000) : SUBALIGN(0x2000) {
+	.got ALIGN(0x4000) : SUBALIGN(0x4000) {
 		 _gp = .;
 		 *(.got*);
 	} :data
-	.data ALIGN(0x2000) : SUBALIGN(0x2000) {
+	.data ALIGN(0x4000) : SUBALIGN(0x4000) {
 		*(.data);
 		*(.sdata);
@@ -42,5 +42,5 @@
 	} :data
 
-	. = ALIGN(0x2000);
+	. = ALIGN(0x4000);
 	_heap = .;
 	
Index: uspace/libc/arch/sparc64/include/config.h
===================================================================
--- uspace/libc/arch/sparc64/include/config.h	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/arch/sparc64/include/config.h	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -36,7 +36,7 @@
 #define LIBC_sparc64_CONFIG_H_
 
-#define PAGE_WIDTH	13
-#define PAGE_SIZE	(1<<PAGE_WIDTH)
-#define PAGE_COLOR_BITS	1		/**< Bit 13 is the page color. */
+#define PAGE_WIDTH	14
+#define PAGE_SIZE	(1 << PAGE_WIDTH)
+#define PAGE_COLOR_BITS	0		/**< Only one page color. */
 
 #endif
Index: uspace/libc/arch/sparc64/include/stack.h
===================================================================
--- uspace/libc/arch/sparc64/include/stack.h	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/arch/sparc64/include/stack.h	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -44,5 +44,5 @@
  * 16-extended-word save area for %i[0-7] and %l[0-7] registers.
  */
-#define STACK_WINDOW_SAVE_AREA_SIZE	(16*STACK_ITEM_SIZE)
+#define STACK_WINDOW_SAVE_AREA_SIZE	(16 * STACK_ITEM_SIZE)
 
 /**
Index: uspace/libc/generic/as.c
===================================================================
--- uspace/libc/generic/as.c	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/generic/as.c	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -56,5 +56,5 @@
 {
 	return (void *) __SYSCALL3(SYS_AS_AREA_CREATE, (sysarg_t ) address,
-		(sysarg_t) size, (sysarg_t) flags);
+	    (sysarg_t) size, (sysarg_t) flags);
 }
 
@@ -70,6 +70,6 @@
 int as_area_resize(void *address, size_t size, int flags)
 {
-	return __SYSCALL3(SYS_AS_AREA_RESIZE, (sysarg_t ) address, (sysarg_t)
-		size, (sysarg_t) flags);
+	return __SYSCALL3(SYS_AS_AREA_RESIZE, (sysarg_t ) address,
+	    (sysarg_t) size, (sysarg_t) flags);
 }
 
@@ -144,5 +144,4 @@
  *
  * @param sz Requested size of the allocation.
- * @param color Requested virtual color of the allocation.
  *
  * @return Pointer to the beginning 
@@ -151,5 +150,5 @@
  *       the pointer to last area
  */
-void *as_get_mappable_page(size_t sz, int color)
+void *as_get_mappable_page(size_t sz)
 {
 	void *res;
@@ -167,19 +166,14 @@
 	
 	/*
-	 * Make sure we allocate from naturally aligned address and a page of
-	 * appropriate color.
+	 * Make sure we allocate from naturally aligned address.
 	 */
 	i = 0;
-	do {
-		if (!last_allocated) {
-			last_allocated = (void *) ALIGN_UP((void *) &_heap +
-				maxheapsize, asz);
-		} else {
-			last_allocated = (void *) ALIGN_UP(((uintptr_t)
-				last_allocated) + (int) (i > 0), asz);
-		}
-	} while ((asz < (1 << (PAGE_COLOR_BITS + PAGE_WIDTH))) &&
-		(PAGE_COLOR((uintptr_t) last_allocated) != color) &&
-		(++i < (1 << PAGE_COLOR_BITS)));
+	if (!last_allocated) {
+		last_allocated = (void *) ALIGN_UP((void *) &_heap +
+		    maxheapsize, asz);
+	} else {
+		last_allocated = (void *) ALIGN_UP(((uintptr_t)
+		    last_allocated) + (int) (i > 0), asz);
+	}
 
 	res = last_allocated;
Index: uspace/libc/generic/mman.c
===================================================================
--- uspace/libc/generic/mman.c	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/generic/mman.c	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -37,8 +37,9 @@
 #include <unistd.h>
 
-void *mmap(void  *start, size_t length, int prot, int flags, int fd, off_t offset)
+void *mmap(void  *start, size_t length, int prot, int flags, int fd,
+    off_t offset)
 {
 	if (!start)
-		start = as_get_mappable_page(length, 0);
+		start = as_get_mappable_page(length);
 	
 //	if (! ((flags & MAP_SHARED) ^ (flags & MAP_PRIVATE)))
Index: uspace/libc/generic/time.c
===================================================================
--- uspace/libc/generic/time.c	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/generic/time.c	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -73,10 +73,9 @@
 
 	if (!ktime) {
-		mapping = as_get_mappable_page(PAGE_SIZE, (int)
-			sysinfo_value("clock.fcolor"));
+		mapping = as_get_mappable_page(PAGE_SIZE);
 		/* Get the mapping of kernel clock */
-		res = ipc_call_sync_3(PHONE_NS, IPC_M_AS_AREA_RECV, (sysarg_t)
-			mapping, PAGE_SIZE, SERVICE_MEM_REALTIME, NULL, &rights,
-			NULL);
+		res = ipc_call_sync_3(PHONE_NS, IPC_M_AS_AREA_RECV,
+		    (sysarg_t) mapping, PAGE_SIZE, SERVICE_MEM_REALTIME, NULL,
+		    &rights, NULL);
 		if (res) {
 			printf("Failed to initialize timeofday memarea\n");
Index: uspace/libc/include/as.h
===================================================================
--- uspace/libc/include/as.h	(revision d630139332f649889fde186aaa1729516725c881)
+++ uspace/libc/include/as.h	(revision 2057572a989f56acc5c906946caebf6b2e039bda)
@@ -41,11 +41,9 @@
 #include <libarch/config.h>
 
-#define PAGE_COLOR(va)	(((va) >> PAGE_WIDTH) & ((1 << PAGE_COLOR_BITS) - 1))
-
 extern void *as_area_create(void *address, size_t size, int flags);
 extern int as_area_resize(void *address, size_t size, int flags);
 extern int as_area_destroy(void *address);
 extern void *set_maxheapsize(size_t mhs);
-extern void * as_get_mappable_page(size_t sz, int color);
+extern void * as_get_mappable_page(size_t sz);
 
 #endif
