diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/iommu-common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/iommu-common.c b/lib/iommu-common.c index a9a53f566237..df30632f0bef 100644 --- a/lib/iommu-common.c +++ b/lib/iommu-common.c | |||
@@ -17,7 +17,7 @@ | |||
17 | 17 | ||
18 | static unsigned long iommu_large_alloc = 15; | 18 | static unsigned long iommu_large_alloc = 15; |
19 | 19 | ||
20 | static DEFINE_PER_CPU(unsigned int, iommu_pool_hash); | 20 | static DEFINE_PER_CPU(unsigned int, iommu_hash_common); |
21 | 21 | ||
22 | static inline bool need_flush(struct iommu_map_table *iommu) | 22 | static inline bool need_flush(struct iommu_map_table *iommu) |
23 | { | 23 | { |
@@ -44,7 +44,7 @@ static void setup_iommu_pool_hash(void) | |||
44 | return; | 44 | return; |
45 | do_once = true; | 45 | do_once = true; |
46 | for_each_possible_cpu(i) | 46 | for_each_possible_cpu(i) |
47 | per_cpu(iommu_pool_hash, i) = hash_32(i, IOMMU_POOL_HASHBITS); | 47 | per_cpu(iommu_hash_common, i) = hash_32(i, IOMMU_POOL_HASHBITS); |
48 | } | 48 | } |
49 | 49 | ||
50 | /* | 50 | /* |
@@ -106,7 +106,7 @@ unsigned long iommu_tbl_range_alloc(struct device *dev, | |||
106 | unsigned long mask, | 106 | unsigned long mask, |
107 | unsigned int align_order) | 107 | unsigned int align_order) |
108 | { | 108 | { |
109 | unsigned int pool_hash = __this_cpu_read(iommu_pool_hash); | 109 | unsigned int pool_hash = __this_cpu_read(iommu_hash_common); |
110 | unsigned long n, end, start, limit, boundary_size; | 110 | unsigned long n, end, start, limit, boundary_size; |
111 | struct iommu_pool *pool; | 111 | struct iommu_pool *pool; |
112 | int pass = 0; | 112 | int pass = 0; |