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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C149DC433F5 for ; Thu, 28 Apr 2022 09:17:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233093AbiD1JRP (ORCPT ); Thu, 28 Apr 2022 05:17:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50142 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344880AbiD1JLU (ORCPT ); Thu, 28 Apr 2022 05:11:20 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id D282D69CED for ; Thu, 28 Apr 2022 02:08:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1651136881; 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: in-reply-to:in-reply-to:references:references; bh=5XKqEEIr9kJBptfBVef+dHOuVb/hhsd6Gokxzb68HiE=; b=dzHO3O8r5SWfSKgJbjKMpFaKkvruxdrCurwU24mVpM0F7lp5nUjcFMUqfI2WYP5XI1Xr4M AeHsy0BdZEl59+gw9WJiyNHkgwVT8RDYZFQOGAxwGCgqxzAXnxdIfd+Gd6sPXOEEpzbXKM D3acCKEHvu4LufFUkzudS7SzKAC8ats= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-627-kOlSZFeDPvazKU6UZIQyVA-1; Thu, 28 Apr 2022 05:07:50 -0400 X-MC-Unique: kOlSZFeDPvazKU6UZIQyVA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 313BE1C05AAE; Thu, 28 Apr 2022 09:07:50 +0000 (UTC) Received: from localhost (unknown [10.39.193.199]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6DA45C2811E; Thu, 28 Apr 2022 09:07:49 +0000 (UTC) From: Cornelia Huck To: Jason Wang , jasowang@redhat.com, mst@redhat.com, linux-kernel@vger.kernel.org, virtualization@lists.linux-foundation.org Cc: sgarzare@redhat.com, eperezma@redhat.com, lulu@redhat.com, tglx@linutronix.de, peterz@infradead.org, paulmck@kernel.org, maz@kernel.org, pasic@linux.ibm.com Subject: Re: [PATCH V3 2/9] virtio: use virtio_reset_device() when possible In-Reply-To: <20220425024418.8415-3-jasowang@redhat.com> Organization: Red Hat GmbH References: <20220425024418.8415-1-jasowang@redhat.com> <20220425024418.8415-3-jasowang@redhat.com> User-Agent: Notmuch/0.34 (https://notmuchmail.org) Date: Thu, 28 Apr 2022 11:07:46 +0200 Message-ID: <87tuadlgnx.fsf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain X-Scanned-By: MIMEDefang 2.85 on 10.11.54.8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Apr 25 2022, Jason Wang wrote: > This allows us to do common extension without duplicating code. > > Cc: Thomas Gleixner > Cc: Peter Zijlstra > Cc: "Paul E. McKenney" > Cc: Marc Zyngier > Cc: Halil Pasic > Cc: Cornelia Huck > Signed-off-by: Jason Wang > --- > drivers/virtio/virtio.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Cornelia Huck