Displaying 2 results from an estimated 2 matches for "shared_info_page".
2005 Aug 31
0
[PATCH] Re: SMP dom0 with 8 cpus of i386
...p;pci_config_lock, flags);
    pci_exp_set_dev_base(bus, devfn);
    switch (len) {
   At the time of boot the PCI mmconfig space is accessed thousands
times, one after another; that causes fixed map & unmap continuously
very fast for a long time. Currently the fix-mapped virtual address for
Shared_info_page for dom0 & the PCI mmconfig page are adjacent in the
fixed_addresses in the fixedmap.h.
#ifdef CONFIG_PCI_MMCONFIG
    FIX_PCIE_MCFG,
#endif
    FIX_SHARED_INFO,
    FIX_GNTTAB_BEGIN,
   I am suspecting that this is causing a race condition because of
writable page tables. While accessing the...
2005 Sep 01
0
RE: [PATCH] Re: SMP dom0 with 8 cpus of i386
...p_set_dev_base(bus, devfn);
> 
>     switch (len) {
> 
>    At the time of boot the PCI mmconfig space is accessed 
> thousands times, one after another; that causes fixed map & 
> unmap continuously very fast for a long time. Currently the 
> fix-mapped virtual address for Shared_info_page for dom0 & 
> the PCI mmconfig page are adjacent in the fixed_addresses in 
> the fixedmap.h.
> 
> #ifdef CONFIG_PCI_MMCONFIG
>     FIX_PCIE_MCFG,
> #endif
>     FIX_SHARED_INFO,
>     FIX_GNTTAB_BEGIN,
> 
>    I am suspecting that this is causing a race condition...