diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-04-29 19:38:55 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-04-29 19:38:55 +0000 |
| commit | a17da2aa742f4df48cf33100a5357ba37357b0f9 (patch) | |
| tree | 31b6863509ba21e384165f5c5f361bb2ab4e6e2d | |
| parent | ca8f372bbc8f58e47a81094b5bb28a61dc0a349c (diff) | |
Notes
| -rw-r--r-- | sys/geom/bde/g_bde_work.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/bde/g_bde_work.c b/sys/geom/bde/g_bde_work.c index e4ffb527143e..e78a37d85296 100644 --- a/sys/geom/bde/g_bde_work.c +++ b/sys/geom/bde/g_bde_work.c @@ -481,7 +481,7 @@ g_bde_read_done(struct bio *bp) g_trace(G_T_TOPOLOGY, "g_bde_read_done(%p)", sp); sc = bp->bio_caller2; mtx_lock(&sc->worklist_mutex); - if (bp->bio_error == 0 && bp->bio_completed != sp->siz) + if (bp->bio_error == 0 && bp->bio_completed != sp->size) bp->bio_error = EIO; sp->error = bp->bio_error; if (sp->error == 0) |
