diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2007-10-22 14:01:06 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2007-10-22 15:20:03 -0400 |
commit | d6ec084200c37683278c821338f74ddf21ab80f5 (patch) | |
tree | 931a112061e3a861768384b8b6ea20fdd35bd41b /include/asm-sparc | |
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-sparc')
-rw-r--r-- | include/asm-sparc/scatterlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-sparc/scatterlist.h b/include/asm-sparc/scatterlist.h index 45b16f1072be..e08d3d775b08 100644 --- a/include/asm-sparc/scatterlist.h +++ b/include/asm-sparc/scatterlist.h | |||
@@ -5,6 +5,9 @@ | |||
5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
6 | 6 | ||
7 | struct scatterlist { | 7 | struct scatterlist { |
8 | #ifdef CONFIG_DEBUG_SG | ||
9 | unsigned long sg_magic; | ||
10 | #endif | ||
8 | unsigned long page_link; | 11 | unsigned long page_link; |
9 | unsigned int offset; | 12 | unsigned int offset; |
10 | 13 | ||