aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-10-18 13:25:09 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-18 13:25:09 -0400
commit0e6e58f941176033fd9a224b39527b12f9cbb05e (patch)
tree0095a8bb546ff788ea451f272165f50c8df5e20f /drivers/s390
parent50edb5cc22c7b2ea7df095913596e5a649bd6b41 (diff)
parent1bbc26062754b012656d34103215f7552e02b999 (diff)
Merge tag 'virtio-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux
Pull virtio updates from Rusty Russell: "One cc: stable commit, the rest are a series of minor cleanups which have been sitting in MST's tree during my vacation. I changed a function name and made one trivial change, then they spent two days in linux-next" * tag 'virtio-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux: (25 commits) virtio-rng: refactor probe error handling virtio_scsi: drop scan callback virtio_balloon: enable VQs early on restore virtio_scsi: fix race on device removal virito_scsi: use freezable WQ for events virtio_net: enable VQs early on restore virtio_console: enable VQs early on restore virtio_scsi: enable VQs early on restore virtio_blk: enable VQs early on restore virtio_scsi: move kick event out from virtscsi_init virtio_net: fix use after free on allocation failure 9p/trans_virtio: enable VQs early virtio_console: enable VQs early virtio_blk: enable VQs early virtio_net: enable VQs early virtio: add API to enable VQs early virtio_net: minor cleanup virtio-net: drop config_mutex virtio_net: drop config_enable virtio-blk: drop config_mutex ...
Diffstat (limited to 'drivers/s390')
-rw-r--r--drivers/s390/kvm/kvm_virtio.c9
-rw-r--r--drivers/s390/kvm/virtio_ccw.c6
2 files changed, 2 insertions, 13 deletions
diff --git a/drivers/s390/kvm/kvm_virtio.c b/drivers/s390/kvm/kvm_virtio.c
index a1349653c6d9..643129070c51 100644
--- a/drivers/s390/kvm/kvm_virtio.c
+++ b/drivers/s390/kvm/kvm_virtio.c
@@ -406,15 +406,8 @@ static void kvm_extint_handler(struct ext_code ext_code,
406 406
407 switch (param) { 407 switch (param) {
408 case VIRTIO_PARAM_CONFIG_CHANGED: 408 case VIRTIO_PARAM_CONFIG_CHANGED:
409 { 409 virtio_config_changed(vq->vdev);
410 struct virtio_driver *drv;
411 drv = container_of(vq->vdev->dev.driver,
412 struct virtio_driver, driver);
413 if (drv->config_changed)
414 drv->config_changed(vq->vdev);
415
416 break; 410 break;
417 }
418 case VIRTIO_PARAM_DEV_ADD: 411 case VIRTIO_PARAM_DEV_ADD:
419 schedule_work(&hotplug_work); 412 schedule_work(&hotplug_work);
420 break; 413 break;
diff --git a/drivers/s390/kvm/virtio_ccw.c b/drivers/s390/kvm/virtio_ccw.c
index d2c0b442bce5..6cbe6ef3c889 100644
--- a/drivers/s390/kvm/virtio_ccw.c
+++ b/drivers/s390/kvm/virtio_ccw.c
@@ -940,11 +940,7 @@ static void virtio_ccw_int_handler(struct ccw_device *cdev,
940 vring_interrupt(0, vq); 940 vring_interrupt(0, vq);
941 } 941 }
942 if (test_bit(0, &vcdev->indicators2)) { 942 if (test_bit(0, &vcdev->indicators2)) {
943 drv = container_of(vcdev->vdev.dev.driver, 943 virtio_config_changed(&vcdev->vdev);
944 struct virtio_driver, driver);
945
946 if (drv && drv->config_changed)
947 drv->config_changed(&vcdev->vdev);
948 clear_bit(0, &vcdev->indicators2); 944 clear_bit(0, &vcdev->indicators2);
949 } 945 }
950} 946}