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 X-Spam-Level: X-Spam-Status: No, score=-11.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,NICE_REPLY_A,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C53FEC433E6 for ; Fri, 28 Aug 2020 04:56:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9038520848 for ; Fri, 28 Aug 2020 04:56:52 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="bm/Co99d" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725849AbgH1E4v (ORCPT ); Fri, 28 Aug 2020 00:56:51 -0400 Received: from us-smtp-delivery-124.mimecast.com ([63.128.21.124]:59436 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725536AbgH1E4v (ORCPT ); Fri, 28 Aug 2020 00:56:51 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1598590609; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=jncSHQoKRJQUl+Iue8NOYzNUrAMhEPrX7a7C+0ZDdRY=; b=bm/Co99dAfzfrzQQ1IlajXLHjBs/e7XYrR1FZQbXPJI3M5yPU0riCjDmFW6YMZaIb4UVJJ 1BPLc3xf1p2Hck440ixXvheRscZalmhyvDqBOx0AvZ0ksEJgEnNsNxCNlh05vdnWayhcSI voiHs33LfilC2eOWSlklf25es6zZNp0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-336-iwf17U__OwaM-VxRKfYzeA-1; Fri, 28 Aug 2020 00:56:45 -0400 X-MC-Unique: iwf17U__OwaM-VxRKfYzeA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 47F251005E5D; Fri, 28 Aug 2020 04:56:44 +0000 (UTC) Received: from thuth.remote.csb (ovpn-112-79.ams2.redhat.com [10.36.112.79]) by smtp.corp.redhat.com (Postfix) with ESMTP id CDC9560BA7; Fri, 28 Aug 2020 04:56:42 +0000 (UTC) Subject: Re: [kvm-unit-tests PATCH 4/7] lib: Bundle debugreg.h from the kernel To: Roman Bolshakov , kvm@vger.kernel.org Cc: Jim Mattson , Peter Shier , Paolo Bonzini , Cameron Esfahani References: <20200810130618.16066-1-r.bolshakov@yadro.com> <20200810130618.16066-5-r.bolshakov@yadro.com> From: Thomas Huth Message-ID: Date: Fri, 28 Aug 2020 06:56:41 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.6.0 MIME-Version: 1.0 In-Reply-To: <20200810130618.16066-5-r.bolshakov@yadro.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On 10/08/2020 15.06, Roman Bolshakov wrote: > x86/vmx_tests.c depends on the kernel header and can't be compiled > otherwise on x86_64-elf gcc on macOS. > > Cc: Jim Mattson > Cc: Peter Shier > Cc: Paolo Bonzini > Cc: Cameron Esfahani > Signed-off-by: Roman Bolshakov > --- > lib/x86/asm/debugreg.h | 81 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 81 insertions(+) > create mode 100644 lib/x86/asm/debugreg.h Reviewed-by: Thomas Huth