From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B565BC10F03 for ; Thu, 25 Apr 2019 09:16:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 80EEC218B0 for ; Thu, 25 Apr 2019 09:16:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726451AbfDYJQC (ORCPT ); Thu, 25 Apr 2019 05:16:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51474 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726150AbfDYJQC (ORCPT ); Thu, 25 Apr 2019 05:16:02 -0400 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 61C09308CECA; Thu, 25 Apr 2019 09:16:02 +0000 (UTC) Received: from localhost (dhcp-192-187.str.redhat.com [10.33.192.187]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 04CCB10018E0; Thu, 25 Apr 2019 09:16:01 +0000 (UTC) From: Cornelia Huck To: Martin Schwidefsky , Heiko Carstens Cc: Farhan Ali , Eric Farman , Halil Pasic , linux-s390@vger.kernel.org, kvm@vger.kernel.org, Cornelia Huck Subject: [PULL 0/9] vfio-ccw patches for 5.2 Date: Thu, 25 Apr 2019 11:15:50 +0200 Message-Id: <20190425091559.15490-1-cohuck@redhat.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.45]); Thu, 25 Apr 2019 09:16:02 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org The following changes since commit 1c410fd6a561af452aba282b1cd3cabef2080d72: s390/cpum_cf_diag: Add support for CPU-MF SVN 6 (2019-04-23 16:30:06 +0200) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/vfio-ccw.git tags/vfio-ccw-20190425 for you to fetch changes up to d1ffa760d22aa1d8190478e5ef555c59a771db27: vfio-ccw: Prevent quiesce function going into an infinite loop (2019-04-24 14:18:51 +0200) ---------------------------------------------------------------- - support for sending halt/clear requests to the device - various bug fixes ---------------------------------------------------------------- Cornelia Huck (6): vfio-ccw: make it safe to access channel programs vfio-ccw: rework ssch state handling vfio-ccw: protect the I/O region vfio-ccw: add capabilities chain s390/cio: export hsch to modules vfio-ccw: add handling for async channel instructions Farhan Ali (3): vfio-ccw: Do not call flush_workqueue while holding the spinlock vfio-ccw: Release any channel program when releasing/removing vfio-ccw mdev vfio-ccw: Prevent quiesce function going into an infinite loop drivers/s390/cio/Makefile | 3 +- drivers/s390/cio/ioasm.c | 1 + drivers/s390/cio/vfio_ccw_async.c | 88 +++++++++++ drivers/s390/cio/vfio_ccw_cp.c | 21 ++- drivers/s390/cio/vfio_ccw_cp.h | 2 + drivers/s390/cio/vfio_ccw_drv.c | 81 ++++++---- drivers/s390/cio/vfio_ccw_fsm.c | 143 +++++++++++++++++- drivers/s390/cio/vfio_ccw_ops.c | 227 ++++++++++++++++++++++++---- drivers/s390/cio/vfio_ccw_private.h | 48 +++++- include/uapi/linux/vfio.h | 4 + include/uapi/linux/vfio_ccw.h | 12 ++ 11 files changed, 560 insertions(+), 70 deletions(-) create mode 100644 drivers/s390/cio/vfio_ccw_async.c -- 2.17.2