]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
dmapool-make-dmapool_debug-detect-corruption-of-free-marker-fix
authorAndrew Morton <akpm@linux-foundation.org>
Fri, 9 Nov 2012 03:04:20 +0000 (14:04 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 12 Nov 2012 04:17:05 +0000 (15:17 +1100)
tidy code, fix comment, use sizeof(page->offset), use pr_err()

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

index e10898a08ca3d8b10970bb9377e3a282686e42be..c67cdb88495c7688cbdab0e3b93a11ec0fe478ee 100644 (file)
@@ -350,23 +350,24 @@ void *dma_pool_alloc(struct dma_pool *pool, gfp_t mem_flags,
                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;
-                       }
+               for (i = sizeof(page->offset); i < pool->size; i++) {
+                       if (data[i] == POOL_POISON_FREED)
+                               continue;
+                       if (pool->dev)
+                               dev_err(pool->dev,
+                                       "dma_pool_alloc %s, %p (corruped)\n",
+                                       pool->name, retval);
+                       else
+                               pr_err("dma_pool_alloc %s, %p (corruped)\n",
+                                       pool->name, retval);
+
+                       /*
+                        * Dump the first 4 bytes even if they 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);