qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-devel] git bisect results
@ 2012-01-25 11:48 erik.rull
  2012-01-25 14:19 ` Jan Kiszka
  0 siblings, 1 reply; 21+ messages in thread
From: erik.rull @ 2012-01-25 11:48 UTC (permalink / raw)
  To: qemu-devel

Hi Jan,

This little change fixes my problem with the usb-tablet update rate.

Can you please verify if this has some side effects?

If not, can you post a real patch?
I don't know how to handle the whole patching and committing stuff exactly.

Thanks.

Erik

-- 

diff --git a/ui/sdl.c b/ui/sdl.c
index 8cafc44..ecd70db 100644
--- a/ui/sdl.c
+++ b/ui/sdl.c
@@ -769,7 +769,7 @@ static void handle_mousemotion(DisplayState *ds,
SDL_Event *ev)
 {
     int max_x, max_y;

-    if (is_graphic_console() &&
+/*    if (is_graphic_console() &&
         (kbd_mouse_is_absolute() || absolute_enabled)) {
         max_x = real_screen->w - 1;
         max_y = real_screen->h - 1;
@@ -782,7 +782,7 @@ static void handle_mousemotion(DisplayState *ds,
SDL_Event *ev)
             ev->motion.y > 0 && ev->motion.y < max_y)) {
             sdl_grab_start();
         }
-    }
+    }*/
     if (gui_grab || kbd_mouse_is_absolute() || absolute_enabled) {
         sdl_send_mouse_event(ev->motion.xrel, ev->motion.yrel, 0,
                              ev->motion.x, ev->motion.y, ev->motion.state);

^ permalink raw reply related	[flat|nested] 21+ messages in thread
* Re: [Qemu-devel] git bisect results
@ 2012-01-30 11:34 Erik Rull
  2012-01-30 11:52 ` Jan Kiszka
  0 siblings, 1 reply; 21+ messages in thread
From: Erik Rull @ 2012-01-30 11:34 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: qemu-devel

[-- Attachment #1: Type: text/html, Size: 6960 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread
* Re: [Qemu-devel] git bisect results
@ 2012-01-26 13:10 Erik Rull
  2012-01-26 16:24 ` Jan Kiszka
  2012-01-27 22:52 ` Jan Kiszka
  0 siblings, 2 replies; 21+ messages in thread
From: Erik Rull @ 2012-01-26 13:10 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: qemu-devel

[-- Attachment #1: Type: text/html, Size: 27387 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread
* Re: [Qemu-devel] bad USB tablet update rate on qemu-1.0
@ 2012-01-23  8:57 erik.rull
  2012-01-24 17:24 ` [Qemu-devel] git bisect results (was: Re: bad USB tablet update rate on qemu-1.0) Erik Rull
  0 siblings, 1 reply; 21+ messages in thread
From: erik.rull @ 2012-01-23  8:57 UTC (permalink / raw)
  To: qemu-devel

Hi all,

I'm really sorry, but the bisectioning does not work for the versions that
I want to test.

I get a bunch of errors when bisectioning.

e.g. continuosly:
erik@debian:~/qemu-test/qemu-kvm$ make
  CC    x86_64-softmmu/monitor.o
In file included from /home/erik/qemu-test/qemu-kvm/qmp-commands.h:19,
                 from /home/erik/qemu-test/qemu-kvm/monitor.c:3145:
/home/erik/qemu-test/qemu-kvm/qapi-types.h:19:34: error:
qapi/qapi-types-core.h: No such file or directory
In file included from /home/erik/qemu-test/qemu-kvm/qmp-commands.h:19,
                 from /home/erik/qemu-test/qemu-kvm/monitor.c:3145:
/home/erik/qemu-test/qemu-kvm/qapi-types.h:21: error: expected expression
before 'typedef'
make[1]: *** [monitor.o] Error 1

Additionally there seem to be differences between the 1.0 version in git
and the 1.0 version for download - there it compiles... *argh*

Please help.
I tried several git bisect skip but that didn't help.
The commit that was tested is:
Bisecting: a merge base must be tested
[2d2339f995d7176dcb2de10d162aed323a1ffbf3] Merge commit
'f487d6278f75f84378833b8c3a67443346d639dc' into upstream-merge

I thought that only working/compiling stuff gets committed?

Btw. the master does not compile either!

Best regards,

Erik

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

end of thread, other threads:[~2012-01-31  8:32 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-25 11:48 [Qemu-devel] git bisect results erik.rull
2012-01-25 14:19 ` Jan Kiszka
2012-01-25 21:13   ` Erik Rull
  -- strict thread matches above, loose matches on Subject: below --
2012-01-30 11:34 Erik Rull
2012-01-30 11:52 ` Jan Kiszka
2012-01-30 13:17   ` Erik Rull
2012-01-30 13:48     ` Jan Kiszka
2012-01-30 14:17       ` Erik Rull
2012-01-30 14:48         ` Jan Kiszka
2012-01-31  8:31           ` Erik Rull
2012-01-26 13:10 Erik Rull
2012-01-26 16:24 ` Jan Kiszka
2012-01-27 22:52 ` Jan Kiszka
2012-01-28 11:55   ` Jan Kiszka
2012-01-28 12:39     ` Erik Rull
2012-01-28 12:43       ` Jan Kiszka
2012-01-28 13:01         ` Erik Rull
2012-01-28 14:52           ` Jan Kiszka
2012-01-23  8:57 [Qemu-devel] bad USB tablet update rate on qemu-1.0 erik.rull
2012-01-24 17:24 ` [Qemu-devel] git bisect results (was: Re: bad USB tablet update rate on qemu-1.0) Erik Rull
2012-01-24 18:19   ` [Qemu-devel] git bisect results Jan Kiszka
2012-01-24 18:55     ` Erik Rull
2012-01-24 20:15       ` Jan Kiszka

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).