iommu/amd: fix enabling exclusion range for an exact device
authorSu Friendy <friendy.su@sony.com.cn>
Wed, 7 May 2014 05:54:52 +0000 (13:54 +0800)
committerJoerg Roedel <joro@8bytes.org>
Tue, 13 May 2014 10:33:12 +0000 (12:33 +0200)
commit2c16c9fdacbbf3bd8ff6390e12c5d28b3f2c78ac
treeb766b4a6b468548c002502798518c5d73f21d783
parent4378d99295fae5fd42b0ed1a3eeef2a1684e0c17
iommu/amd: fix enabling exclusion range for an exact device

set_device_exclusion_range(u16 devid, struct ivmd_header *m) enables
exclusion range for ONE device. IOMMU does not translate the access
to the exclusion range from the device.

The device is specified by input argument 'devid'. But 'devid' is not
passed to the actual set function set_dev_entry_bit(), instead
'm->devid' is passed. 'm->devid' does not specify the exact device
which needs enable the exclusion range. 'm->devid' represents DeviceID
field of IVMD, which has different meaning depends on IVMD type.

The caller init_exclusion_range() sets 'devid' for ONE device. When
m->type is equal to ACPI_IVMD_TYPE_ALL or ACPI_IVMD_TYPE_RANGE,
'm->devid' is not equal to 'devid'.

This patch fixes 'm->devid' to 'devid'.

Signed-off-by: Su Friendy <friendy.su@sony.com.cn>
Signed-off-by: Tamori Masahiro <Masahiro.Tamori@jp.sony.com>
Signed-off-by: Joerg Roedel <joro@8bytes.org>
drivers/iommu/amd_iommu_init.c