--- /dev/null
+From adbe6991efd36104ac9eaf751993d35eaa7f493a Mon Sep 17 00:00:00 2001
+From: Bjorn Helgaas <bhelgaas@google.com>
+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@google.com>
+
+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@google.com>
+Acked-by: Kent Overstreet <koverstreet@google.com>
+Signed-off-by: Jens Axboe <axboe@kernel.dk>
+Cc: Jonghwan Choi <jhbird.choi@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ 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);
+
--- /dev/null
+From f3cff25f05f2ac29b2ee355e611b0657482f6f1d Mon Sep 17 00:00:00 2001
+From: Anatol Pomozov <anatol.pomozov@gmail.com>
+Date: Sun, 22 Sep 2013 12:43:47 -0600
+Subject: cfq: explicitly use 64bit divide operation for 64bit arguments
+
+From: Anatol Pomozov <anatol.pomozov@gmail.com>
+
+commit f3cff25f05f2ac29b2ee355e611b0657482f6f1d upstream.
+
+'samples' is 64bit operant, but do_div() second parameter is 32.
+do_div silently truncates high 32 bits and calculated result
+is invalid.
+
+In case if low 32bit of 'samples' are zeros then do_div() produces
+kernel crash.
+
+Signed-off-by: Anatol Pomozov <anatol.pomozov@gmail.com>
+Acked-by: Tejun Heo <tj@kernel.org>
+Signed-off-by: Jens Axboe <axboe@kernel.dk>
+Cc: Jonghwan Choi <jhbird.choi@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ block/cfq-iosched.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/block/cfq-iosched.c
++++ b/block/cfq-iosched.c
+@@ -1803,7 +1803,7 @@ static u64 cfqg_prfill_avg_queue_size(st
+
+ if (samples) {
+ v = blkg_stat_read(&cfqg->stats.avg_queue_size_sum);
+- do_div(v, samples);
++ v = div64_u64(v, samples);
+ }
+ __blkg_prfill_u64(sf, pd, v);
+ return 0;
udf-refuse-rw-mount-of-the-filesystem-instead-of-making-it-ro.patch
audit-fix-endless-wait-in-audit_log_start.patch
mm-fix-aio-performance-regression-for-database-caused-by-thp.patch
+bio-integrity-fix-use-of-bs-bio_integrity_pool-after-free.patch
+cfq-explicitly-use-64bit-divide-operation-for-64bit-arguments.patch