]> git.baikalelectronics.ru Git - kernel.git/commit
iommu/amd: Fix race in increase_address_space()
authorJoerg Roedel <jroedel@suse.de>
Fri, 6 Sep 2019 08:39:54 +0000 (10:39 +0200)
committerJoerg Roedel <jroedel@suse.de>
Fri, 6 Sep 2019 08:55:51 +0000 (10:55 +0200)
commit2059792d54e3925c798783a65edcf8df4fac4370
tree0e0ea57c5cc3aa674e93746a1d96b4ce4b8d9987
parent2fd68bd98bed443a2ae78ad6e36d3097ca8df738
iommu/amd: Fix race in increase_address_space()

After the conversion to lock-less dma-api call the
increase_address_space() function can be called without any
locking. Multiple CPUs could potentially race for increasing
the address space, leading to invalid domain->mode settings
and invalid page-tables. This has been happening in the wild
under high IO load and memory pressure.

Fix the race by locking this operation. The function is
called infrequently so that this does not introduce
a performance regression in the dma-api path again.

Reported-by: Qian Cai <cai@lca.pw>
Fixes: e7c3ba0036b9 ('iommu/amd: Make use of the generic IOVA allocator')
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/amd_iommu.c