]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
Btrfs: make sure compressed bios don't complete too soon
authorChris Mason <chris.mason@oracle.com>
Fri, 7 Nov 2008 17:35:44 +0000 (12:35 -0500)
committerChris Mason <chris.mason@oracle.com>
Fri, 7 Nov 2008 17:35:44 +0000 (12:35 -0500)
commitaf09abfece59aa50bfbf16f6f1f85822554e061f
treeca419511219b433a2bf45626814777df8667a19f
parent4366211ccd050e00674b3276b5ed81981b2d7793
Btrfs: make sure compressed bios don't complete too soon

When writing a compressed extent, a number of bios are created that
point to a single struct compressed_bio.  At end_io time an atomic counter in
the compressed_bio struct makes sure that all of the bios have finished
before final end_io processing is done.

But when multiple bios are needed to write a compressed extent, the
counter was being incremented after the first bio was sent to submit_bio.
It is possible the bio will complete before the counter is incremented,
making the end_io handler free the compressed_bio struct before
processing is finished.

The fix is to increment the atomic counter before bio submission,
both for compressed reads and writes.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/compression.c