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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 30 Jun 2008 00:07:10 +0900
From:	FUJITA Tomonori <fujita.tomonori@....ntt.co.jp>
To:	joerg.roedel@....com
Cc:	tglx@...utronix.de, mingo@...hat.com, linux-kernel@...r.kernel.org,
	iommu@...ts.linux-foundation.org, bhavna.sarathy@....com,
	Sebastian.Biemueller@....com, robert.richter@....com,
	joro@...tes.org
Subject: Re: [PATCH 21/34] AMD IOMMU: add address allocation and
 deallocation functions

On Thu, 26 Jun 2008 21:27:57 +0200
Joerg Roedel <joerg.roedel@....com> wrote:

> This patch adds the address allocator to the AMD IOMMU code.
> 
> Signed-off-by: Joerg Roedel <joerg.roedel@....com>
> ---
>  arch/x86/kernel/amd_iommu.c |   48 +++++++++++++++++++++++++++++++++++++++++++
>  1 files changed, 48 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
> index 1d70f5e..69d8d02 100644
> --- a/arch/x86/kernel/amd_iommu.c
> +++ b/arch/x86/kernel/amd_iommu.c
> @@ -266,3 +266,51 @@ static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
>  	return 0;
>  }
>  
> +static unsigned long dma_mask_to_pages(unsigned long mask)
> +{
> +	return (mask >> PAGE_SHIFT) +
> +		(PAGE_ALIGN(mask & ~PAGE_MASK) >> PAGE_SHIFT);
> +}
> +
> +static unsigned long dma_ops_alloc_addresses(struct device *dev,
> +					     struct dma_ops_domain *dom,
> +					     unsigned int pages)
> +{
> +	unsigned long limit = dma_mask_to_pages(*dev->dma_mask);
> +	unsigned long address;
> +	unsigned long size = dom->aperture_size >> PAGE_SHIFT;
> +	unsigned long boundary_size;
> +
> +	boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
> +			PAGE_SIZE) >> PAGE_SHIFT;
> +	limit = limit < size ? limit : size;
> +
> +	if (dom->next_bit >= limit)
> +		dom->next_bit = 0;
> +
> +	address = iommu_area_alloc(dom->bitmap, limit, dom->next_bit, pages,
> +			0 , boundary_size, 0);
> +	if (address == -1)
> +		address = iommu_area_alloc(dom->bitmap, limit, 0, pages,
> +				0, boundary_size, 0);
> +
> +	if (likely(address != -1)) {
> +		set_bit_string(dom->bitmap, address, pages);

Is set_bit_string() necessary here? iommu_area_alloc calls it internally.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ