From patchwork Thu Sep 8 18:41:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 75816 Delivered-To: patch@linaro.org Received: by 10.140.106.11 with SMTP id d11csp993258qgf; Thu, 8 Sep 2016 11:41:52 -0700 (PDT) X-Received: by 10.66.85.196 with SMTP id j4mr1971612paz.40.1473360112063; Thu, 08 Sep 2016 11:41:52 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i62si48294373pfi.6.2016.09.08.11.41.51; Thu, 08 Sep 2016 11:41:52 -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 S1759478AbcIHSlI (ORCPT + 27 others); Thu, 8 Sep 2016 14:41:08 -0400 Received: from mail-oi0-f66.google.com ([209.85.218.66]:32955 "EHLO mail-oi0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754410AbcIHSlF (ORCPT ); Thu, 8 Sep 2016 14:41:05 -0400 Received: by mail-oi0-f66.google.com with SMTP id y2so2083502oie.0; Thu, 08 Sep 2016 11:41:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=vsE3LT/DS153YOyCdTk3hOTzbHSNEoy1nzD93oxUmPM=; b=FRofLc3jh5uEhLBsfk6s8q1+KXMl+pEw1zhYDuy1q4hlBBGEN/HDyJSqAsB6TLd4mI 05wzN09ZsMyTxmqNy0Oaqpg4LmfweOEDP5xLQ4R6V/U2vipOZAu2l7/zjBcZo/dk8L+L 3rDtEYJatE/9dWmn7fl/d/26V4ka+RotKlvA0AdyToce+JEjG5wGq3vl0YCpSUh9uEOn 9n+YEs0gVDQnoWqVzY+tY+qI81+WyZTge9E3IMiE44k8+zZcltnLKVtvG7E5P2QuNNe4 VOzr/pIBf4CJ81XAh2MGtiRhWqb3rbBpLfXtDFPlxQhGqBErPWnwJ03TdOuixcvI+z1K A0QA== X-Gm-Message-State: AE9vXwM1ciPSgitWCPonzj98zBIz6wcWnJBIRsC0QQYyq8O7t5PX0zUTPFvKC/mrewCYTg== X-Received: by 10.202.186.65 with SMTP id k62mr1380843oif.143.1473360064278; Thu, 08 Sep 2016 11:41:04 -0700 (PDT) Received: from rob-hp-laptop.herring.priv (72-48-98-129.dyn.grandenetworks.net. [72.48.98.129]) by smtp.googlemail.com with ESMTPSA id h31sm14573170ote.26.2016.09.08.11.41.03 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 08 Sep 2016 11:41:03 -0700 (PDT) From: Rob Herring To: Paolo Bonzini Cc: linux-kernel@vger.kernel.org, x86@kernel.org, Christoffer Dall , Marc Zyngier , =?UTF-8?q?Radim=20Kr=C4=8Dm=C3=A1=C5=99?= , kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org Subject: [PATCH 1/2] config: move x86 kvm_guest.config to a common locaton Date: Thu, 8 Sep 2016 13:41:01 -0500 Message-Id: <20160908184102.8592-1-robh@kernel.org> X-Mailer: git-send-email 2.9.3 MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org kvm_guest.config is useful for KVM guests on other arches, and nothing in it appears to be x86 specific, so just move the whole file. Kbuild will find it in either location. Signed-off-by: Rob Herring Cc: Christoffer Dall Cc: Marc Zyngier Cc: Paolo Bonzini Cc: "Radim Krčmář" Cc: kvmarm@lists.cs.columbia.edu Cc: kvm@vger.kernel.org --- {arch/x86 => kernel}/configs/kvm_guest.config | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {arch/x86 => kernel}/configs/kvm_guest.config (100%) -- 2.9.3 Acked-by: Christoffer Dall diff --git a/arch/x86/configs/kvm_guest.config b/kernel/configs/kvm_guest.config similarity index 100% rename from arch/x86/configs/kvm_guest.config rename to kernel/configs/kvm_guest.config