summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrediano Ziglio <fziglio@redhat.com>2016-09-12 16:06:25 +0100
committerFrediano Ziglio <fziglio@redhat.com>2017-04-12 15:49:13 +0100
commit72d2105c92630d57c786017759113e9126f2c44a (patch)
treeb786c46482b5c64e1e475d6a9af087252e669086
parent06ef003435afd01b3caf7aa1ea4b0c07493098c7 (diff)
Remove generation field from MemSlot
Not used beside during initialization of MemSlot itself Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Pavel Grunt <pgrunt@redhat.com>
-rwxr-xr-xqxldod/QxlDod.cpp3
-rwxr-xr-xqxldod/QxlDod.h1
2 files changed, 1 insertions, 3 deletions
diff --git a/qxldod/QxlDod.cpp b/qxldod/QxlDod.cpp
index de79f61..af9c93b 100755
--- a/qxldod/QxlDod.cpp
+++ b/qxldod/QxlDod.cpp
@@ -3700,9 +3700,8 @@ void QxlDevice::SetupMemSlot(UINT8 Idx, UINT64 pastart, UINT64 paend, UINT8 *vas
SetupHWSlot(Idx + 1, pSlot);
- pSlot->generation = m_RomHdr->slot_generation;
high_bits = slot_index << m_SlotGenBits;
- high_bits |= pSlot->generation;
+ high_bits |= m_RomHdr->slot_generation;
high_bits <<= (64 - (m_SlotGenBits + m_SlotIdBits));
pSlot->high_bits = high_bits;
DbgPrint(TRACE_LEVEL_VERBOSE, ("<--- %s\n", __FUNCTION__));
diff --git a/qxldod/QxlDod.h b/qxldod/QxlDod.h
index 6308ab1..9cb120d 100755
--- a/qxldod/QxlDod.h
+++ b/qxldod/QxlDod.h
@@ -361,7 +361,6 @@ private:
};
typedef struct _MemSlot {
- UINT8 generation;
UINT64 start_phys_addr;
UINT64 end_phys_addr;
UINT8 *start_virt_addr;