From: Maarten Lankhorst <maarten.lankhorst@canonical.com>
To: Arend van Spriel <arend@broadcom.com>, gregkh@linuxfoundation.org
Cc: linux-arch@vger.kernel.org, thellstrom@vmware.com,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
linaro-mm-sig@lists.linaro.org, robdclark@gmail.com,
thierry.reding@gmail.com, ccross@google.com, daniel@ffwll.ch,
sumit.semwal@linaro.org, linux-media@vger.kernel.org
Subject: Re: [PATCH v2 1/9] dma-buf: move to drivers/dma-buf
Date: Tue, 01 Jul 2014 13:09:50 +0200 [thread overview]
Message-ID: <53B296FE.8050701@canonical.com> (raw)
In-Reply-To: <53B29619.60704@broadcom.com>
op 01-07-14 13:06, Arend van Spriel schreef:
> On 01-07-14 12:57, Maarten Lankhorst wrote:
>> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
> It would help to use '-M' option with format-patch for this kind of rework.
>
> Regards,
> Arend
>
Thanks, was looking for some option but didn't find it.
Have a rediff below. :-)
8< --------
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
---
Documentation/DocBook/device-drivers.tmpl | 3 +--
MAINTAINERS | 4 ++--
drivers/Makefile | 1 +
drivers/base/Makefile | 1 -
drivers/dma-buf/Makefile | 1 +
drivers/{base => dma-buf}/dma-buf.c | 0
drivers/{base => dma-buf}/reservation.c | 0
7 files changed, 5 insertions(+), 5 deletions(-)
create mode 100644 drivers/dma-buf/Makefile
rename drivers/{base => dma-buf}/dma-buf.c (100%)
rename drivers/{base => dma-buf}/reservation.c (100%)
diff --git a/Documentation/DocBook/device-drivers.tmpl b/Documentation/DocBook/device-drivers.tmpl
index cc63f30de166..ac61ebd92875 100644
--- a/Documentation/DocBook/device-drivers.tmpl
+++ b/Documentation/DocBook/device-drivers.tmpl
@@ -128,8 +128,7 @@ X!Edrivers/base/interface.c
!Edrivers/base/bus.c
</sect1>
<sect1><title>Device Drivers DMA Management</title>
-!Edrivers/base/dma-buf.c
-!Edrivers/base/reservation.c
+!Edrivers/dma-buf/dma-buf.c
!Iinclude/linux/reservation.h
!Edrivers/base/dma-coherent.c
!Edrivers/base/dma-mapping.c
diff --git a/MAINTAINERS b/MAINTAINERS
index 134483f206e4..c948e53a4ee6 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2882,8 +2882,8 @@ S: Maintained
L: linux-media@vger.kernel.org
L: dri-devel@lists.freedesktop.org
L: linaro-mm-sig@lists.linaro.org
-F: drivers/base/dma-buf*
-F: include/linux/dma-buf*
+F: drivers/dma-buf/
+F: include/linux/dma-buf* include/linux/reservation.h
F: Documentation/dma-buf-sharing.txt
T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
diff --git a/drivers/Makefile b/drivers/Makefile
index f98b50d8251d..c00337be5351 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -61,6 +61,7 @@ obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/
obj-$(CONFIG_PARPORT) += parport/
obj-y += base/ block/ misc/ mfd/ nfc/
+obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
obj-$(CONFIG_NUBUS) += nubus/
obj-y += macintosh/
obj-$(CONFIG_IDE) += ide/
diff --git a/drivers/base/Makefile b/drivers/base/Makefile
index 04b314e0fa51..4aab26ec0292 100644
--- a/drivers/base/Makefile
+++ b/drivers/base/Makefile
@@ -10,7 +10,6 @@ obj-$(CONFIG_DMA_CMA) += dma-contiguous.o
obj-y += power/
obj-$(CONFIG_HAS_DMA) += dma-mapping.o
obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o
-obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf.o reservation.o
obj-$(CONFIG_ISA) += isa.o
obj-$(CONFIG_FW_LOADER) += firmware_class.o
obj-$(CONFIG_NUMA) += node.o
diff --git a/drivers/dma-buf/Makefile b/drivers/dma-buf/Makefile
new file mode 100644
index 000000000000..4a4f4c9bacd0
--- /dev/null
+++ b/drivers/dma-buf/Makefile
@@ -0,0 +1 @@
+obj-y := dma-buf.o reservation.o
diff --git a/drivers/base/dma-buf.c b/drivers/dma-buf/dma-buf.c
similarity index 100%
rename from drivers/base/dma-buf.c
rename to drivers/dma-buf/dma-buf.c
diff --git a/drivers/base/reservation.c b/drivers/dma-buf/reservation.c
similarity index 100%
rename from drivers/base/reservation.c
rename to drivers/dma-buf/reservation.c
--
2.0.0
next prev parent reply other threads:[~2014-07-01 11:10 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-01 10:57 [PATCH v2 0/9] Updated fence patch series Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 1/9] dma-buf: move to drivers/dma-buf Maarten Lankhorst
2014-07-01 11:06 ` Arend van Spriel
2014-07-01 11:09 ` Maarten Lankhorst [this message]
2014-07-01 10:57 ` [PATCH v2 2/9] fence: dma-buf cross-device synchronization (v18) Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 3/9] seqno-fence: Hardware dma-buf implementation of fencing (v6) Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 4/9] dma-buf: use reservation objects Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 5/9] android: convert sync to fence api, v6 Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 6/9] reservation: add support for fences to enable cross-device synchronisation Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 7/9] dma-buf: add poll support, v3 Maarten Lankhorst
2014-07-01 10:57 ` [PATCH v2 8/9] reservation: update api and add some helpers Maarten Lankhorst
2014-07-01 10:58 ` [PATCH v2 9/9] reservation: add suppport for read-only access using rcu Maarten Lankhorst
2014-07-02 5:37 ` [PATCH v2 0/9] Updated fence patch series Greg KH
2014-07-02 9:12 ` Maarten Lankhorst
2014-07-08 20:46 ` Greg KH
2014-07-07 13:23 ` Daniel Vetter
2014-07-07 17:30 ` Greg KH
2014-07-08 13:44 ` Daniel Vetter
2014-07-08 14:39 ` Greg KH
2014-07-08 14:52 ` Sumit Semwal
2014-07-08 17:52 ` Greg KH
2014-07-07 17:27 ` Sumit Semwal
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=53B296FE.8050701@canonical.com \
--to=maarten.lankhorst@canonical.com \
--cc=arend@broadcom.com \
--cc=ccross@google.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=gregkh@linuxfoundation.org \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=robdclark@gmail.com \
--cc=sumit.semwal@linaro.org \
--cc=thellstrom@vmware.com \
--cc=thierry.reding@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox