[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2018-06-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

GitLab Migration User  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |MOVED

--- Comment #8 from GitLab Migration User  ---
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been
closed from further activity.

You can subscribe and participate further through the new bug through this link
to our GitLab instance:
https://gitlab.freedesktop.org/wayland/weston/issues/58.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2018-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

--- Comment #7 from Daniel Stone  ---
(In reply to Artem Chudinov from comment #6)
> Created attachment 118444 [details] [review]
> Hacky patch
> 
> This patch helps me, though I don't even know what is XCB_ALLOC_COLOR_PLANES
> (I am not familiar with the code). I suppose my patch breaks something, but
> I couldn't find what.

XCB_ALLOC_COLOR_PLANES is referring to a request. An event numbered 87 must be
an extension event: if you run xdpyinfo -queryExtensions, you can find out
which extension this would belong to.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2015-09-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

Artem Chudinov  changed:

   What|Removed |Added

 CC||arze...@gmail.com

--- Comment #6 from Artem Chudinov  ---
Created attachment 118444
  --> https://bugs.freedesktop.org/attachment.cgi?id=118444&action=edit
Hacky patch

This patch helps me, though I don't even know what is XCB_ALLOC_COLOR_PLANES (I
am not familiar with the code). I suppose my patch breaks something, but I
couldn't find what.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2015-09-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

--- Comment #5 from Artem Chudinov  ---
In Weston 1.9.0 the steps to reproduce are:
(Optional step) 0. Run in another tty:
sleep 60 && killall -9 Xwayland
(-9 is necessary). It helps to get rid of the lockup.
1. Run `weston` in any X11 environment or run `weston-launch` in a tty.
2. Open any X11 app (firefox, for example).
(Optional step) 3. Close it.
4. Open gnome-terminal (also you can this step before step 2).
5. Select something.
6. Copy the selection using Ctrl+Shift+C or using a context menu.
(Optional step 7). Deselect the selection.
(Optional step 8). Click in the terminal with the right mouse button, select
"Profile" -> "Profile Preferences". Close the popup window, nothing bad should
happen.
9. Either repeat step 6 or just close gnome-terminal.
10. Now keyboard and mouse don't work. Switching to another tty doesn't work.
Process `weston` (or `weston-launch`) slowly increases its CPU usage to 100%
(only 1 thread).

After the recent commit
http://cgit.freedesktop.org/wayland/weston/commit/?id=a1f3f3c9f209be52d19793d36bbda68ca24a714e
the steps to reproduce now are:
1-8 steps are the same.
9. Now you can safely copy & paste a text, and you can safely close
gnome-terminal.
10. Run an X11 app. The same lockup happens immediately.

My weston's log's last messages are the same as for Jonas Heinrich.

The infinite loop is `weston_wm_handle_event`'s `while`:
http://cgit.freedesktop.org/wayland/weston/tree/xwayland/window-manager.c#n1913
The message `xfixes selection notify event: owner 0` is output by
`weston_wm_handle_selection_event` which is called in the loop.

By the way, there is no such issue in sway (i3-compatible window manager for
Wayland, it uses wlc).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2014-10-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

--- Comment #4 from Jonas Heinrich  ---
(In reply to Pekka Paalanen from comment #3)
> Ok, that looks like an infinite loop related to Xwayland.
> 
> Can you reproduce the crash or hang even when you do not let Weston load
> xwayland.so?

You are right, it doesn't crash anymore when I disable Xwayland module.

In some cases copy and paste still does not work. For example copy an URL from
the address bar in Epiphany, the clipboard remains empty if I try to paste it
somewhere else :(

So we need to debug Xwayland module and maybe GTK?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2014-10-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

--- Comment #3 from Pekka Paalanen  ---
Ok, that looks like an infinite loop related to Xwayland.

Can you reproduce the crash or hang even when you do not let Weston load
xwayland.so?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2014-10-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

--- Comment #2 from Jonas Heinrich  ---
Created attachment 108495
  --> https://bugs.freedesktop.org/attachment.cgi?id=108495&action=edit
weston freeze on copy and paste

Thank you for your replay.
It happens to all applications, native and Xwayland ones. And the bug is easy
repeatable.

The log above includes launching Weston and then Epiphany (browser). There I
right click on a link and "copy link address" two times. Always on the secont
try Weston freezes. The last part of the log repeats infinately.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 85475] Copy and paste not working properly + crash

2014-10-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85475

--- Comment #1 from Pekka Paalanen  ---
Could you tell us the usual information as for any bug report:
- Is there a reliable way to always trigger "nothing to paste" or crash? What
are those ways exactly?
- Is Xwayland involved?
- Weston log when it crashes, showing an automatic backtrace?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-bugs