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=-3.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=no 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 57E25CA9EAF for ; Mon, 21 Oct 2019 17:24:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2CD892077C for ; Mon, 21 Oct 2019 17:24:28 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=shipmail.org header.i=@shipmail.org header.b="Im5uoJFP" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729835AbfJURY0 (ORCPT ); Mon, 21 Oct 2019 13:24:26 -0400 Received: from pio-pvt-msa3.bahnhof.se ([79.136.2.42]:52486 "EHLO pio-pvt-msa3.bahnhof.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729778AbfJURYY (ORCPT ); Mon, 21 Oct 2019 13:24:24 -0400 Received: from localhost (localhost [127.0.0.1]) by pio-pvt-msa3.bahnhof.se (Postfix) with ESMTP id 6E7C63F44D; Mon, 21 Oct 2019 19:24:17 +0200 (CEST) Authentication-Results: pio-pvt-msa3.bahnhof.se; dkim=pass (1024-bit key; unprotected) header.d=shipmail.org header.i=@shipmail.org header.b=Im5uoJFP; dkim-atps=neutral X-Virus-Scanned: Debian amavisd-new at bahnhof.se Received: from pio-pvt-msa3.bahnhof.se ([127.0.0.1]) by localhost (pio-pvt-msa3.bahnhof.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3jkxGiYTO4-O; Mon, 21 Oct 2019 19:24:16 +0200 (CEST) Received: from mail1.shipmail.org (h-205-35.A357.priv.bahnhof.se [155.4.205.35]) (Authenticated sender: mb878879) by pio-pvt-msa3.bahnhof.se (Postfix) with ESMTPA id 046B93F323; Mon, 21 Oct 2019 19:24:14 +0200 (CEST) Received: from localhost.localdomain.localdomain (h-205-35.A357.priv.bahnhof.se [155.4.205.35]) by mail1.shipmail.org (Postfix) with ESMTPSA id 82CF73600C3; Mon, 21 Oct 2019 19:24:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=shipmail.org; s=mail; t=1571678654; bh=FkEEwR2RBpoIJ/NNeMBBtN/WItwtV3/wP0v7WLjagNU=; h=From:To:Cc:Subject:Date:From; b=Im5uoJFPMs+LAvTd2zfuliGzxOTkmmejPHZIFUCR4rTvKdgaYC0kvV/X35VvrbtQw A8xKek3Ts9eZqBHlEu36Us6Cg42qlTfw0F2dBy7j8JYAM6iae26bZ8W7VW25wQ0zCL uibzekm/jORSCwE16cgOP/Gr0rH5PbpFxJzO5tjw= From: =?UTF-8?q?Thomas=20Hellstr=C3=B6m=20=28VMware=29?= To: linux-kernel@vger.kernel.org Cc: Sean Christopherson , Thomas Hellstrom , clang-built-linux@googlegroups.com, "H. Peter Anvin" , Ingo Molnar , Thomas Gleixner , x86-ml , Borislav Petkov Subject: [PATCH v2 0/2] x86/cpu/vmware: Fixes for 5.4 Date: Mon, 21 Oct 2019 19:24:01 +0200 Message-Id: <20191021172403.3085-1-thomas_os@shipmail.org> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Thomas Hellstrom Two fixes for recently introduced regressions: Patch 1 is more or less idential to a previous patch fixing the VMW_PORT macro on LLVM's assembler. However, that patch left out the VMW_HYPERCALL macro (probably not configured for use), so let's fix that also. Patch 2 fixes another VMW_PORT run-time regression at platform detection time v2: - Added an R-B for patch 1 (Nick Desaulniers) - Improved on asm formatting in patch 2 (Sean Christopherson) Cc: clang-built-linux@googlegroups.com Cc: "H. Peter Anvin" Cc: Ingo Molnar Cc: Thomas Gleixner Cc: x86-ml Cc: Borislav Petkov