enlighten.c (ecd740c6f2f092b90b95fa35f757973589eaaca2) enlighten.c (2605fc216fa492f9e7c488bdc7f687cd6dcc703b)
1/*
2 * Core of Xen paravirt_ops implementation.
3 *
4 * This file contains the xen_paravirt_ops structure itself, and the
5 * implementations for:
6 * - privileged instructions
7 * - interrupt flags
8 * - segment operations

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

1510 xen_pvh_set_cr_flags(0);
1511
1512#ifdef CONFIG_X86_32
1513 BUG(); /* PVH: Implement proper support. */
1514#endif
1515}
1516
1517/* First C function to be called on Xen boot */
1/*
2 * Core of Xen paravirt_ops implementation.
3 *
4 * This file contains the xen_paravirt_ops structure itself, and the
5 * implementations for:
6 * - privileged instructions
7 * - interrupt flags
8 * - segment operations

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

1510 xen_pvh_set_cr_flags(0);
1511
1512#ifdef CONFIG_X86_32
1513 BUG(); /* PVH: Implement proper support. */
1514#endif
1515}
1516
1517/* First C function to be called on Xen boot */
1518asmlinkage void __init xen_start_kernel(void)
1518asmlinkage __visible void __init xen_start_kernel(void)
1519{
1520 struct physdev_set_iopl set_iopl;
1521 int rc;
1522
1523 if (!xen_start_info)
1524 return;
1525
1526 xen_domain_type = XEN_PV_DOMAIN;

--- 326 unchanged lines hidden ---
1519{
1520 struct physdev_set_iopl set_iopl;
1521 int rc;
1522
1523 if (!xen_start_info)
1524 return;
1525
1526 xen_domain_type = XEN_PV_DOMAIN;

--- 326 unchanged lines hidden ---