summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcperciva <cperciva@FreeBSD.org>2015-09-14 19:32:04 +0000
committercperciva <cperciva@FreeBSD.org>2015-09-14 19:32:04 +0000
commitc5699a8de95660728cdc074df1d05a9b985af8d1 (patch)
treeee2c4bf52885a2e7eefa32390064697bd33daca4
parent9a0c37807b682e26999788441b1803bb5916fd0a (diff)
downloadFreeBSD-src-c5699a8de95660728cdc074df1d05a9b985af8d1.zip
FreeBSD-src-c5699a8de95660728cdc074df1d05a9b985af8d1.tar.gz
MFC r284615, r284662
Code cleanup; fix an error code; add a KASSERT.
-rw-r--r--sys/dev/xen/blkfront/blkfront.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/xen/blkfront/blkfront.c b/sys/dev/xen/blkfront/blkfront.c
index a71251d..b20cace 100644
--- a/sys/dev/xen/blkfront/blkfront.c
+++ b/sys/dev/xen/blkfront/blkfront.c
@@ -168,7 +168,6 @@ xbd_queue_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
uint64_t fsect, lsect;
int ref;
int op;
- int block_segs;
cm = arg;
sc = cm->cm_sc;
@@ -180,6 +179,9 @@ xbd_queue_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
return;
}
+ KASSERT(nsegs <= BLKIF_MAX_SEGMENTS_PER_REQUEST,
+ ("Too many segments in a blkfront I/O"));
+
/* Fill out a communications ring structure. */
ring_req = RING_GET_REQUEST(&sc->xbd_ring, sc->xbd_ring.req_prod_pvt);
sc->xbd_ring.req_prod_pvt++;
@@ -190,9 +192,8 @@ xbd_queue_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
ring_req->nr_segments = nsegs;
cm->cm_nseg = nsegs;
- block_segs = MIN(nsegs, BLKIF_MAX_SEGMENTS_PER_REQUEST);
sg = ring_req->seg;
- last_block_sg = sg + block_segs;
+ last_block_sg = sg + nsegs;
sg_ref = cm->cm_sg_refs;
while (sg < last_block_sg) {
@@ -227,7 +228,6 @@ xbd_queue_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
sg++;
sg_ref++;
segs++;
- nsegs--;
}
if (cm->cm_operation == BLKIF_OP_READ)
@@ -1130,7 +1130,7 @@ xbd_initialize(struct xbd_softc *sc)
M_XENBLOCKFRONT, M_NOWAIT|M_ZERO);
if (sc->xbd_shadow == NULL) {
bus_dma_tag_destroy(sc->xbd_io_dmat);
- xenbus_dev_fatal(sc->xbd_dev, error,
+ xenbus_dev_fatal(sc->xbd_dev, ENOMEM,
"Cannot allocate request structures\n");
return;
}
OpenPOWER on IntegriCloud