LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] KVM: 'asm' operand has impossible constraints
@ 2007-01-25 23:40 S.Çağlar Onur
  2007-01-27  9:05 ` Avi Kivity
  0 siblings, 1 reply; 8+ messages in thread
From: S.Çağlar Onur @ 2007-01-25 23:40 UTC (permalink / raw)
  To: lkml; +Cc: Avi Kivity, kvm-devel

[-- Attachment #1: Type: text/plain, Size: 1142 bytes --]

Hi;

-rc6 fails with latest gcc 4.2 snapshot as following;

CC [M]  drivers/kvm/svm.o
drivers/kvm/svm.c:206: warning: 'inject_db' defined but not used
drivers/kvm/svm.c: In function 'svm_vcpu_run':
drivers/kvm/kvm.h:560: error: 'asm' operand has impossible constraints
make[2]: *** [drivers/kvm/svm.o] Error 1
make[1]: *** [drivers/kvm] Error 2
make: *** [drivers] Error 2

And according to this thread http://lkml.org/lkml/2006/11/11/129, solution is 
converting g to rm, patch follows

Signed-off-by: S.Çağlar Onur <caglar@pardus.org.tr>

Index: linux-2.6/drivers/kvm/kvm.h
===================================================================
--- linux-2.6.orig/drivers/kvm/kvm.h	2007-01-26 01:38:35.000000000 +0200
+++ linux-2.6/drivers/kvm/kvm.h	2007-01-26 01:37:48.000000000 +0200
@@ -557,7 +557,7 @@
 #ifndef load_ldt
 static inline void load_ldt(u16 sel)
 {
-	asm ("lldt %0" : : "g"(sel));
+	asm ("lldt %0" : : "rm"(sel));
 }
 #endif


-- 
S.Çağlar Onur <caglar@pardus.org.tr>
http://cekirdek.pardus.org.tr/~caglar/

Linux is like living in a teepee. No Windows, no Gates and an Apache in house!

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-01-28  9:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-25 23:40 [PATCH] KVM: 'asm' operand has impossible constraints S.Çağlar Onur
2007-01-27  9:05 ` Avi Kivity
2007-01-27 16:36   ` Paweł Sikora
2007-01-28  9:41     ` Avi Kivity
2007-01-27 21:28   ` S.Çağlar Onur
2007-01-27 21:46     ` D. Hazelton
2007-01-28  7:55     ` H. Peter Anvin
2007-01-28  9:45     ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).