mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
staging: vc04_services: call sg_init_table to init scatterlist
Call the sg_init_table function to correctly initialze the DMA scatterlist. This function is required to completely initialize the list and is mandatory if DMA debugging is enabled in the build configuration. One of the purposes of sg_init_table is to set the magic "cookie" on each list element and ensure the chain end is marked. Signed-off-by: Michael Zoran <mzoran@crowfest.net> Acked-by: Eric Anholt <eric@anholt.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2a0fc8bc0c
commit
dc5424ae0b
@ -453,6 +453,12 @@ create_pagelist(char __user *buf, size_t count, unsigned short type,
|
||||
pagelist->type = type;
|
||||
pagelist->offset = offset;
|
||||
|
||||
/*
|
||||
* Initialize the scatterlist so that the magic cookie
|
||||
* is filled if debugging is enabled
|
||||
*/
|
||||
sg_init_table(scatterlist, num_pages);
|
||||
/* Now set the pages for each scatterlist */
|
||||
for (i = 0; i < num_pages; i++)
|
||||
sg_set_page(scatterlist + i, pages[i], PAGE_SIZE, 0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user