Searched refs:bio_vec (Results 1 - 25 of 32) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Ddm-io.h37 struct bio_vec *bvec;
H A Ddm-io.c189 struct bio_vec *bvec = (struct bio_vec *) dp->context_ptr;
197 struct bio_vec *bvec = (struct bio_vec *) dp->context_ptr;
201 static void bvec_dp_init(struct dpages *dp, struct bio_vec *bvec)
H A Ddm-crypt.c347 struct bio_vec *bv_in = bio_iovec_idx(ctx->bio_in, ctx->idx_in);
348 struct bio_vec *bv_out = bio_iovec_idx(ctx->bio_out, ctx->idx_out);
411 struct bio_vec *bv = bio_iovec_idx(clone, i);
448 struct bio_vec *bv;
585 sizeof(struct bio_vec) * clone->bi_vcnt);
H A Dlinear.c58 static int linear_mergeable_bvec(request_queue_t *q, struct bio *bio, struct bio_vec *biovec)
H A Draid0.c271 static int raid0_mergeable_bvec(request_queue_t *q, struct bio *bio, struct bio_vec *biovec)
H A Draid10.c457 struct bio_vec *bio_vec)
467 if (max <= bio_vec->bv_len && bio_sectors == 0)
468 return bio_vec->bv_len;
456 raid10_mergeable_bvec(request_queue_t *q, struct bio *bio, struct bio_vec *bio_vec) argument
H A Ddm.c632 struct bio_vec *bv = bio->bi_io_vec + idx;
727 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
H A Draid1.c741 struct bio_vec *bvec;
911 struct bio_vec *bvec;
1561 struct bio_vec *bvec;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dbio.c79 static inline struct bio_vec *bvec_alloc_bs(gfp_t gfp_mask, int nr, unsigned long *idx, struct bio_set *bs)
81 struct bio_vec *bvl;
104 memset(bvl, 0, bp->nr_vecs * sizeof(struct bio_vec));
166 struct bio_vec *bvl = NULL;
200 struct bio_vec *bv;
263 bio_src->bi_max_vecs * sizeof(struct bio_vec));
323 struct bio_vec *bvec;
340 struct bio_vec *prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
422 * Attempt to add a page to the bio_vec maplist. This can fail for a
441 * Attempt to add a page to the bio_vec maplis
[all...]
H A Dmpage.c45 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
71 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dbio.h57 struct bio_vec { struct
82 unsigned short bi_vcnt; /* how many bio_vec's */
107 struct bio_vec *bi_io_vec; /* the actual vec list */
270 struct bio_vec bv1, bv2;
324 static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags)
H A Dblkdev.h339 struct bio_vec;
340 typedef int (merge_bvec_fn) (request_queue_t *, struct bio *, struct bio_vec *);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dbounce.c46 static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom)
98 struct bio_vec *tovec, *fromvec;
125 struct bio_vec *bvec, *org_vec;
199 struct bio_vec *to, *from;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/raid/
H A Draid5.h141 struct bio_vec vec;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/aoe/
H A Daoe.h113 struct bio_vec *bv;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/
H A Dnbd.c180 static inline int sock_send_bvec(struct socket *sock, struct bio_vec *bvec,
224 struct bio_vec *bvec;
278 static inline int sock_recv_bvec(struct socket *sock, struct bio_vec *bvec)
337 struct bio_vec *bvec;
H A Drd.c201 static int rd_blkdev_pagecache_IO(int rw, struct bio_vec *vec, sector_t sector,
274 struct bio_vec *bvec;
H A Dloop.c207 static int do_lo_send_aops(struct loop_device *lo, struct bio_vec *bvec,
319 struct bio_vec *bvec, int bsize, loff_t pos, struct page *page)
342 static int do_lo_send_write(struct loop_device *lo, struct bio_vec *bvec,
361 int (*do_lo_send)(struct loop_device *, struct bio_vec *, int, loff_t,
363 struct bio_vec *bvec;
434 struct bio_vec *bvec, int bsize, loff_t pos)
453 struct bio_vec *bvec;
H A Dpktcdvd.c514 struct bio_vec *bvl = NULL;
522 bvl = kcalloc(nr_iovecs, sizeof(struct bio_vec), GFP_KERNEL);
1009 struct bio_vec *src_bvl = bio_iovec_idx(src_bio, seg);
1033 static void pkt_make_local_copy(struct packet_data *pkt, struct bio_vec *bvec)
1339 struct bio_vec *bvec = pkt->w_bio->bi_io_vec;
1359 struct bio_vec *src_bvl = bio_iovec_idx(bio, segment);
2576 static int pkt_merge_bvec(request_queue_t *q, struct bio *bio, struct bio_vec *bvec)
H A Dfloppy.c2440 struct bio_vec *bv;
2480 struct bio_vec *bv;
3809 struct bio_vec bio_vec; local
3825 bio.bi_io_vec = &bio_vec;
3826 bio_vec.bv_page = page;
3827 bio_vec.bv_len = size;
3828 bio_vec.bv_offset = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/block/
H A Dxpram.c197 struct bio_vec *bvec;
H A Ddasd_fba.c238 struct bio_vec *bv;
363 struct bio_vec *bv;
H A Ddasd_diag.c475 struct bio_vec *bv;
H A Ddcssblk.c627 struct bio_vec *bvec;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/
H A Dide-floppy.c511 struct bio_vec *bvec;
546 struct bio_vec *bvec;

Completed in 155 milliseconds

12