Changeset adf7f9c in mainline for kernel/arch/xen32/src/xen32.c


Ignore:
Timestamp:
2006-08-02T00:00:39Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deaa22f
Parents:
7c5a8dd
Message:

remap console page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/xen32/src/xen32.c

    r7c5a8dd radf7f9c  
    7979        pte.frame_address = ADDR2PFN((uintptr_t) start_info.shared_info);
    8080        xen_update_va_mapping(&shared_info, pte, UVMF_INVLPG);
     81       
     82        pte.present = 1;
     83        pte.writeable = 1;
     84        pte.frame_address = start_info.console_mfn;
     85        xen_update_va_mapping(&console_page, pte, UVMF_INVLPG);
    8186       
    8287        xen_set_callbacks(XEN_CS, xen_callback, XEN_CS, xen_failsafe_callback);
Note: See TracChangeset for help on using the changeset viewer.