From patchwork Mon Apr 11 11:37:53 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?THVrw6HFoSBEb2t0b3I=?= X-Patchwork-Id: 8800261 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 3BA6DC0553 for ; Mon, 11 Apr 2016 11:38:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7172C202E5 for ; Mon, 11 Apr 2016 11:38:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A5E4520148 for ; Mon, 11 Apr 2016 11:38:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754499AbcDKLiP (ORCPT ); Mon, 11 Apr 2016 07:38:15 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41700 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754432AbcDKLiN (ORCPT ); Mon, 11 Apr 2016 07:38:13 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6F1846408A for ; Mon, 11 Apr 2016 11:38:08 +0000 (UTC) Received: from w541.redhat.com (vpn1-6-24.ams2.redhat.com [10.36.6.24]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u3BBc0Y8003791; Mon, 11 Apr 2016 07:38:06 -0400 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= To: ldoktor@redhat.com, kvm@vger.kernel.org, drjones@redhat.com, pbonzini@redhat.com, lvivier@redhat.com Subject: [PATCH 2/2] powerpc: Improve "kvm unavailable" message Date: Mon, 11 Apr 2016 13:37:53 +0200 Message-Id: <1460374673-12492-3-git-send-email-ldoktor@redhat.com> In-Reply-To: <1460374673-12492-1-git-send-email-ldoktor@redhat.com> References: <1460374673-12492-1-git-send-email-ldoktor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Mon, 11 Apr 2016 11:38:08 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Spam-Status: No, score=-7.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The message when ACCEL=kvm and kvm not available is rather confusing. Let's produce (hopefully) easier to understand message. Signed-off-by: Lukáš Doktor --- powerpc/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerpc/run b/powerpc/run index 56698e6..adffb93 100755 --- a/powerpc/run +++ b/powerpc/run @@ -16,7 +16,7 @@ if [ -c /dev/kvm ]; then fi if [ "$ACCEL" = "kvm" ] && [ "$kvm_available" != "yes" ]; then - echo "skip $TESTNAME (kvm only)" + echo "skip $TESTNAME (kvm not available on your system)" exit 2 fi