Files
linux-apfs/include/linux/scatterlist.h
T

24 lines
532 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _LINUX_SCATTERLIST_H
#define _LINUX_SCATTERLIST_H
2005-09-17 14:41:40 +10:00
#include <asm/scatterlist.h>
#include <linux/mm.h>
#include <linux/string.h>
2005-04-16 15:20:36 -07:00
static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
2005-09-17 14:41:40 +10:00
unsigned int buflen)
{
2005-04-16 15:20:36 -07:00
sg->page = virt_to_page(buf);
sg->offset = offset_in_page(buf);
sg->length = buflen;
}
static inline void sg_init_one(struct scatterlist *sg, const void *buf,
2005-09-17 14:41:40 +10:00
unsigned int buflen)
{
memset(sg, 0, sizeof(*sg));
sg_set_buf(sg, buf, buflen);
}
2005-04-16 15:20:36 -07:00
#endif /* _LINUX_SCATTERLIST_H */