Subversion Repositories Kolibri OS

Rev

Rev 3297 | Rev 4568 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3297 Rev 3747
1
#ifndef _LINUX_SCATTERLIST_H
1
#ifndef _LINUX_SCATTERLIST_H
2
#define _LINUX_SCATTERLIST_H
2
#define _LINUX_SCATTERLIST_H
3
 
3
 
4
#include 
4
#include 
5
#include 
5
#include 
6
#include 
6
#include 
7
 
7
 
8
#include 
8
#include 
9
#include 
9
#include 
10
//#include 
10
//#include 
11
 
11
 
12
struct sg_table {
12
struct sg_table {
13
	struct scatterlist *sgl;	/* the list */
13
	struct scatterlist *sgl;	/* the list */
14
	unsigned int nents;		/* number of mapped entries */
14
	unsigned int nents;		/* number of mapped entries */
15
	unsigned int orig_nents;	/* original size of list */
15
	unsigned int orig_nents;	/* original size of list */
16
};
16
};
17
 
17
 
18
/*
18
/*
19
 * Notes on SG table design.
19
 * Notes on SG table design.
20
 *
20
 *
21
 * Architectures must provide an unsigned long page_link field in the
21
 * Architectures must provide an unsigned long page_link field in the
22
 * scatterlist struct. We use that to place the page pointer AND encode
22
 * scatterlist struct. We use that to place the page pointer AND encode
23
 * information about the sg table as well. The two lower bits are reserved
23
 * information about the sg table as well. The two lower bits are reserved
24
 * for this information.
24
 * for this information.
25
 *
25
 *
26
 * If bit 0 is set, then the page_link contains a pointer to the next sg
26
 * If bit 0 is set, then the page_link contains a pointer to the next sg
27
 * table list. Otherwise the next entry is at sg + 1.
27
 * table list. Otherwise the next entry is at sg + 1.
28
 *
28
 *
29
 * If bit 1 is set, then this sg entry is the last element in a list.
29
 * If bit 1 is set, then this sg entry is the last element in a list.
30
 *
30
 *
31
 * See sg_next().
31
 * See sg_next().
32
 *
32
 *
33
 */
33
 */
34
 
34
 
35
#define SG_MAGIC	0x87654321
35
#define SG_MAGIC	0x87654321
36
 
36
 
37
/*
37
/*
38
 * We overload the LSB of the page pointer to indicate whether it's
38
 * We overload the LSB of the page pointer to indicate whether it's
39
 * a valid sg entry, or whether it points to the start of a new scatterlist.
39
 * a valid sg entry, or whether it points to the start of a new scatterlist.
40
 * Those low bits are there for everyone! (thanks mason :-)
40
 * Those low bits are there for everyone! (thanks mason :-)
41
 */
41
 */
42
#define sg_is_chain(sg)		((sg)->page_link & 0x01)
42
#define sg_is_chain(sg)		((sg)->page_link & 0x01)
43
#define sg_is_last(sg)		((sg)->page_link & 0x02)
43
#define sg_is_last(sg)		((sg)->page_link & 0x02)
44
#define sg_chain_ptr(sg)	\
44
#define sg_chain_ptr(sg)	\
45
	((struct scatterlist *) ((sg)->page_link & ~0x03))
45
	((struct scatterlist *) ((sg)->page_link & ~0x03))
46
 
46
 
47
/**
47
/**
48
 * sg_assign_page - Assign a given page to an SG entry
48
 * sg_assign_page - Assign a given page to an SG entry
49
 * @sg:		    SG entry
49
 * @sg:		    SG entry
50
 * @page:	    The page
50
 * @page:	    The page
51
 *
51
 *
52
 * Description:
52
 * Description:
53
 *   Assign page to sg entry. Also see sg_set_page(), the most commonly used
53
 *   Assign page to sg entry. Also see sg_set_page(), the most commonly used
54
 *   variant.
54
 *   variant.
55
 *
55
 *
56
 **/
56
 **/
57
static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
57
static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
58
{
58
{
59
	unsigned long page_link = sg->page_link & 0x3;
59
	unsigned long page_link = sg->page_link & 0x3;
60
 
60
 
61
	/*
61
	/*
62
	 * In order for the low bit stealing approach to work, pages
62
	 * In order for the low bit stealing approach to work, pages
63
	 * must be aligned at a 32-bit boundary as a minimum.
63
	 * must be aligned at a 32-bit boundary as a minimum.
64
	 */
64
	 */
65
	BUG_ON((unsigned long) page & 0x03);
65
	BUG_ON((unsigned long) page & 0x03);
66
#ifdef CONFIG_DEBUG_SG
66
#ifdef CONFIG_DEBUG_SG
67
	BUG_ON(sg->sg_magic != SG_MAGIC);
67
	BUG_ON(sg->sg_magic != SG_MAGIC);
68
	BUG_ON(sg_is_chain(sg));
68
	BUG_ON(sg_is_chain(sg));
69
#endif
69
#endif
70
	sg->page_link = page_link | (unsigned long) page;
70
	sg->page_link = page_link | (unsigned long) page;
71
}
71
}
72
 
72
 
73
/**
73
/**
74
 * sg_set_page - Set sg entry to point at given page
74
 * sg_set_page - Set sg entry to point at given page
75
 * @sg:		 SG entry
75
 * @sg:		 SG entry
76
 * @page:	 The page
76
 * @page:	 The page
77
 * @len:	 Length of data
77
 * @len:	 Length of data
78
 * @offset:	 Offset into page
78
 * @offset:	 Offset into page
79
 *
79
 *
80
 * Description:
80
 * Description:
81
 *   Use this function to set an sg entry pointing at a page, never assign
81
 *   Use this function to set an sg entry pointing at a page, never assign
82
 *   the page directly. We encode sg table information in the lower bits
82
 *   the page directly. We encode sg table information in the lower bits
83
 *   of the page pointer. See sg_page() for looking up the page belonging
83
 *   of the page pointer. See sg_page() for looking up the page belonging
84
 *   to an sg entry.
84
 *   to an sg entry.
85
 *
85
 *
86
 **/
86
 **/
87
static inline void sg_set_page(struct scatterlist *sg, struct page *page,
87
static inline void sg_set_page(struct scatterlist *sg, struct page *page,
88
			       unsigned int len, unsigned int offset)
88
			       unsigned int len, unsigned int offset)
89
{
89
{
90
	sg_assign_page(sg, page);
90
	sg_assign_page(sg, page);
91
	sg->offset = offset;
91
	sg->offset = offset;
92
	sg->length = len;
92
	sg->length = len;
93
}
93
}
94
 
94
 
95
static inline struct page *sg_page(struct scatterlist *sg)
95
static inline struct page *sg_page(struct scatterlist *sg)
96
{
96
{
97
#ifdef CONFIG_DEBUG_SG
97
#ifdef CONFIG_DEBUG_SG
98
	BUG_ON(sg->sg_magic != SG_MAGIC);
98
	BUG_ON(sg->sg_magic != SG_MAGIC);
99
	BUG_ON(sg_is_chain(sg));
99
	BUG_ON(sg_is_chain(sg));
100
#endif
100
#endif
101
	return (struct page *)((sg)->page_link & ~0x3);
101
	return (struct page *)((sg)->page_link & ~0x3);
102
}
102
}
103
 
103
 
104
/**
104
/**
105
 * sg_set_buf - Set sg entry to point at given data
105
 * sg_set_buf - Set sg entry to point at given data
106
 * @sg:		 SG entry
106
 * @sg:		 SG entry
107
 * @buf:	 Data
107
 * @buf:	 Data
108
 * @buflen:	 Data length
108
 * @buflen:	 Data length
109
 *
109
 *
110
 **/
110
 **/
111
//static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
111
//static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
112
//                 unsigned int buflen)
112
//                 unsigned int buflen)
113
//{
113
//{
114
//   sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
114
//   sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
115
//}
115
//}
116
 
116
 
117
/*
117
/*
118
 * Loop over each sg element, following the pointer to a new list if necessary
118
 * Loop over each sg element, following the pointer to a new list if necessary
119
 */
119
 */
120
#define for_each_sg(sglist, sg, nr, __i)	\
120
#define for_each_sg(sglist, sg, nr, __i)	\
121
	for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
121
	for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
122
 
122
 
123
/**
123
/**
124
 * sg_chain - Chain two sglists together
124
 * sg_chain - Chain two sglists together
125
 * @prv:	First scatterlist
125
 * @prv:	First scatterlist
126
 * @prv_nents:	Number of entries in prv
126
 * @prv_nents:	Number of entries in prv
127
 * @sgl:	Second scatterlist
127
 * @sgl:	Second scatterlist
128
 *
128
 *
129
 * Description:
129
 * Description:
130
 *   Links @prv@ and @sgl@ together, to form a longer scatterlist.
130
 *   Links @prv@ and @sgl@ together, to form a longer scatterlist.
131
 *
131
 *
132
 **/
132
 **/
133
static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
133
static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
134
			    struct scatterlist *sgl)
134
			    struct scatterlist *sgl)
135
{
135
{
136
#ifndef ARCH_HAS_SG_CHAIN
136
#ifndef ARCH_HAS_SG_CHAIN
137
	BUG();
137
	BUG();
138
#endif
138
#endif
139
 
139
 
140
	/*
140
	/*
141
	 * offset and length are unused for chain entry.  Clear them.
141
	 * offset and length are unused for chain entry.  Clear them.
142
	 */
142
	 */
143
	prv[prv_nents - 1].offset = 0;
143
	prv[prv_nents - 1].offset = 0;
144
	prv[prv_nents - 1].length = 0;
144
	prv[prv_nents - 1].length = 0;
145
 
145
 
146
	/*
146
	/*
147
	 * Set lowest bit to indicate a link pointer, and make sure to clear
147
	 * Set lowest bit to indicate a link pointer, and make sure to clear
148
	 * the termination bit if it happens to be set.
148
	 * the termination bit if it happens to be set.
149
	 */
149
	 */
150
	prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
150
	prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
151
}
151
}
152
 
152
 
153
/**
153
/**
154
 * sg_mark_end - Mark the end of the scatterlist
154
 * sg_mark_end - Mark the end of the scatterlist
155
 * @sg:		 SG entryScatterlist
155
 * @sg:		 SG entryScatterlist
156
 *
156
 *
157
 * Description:
157
 * Description:
158
 *   Marks the passed in sg entry as the termination point for the sg
158
 *   Marks the passed in sg entry as the termination point for the sg
159
 *   table. A call to sg_next() on this entry will return NULL.
159
 *   table. A call to sg_next() on this entry will return NULL.
160
 *
160
 *
161
 **/
161
 **/
162
static inline void sg_mark_end(struct scatterlist *sg)
162
static inline void sg_mark_end(struct scatterlist *sg)
163
{
163
{
164
#ifdef CONFIG_DEBUG_SG
164
#ifdef CONFIG_DEBUG_SG
165
	BUG_ON(sg->sg_magic != SG_MAGIC);
165
	BUG_ON(sg->sg_magic != SG_MAGIC);
166
#endif
166
#endif
167
	/*
167
	/*
168
	 * Set termination bit, clear potential chain bit
168
	 * Set termination bit, clear potential chain bit
169
	 */
169
	 */
170
	sg->page_link |= 0x02;
170
	sg->page_link |= 0x02;
171
	sg->page_link &= ~0x01;
171
	sg->page_link &= ~0x01;
172
}
172
}
173
 
173
 
174
/**
174
/**
-
 
175
 * sg_unmark_end - Undo setting the end of the scatterlist
-
 
176
 * @sg:		 SG entryScatterlist
-
 
177
 *
-
 
178
 * Description:
-
 
179
 *   Removes the termination marker from the given entry of the scatterlist.
-
 
180
 *
-
 
181
 **/
-
 
182
static inline void sg_unmark_end(struct scatterlist *sg)
-
 
183
{
-
 
184
#ifdef CONFIG_DEBUG_SG
-
 
185
	BUG_ON(sg->sg_magic != SG_MAGIC);
-
 
186
#endif
-
 
187
	sg->page_link &= ~0x02;
-
 
188
}
-
 
189
 
-
 
190
/**
175
 * sg_phys - Return physical address of an sg entry
191
 * sg_phys - Return physical address of an sg entry
176
 * @sg:	     SG entry
192
 * @sg:	     SG entry
177
 *
193
 *
178
 * Description:
194
 * Description:
179
 *   This calls page_to_phys() on the page in this sg entry, and adds the
195
 *   This calls page_to_phys() on the page in this sg entry, and adds the
180
 *   sg offset. The caller must know that it is legal to call page_to_phys()
196
 *   sg offset. The caller must know that it is legal to call page_to_phys()
181
 *   on the sg page.
197
 *   on the sg page.
182
 *
198
 *
183
 **/
199
 **/
184
static inline dma_addr_t sg_phys(struct scatterlist *sg)
200
static inline dma_addr_t sg_phys(struct scatterlist *sg)
185
{
201
{
186
	return page_to_phys(sg_page(sg)) + sg->offset;
202
	return page_to_phys(sg_page(sg)) + sg->offset;
187
}
203
}
188
 
204
 
189
/**
205
/**
190
 * sg_virt - Return virtual address of an sg entry
206
 * sg_virt - Return virtual address of an sg entry
191
 * @sg:      SG entry
207
 * @sg:      SG entry
192
 *
208
 *
193
 * Description:
209
 * Description:
194
 *   This calls page_address() on the page in this sg entry, and adds the
210
 *   This calls page_address() on the page in this sg entry, and adds the
195
 *   sg offset. The caller must know that the sg page has a valid virtual
211
 *   sg offset. The caller must know that the sg page has a valid virtual
196
 *   mapping.
212
 *   mapping.
197
 *
213
 *
198
 **/
214
 **/
199
//static inline void *sg_virt(struct scatterlist *sg)
215
//static inline void *sg_virt(struct scatterlist *sg)
200
//{
216
//{
201
//   return page_address(sg_page(sg)) + sg->offset;
217
//   return page_address(sg_page(sg)) + sg->offset;
202
//}
218
//}
203
 
219
 
204
int sg_nents(struct scatterlist *sg);
220
int sg_nents(struct scatterlist *sg);
205
struct scatterlist *sg_next(struct scatterlist *);
221
struct scatterlist *sg_next(struct scatterlist *);
206
struct scatterlist *sg_last(struct scatterlist *s, unsigned int);
222
struct scatterlist *sg_last(struct scatterlist *s, unsigned int);
207
void sg_init_table(struct scatterlist *, unsigned int);
223
void sg_init_table(struct scatterlist *, unsigned int);
208
void sg_init_one(struct scatterlist *, const void *, unsigned int);
224
void sg_init_one(struct scatterlist *, const void *, unsigned int);
209
 
225
 
210
typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t);
226
typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t);
211
typedef void (sg_free_fn)(struct scatterlist *, unsigned int);
227
typedef void (sg_free_fn)(struct scatterlist *, unsigned int);
212
 
228
 
213
void __sg_free_table(struct sg_table *, unsigned int, sg_free_fn *);
229
void __sg_free_table(struct sg_table *, unsigned int, sg_free_fn *);
214
void sg_free_table(struct sg_table *);
230
void sg_free_table(struct sg_table *);
215
int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, gfp_t,
231
int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, gfp_t,
216
		     sg_alloc_fn *);
232
		     sg_alloc_fn *);
217
int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);
233
int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);
218
int sg_alloc_table_from_pages(struct sg_table *sgt,
234
int sg_alloc_table_from_pages(struct sg_table *sgt,
219
	struct page **pages, unsigned int n_pages,
235
	struct page **pages, unsigned int n_pages,
220
	unsigned long offset, unsigned long size,
236
	unsigned long offset, unsigned long size,
221
	gfp_t gfp_mask);
237
	gfp_t gfp_mask);
222
 
238
 
223
size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
239
size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
224
			   void *buf, size_t buflen);
240
			   void *buf, size_t buflen);
225
size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
241
size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
226
			 void *buf, size_t buflen);
242
			 void *buf, size_t buflen);
227
 
243
 
228
/*
244
/*
229
 * Maximum number of entries that will be allocated in one piece, if
245
 * Maximum number of entries that will be allocated in one piece, if
230
 * a list larger than this is required then chaining will be utilized.
246
 * a list larger than this is required then chaining will be utilized.
231
 */
247
 */
232
#define SG_MAX_SINGLE_ALLOC     (4*PAGE_SIZE / sizeof(struct scatterlist))
248
#define SG_MAX_SINGLE_ALLOC     (4*PAGE_SIZE / sizeof(struct scatterlist))
-
 
249
 
-
 
250
/*
-
 
251
 * sg page iterator
-
 
252
 *
-
 
253
 * Iterates over sg entries page-by-page.  On each successful iteration,
-
 
254
 * you can call sg_page_iter_page(@piter) and sg_page_iter_dma_address(@piter)
-
 
255
 * to get the current page and its dma address. @piter->sg will point to the
-
 
256
 * sg holding this page and @piter->sg_pgoffset to the page's page offset
-
 
257
 * within the sg. The iteration will stop either when a maximum number of sg
-
 
258
 * entries was reached or a terminating sg (sg_last(sg) == true) was reached.
-
 
259
 */
-
 
260
struct sg_page_iter {
-
 
261
	struct scatterlist	*sg;		/* sg holding the page */
-
 
262
	unsigned int		sg_pgoffset;	/* page offset within the sg */
-
 
263
 
-
 
264
	/* these are internal states, keep away */
-
 
265
	unsigned int		__nents;	/* remaining sg entries */
-
 
266
	int			__pg_advance;	/* nr pages to advance at the
-
 
267
						 * next step */
-
 
268
};
-
 
269
 
-
 
270
bool __sg_page_iter_next(struct sg_page_iter *piter);
-
 
271
void __sg_page_iter_start(struct sg_page_iter *piter,
-
 
272
			  struct scatterlist *sglist, unsigned int nents,
-
 
273
			  unsigned long pgoffset);
-
 
274
/**
-
 
275
 * sg_page_iter_page - get the current page held by the page iterator
-
 
276
 * @piter:	page iterator holding the page
-
 
277
 */
-
 
278
static inline struct page *sg_page_iter_page(struct sg_page_iter *piter)
-
 
279
{
-
 
280
	return nth_page(sg_page(piter->sg), piter->sg_pgoffset);
-
 
281
}
-
 
282
 
-
 
283
/**
-
 
284
 * sg_page_iter_dma_address - get the dma address of the current page held by
-
 
285
 * the page iterator.
-
 
286
 * @piter:	page iterator holding the page
-
 
287
 */
-
 
288
static inline dma_addr_t sg_page_iter_dma_address(struct sg_page_iter *piter)
-
 
289
{
-
 
290
	return sg_dma_address(piter->sg) + (piter->sg_pgoffset << PAGE_SHIFT);
-
 
291
}
-
 
292
 
-
 
293
/**
-
 
294
 * for_each_sg_page - iterate over the pages of the given sg list
-
 
295
 * @sglist:	sglist to iterate over
-
 
296
 * @piter:	page iterator to hold current page, sg, sg_pgoffset
-
 
297
 * @nents:	maximum number of sg entries to iterate over
-
 
298
 * @pgoffset:	starting page offset
-
 
299
 */
-
 
300
#define for_each_sg_page(sglist, piter, nents, pgoffset)		   \
-
 
301
	for (__sg_page_iter_start((piter), (sglist), (nents), (pgoffset)); \
233
 
302
	     __sg_page_iter_next(piter);)
234
 
303
 
235
/*
304
/*
236
 * Mapping sg iterator
305
 * Mapping sg iterator
237
 *
306
 *
238
 * Iterates over sg entries mapping page-by-page.  On each successful
307
 * Iterates over sg entries mapping page-by-page.  On each successful
239
 * iteration, @miter->page points to the mapped page and
308
 * iteration, @miter->page points to the mapped page and
240
 * @miter->length bytes of data can be accessed at @miter->addr.  As
309
 * @miter->length bytes of data can be accessed at @miter->addr.  As
241
 * long as an interation is enclosed between start and stop, the user
310
 * long as an interation is enclosed between start and stop, the user
242
 * is free to choose control structure and when to stop.
311
 * is free to choose control structure and when to stop.
243
 *
312
 *
244
 * @miter->consumed is set to @miter->length on each iteration.  It
313
 * @miter->consumed is set to @miter->length on each iteration.  It
245
 * can be adjusted if the user can't consume all the bytes in one go.
314
 * can be adjusted if the user can't consume all the bytes in one go.
246
 * Also, a stopped iteration can be resumed by calling next on it.
315
 * Also, a stopped iteration can be resumed by calling next on it.
247
 * This is useful when iteration needs to release all resources and
316
 * This is useful when iteration needs to release all resources and
248
 * continue later (e.g. at the next interrupt).
317
 * continue later (e.g. at the next interrupt).
249
 */
318
 */
250
 
319
 
251
#define SG_MITER_ATOMIC		(1 << 0)	 /* use kmap_atomic */
320
#define SG_MITER_ATOMIC		(1 << 0)	 /* use kmap_atomic */
252
#define SG_MITER_TO_SG		(1 << 1)	/* flush back to phys on unmap */
321
#define SG_MITER_TO_SG		(1 << 1)	/* flush back to phys on unmap */
253
#define SG_MITER_FROM_SG	(1 << 2)	/* nop */
322
#define SG_MITER_FROM_SG	(1 << 2)	/* nop */
254
 
323
 
255
struct sg_mapping_iter {
324
struct sg_mapping_iter {
256
	/* the following three fields can be accessed directly */
325
	/* the following three fields can be accessed directly */
257
	struct page		*page;		/* currently mapped page */
326
	struct page		*page;		/* currently mapped page */
258
	void			*addr;		/* pointer to the mapped area */
327
	void			*addr;		/* pointer to the mapped area */
259
	size_t			length;		/* length of the mapped area */
328
	size_t			length;		/* length of the mapped area */
260
	size_t			consumed;	/* number of consumed bytes */
329
	size_t			consumed;	/* number of consumed bytes */
-
 
330
	struct sg_page_iter	piter;		/* page iterator */
261
 
331
 
262
	/* these are internal states, keep away */
-
 
263
	struct scatterlist	*__sg;		/* current entry */
332
	/* these are internal states, keep away */
264
	unsigned int		__nents;	/* nr of remaining entries */
333
	unsigned int		__offset;	/* offset within page */
265
	unsigned int		__offset;	/* offset within sg */
334
	unsigned int		__remaining;	/* remaining bytes on page */
266
	unsigned int		__flags;
335
	unsigned int		__flags;
267
};
336
};
268
 
337
 
269
void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
338
void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
270
		    unsigned int nents, unsigned int flags);
339
		    unsigned int nents, unsigned int flags);
271
bool sg_miter_next(struct sg_mapping_iter *miter);
340
bool sg_miter_next(struct sg_mapping_iter *miter);
272
void sg_miter_stop(struct sg_mapping_iter *miter);
341
void sg_miter_stop(struct sg_mapping_iter *miter);
273
 
342
 
274
#endif /* _LINUX_SCATTERLIST_H */
343
#endif /* _LINUX_SCATTERLIST_H */