summaryrefslogtreecommitdiffstats
path: root/drivers/iommu/intel-iommu.c
Commit message (Expand)AuthorAgeFilesLines
* intel-iommu: integrate DMA CMAAkinobu Mita2014-06-041-8/+25
* iommu/vt-d: Fix get_domain_for_dev() handling of upstream PCIe bridgesDavid Woodhouse2014-04-141-1/+3
* iommu/vt-d: fix memory leakage caused by commit ea8ea46Jiang Liu2014-04-131-2/+4
* iommu/vt-d: returning free pointer in get_domain_for_dev()Dan Carpenter2014-03-281-0/+1
* iommu/vt-d: Include ACPI devices in iommu=ptDavid Woodhouse2014-03-241-13/+48
* iommu/vt-d: Finally enable translation for non-PCI devicesDavid Woodhouse2014-03-241-3/+0
* iommu/vt-d: Remove to_pci_dev() in intel_map_page()David Woodhouse2014-03-241-1/+1
* iommu/vt-d: Remove pdev from intel_iommu_attach_device()David Woodhouse2014-03-241-3/+2
* iommu/vt-d: Remove pdev from iommu_no_mapping()David Woodhouse2014-03-241-7/+5
* iommu/vt-d: Make domain_add_dev_info() take struct deviceDavid Woodhouse2014-03-241-9/+8
* iommu/vt-d: Make domain_remove_one_dev_info() take struct deviceDavid Woodhouse2014-03-241-14/+11
* iommu/vt-d: Rename 'hwdev' variables to 'dev' now that that's the normDavid Woodhouse2014-03-241-22/+22
* iommu/vt-d: Remove some pointless to_pci_dev() callsDavid Woodhouse2014-03-241-8/+4
* iommu/vt-d: Make get_valid_domain_for_dev() take struct deviceDavid Woodhouse2014-03-241-14/+12
* iommu/vt-d: Make iommu_should_identity_map() take struct deviceDavid Woodhouse2014-03-241-50/+57
* iommu/vt-d: Handle RMRRs for non-PCI devicesDavid Woodhouse2014-03-241-16/+14
* iommu/vt-d: Make get_domain_for_dev() take struct deviceDavid Woodhouse2014-03-241-39/+36
* iommu/vt-d: Make domain_context_mapp{ed,ing}() take struct deviceDavid Woodhouse2014-03-241-14/+17
* iommu/vt-d: Make device_to_iommu() cope with non-PCI devicesDavid Woodhouse2014-03-241-32/+46
* iommu/vt-d: Make identity_mapping() take struct device not struct pci_devDavid Woodhouse2014-03-241-3/+3
* iommu/vt-d: Remove segment from struct device_domain_info()David Woodhouse2014-03-241-10/+7
* iommu/vt-d: Remove device_to_iommu() call from domain_remove_dev_info()David Woodhouse2014-03-241-5/+3
* iommu/vt-d: Simplify iommu check in domain_remove_one_dev_info()David Woodhouse2014-03-241-2/+1
* iommu/vt-d: Always store iommu in device_domain_infoDavid Woodhouse2014-03-241-16/+31
* iommu/vt-d: Use domain_remove_one_dev_info() in domain_add_dev_info() error pathDavid Woodhouse2014-03-241-7/+1
* iommu/vt-d: use dmar_insert_dev_info() from dma_add_dev_info()David Woodhouse2014-03-241-15/+7
* iommu/vt-d: Stop dmar_insert_dev_info() freeing domains on losing raceDavid Woodhouse2014-03-241-24/+21
* iommu/vt-d: Pass iommu to domain_context_mapping_one() and iommu_support_dev_...David Woodhouse2014-03-241-18/+17
* iommu/vt-d: Use struct device in device_domain_info, not struct pci_devDavid Woodhouse2014-03-241-22/+32
* iommu/vt-d: Make dmar_insert_dev_info() take struct device instead of struct ...David Woodhouse2014-03-241-11/+10
* iommu/vt-d: Make iommu_dummy() take struct device instead of struct pci_devDavid Woodhouse2014-03-241-5/+5
* iommu/vt-d: Change scope lists to struct device, bus, devfnDavid Woodhouse2014-03-241-18/+25
* iommu/vt-d: Be less pessimistic about domain coherency where possibleDavid Woodhouse2014-03-191-4/+17
* iommu/vt-d: Honour intel_iommu=sp_off for non-VMM domainsDavid Woodhouse2014-03-191-1/+5
* iommu/vt-d: Clean up and fix page table clear/free behaviourDavid Woodhouse2014-03-191-45/+187
* iommu/vt-d: Clean up size handling for intel_iommu_unmap()David Woodhouse2014-03-191-12/+25
* iommu/vt-d: Update IOMMU state when memory hotplug happensJiang Liu2014-03-041-1/+70
* iommu/vt-d: Unify the way to process DMAR device scope arrayJiang Liu2014-03-041-53/+18
* iommu/vt-d: Update DRHD/RMRR/ATSR device scope caches when PCI hotplug happensJiang Liu2014-03-041-0/+54
* iommu/vt-d: Use RCU to protect global resources in interrupt contextJiang Liu2014-03-041-4/+16
* iommu/vt-d: Introduce a rwsem to protect global data structuresJiang Liu2014-03-041-9/+13
* iommu/vt-d: Introduce macro for_each_dev_scope() to walk device scope entriesJiang Liu2014-03-041-51/+49
* iommu/vt-d: Fix error in detect ATS capabilityJiang Liu2014-03-041-20/+17
* iommu/vt-d: Check for NULL pointer when freeing IOMMU data structureJiang Liu2014-03-041-0/+7
* iommu/vt-d: Fix incorrect iommu_count for si_domainJiang Liu2014-03-041-1/+1
* iommu/vt-d: Reduce duplicated code to handle virtual machine domainsJiang Liu2014-03-041-132/+45
* iommu/vt-d: Free resources if failed to create domain for PCIe endpointJiang Liu2014-03-041-7/+8
* iommu/vt-d: Simplify function get_domain_for_dev()Jiang Liu2014-03-041-76/+66
* iommu/vt-d: Move private structures and variables into intel-iommu.cJiang Liu2014-03-041-6/+25
* iommu/vt-d: Avoid caching stale domain_device_info when hot-removing PCI deviceJiang Liu2014-03-041-8/+9
OpenPOWER on IntegriCloud