This is a note to let you know that I've just added the patch titled bio-integrity: Fix use of bs->bio_integrity_pool after free to the 3.11-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: bio-integrity-fix-use-of-bs-bio_integrity_pool-after-free.patch and it can be found in the queue-3.11 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From adbe6991efd36104ac9eaf751993d35eaa7f493a Mon Sep 17 00:00:00 2001 From: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> Date: Wed, 29 May 2013 16:29:55 -0600 Subject: bio-integrity: Fix use of bs->bio_integrity_pool after free From: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> commit adbe6991efd36104ac9eaf751993d35eaa7f493a upstream. This fixes a copy and paste error introduced by 9f060e2231 ("block: Convert integrity to bvec_alloc_bs()"). Found by Coverity (CID 1020654). Signed-off-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> Acked-by: Kent Overstreet <koverstreet@xxxxxxxxxx> Signed-off-by: Jens Axboe <axboe@xxxxxxxxx> Cc: Jonghwan Choi <jhbird.choi@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/bio-integrity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/bio-integrity.c +++ b/fs/bio-integrity.c @@ -734,7 +734,7 @@ void bioset_integrity_free(struct bio_se mempool_destroy(bs->bio_integrity_pool); if (bs->bvec_integrity_pool) - mempool_destroy(bs->bio_integrity_pool); + mempool_destroy(bs->bvec_integrity_pool); } EXPORT_SYMBOL(bioset_integrity_free); Patches currently in stable-queue which might be from bhelgaas@xxxxxxxxxx are queue-3.11/pci-acpi-pm-clear-pme_poll-for-devices-in-d3cold-on-wakeup.patch queue-3.11/bio-integrity-fix-use-of-bs-bio_integrity_pool-after-free.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html