diff options
author | Jens Axboe | 2007-10-22 20:01:06 +0200 |
---|---|---|
committer | Jens Axboe | 2007-10-22 21:20:03 +0200 |
commit | d6ec084200c37683278c821338f74ddf21ab80f5 (patch) | |
tree | 931a112061e3a861768384b8b6ea20fdd35bd41b /include/asm-mips | |
parent | 18dabf473e15850c0dbc8ff13ac1e2806d542c15 (diff) |
Add CONFIG_DEBUG_SG sg validation
Add a Kconfig entry which will toggle some sanity checks on the sg
entry and tables.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/scatterlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-mips/scatterlist.h b/include/asm-mips/scatterlist.h index 787797cdb0a9..83d69fe17c9f 100644 --- a/include/asm-mips/scatterlist.h +++ b/include/asm-mips/scatterlist.h @@ -4,6 +4,9 @@ #include <asm/types.h> struct scatterlist { +#ifdef CONFIG_DEBUG_SG + unsigned long sg_magic; +#endif unsigned long page_link; unsigned int offset; dma_addr_t dma_address; |