|
@@ -248,6 +248,24 @@ static inline void *sg_virt(struct scatterlist *sg)
|
|
|
return page_address(sg_page(sg)) + sg->offset;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * sg_init_marker - Initialize markers in sg table
|
|
|
+ * @sgl: The SG table
|
|
|
+ * @nents: Number of entries in table
|
|
|
+ *
|
|
|
+ **/
|
|
|
+static inline void sg_init_marker(struct scatterlist *sgl,
|
|
|
+ unsigned int nents)
|
|
|
+{
|
|
|
+#ifdef CONFIG_DEBUG_SG
|
|
|
+ unsigned int i;
|
|
|
+
|
|
|
+ for (i = 0; i < nents; i++)
|
|
|
+ sgl[i].sg_magic = SG_MAGIC;
|
|
|
+#endif
|
|
|
+ sg_mark_end(&sgl[nents - 1]);
|
|
|
+}
|
|
|
+
|
|
|
int sg_nents(struct scatterlist *sg);
|
|
|
int sg_nents_for_len(struct scatterlist *sg, u64 len);
|
|
|
struct scatterlist *sg_next(struct scatterlist *);
|