]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
dmapool: make DMAPOOL_DEBUG detect corruption of free marker
authorMatthieu CASTET <matthieu.castet@parrot.com>
Fri, 9 Nov 2012 03:04:19 +0000 (14:04 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 12 Nov 2012 04:17:05 +0000 (15:17 +1100)
This can help to catch the case where hardware is writing after dma free.

Signed-off-by: Matthieu Castet <matthieu.castet@parrot.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/dmapool.c

index c5ab33bca0a8183bffc1b00e92583b5514d45c96..e10898a08ca3d8b10970bb9377e3a282686e42be 100644 (file)
@@ -346,6 +346,29 @@ void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
        retval = offset + page->vaddr;
        *handle = offset + page->dma;
 #ifdef DMAPOOL_DEBUG
+       {
+               int i;
+               u8 *data = retval;
+               /* page->offset is stored in first 4 bytes */
+               for (i = sizeof(int); i < pool->size; i++) {
+                       if (data[i] != POOL_POISON_FREED) {
+                               if (pool->dev)
+                                       dev_err(pool->dev,
+                                                       "dma_pool_alloc %s, %p (corruped)\n",
+                                                       pool->name, retval);
+                               else
+                                       printk(KERN_ERR
+                                                       "dma_pool_alloc %s, %p (corruped)\n",
+                                                       pool->name, retval);
+
+                               /* we dump the first 4 bytes even if there are not
+                                  POOL_POISON_FREED */
+                               print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1,
+                                               data, pool->size, 1);
+                               break;
+                       }
+               }
+       }
        memset(retval, POOL_POISON_ALLOCATED, pool->size);
 #endif
  done: