[Ubuntu-x-swat] [Bug 1245245] Re: MMIO write FAULT

2017-12-12 Thread liang
I'm using ubuntu 16.04. This bug also affects me. The machine can only
start to emergency mode because of this bug.

Error:
[Hardware Error] nouveau bus: MMIO write of xx FAULT

** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: Expired => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1245245

Title:
  MMIO write FAULT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1245245/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1245245] Re: MMIO write FAULT

2017-12-12 Thread liang
Attached my error screenshot

** Attachment added: "Error screenshot"
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1245245/+attachment/5021706/+files/IMG_20171212_211139.jpg

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1245245

Title:
  MMIO write FAULT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1245245/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 1245245] Re: MMIO write FAULT

2017-12-14 Thread liang
After a clean reinstall, the boot is successful, though all program is
gone after clean install. If ubuntu has a repair function like windows
does, it'd be easier. Though it's fine for me now.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1245245

Title:
  MMIO write FAULT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1245245/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 312756] Re: support graphics card hot switch

2010-01-19 Thread Liang
Hi,

It is a sony-vaio-vgn-z57g.


** Attachment added: "DSDT.dsl"
   http://launchpadlibrarian.net/38109118/DSDT.dsl

-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] [NEW] XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

2024-10-09 Thread Liang Qi
Public bug reported:

XWarpPointer doesn't work in GNOME 46(regression from 42)

Affected version
* Ubuntu 24.04.1 GNOME X11 arm64 vm in UTM(via QEMU) on Apple Silicon M3 
Max(macOS 14.6.1)
* GNOME 46.2
* Xorg


Bug summary
XWarpPointer doesn't work

Steps to reproduce
Example code:

{code}
#include 
#include 
#include 
#include 
#include 

int main(int argc, char *argv[]){
//Get system window
Display *dpy;
Window root_window;
int x,y;

dpy = XOpenDisplay(0);
root_window = XRootWindow(dpy, 0);
XSelectInput(dpy, root_window, KeyReleaseMask);

for (x=0,y=0; y<768; x+=100,y+=100) {
sleep(1);
printf("XWarpPointer(): x=%5d, y=%5d\n", x, y);
XWarpPointer(dpy, None, root_window, 0, 0, 0, 0, x, y);
XFlush(dpy);
   //XSync(dpy, False); <-- no difference 
}

return 0;
}
{code}


* Compile it, "gcc $(pkg-config x11 --cflags) main.c -o test $(pkg-config x11 
--libs)"
* Run it

The pointer is not moving.

Which is different with my Ubuntu 22.04 GNOME X11(42.9)

The code is from 
https://lists.freedesktop.org/archives/xorg/2013-January/055324.html .
We (Qt Project) is planning to use Ubuntu 24.04 X11 in our CI to replace the 
current Ubuntu 22.04 X11. And we have Ubuntu 24.04 X11 x64 in our CI currently, 
which has same situation like my local vm.
See also
https://bugreports.qt.io/browse/QTQAINFRA-6322 Add Ubuntu 24.04 x64 to Qt 6.9 
(dev)
https://bugreports.qt.io/browse/QTBUG-129567 
tst_QWidget_window::tst_dnd_events() timeout on Ubuntu 24.04 GNOME X11
https://gitlab.gnome.org/GNOME/mutter/-/issues/3736 XWarpPointer doesn't work 
in GNOME 46(regression from 42)

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

2024-10-09 Thread Liang Qi
Tried on a real Ubuntu 24.04.1 laptop, the xlib example code with
XWarpPointer works. Perhaps it's only an issue in vm.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

2024-10-10 Thread Liang Qi
> journalctl -b0 /usr/lib/xorg/Xorg > xorglog.txt

xorglog.txt in attatchment

** Attachment added: "xorglog.txt"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/2084090/+attachment/5826689/+files/xorglog.txt

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

2024-10-10 Thread Liang Qi
$ xinput list
⎡ Virtual core pointer  id=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
⎜   ↳ QEMU QEMU USB Tablet  id=7[slave  pointer  (2)]
⎜   ↳ QEMU QEMU USB Mouse   id=8[slave  pointer  (2)]
⎜   ↳ spice vdagent tablet  id=10   [slave  pointer  (2)]
⎣ Virtual core keyboard id=3[master keyboard (2)]
↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
↳ Power Button  id=6[slave  keyboard (3)]
↳ QEMU QEMU USB Keyboardid=9[slave  keyboard (3)]

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work in virtual machines (anymore)

2024-10-10 Thread Liang Qi
Here is the output from u2204 x64 x11 vm in our CI.

cat xinput-list-u2204-ci.txt   
⎡ Virtual core pointer  id=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
⎜   ↳ VirtualPS/2 VMware VMMouseid=8[slave  pointer  (2)]
⎜   ↳ VirtualPS/2 VMware VMMouseid=9[slave  pointer  (2)]
⎣ Virtual core keyboard id=3[master keyboard (2)]
↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
↳ Power Button  id=6[slave  keyboard (3)]
↳ AT Translated Set 2 keyboard  id=7[slave  keyboard (3)]

** Attachment added: "xorglog-u2204-ci.txt"
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-vmware/+bug/2084090/+attachment/5826701/+files/xorglog-u2204-ci.txt

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-vmware in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work in virtual machines (anymore)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-libinput/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work in virtual machines (anymore)

2024-10-10 Thread Liang Qi
Sorry, it looks like XWarpPointer example works in u2404 x64 x11 vm in
our CI, but not my local one, it should be related with tablet device
then.

We need to dig more why our tests failed in CI, thanks a lot for your
quick help and guide.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-vmware in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work in virtual machines (anymore)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-libinput/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

2024-10-10 Thread Liang Qi
The previous output of xorglog.txt and "xinput list" are from my local
vm, which in UTM(QEMU), which I can't edit the settings,
https://github.com/utmapp/UTM/issues/5713 .

Checked in our u2404 x64 x11 vm in our CI, there is no tablet device.

cat xinput-list-output-ci.txt 
⎡ Virtual core pointer  id=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
⎜   ↳ VirtualPS/2 VMware VMMouseid=8[slave  pointer  (2)]
⎜   ↳ VirtualPS/2 VMware VMMouseid=9[slave  pointer  (2)]
⎣ Virtual core keyboard id=3[master keyboard (2)]
↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
↳ Power Button  id=6[slave  keyboard (3)]
↳ AT Translated Set 2 keyboard  id=7[slave  keyboard (3)]

** Bug watch added: github.com/utmapp/UTM/issues #5713
   https://github.com/utmapp/UTM/issues/5713

** Attachment added: "xorglog-ci.txt"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/2084090/+attachment/5826698/+files/xorglog-ci.txt

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2084090] Re: XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

2024-10-10 Thread Liang Qi
How to check the "relative" mode thing and change it? Thanks a lot for
the quick guide.

We are working on it to change the option in our CI.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libx11 in Ubuntu.
https://bugs.launchpad.net/bugs/2084090

Title:
  XWarpPointer doesn't work on Ubuntu 24.04 GNOME X11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/2084090/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2078702] [NEW] system update error

2024-09-02 Thread shi xiao liang
Public bug reported:

system update error

** Affects: libvdpau (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libvdpau in Ubuntu.
https://bugs.launchpad.net/bugs/2078702

Title:
  system update error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvdpau/+bug/2078702/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 2078701] [NEW] package libvdpau1:amd64 (not installed) failed to install/upgrade: 依赖问题 - 不会执行卸载

2024-09-02 Thread shi xiao liang
Public bug reported:

it pops up in system update.

ProblemType: Package
DistroRelease: Ubuntu 24.04
Package: libvdpau1:amd64 (not installed)
ProcVersionSignature: Ubuntu 6.8.0-41.41-generic 6.8.12
Uname: Linux 6.8.0-41-generic x86_64
ApportVersion: 2.28.1-0ubuntu3.1
Architecture: amd64
CasperMD5CheckResult: pass
CompositorRunning: None
Date: Mon Sep  2 21:08:33 2024
DistUpgraded: 2024-09-02 21:09:11,418 DEBUG migrateToDeb822Sources()
DistroCodename: noble
DistroVariant: ubuntu
ErrorMessage: 依赖问题 - 不会执行卸载
GraphicsCard:
 Intel Corporation HD Graphics 620 [8086:5916] (rev 02) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo HD Graphics 620 [17aa:5062]
InstallationDate: Installed on 2023-04-24 (497 days ago)
InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bluetooth wireless interface
 Bus 001 Device 003: ID 04f2:b5ab Chicony Electronics Co., Ltd Integrated Camera
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
MachineType: LENOVO 20HMS0RQ0N
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.8.0-41-generic 
root=UUID=e591e4b9-3e8e-441f-bcff-be4420315299 ro quiet splash vt.handoff=7
Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 
3.12.3-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.22.6ubuntu6.1
 apt  2.7.14build2
SourcePackage: libvdpau
Title: package libvdpau1:amd64 (not installed) failed to install/upgrade: 依赖问题 
- 不会执行卸载
UpgradeStatus: Upgraded to noble on 2024-09-02 (0 days ago)
dmi.bios.date: 11/08/2023
dmi.bios.release: 1.50
dmi.bios.vendor: LENOVO
dmi.bios.version: R0IET72W (1.50 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20HMS0RQ0N
dmi.board.vendor: LENOVO
dmi.board.version: Not Defined
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.ec.firmware.release: 1.18
dmi.modalias: 
dmi:bvnLENOVO:bvrR0IET72W(1.50):bd11/08/2023:br1.50:efr1.18:svnLENOVO:pn20HMS0RQ0N:pvrThinkPadX270:rvnLENOVO:rn20HMS0RQ0N:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20HM_BU_Think_FM_ThinkPadX270:
dmi.product.family: ThinkPad X270
dmi.product.name: 20HMS0RQ0N
dmi.product.sku: LENOVO_MT_20HM_BU_Think_FM_ThinkPad X270
dmi.product.version: ThinkPad X270
dmi.sys.vendor: LENOVO
mtime.conffile..etc.init.d.apport: 2024-07-22T22:59:07
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.120-2build1
version.libgl1-mesa-dri: libgl1-mesa-dri 24.0.9-0ubuntu0.1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:21.1.12-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:22.0.0-1build1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1build1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-2build1

** Affects: libvdpau (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package noble ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to libvdpau in Ubuntu.
https://bugs.launchpad.net/bugs/2078701

Title:
  package libvdpau1:amd64 (not installed) failed to install/upgrade:
  依赖问题 - 不会执行卸载

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvdpau/+bug/2078701/+subscriptions


___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp