From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 15BF4A0542; Thu, 13 Feb 2020 11:31:53 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E496A1BC25; Thu, 13 Feb 2020 11:31:52 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id A32CC1DB9 for ; Thu, 13 Feb 2020 11:31:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581589909; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=I5wiOppB9p7o2+LrhfLKInqKamtbwe/Y8IWjhwi9gEA=; b=VKK+lJZh0D7qDk5HvbJ0OIMd8mRBwiWCh7+N9t6RqUeX+xEzDhuVKkuajb+jhPefrxh2IJ BLa8BrcZ/dxryuae26BJPrV6VbpK41SuT3L0ymP84OQ4TofT4WsOWyhPlPaRz3ucL2Zkj+ /PlKuxrobHCxPUtsvuBRhZ/WPeAYU8Y= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-83-QR_Qi3wCMVG9zfE8EGDsGw-1; Thu, 13 Feb 2020 05:31:43 -0500 X-MC-Unique: QR_Qi3wCMVG9zfE8EGDsGw-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 4395E1005512; Thu, 13 Feb 2020 10:31:41 +0000 (UTC) Received: from gondolin (ovpn-117-87.ams2.redhat.com [10.36.117.87]) by smtp.corp.redhat.com (Postfix) with ESMTP id D18875C102; Thu, 13 Feb 2020 10:31:36 +0000 (UTC) Date: Thu, 13 Feb 2020 11:31:33 +0100 From: Cornelia Huck To: Alex Williamson Cc: kvm@vger.kernel.org, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, dev@dpdk.org, mtosatti@redhat.com, thomas@monjalon.net, bluca@debian.org, jerinjacobk@gmail.com, bruce.richardson@intel.com Message-ID: <20200213113133.4f562caf.cohuck@redhat.com> In-Reply-To: <158146232551.16827.14170770732904274160.stgit@gimli.home> References: <158145472604.16827.15751375540102298130.stgit@gimli.home> <158146232551.16827.14170770732904274160.stgit@gimli.home> Organization: Red Hat GmbH MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Subject: Re: [dpdk-dev] [PATCH 1/7] vfio: Include optional device match in vfio_device_ops callbacks X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 11 Feb 2020 16:05:25 -0700 Alex Williamson wrote: > Allow bus drivers to provide their own callback to match a device to > the user provided string. > > Signed-off-by: Alex Williamson > --- > drivers/vfio/vfio.c | 20 ++++++++++++++++---- > include/linux/vfio.h | 4 ++++ > 2 files changed, 20 insertions(+), 4 deletions(-) Reviewed-by: Cornelia Huck