mmu_oea.c (03b6e025513b9f1cbf8ceac4c32cbda45ed63caf) mmu_oea.c (07159f9c56de91cb7d7bd6b6a795eebfee78133e)
1/*
2 * Copyright (c) 2001 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Matt Thomas <matt@3am-software.com> of Allegro Networks, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 1438 unchanged lines hidden (view full) ---

1447 /*
1448 * If the PVO is in the page table, update that pte as well.
1449 */
1450 if (pt != NULL)
1451 pmap_pte_change(pt, &pvo->pvo_pte, pvo->pvo_vaddr);
1452 }
1453}
1454
1/*
2 * Copyright (c) 2001 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Matt Thomas <matt@3am-software.com> of Allegro Networks, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 1438 unchanged lines hidden (view full) ---

1447 /*
1448 * If the PVO is in the page table, update that pte as well.
1449 */
1450 if (pt != NULL)
1451 pmap_pte_change(pt, &pvo->pvo_pte, pvo->pvo_vaddr);
1452 }
1453}
1454
1455vm_offset_t
1456pmap_phys_address(int ppn)
1457{
1458 TODO;
1459 return (0);
1460}
1461
1462/*
1463 * Map a list of wired pages into kernel virtual address space. This is
1464 * intended for temporary mappings which do not need page modification or
1465 * references recorded. Existing mappings in the region are overwritten.
1466 */
1467void
1468pmap_qenter(vm_offset_t sva, vm_page_t *m, int count)
1469{

--- 1052 unchanged lines hidden ---
1455/*
1456 * Map a list of wired pages into kernel virtual address space. This is
1457 * intended for temporary mappings which do not need page modification or
1458 * references recorded. Existing mappings in the region are overwritten.
1459 */
1460void
1461pmap_qenter(vm_offset_t sva, vm_page_t *m, int count)
1462{

--- 1052 unchanged lines hidden ---