diff options
author | Robin Murphy <robin.murphy@arm.com> | 2015-11-06 19:32:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-06 20:50:42 -0500 |
commit | 7f8306429c4c75f9e2bf39fcfe990b0af2f7292d (patch) | |
tree | 3fcd7b9d5c61e287914b2e576ac662eccc8c701e | |
parent | 002edb6f6f2a79bea50de11260ddc9572e6db731 (diff) |
dma-debug: check nents in dma_sync_sg*
Like dma_unmap_sg, dma_sync_sg* should be called with the original number
of entries passed to dma_map_sg, so do the same check in the sync path as
we do in the unmap path.
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | lib/dma-debug.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/dma-debug.c b/lib/dma-debug.c index fcb65d2a0b94..8855f019ebe8 100644 --- a/lib/dma-debug.c +++ b/lib/dma-debug.c | |||
@@ -1249,6 +1249,14 @@ static void check_sync(struct device *dev, | |||
1249 | dir2name[entry->direction], | 1249 | dir2name[entry->direction], |
1250 | dir2name[ref->direction]); | 1250 | dir2name[ref->direction]); |
1251 | 1251 | ||
1252 | if (ref->sg_call_ents && ref->type == dma_debug_sg && | ||
1253 | ref->sg_call_ents != entry->sg_call_ents) { | ||
1254 | err_printk(ref->dev, entry, "DMA-API: device driver syncs " | ||
1255 | "DMA sg list with different entry count " | ||
1256 | "[map count=%d] [sync count=%d]\n", | ||
1257 | entry->sg_call_ents, ref->sg_call_ents); | ||
1258 | } | ||
1259 | |||
1252 | out: | 1260 | out: |
1253 | put_hash_bucket(bucket, &flags); | 1261 | put_hash_bucket(bucket, &flags); |
1254 | } | 1262 | } |