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 57A62ECAAD5 for ; Tue, 6 Sep 2022 14:40:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229875AbiIFOj5 (ORCPT ); Tue, 6 Sep 2022 10:39:57 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42826 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238597AbiIFOiF (ORCPT ); Tue, 6 Sep 2022 10:38:05 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0BFA182D05 for ; Tue, 6 Sep 2022 07:00:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 705BCB81632 for ; Tue, 6 Sep 2022 13:54:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 862A7C433D6; Tue, 6 Sep 2022 13:54:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1662472455; bh=FSQhRjvX0X+fDqGJPUBo5nA4ZiDXWjwyJovPW0tGWmk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=IWqcgbQb7C+Rxc7SwL5mlfXwC0B+By9QGWM7g/g62oNspiqYfmZLBz3e0GSp9wgUl GE6I/ghx8CfkWQM5ECyQO55x1YClPZzKz/gsCYf4OWcKdVOup+KQCDYzeErvZQnbCH 8O1bon3YRKF5C8FqmJzm2KpeLSjCBneNps15QRTQ= Date: Tue, 6 Sep 2022 15:50:37 +0200 From: Greg Kroah-Hartman To: "Czerwacki, Eial" Cc: "linux-kernel@vger.kernel.org" , "Arsh, Leonid" , "Twaig, Oren" , SAP vSMP Linux Maintainer , Arnd Bergmann , Dan Carpenter , Andra Paraschiv , Borislav Petkov , Brijesh Singh , Eric Biggers , Fei Li , Hans de Goede , Jens Axboe , Mauro Carvalho Chehab Subject: Re: [PATCH v2] drivers/virt/vSMP: new driver Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Aug 25, 2022 at 06:24:02AM +0000, Czerwacki, Eial wrote: > --- /dev/null > +++ b/drivers/virt/vsmp/Kconfig > @@ -0,0 +1,11 @@ > +# SPDX-License-Identifier: GPL-2.0-only > +config VSMP > + tristate "vSMP Guest Support" > + depends on SYS_HYPERVISOR && X86_64 && PCI > + help > + Support for vSMP Guest Driver. > + > + This driver allows information gathering of data from the vSMP hypervisor when > + running on top of a vSMP-based hypervisor. > + > + If unsure, say no. In wanting to test this out, I tried it but this depends line is wrong, you have to set SYS_HYPERVISOR, you can not depend on it otherwise your code will never be selected :( How did you test this? thanks, greg k-h