Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp1542781ybb; Thu, 26 Mar 2020 02:46:35 -0700 (PDT) X-Google-Smtp-Source: ADFU+vt/3oNMIl6yB/6fCFVCXtIavb3nMGshK/kpj2PVUH1HDG2w17L8LPxKPhzQ9b0Ysd7dsKqW X-Received: by 2002:aca:d44d:: with SMTP id l74mr1200135oig.83.1585215995799; Thu, 26 Mar 2020 02:46:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585215995; cv=none; d=google.com; s=arc-20160816; b=wydt60NnVIz93hbtaBbNu33g6/zF3Fsb13NAwf9dFw856/ZV19TElJnBziNWAvhYLn RVJbgnzlFgDT/7V9N/Sx9Ve52OyP/cW2PyEQ2XBSQrOuP7Hy9+gwnkY20EQosj/gfoQu S5mxu37CJm8KbZVQRwMlONCAzspPqJ6eSSql6wpcHzQZAdCIeI+K1/zHxEHOKKpqp8Mt 2+GwvorG3aCfN70V4jb8YRHhtsIQpmZJxekqbQBSOhorqNjTdczR9FBwraGtXAqGPiLs f/Reb/vZbhFZFb/okAUpl6n46a8xx78Znbr+KTupNymfpYKk0L2hfd256RVnqS1X6Y5I 50hQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=cjMX4YP+gOh98dRHNW8C8iItVIK0wLlhpVbmSnZfxWk=; b=WkyGCyNJc5mkbUpnqkMzsLFjEaESJbyVrJuaHUjj/VZA7+8K/3nhznKRYWbf6HVZ78 H6Tj72GO5c9q0YqzNIWBTmwVZLQf9i/l18XayY8oBVQtw7tsklgNJK1VD0MkK8QjRoht kThTn8/CvuFab+Xgfjwl/ihGew2GkTIXfYd8qk3vp4XTCH2Erhaf0oZWo17wXqkrh3uP HElyGVbH3L3fjULy9UXVrSvljO+OIH7gZsgMXp9TYL5nkKfOhhS63CB4XjS4qvEEzI3T 0ilH+bMFKKQR8lU5rQi1dfefekljZAgOjWytGEljbaU1pwrtN7tsO7accQ1m/vIPLjVx wyag== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p21si893703oto.4.2020.03.26.02.46.23; Thu, 26 Mar 2020 02:46:35 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727924AbgCZJqF (ORCPT + 99 others); Thu, 26 Mar 2020 05:46:05 -0400 Received: from verein.lst.de ([213.95.11.211]:44801 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727729AbgCZJqF (ORCPT ); Thu, 26 Mar 2020 05:46:05 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 4D22668BFE; Thu, 26 Mar 2020 10:46:02 +0100 (CET) Date: Thu, 26 Mar 2020 10:46:02 +0100 From: Christoph Hellwig To: Bartlomiej Zolnierkiewicz Cc: Jens Axboe , Michael Schmitz , Geert Uytterhoeven , Christoph Hellwig , linux-ide@vger.kernel.org, linux-m68k@lists.linux-m68k.org, linux-kernel@vger.kernel.org, "James E.J. Bottomley" , "Martin K . Petersen" Subject: Re: [PATCH v4 03/27] ata: make SATA_PMP option selectable only if any SATA host driver is enabled Message-ID: <20200326094602.GB9596@lst.de> References: <20200317144333.2904-1-b.zolnierkie@samsung.com> <20200317144333.2904-4-b.zolnierkie@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200317144333.2904-4-b.zolnierkie@samsung.com> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Mar 17, 2020 at 03:43:09PM +0100, Bartlomiej Zolnierkiewicz wrote: > There is no reason to expose SATA_PMP config option when no SATA > host drivers are enabled. To fix it add SATA_HOST config option, > make all SATA host drivers select it and finally make SATA_PMP > config options depend on it. > > This also serves as preparation for the future changes which > optimize libata core code size on PATA only setups. > > CC: "James E.J. Bottomley" > Reviewed-by: Martin K. Petersen # for SCSI bits > Signed-off-by: Bartlomiej Zolnierkiewicz Looks good, Reviewed-by: Christoph Hellwig