| 60 | struct uio; |
| 61 | |
| 62 | static __inline void |
| 63 | sglist_init(struct sglist *sg, u_short maxsegs, struct sglist_seg *segs) |
| 64 | { |
| 65 | |
| 66 | sg->sg_segs = segs; |
| 67 | sg->sg_nseg = 0; |
| 68 | sg->sg_maxseg = maxsegs; |
| 69 | refcount_init(&sg->sg_refs, 1); |
| 70 | } |
| 71 | |
| 72 | static __inline void |
| 73 | sglist_reset(struct sglist *sg) |
no test coverage detected