2015-08-26 22:28:15 +00:00
|
|
|
References: bsc#907514 bsc#910258 bsc#918984 bsc#923967
|
|
|
|
|
2015-07-10 15:21:29 +00:00
|
|
|
# Commit df9f5676b3711c95127d44e871ad7ca38d6ed28a
|
|
|
|
# Date 2015-04-14 16:51:18 +0200
|
|
|
|
# Author Jan Beulich <jbeulich@suse.com>
|
|
|
|
# Committer Jan Beulich <jbeulich@suse.com>
|
|
|
|
x86/vMSI-X: add valid bits for read acceleration
|
|
|
|
|
|
|
|
Again because Xen doesn't get to see all guest writes, it shouldn't
|
|
|
|
serve reads from its cache before having seen a write to the respective
|
|
|
|
address.
|
|
|
|
|
|
|
|
Also use DECLARE_BITMAP() in a related field declaration instead of
|
|
|
|
open coding it.
|
|
|
|
|
|
|
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
|
|
|
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
|
|
|
|
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
|
|
|
|
|
2015-08-26 22:28:15 +00:00
|
|
|
--- a/xen/arch/x86/hvm/vmsi.c
|
|
|
|
+++ b/xen/arch/x86/hvm/vmsi.c
|
2015-07-10 15:21:29 +00:00
|
|
|
@@ -154,11 +154,14 @@ struct msixtbl_entry
|
|
|
|
struct pci_dev *pdev;
|
|
|
|
unsigned long gtable; /* gpa of msix table */
|
|
|
|
unsigned long table_len;
|
|
|
|
- unsigned long table_flags[BITS_TO_LONGS(MAX_MSIX_TABLE_ENTRIES)];
|
|
|
|
+ DECLARE_BITMAP(table_flags, MAX_MSIX_TABLE_ENTRIES);
|
|
|
|
#define MAX_MSIX_ACC_ENTRIES 3
|
|
|
|
struct {
|
|
|
|
uint32_t msi_ad[3]; /* Shadow of address low, high and data */
|
|
|
|
} gentries[MAX_MSIX_ACC_ENTRIES];
|
|
|
|
+ DECLARE_BITMAP(acc_valid, 3 * MAX_MSIX_ACC_ENTRIES);
|
|
|
|
+#define acc_bit(what, ent, slot, idx) \
|
|
|
|
+ what##_bit((slot) * 3 + (idx), (ent)->acc_valid)
|
|
|
|
struct rcu_head rcu;
|
|
|
|
};
|
|
|
|
|
|
|
|
@@ -233,9 +236,10 @@ static int msixtbl_read(
|
|
|
|
if ( offset != PCI_MSIX_ENTRY_VECTOR_CTRL_OFFSET )
|
|
|
|
{
|
|
|
|
nr_entry = (address - entry->gtable) / PCI_MSIX_ENTRY_SIZE;
|
|
|
|
- if ( nr_entry >= MAX_MSIX_ACC_ENTRIES )
|
|
|
|
- goto out;
|
|
|
|
index = offset / sizeof(uint32_t);
|
|
|
|
+ if ( nr_entry >= MAX_MSIX_ACC_ENTRIES ||
|
|
|
|
+ !acc_bit(test, entry, nr_entry, index) )
|
|
|
|
+ goto out;
|
|
|
|
*pval = entry->gentries[nr_entry].msi_ad[index];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
@@ -281,6 +285,7 @@ static int msixtbl_write(struct vcpu *v,
|
|
|
|
{
|
|
|
|
index = offset / sizeof(uint32_t);
|
|
|
|
entry->gentries[nr_entry].msi_ad[index] = val;
|
|
|
|
+ acc_bit(set, entry, nr_entry, index);
|
|
|
|
}
|
|
|
|
set_bit(nr_entry, &entry->table_flags);
|
|
|
|
goto out;
|