2014-03-01 95 views
-1

鑑於從散點表中檢索字節

int * text =「string_test」;

我們知道,

sg_set_buf(struct scatterlist *sg, const void *buf, unsigned int buflen) 

在include/linux/scatterlist.h

如果我們這樣做

sg_set_buf(req.src, text, strlen(text)); 

如何,我們檢索的散佈text字節?

+0

是的。我有。它並沒有顯示出很多直接的例子。我無法從內核空間檢索它。 – Babbit

回答

0
 char *buf; 
     buf = sg_virt (sg);