Fix memory leak in dm-crypt
authorNeil Brown <neilb@suse.de>
Tue, 16 Oct 2007 11:48:46 +0000 (13:48 +0200)
committerJens Axboe <jens.axboe@oracle.com>
Tue, 16 Oct 2007 11:48:46 +0000 (13:48 +0200)
dm-crypt used the ->bi_size member in the bio endio handling to
free the appropriate pages, but it frees all of it from both call
paths. With the ->bi_end_io() changes, ->bi_size was always 0 since
we don't do partial completes. This caused dm-crypt to leak memory.

Fix this by removing the size argument from crypt_free_buffer_pages().

Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>

No differences found