lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Fri, 28 Oct 2016 09:09:54 -0700
From:   tndave <tushar.n.dave@...cle.com>
To:     Joe Perches <joe@...ches.com>, davem@...emloft.net,
        chris.hyser@...cle.com, sowmini.varadhan@...cle.com,
        vgupta@...opsys.com, jroedel@...e.de, egtvedt@...fundet.no,
        robin.murphy@....com, m.szyprowski@...sung.com, krzk@...nel.org,
        sparclinux@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 5/6] sparc64: Enable sun4v dma ops to use IOMMU v2 APIs



On 10/27/2016 05:41 PM, Joe Perches wrote:
> On Thu, 2016-10-27 at 17:23 -0700, Tushar Dave wrote:
>> Add Hypervisor IOMMU v2 APIs pci_iotsb_map(), pci_iotsb_demap() and
>> enable sun4v dma ops to use IOMMU v2 API for all PCIe devices with
>> 64bit DMA mask.
>
> trivia:
>
>> diff --git a/arch/sparc/kernel/pci_sun4v.c b/arch/sparc/kernel/pci_sun4v.c
> []
>> @@ -72,34 +72,55 @@ static inline void iommu_batch_start(struct device *dev, unsigned long prot, uns
>>  }
>>
>>  /* Interrupts must be disabled.  */
>> -static long iommu_batch_flush(struct iommu_batch *p)
>> +static long iommu_batch_flush(struct iommu_batch *p, u64 mask)
>>  {
>>
> []
>> +			if (unlikely(num < 0)) {
>> +				pr_err_ratelimited("iommu_batch_flush: IOMMU map of [%08lx:%08llx:%lx:%lx:%lx] failed with status %ld\n",
>> +						   devhandle,
>> +						   HV_PCI_TSBID(0, entry),
>> +						   npages, prot, __pa(pglist),
>> +						   num);
>> +				return -1;
>> +			}
>> +		} else {
>> +			index_count = HV_PCI_IOTSB_INDEX_COUNT(npages, entry),
>> +			iotsb_num = pbm->iommu->atu->iotsb->iotsb_num;
>> +			ret = pci_sun4v_iotsb_map(devhandle,
>> +						  iotsb_num,
>> +						  index_count,
>> +						  prot,
>> +						  __pa(pglist),
>> +						  &num);
>> +			if (unlikely(ret != HV_EOK)) {
>> +				pr_err_ratelimited("iommu_batch_flush: ATU map of [%08lx:%lx:%llx:%lx:%lx] failed with status %ld\n",
>> +						   devhandle, iotsb_num,
>> +						   index_count, prot,
>> +						   __pa(pglist), ret);
>
> Here and above, it's nicer to use %s, __func__ instead of
> embedding the function name in the format in case the
> code is ever refactored.
Okay. I will make the change and send v3 soon.

-Tushar
>
> 				pr_err_ratelimited("%s: ATU map of [%08lx:%lx:%llx:%lx:%lx] failed with status %ld\n",
> 						   __func__,
> 						   devhandle, iotsb_num,
> 						   index_count, prot,
> 						   __pa(pglist), ret);
>
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ