summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Axboe <axboe@fb.com>2015-10-07 13:50:17 -0600
committerJens Axboe <axboe@fb.com>2015-10-07 13:50:17 -0600
commitc3984cc994377671f18d3d719ddd86b5107457ee (patch)
treef7a57a5f4176eb4d20d4c150ee35e70915f15dbd
parent8ace60f8b760ff79aa2734e5e96223deae69f5f2 (diff)
parenta54c8f0f2d7df525ff997e2afe71866a1a013064 (diff)
downloadop-kernel-dev-c3984cc994377671f18d3d719ddd86b5107457ee.zip
op-kernel-dev-c3984cc994377671f18d3d719ddd86b5107457ee.tar.gz
Merge branch 'stable/for-jens-4.3' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen into for-linus
Konrad writes: Please git pull an update branch to your 'for-4.3/drivers' branch (which oddly I don't see does not have the previous pull?) git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git stable/for-jens-4.3 which has two fixes - one where we use the Xen blockfront EFI driver and don't release all the requests, the other if the allocation of resources for a particular state failed - we would go back 'Closing' and assume that an structure would be allocated while in fact it may not be - and crash.
-rw-r--r--drivers/block/xen-blkfront.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
index 6111708..a69c02d 100644
--- a/drivers/block/xen-blkfront.c
+++ b/drivers/block/xen-blkfront.c
@@ -1956,7 +1956,8 @@ static void blkback_changed(struct xenbus_device *dev,
break;
/* Missed the backend's Closing state -- fallthrough */
case XenbusStateClosing:
- blkfront_closing(info);
+ if (info)
+ blkfront_closing(info);
break;
}
}
OpenPOWER on IntegriCloud