Date: Fri, 6 Aug 2004 09:55:40 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom/stripe g_stripe.c Message-ID: <200408060955.i769teUe009197@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
pjd 2004-08-06 09:55:40 UTC FreeBSD src repository Modified files: sys/geom/stripe g_stripe.c Log: Fix I/O leakage. We're cloning bios in g_stripe_start_fast(), but when something goes wrong while running in "fast" mode, we free all bios and falling back to "economic" mode. Freeing bios, doesn't mean decrease bio_children, so bio_inbed couldn't be equal to bio_children and request was never finished. Decrease bio_children manually when destroying bios. Reported by: Sam Lawrance <boris@brooknet.com.au>, simon Revision Changes Path 1.9 +2 -0 src/sys/geom/stripe/g_stripe.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200408060955.i769teUe009197>