Subversion Repositories HelenOS

Rev

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

Rev 298 Rev 323
Line 51... Line 51...
51
        memsetb(dba, PAGE_SIZE, 0);
51
        memsetb(dba, PAGE_SIZE, 0);
52
 
52
 
53
        bootstrap_dba = dba;
53
        bootstrap_dba = dba;
54
       
54
       
55
        /*
55
        /*
56
         * Identity mapping for all frames.
-
 
57
         * PA2KA(identity) mapping for all frames.
56
         * PA2KA(identity) mapping for all frames.
58
         */
57
         */
59
        for (i = 0; i < frames; i++)
58
        for (i = 0; i < frames; i++)
60
            map_page_to_frame(PA2KA(i * PAGE_SIZE), i * PAGE_SIZE, PAGE_CACHEABLE, KA2PA(dba));
59
            map_page_to_frame(PA2KA(i * PAGE_SIZE), i * PAGE_SIZE, PAGE_CACHEABLE, KA2PA(dba));
61
 
60