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:	Tue, 17 Jul 2007 13:16:58 +0300
From:	Muli Ben-Yehuda <muli@...ibm.com>
To:	akepner@....com
Cc:	linux-kernel@...r.kernel.org, Roland Dreier <rdreier@...co.com>,
	glebn@...taire.com
Subject: Re: [RFC/PATCH] allow memory to be tagged "coherent" via dma_map_sg()

On Mon, Jul 16, 2007 at 07:18:12PM -0700, akepner@....com wrote:

> diff --git a/include/asm-ia64/dma-mapping.h b/include/asm-ia64/dma-mapping.h
> index 6299b51..22af26b 100644
> --- a/include/asm-ia64/dma-mapping.h
> +++ b/include/asm-ia64/dma-mapping.h
> @@ -73,4 +73,26 @@ dma_cache_sync (struct device *dev, void *vaddr, size_t size,
>  
>  #define dma_is_consistent(d, h)	(1)	/* all we do is coherent memory... */
>  
> +#define ARCH_DOES_POSTED_DMA
> +#define DMA_ATTR_SHIFT	8	/* bottom 8 bits for direction, upper bits 
> +				 * for additional "attributes". For now the 
> +				 * only attribute is "flush in-flight dma 
> +				 * when writing to scatterlist" */
> +#define DMA_DIR_MASK	((1 << DMA_ATTR_SHIFT) - 1)
> +#define DMA_ATTR_MASK	~DMA_DIR_MASK
> +static inline int
> +dma_data_direction_set_dmaflush(enum dma_data_direction dir, int dmaflush) {
> +	return (dir | (dmaflush << DMA_ATTR_SHIFT));
> +}
> +
> +static inline int 
> +dma_data_direction_get_direction(enum dma_data_direction dir) {
> +	return (dir & DMA_DIR_MASK);
> +}
> +
> +static inline int 
> +dma_data_direction_get_dmaflush(enum dma_data_direction dir) {
> +	return ((dir & DMA_ATTR_MASK) >> DMA_ATTR_SHIFT);
> +}
> +
>  #endif /* _ASM_IA64_DMA_MAPPING_H */
> diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
> index 9a663c6..885589a 100644
> --- a/include/linux/dma-mapping.h
> +++ b/include/linux/dma-mapping.h
> @@ -95,4 +95,11 @@ static inline void dmam_release_declared_memory(struct device *dev)
>  }
>  #endif /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
>  
> +#ifndef ARCH_DOES_POSTED_DMA
> +static inline int
> +dma_data_direction_set_dmaflush(enum dma_data_direction dir, int dmaflush) {
> +	return (dir);
> +}
> +#endif /* ARCH_DOES_POSTED_DMA */
> +
>  #endif

The generic bits look much better than the previous version,
thanks. Is the generic dma_data_direction_set_dmaflush really needed?
if yes, what about dma_data_direction_get_direction and
dma_data_direction_get_dmaflush?

Cheers,
Muli
-
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