/* Clear using TMPALIAS region.  The page doesn't need to
           be flushed but the kernel mapping needs to be purged.  */
 
-       vto = kmap_atomic(page, KM_USER0);
+       vto = kmap_atomic(page);
 
        /* The PA-RISC 2.0 Architecture book states on page F-6:
           "Before a write-capable translation is enabled, *all*
           the `to' page must be flushed in copy_user_page_asm since
           it can be used to bring in executable code.  */
 
-       vfrom = kmap_atomic(from, KM_USER0);
-       vto = kmap_atomic(to, KM_USER1);
+       vfrom = kmap_atomic(from);
+       vto = kmap_atomic(to);
 
        purge_kernel_dcache_page_asm((unsigned long)vto);
        purge_tlb_start(flags);