Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754196AbcDEFDL (ORCPT ); Tue, 5 Apr 2016 01:03:11 -0400 Received: from mga14.intel.com ([192.55.52.115]:63046 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751553AbcDEFDJ (ORCPT ); Tue, 5 Apr 2016 01:03:09 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,442,1455004800"; d="scan'208";a="951768625" Subject: Re: [PATCH char-misc-linus] misc: mic: Fix randconfig build error From: Sudeep Dutt To: Greg Kroah-Hartman Cc: Sudeep Dutt , linux-kernel@vger.kernel.org, Ashutosh Dixit , Fengguang Wu In-Reply-To: <20160405044104.GA28647@kroah.com> References: <64ac4a1e3938ba5d3db01ac79d7bbc989f9001d3.1459745276.git.sudeep.dutt@intel.com> <20160405044104.GA28647@kroah.com> Content-Type: text/plain; charset="UTF-8" Date: Mon, 04 Apr 2016 22:00:23 -0700 Message-ID: <1459832423.44796.4.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 (2.28.3-30.el6) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1133 Lines: 33 On Mon, 2016-04-04 at 21:41 -0700, Greg Kroah-Hartman wrote: > On Mon, Apr 04, 2016 at 09:32:30PM -0700, Sudeep Dutt wrote: > > Fixes randconfig build error reported at > > https://lkml.org/lkml/2016/4/3/135 by ensuring that > > the VOP driver selects VIRTIO. > > > > Reported-by: Fengguang Wu > > Reviewed-by: Ashutosh Dixit > > Signed-off-by: Sudeep Dutt > > --- > > drivers/misc/mic/Kconfig | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/drivers/misc/mic/Kconfig b/drivers/misc/mic/Kconfig > > index 2e4f3ba..89e5917 100644 > > --- a/drivers/misc/mic/Kconfig > > +++ b/drivers/misc/mic/Kconfig > > @@ -132,6 +132,7 @@ config VOP > > tristate "VOP Driver" > > depends on 64BIT && PCI && X86 && VOP_BUS > > select VHOST_RING > > + select VIRTIO > > Shouldn't it depend on this instead? Hi Greg, The documentation for "config VIRTIO" states that "This option is selected by any driver which implements the virtio bus". I verified that this patch fixes the build for the randconfig which was failing earlier. Thanks, Sudeep Dutt