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>
This commit is contained in:
Jens Axboe
2007-10-22 20:01:06 +02:00
parent 18dabf473e
commit d6ec084200
25 changed files with 101 additions and 0 deletions

View File

@ -4,6 +4,9 @@
#include <asm/types.h>
struct scatterlist {
#ifdef CONFIG_DEBUG_SG
unsigned long sg_magic;
#endif
char * address; /* Location data is to be transferred to, NULL for
* highmem page */
unsigned long page_link;