From: Andrew Morton <akpm@linux-foundation.org>
To: akepner@sgi.com
Cc: Tony Luck <tony.luck@intel.com>,
Grant Grundler <grundler@parisc-linux.org>,
Jesse Barnes <jbarnes@virtuousgeek.org>,
Jes Sorensen <jes@sgi.com>,
Randy Dunlap <randy.dunlap@oracle.com>,
Roland Dreier <rdreier@cisco.com>,
James Bottomley <James.Bottomley@steeleye.com>,
David Miller <davem@davemloft.net>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] document dma_flags_set/get_*()
Date: Tue, 16 Oct 2007 20:33:00 -0700 [thread overview]
Message-ID: <20071016203300.3f5bf599.akpm@linux-foundation.org> (raw)
In-Reply-To: <20071017014417.GL5601@sgi.com>
On Tue, 16 Oct 2007 18:44:17 -0700 akepner@sgi.com wrote:
> @@ -547,3 +547,41 @@ size is the size (and should be a page-sized multiple).
> The return value will be either a pointer to the processor virtual
> address of the memory, or an error (via PTR_ERR()) if any part of the
> region is occupied.
> +
> +int
> +dma_flags_set_attr(u32 attr, enum dma_data_direction dir)
> +
> +Amend dir with a platform-specific "dma attribute".
> +
> +The only attribute currently defined is DMA_BARRIER_ATTR, which causes
> +in-flight DMA to be flushed when the associated memory region is written
> +to (see example below). Setting DMA_BARRIER_ATTR provides a mechanism
> +to enforce ordering of DMA on platforms that permit DMA to be reordered
> +between device and host memory (within a NUMA interconnect). On other
> +platforms this is a nop.
> +
> +DMA_BARRIER_ATTR would be set when the memory region is mapped for DMA,
> +e.g.:
> +
> + int count;
> + int flags = dma_flags_set_attr(DMA_BARRIER_ATTR, DMA_BIDIRECTIONAL);
> + ....
> + count = dma_map_sg(dev, sglist, nents, flags);
> +
Isn't this rather a kludge?
What would be the cost of doing this cleanly and either redefining
dma_data_direction to be a field-of-bits or just leave dma_data_direction
alone (it is quite unrelated to this work, isn't it?) and adding new
fields/arguments to manage this new functionality?
prev parent reply other threads:[~2007-10-17 3:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-17 1:44 [PATCH 3/3] document dma_flags_set/get_*() akepner
2007-10-17 3:33 ` Andrew Morton [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071016203300.3f5bf599.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=James.Bottomley@steeleye.com \
--cc=akepner@sgi.com \
--cc=davem@davemloft.net \
--cc=grundler@parisc-linux.org \
--cc=jbarnes@virtuousgeek.org \
--cc=jes@sgi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=randy.dunlap@oracle.com \
--cc=rdreier@cisco.com \
--cc=tony.luck@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.