Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: src/sys/arch



Module Name:    src
Committed By:   maxv
Date:           Thu Jul 26 17:20:09 UTC 2018

Modified Files:
        src/sys/arch/x86/x86: pmap.c
        src/sys/arch/xen/include: xenpmap.h
        src/sys/arch/xen/include/i386: hypercalls.h
        src/sys/arch/xen/x86: cpu.c x86_xpmap.c xen_pmap.c

Log Message:
Remove the non-PAE-i386 code of Xen. The branches are reordered so that
__x86_64__ comes first, eg:

        #if defined(PAE)
                /* i386+PAE */
        #elif defined(__x86_64__)
                /* amd64 */
        #else
                /* i386 */
        #endif

becomes

        #ifdef __x86_64__
                /* amd64 */
        #else
                /* i386+PAE */
        #endif

Tested on i386pae-domU and amd64-dom0.


To generate a diff of this commit:
cvs rdiff -u -r1.294 -r1.295 src/sys/arch/x86/x86/pmap.c
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/xen/include/xenpmap.h
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/xen/include/i386/hypercalls.h
cvs rdiff -u -r1.123 -r1.124 src/sys/arch/xen/x86/cpu.c
cvs rdiff -u -r1.78 -r1.79 src/sys/arch/xen/x86/x86_xpmap.c
cvs rdiff -u -r1.26 -r1.27 src/sys/arch/xen/x86/xen_pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index