From patchwork Wed Dec 22 15:06:19 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gleb Natapov X-Patchwork-Id: 428001 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oBMF7VsZ014364 for ; Wed, 22 Dec 2010 15:07:33 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753559Ab0LVPHI (ORCPT ); Wed, 22 Dec 2010 10:07:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44833 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752974Ab0LVPGc (ORCPT ); Wed, 22 Dec 2010 10:06:32 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oBMF6Wwv013047 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 22 Dec 2010 10:06:32 -0500 Received: from dhcp-1-237.tlv.redhat.com (dhcp-1-237.tlv.redhat.com [10.35.1.237]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id oBMF6VjL001369; Wed, 22 Dec 2010 10:06:31 -0500 Received: by dhcp-1-237.tlv.redhat.com (Postfix, from userid 13519) id 933B718D3EF; Wed, 22 Dec 2010 17:06:29 +0200 (IST) From: Gleb Natapov To: avi@redhat.com, mtosatti@redhat.com Cc: kvm@vger.kernel.org Subject: [PATCH unit-tests 06/16] Specify correct operand length for ltr and str. Date: Wed, 22 Dec 2010 17:06:19 +0200 Message-Id: <1293030389-1143-7-git-send-email-gleb@redhat.com> In-Reply-To: <1293030389-1143-1-git-send-email-gleb@redhat.com> References: <1293030389-1143-1-git-send-email-gleb@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Wed, 22 Dec 2010 15:07:33 +0000 (UTC) diff --git a/lib/x86/processor.h b/lib/x86/processor.h index c348808..c3ab109 100644 --- a/lib/x86/processor.h +++ b/lib/x86/processor.h @@ -193,13 +193,13 @@ static inline u16 sldt(void) static inline void ltr(unsigned val) { - asm volatile ("ltr %0" : : "rm"(val)); + asm volatile ("ltr %w0" : : "rm"(val)); } static inline u16 str(void) { u16 val; - asm volatile ("str %0" : "=rm"(val)); + asm volatile ("str %w0" : "=rm"(val)); return val; }