diff options
author | Dan McDonald <danmcd@mnx.io> | 2022-10-14 14:24:51 -0400 |
---|---|---|
committer | Dan McDonald <danmcd@mnx.io> | 2022-10-14 14:24:51 -0400 |
commit | f1e5b922ed8766e68b9264a57a94dd9a28cddd69 (patch) | |
tree | baf3cb572d2f85a6f5da8d5b14e6ba80ead1c872 /usr/src/uts/intel/io | |
parent | 3f653c6a7986f96d0481d47988b138c6c75aeaff (diff) | |
parent | 5e1bbccc35c7d7d0b6abd200b510d8d5b99ae31c (diff) | |
download | illumos-joyent-f1e5b922ed8766e68b9264a57a94dd9a28cddd69.tar.gz |
[illumos-gate merge]
commit 5e1bbccc35c7d7d0b6abd200b510d8d5b99ae31c
15064 vmm: unused variable 'iommu_initted'
commit d9be5d44a919e9dbfe9d1e3e7a5557d9208b1de7
15050 SMB server mishandles some SIDs
commit 5cfb18f0d1f59686e64a1bf142efa2bf653d86a0
15032 SMB: Can't create a file with a NULL DACL
commit 34b17f87fc4c121059d3ab4102a276cbe7ed609a
15059 Update AMD microcode to 20220930
commit fab57d1b740f6df905ebda23c9345ef88a7a046a
15027 The ls command should show SIDs instead of ephemeral IDs
commit 3cdfcc971afcfbc67664057ef3e59e02fb78871d
15063 vmm: cast to smaller integer type 'boolean_t' from 'void *'
commit 13a19b244f4bf70feb407e14979f084b7cb47270
15077 ficl: make sure the loader emulator does set console
Diffstat (limited to 'usr/src/uts/intel/io')
-rw-r--r-- | usr/src/uts/intel/io/vmm/io/iommu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/uts/intel/io/vmm/io/iommu.c b/usr/src/uts/intel/io/vmm/io/iommu.c index 8374a6da58..8d22c4901e 100644 --- a/usr/src/uts/intel/io/vmm/io/iommu.c +++ b/usr/src/uts/intel/io/vmm/io/iommu.c @@ -70,12 +70,10 @@ ddi_modhandle_t iommu_modhdl; static const struct iommu_ops *ops; static void *host_domain; -static volatile uint_t iommu_initted; - static int iommu_find_device(dev_info_t *dip, void *arg) { - boolean_t add = (boolean_t)arg; + boolean_t add = (boolean_t)(uintptr_t)arg; if (pcie_is_pci_device(dip)) { if (add) |