Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ae62d49c authored by Joerg Roedel's avatar Joerg Roedel
Browse files

iommu/amd: Move aperture_range.offset to another cache-line



Moving it before the pte_pages array puts in into the same
cache-line as the spin-lock and the bitmap array pointer.
This should safe a cache-miss.

Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent a0f51447
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -124,6 +124,7 @@ struct aperture_range {

	/* address allocation bitmap */
	unsigned long *bitmap;
	unsigned long offset;

	/*
	 * Array of PTE pages for the aperture. In this array we save all the
@@ -132,8 +133,6 @@ struct aperture_range {
	 * just calculate its address in constant time.
	 */
	u64 *pte_pages[64];

	unsigned long offset;
};

/*