Subversion Repositories HelenOS-historic

Rev

Rev 1410 | Rev 1760 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1410 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup sparc64mm 
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#include <arch/mm/page.h>
35
#include <arch/mm/page.h>
30
#include <arch/mm/tlb.h>
36
#include <arch/mm/tlb.h>
31
#include <genarch/mm/page_ht.h>
37
#include <genarch/mm/page_ht.h>
32
#include <mm/frame.h>
38
#include <mm/frame.h>
33
#include <bitops.h>
39
#include <bitops.h>
Line 74... Line 80...
74
                    physaddr + i*sizemap[order].increment,
80
                    physaddr + i*sizemap[order].increment,
75
                    sizemap[order].pagesize, true, false);
81
                    sizemap[order].pagesize, true, false);
76
   
82
   
77
    return virtaddr;
83
    return virtaddr;
78
}
84
}
-
 
85
 
-
 
86
 /** @}
-
 
87
 */
-
 
88