[Bug 2064184] Re: sdhci_of_dwcmshc: sync up "disable PM runtime in dwcmshc_remove()" from upstream

2024-06-04 Thread Liming Sun
** Tags removed: verification-needed-jammy-linux-bluefield
** Tags added: verification-done-jammy-linux-bluefield

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

Title:
  sdhci_of_dwcmshc: sync up "disable PM runtime in dwcmshc_remove()"
  from upstream

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/2064184/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064184] [NEW] sdhci_of_dwcmshc: sync up "disable PM runtime in dwcmshc_remove()" from upstream

2024-04-29 Thread Liming Sun
Public bug reported:

SRU Justification:

[Impact]
It shouldn't affect normal functionalities. With this fix, it'll remove a 
warning when unloading and loading the sdhci_of_dwcmshc kernel driver.

[Fix]
The fix unload the runtime PM when unloading the sdhci_of_dwcmshc driver.

[Test Case]
Normal regression;
Unload and load sdhci_of_dwcmshc.ko again.

[Regression Potential]
Same behavior from user perspective.

** Affects: linux-bluefield (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  sdhci_of_dwcmshc: sync up "disable PM runtime in dwcmshc_remove()"
  from upstream

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/2064184/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1927263] [NEW] mlx-bootctl: rshim logging display from linux sysfs

2021-05-05 Thread Liming Sun
Public bug reported:

This one is opened to track the merge of the mlx-bootctl driver fix to
support rshim logging display from linux sysfs.

SRU Justification:

[Impact]
* N/A.

[Fix]
* Add support to display rshim logging bufferthe check properly to make sure 
the buffer won't wrap-around.

[Test Case]
* cat /sys/bus/platform/drivers/mlx-bootctl/rsh_log. 
  Example:
  cat /sys/bus/platform/drivers/mlx-bootctl/rsh_log
   INFO[BL2]: start
   INFO[BL2]: DDR POST passed
   INFO[BL2]: UEFI loaded
   INFO[BL31]: start
   INFO[BL31]: runtime
   ...

[Regression Potential]
* SQA has regressioned the driver with this change and didn't find any new 
issues.

[Other]
* N/A

** Affects: linux-bluefield (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  mlx-bootctl: rshim logging display from linux sysfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/1927263/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1927262] [NEW] tmfifo: Fix a memory barrier issue

2021-05-05 Thread Liming Sun
Public bug reported:

This one is used to track a code merge of the tmfifo driver.

SRU Justification:

[Impact]
* The virtio framework uses wmb() when updating avail->idx. It guarantees the 
write order, but not necessarily loading order for the code accessing the 
memory. So potentially it could cause traffic stuck which has been observed in 
the field.

[Fix]
* This commit adds a load barrier after reading the avail->idx to make sure all 
the data in the descriptor is visible. It also adds a barrier when returning 
the packet to virtio framework to make sure read/writes are visible to the 
virtio code.

[Test Case]
* Just normal test. This change doesn't affect any functionality.

[Regression Potential]
* SQA team has been running test with this fix for quite some time (several 
months). No issue as observed.

[Other]
* N/A

** Affects: linux-bluefield (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  tmfifo: Fix a memory barrier issue

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/1927262/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1927253] [NEW] mlxbf-tmfifo: Add ctrl message and MAC configuration

2021-05-05 Thread Liming Sun
Public bug reported:

THis one is created to track the commit merge of the mlxbf-tmfifo driver
to support ctrl message and MAC configuration.

SRU Justification:

[Impact]
* N/A.

[Fix]
* N/A.

[Test Case]
* Set DISPLAY_LEVEL to 1 in /dev/rshim0/misc and do 'cat /dev/rshim0/misc' from 
external rshim driver. 
  The rshim MAC address will show up.
# cat /dev/rshim0/misc
DISPLAY_LEVEL   1 (0:basic, 1:advanced, 2:log)
BOOT_MODE   1 (0:rshim, 1:emmc, 2:emmc-boot-swap)
BOOT_TIMEOUT100 (seconds)
DROP_MODE   0 (0:normal, 1:drop)
SW_RESET0 (1: reset)
DEV_NAMEusb-1-1.1
DEV_INFOBlueField-2(Rev 0)
OPN_STR MBF2M516A-EEEO
BOOT_RESET_SKIP 0 (1: skip)
PEER_MAC00:1a:ca:ff:ff:01 (rw)
PXE_ID  0x (rw)
VLAN_ID 0 0 (rw)
* echo "PEER_MACxx:xx:xx:xx:xx:xx" > /dev/rshim0/misc to modify the MAC 
address, which will take effect in next boot.

[Regression Potential]
* This is a new enhancement and is backward-compatible with previous behavior.

[Other]
* N/A

** Affects: linux-bluefield (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  mlxbf-tmfifo: Add ctrl message and MAC configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/1927253/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1927164] [NEW] An unresolvable problem occurred while calculating the upgrade.

2021-05-04 Thread Liming
Public bug reported:

Unable to upgrade Ubuntu 18.04 to 20.04

Calculating the changes

Calculating the changes

Could not calculate the upgrade

An unresolvable problem occurred while calculating the upgrade.

If none of this applies, then please report this bug using the 
command 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal. If 
you want to investigate this yourself the log files in 
'/var/log/dist-upgrade' will contain details about the upgrade. 
Specifically, look at 'main.log' and 'apt.log'.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.44
ProcVersionSignature: Ubuntu 4.15.0-142.146-generic 4.15.18
Uname: Linux 4.15.0-142-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Tue May  4 17:45:57 2021
InstallationDate: Installed on 2018-11-09 (907 days ago)
InstallationMedia: Ubuntu 16.04.5 LTS "Xenial Xerus" - Release amd64 (20180731)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-05-04 (0 days ago)
VarLogDistupgradeTermlog:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic dist-upgrade

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

Title:
  An unresolvable problem occurred while calculating the upgrade.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1927164/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1919847] Re: rshim logging buffer could overflow and get lost

2021-03-26 Thread Liming Sun
Verified that the same fix has been available in the master-next branch.

** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

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

Title:
  rshim logging buffer could overflow and get lost

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/1919847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1919847] Re: rshim logging buffer could overflow and get lost

2021-03-18 Thread Liming Sun
** Description changed:

  On Bluefield platforms, the 'bfrshlog' script can be used to write a
  string into the internal rshim logging buffer which has size 1KB. When
  the buffer is full, the intention is to drop the new data. However, due
  to a bug, the buffer could be overwritten and wrap-around when full.
  
  SRU Justification:
  
  [Impact]
- * When 'cat /dev/rshim/misc' with DISPLAY_LEVEL set to 2, the logging buffer 
could be potentially displayed as empty when it's full.
+ * When 'cat /dev/rshim0/misc' with DISPLAY_LEVEL set to 2, the logging buffer 
could be potentially displayed as empty when it's full.
  
  [Fix]
  * Add the check properly to make sure the buffer won't wrap-around.
  
  [Test Case]
- * Run "bfrshlog " repeatedly and check the /dev/rshim/misc with 
DISPLAY_LEVEL set to 2 in this file. The buffer shouldn't be overwritten or 
wrap-around.
- 
+ * Run "bfrshlog " repeatedly and check the /dev/rshim0/misc 
with DISPLAY_LEVEL set to 2 in this file. The buffer shouldn't be overwritten 
or wrap-around.
  
  [Regression Potential]
- * Yes, it should be easy to add regression.
+ * The rshim log can be displayed by setting "DISPLAY_LEVEL 2" in 
/dev/rshim0/misc, then "cat /dev/rshim0/misc" to see the log messages. The log 
should contains ATF/UEFI booting progress and user logs from Linux applications 
by using the bfrshlog script. In any case, the log should always start from ATF 
logging, not overwritten or wrap-around. When the buffer is full, new data will 
be dropped.
  
  [Other]
  * N/A

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

Title:
  rshim logging buffer could overflow and get lost

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/1919847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1919847] [NEW] rshim logging buffer could overflow and get lost

2021-03-17 Thread Liming Sun
Public bug reported:

On Bluefield platforms, the 'bfrshlog' script can be used to write a
string into the internal rshim logging buffer which has size 1KB. When
the buffer is full, the intention is to drop the new data. However, due
to a bug, the buffer could be overwritten and wrap-around when full.

SRU Justification:

[Impact]
* When 'cat /dev/rshim/misc' with DISPLAY_LEVEL set to 2, the logging buffer 
could be potentially displayed as empty when it's full.

[Fix]
* Add the check properly to make sure the buffer won't wrap-around.

[Test Case]
* Run "bfrshlog " repeatedly and check the /dev/rshim/misc with 
DISPLAY_LEVEL set to 2 in this file. The buffer shouldn't be overwritten or 
wrap-around.


[Regression Potential]
* Yes, it should be easy to add regression.

[Other]
* N/A

** Affects: linux-bluefield (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  rshim logging buffer could overflow and get lost

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-bluefield/+bug/1919847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1371372] Re: Support for Lenovo new TrackPad (ClickPad)

2017-04-12 Thread Liming Wang
** Changed in: hwe-next
 Assignee: Liming Wang (wangliming) => (unassigned)

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  Support for Lenovo new TrackPad (ClickPad)

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1371372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1133168] Re: can't adjust brightness via hotkeys(Fn+F6/F6)

2017-04-12 Thread Liming Wang
** Changed in: linux (Ubuntu)
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  can't adjust brightness via hotkeys(Fn+F6/F6)

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1433987] Re: [Realtek 0bda:b728] Bluetooth is useless after installed 14.04.2

2017-04-12 Thread Liming Wang
** Changed in: hwe-next
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  [Realtek 0bda:b728] Bluetooth is useless after installed 14.04.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1433987/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358704] Re: Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would change after powered off for a while

2017-04-12 Thread Liming Wang
** Changed in: linux (Ubuntu)
 Assignee: Liming Wang (wangliming) => (unassigned)

** Changed in: hwe-next
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would
  change after powered off for a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1378725] Re: [Dell Precision M4800] Wifi slider does not work

2017-04-12 Thread Liming Wang
** Changed in: linux (Ubuntu)
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  [Dell Precision M4800] Wifi slider does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1378725/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1341988] Re: [Dell Inspiron 11 - 3147] Brightness control does not work on this system

2017-04-12 Thread Liming Wang
** Changed in: linux (Ubuntu)
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  [Dell Inspiron 11 - 3147] Brightness control does not work on this
  system

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313830] Re: [Lenovo ThinkPad X230] LCD Backlight dims completely when disconnecting external monitor

2017-04-12 Thread Liming Wang
** Changed in: linux (Ubuntu Trusty)
 Assignee: Liming Wang (wangliming) => (unassigned)

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

Title:
  [Lenovo ThinkPad X230] LCD Backlight dims completely when
  disconnecting external monitor

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1451357] Re: [Lenovo SazanW-2] system got hang and screen became black after execute upgrade under 14.04.2

2015-08-09 Thread Liming Wang
** Changed in: hwe-next
   Status: New = Triaged

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

Title:
  [Lenovo SazanW-2] system got hang and screen became black after
  execute upgrade under 14.04.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1451357/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358704] Re: Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would change after powered off for a while

2015-08-07 Thread Liming Wang
** Changed in: linux-lts-trusty (Ubuntu)
   Status: New = Triaged

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

Title:
  Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would
  change after powered off for a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1464490] [NEW] Elan new touchpad recognized as a mouse and doesn't work

2015-06-11 Thread Liming Wang
Public bug reported:

Elan new touchpad recognized as a mouse, here is the steps to reproduce
the bug:

Steps: 1. try scrolling with touchpad

Expected results: Touchpad features such as scrolling should be
supported

Actual results: Touchpad features such as scrolling are not supported

Actually we need add new icbody type to fix the bug, and mainline kernel has 
the fix, commit is:
692dd1916436164e228608803dfb6cb768d6355a

** Affects: linux-lts-trusty (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Elan new touchpad recognized as a mouse and doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-trusty/+bug/1464490/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1454938] Re: [Lenovo T450] BT devices connected successfully 1 minute later, it will disconnect automatically. [8087:0a2a] -- 14.04.2

2015-06-09 Thread Liming Wang
Maybe after updating BIOS, the issue is fixed. So we mark it as won't
fix.

** Changed in: hwe-next
   Status: New = Won't Fix

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

Title:
  [Lenovo T450] BT devices connected successfully 1 minute later, it
  will disconnect automatically. [8087:0a2a] -- 14.04.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1454938/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358704] Re: Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would change after powered off for a while

2015-06-02 Thread Liming Wang
@Po-Hsu Lin

Does with adapter connected mean connecting cable to network card? If yes, so
In your #10 comment, I concluded that:
1. with adapter connected, the mac address is valid.
2. after disconnecting the adapter, the mac address is invalid. 

Is it right? If yes, I don't know what the problem of the bug means.

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

Title:
  Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would
  change after powered off for a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1451357] Re: [Lenovo SazanW-2] system got hang and screen became black after execute upgrade under 14.04.2

2015-05-26 Thread Liming Wang
I have tested 3.16.0-37 and 3.16.0-38, all work well. It seems that only
3.16.0-36 has the issue. So from 3.16.0-36 to 3.16.0-37, there are some
commits that have already fixed the issue. We need to find out which
commits to fix the issue

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

Title:
  [Lenovo SazanW-2] system got hang and screen became black after
  execute upgrade under 14.04.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1451357/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358704] Re: Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would change after powered off for a while

2015-05-25 Thread Liming Wang
@Po-Hsu Lin

My question is that whether the linux driver is related with the issue? 
If you don't install linux, and just power it on (not boot to linux) and  power 
it off, does the mac address also get an invalid address? If yes, it seems that 
it's the hardware issue. Please help me to test. Thanks a lot!

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

Title:
  Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would
  change after powered off for a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358704] Re: Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would change after powered off for a while

2015-05-18 Thread Liming Wang
@Po-Hsu Lin

Do you have any comments for my #6 questions?

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

Title:
  Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would
  change after powered off for a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1433987] Re: [Realtek 0bda:b728] Bluetooth is useless after installed 14.04.2

2015-05-18 Thread Liming Wang
I have tried https://github.com/troy-
tan/driver_store/tree/master/bluetooth/8723BE and
https://github.com/lwfinger/rtlwifi_new/issues/5, but it still doesn't
work well on my test laptop E455.

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

Title:
  [Realtek 0bda:b728] Bluetooth is useless after installed 14.04.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1433987/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1414930] Re: [Lenovo ThinkPad 2015 models] Buttons of Synaptics trackpad doesn't work

2015-05-14 Thread Liming Wang
I tested trusty with the -proposed kernel 3.13.0-53, the buttons of
touchpad work well.

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

Title:
  [Lenovo ThinkPad 2015 models] Buttons of Synaptics trackpad doesn't
  work

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1414930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358704] Re: Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would change after powered off for a while

2015-05-07 Thread Liming Wang
@Po-Hsu Lin

Does the mac address always change to valid address after booting into
linux? If yes, so the linux driver seems well but the bios(or bootrom)
can't get the valid address. So when does the bios get the valid
address?

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

Title:
  Atheros AR8161[1969:1091] and AR8162 [1969:1090] mac address would
  change after powered off for a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1342548] Re: [Dell Inspiron 5437] Wireless key does not work on this system

2014-09-26 Thread Liming Wang
OK, so now we should backport the patches to our kernel.

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

Title:
  [Dell Inspiron 5437] Wireless key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1342548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1342548] Re: [Dell Inspiron 5437] Wireless key does not work on this system

2014-09-15 Thread Liming Wang
@anthony Wong, thanks a lot!

I need more log from following commands:
1. sudo input-events 5
2. acpi_listen
3. sudo showkey -s

Please press wifi hotkey after executing above commands.

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

Title:
  [Dell Inspiron 5437] Wireless key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1342548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1342548] Re: [Dell Inspiron 5437] Wireless key does not work on this system

2014-09-15 Thread Liming Wang
But in your first message, showkey -k“ has captured the keycode 240? Just like:
...
keycode 240 press
keycode 240 release
...

but showkey -s doesn't return anything? So, it's weird.

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

Title:
  [Dell Inspiron 5437] Wireless key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1342548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1342548] Re: [Dell Inspiron 5437] Wireless key does not work on this system

2014-09-14 Thread Liming Wang
It seems that with win8 capability, wifi hotkey doesn't work well. I will 
submit one patch to mainline to resolve the bug.
@anthony Wong, please send the log of the sudo lsinput to me.

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

Title:
  [Dell Inspiron 5437] Wireless key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1342548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1342548] Re: [Dell Inspiron 5437] Wireless key does not work on this system

2014-07-28 Thread Liming Wang
The similar bug is LP#1288161

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

Title:
  [Dell Inspiron 5437] Wireless key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1342548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1342548] Re: [Dell Inspiron 5437] Wireless key does not work on this system

2014-07-28 Thread Liming Wang
One similar patch has been submitted to the mainline kernel:

http://www.spinics.net/lists/linux-acpi/msg50338.html

It also fixes the wireless hotkey issue.
I think we could submit the Lin's patch to mainline.

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

Title:
  [Dell Inspiron 5437] Wireless key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1342548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313830] Re: [Lenovo ThinkPad X230] LCD Backlight dims completely when disconnecting external monitor

2014-07-21 Thread Liming Wang
hi, @dlundquist , Dustin Lundquist, 
Did you test it on x230 with DisplayPort monitor?
Or it only existed when x230 is plugged with DVI on the dock?
Whether can following command change the brightness of LCD?

$ echo 100 | sudo tee /sys/class/bachlight/acpi_video0/brightness

or

$ echo 600 | sudo tee /sys/class/backlight/intel_backlight/brightness

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

Title:
  [Lenovo ThinkPad X230] LCD Backlight dims completely when
  disconnecting external monitor

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313830] Re: [Lenovo ThinkPad X230] LCD Backlight dims completely when disconnecting external monitor

2014-07-20 Thread Liming Wang
It's too hard to reproduce this bug because I have not the same hardware.
I have tested it on three types of laptop, but can't reproduce this bug. They 
are:

1. T540P with Displayport monitor
2. T440s with Displayport monitor
3. x230S with Displayport monitor. We have no external dock to touch DVI 
monitor.

All the laptop are installed with ubuntu 14.04 and the kernel is 
3.13.0-24-generic.
I note that  Yaiza Bailen has the bug on T420 and T420s with Displayport 
monitor, which may be
similar with my #2 laptop, but it can't be reproduced.
It seems that I need to get the same hardware to reproduce the bug.

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

Title:
  [Lenovo ThinkPad X230] LCD Backlight dims completely when
  disconnecting external monitor

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1204339] Re: AMD Radeon HD 7640G[1002:9903] Unable to resume from suspend with radeon driver

2014-07-14 Thread Liming Wang
Po-Hsu Lin, please help me to test the latest mainline kernel to see whether 
the problem still exists.
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-rc5-utopic/

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

Title:
  AMD Radeon HD 7640G[1002:9903] Unable to resume from suspend with
  radeon driver

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301353] Re: HP Pavilion dv5: ATA exception on resume from suspend

2008-12-16 Thread Bill Liming
Just FWIW, I did in fact try flashing the DV5 with the DV7 F.21 BIOS.
It wouldn't do the update.

-- 
HP Pavilion dv5: ATA exception on resume from suspend
https://bugs.launchpad.net/bugs/301353
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301353] Re: HP Pavilion dv5: ATA exception on resume from suspend

2008-12-12 Thread Bill Liming
HP support's response to me was that they don't support linux on
Pavilions, period, so I'm not sure how likely it is that this will be
fixed by them other than accidentally.

Also, my dv5 is probably going back to HP for other reasons, so I won't
be able to follow up further.

-- 
HP Pavilion dv5: ATA exception on resume from suspend
https://bugs.launchpad.net/bugs/301353
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301353] Re: [Intrepid Ibex] ATA exception on resume from suspend

2008-12-10 Thread Bill Liming
That's an interesting note.  My mom has a Vaio laptop (don't know the
model number off the top of my head, but it's a C2D so reasonably new)
that also only resumes with a power button press.  All the other laptops
I've used with Linux resume on a lid open, so I just assumed that was a
Vaio specific bug or a problem with her machine (it was a refurb).  If
there's a difference in sleep modes related to the power-button-to-wake
phenomena, that would be an avenue to explore.

-- 
[Intrepid Ibex] ATA exception on resume from suspend
https://bugs.launchpad.net/bugs/301353
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301353] Re: [Intrepid Ibex] ATA exception on resume from suspend

2008-12-08 Thread Bill Liming
I can confirm this problem on my dv5t with BIOS fc11.  Note that the
kernel bug listed above has been closed since the problem was fixed on
the dv7 with the BIOS update.  I've contacted HP about whether we can
expect the changes made for the dv7 BIOS to be implemented on the dv5t.

-- 
[Intrepid Ibex] ATA exception on resume from suspend
https://bugs.launchpad.net/bugs/301353
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 301353] Re: [Intrepid Ibex] ATA exception on resume from suspend

2008-12-08 Thread Bill Liming
Also, in case it's of any use:

I get the problem with both 32-bit and 64-bit Ubuntu.

Booting from a USB flashdrive of either version of Ubuntu 8.1 resume
works, but generates the same errors and the HD in the system is no
longer accessible.

Upgrading to just the Jaunty kernel doesn't fix anything.  In the
process of upgrading to the entire Jaunty install now to see if that
makes a difference.

-- 
[Intrepid Ibex] ATA exception on resume from suspend
https://bugs.launchpad.net/bugs/301353
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 50092] TextArea.SelectStart when div display='non'

2006-06-17 Thread liming
Public bug reported:

Error: [Exception... Component returned failure code: 0x80004005 
(NS_ERROR_FAILURE) 
[nsIDOMNSHTMLTextAreaElement.selectionStart]  nsresult: 0x80004005 
(NS_ERROR_FAILURE)  location: JS frame :: 


Hi, 

using Firefox 1.5.0.4I have an textarea with in a div that has a
display='none', when I try to check

 var myField =   document.getElementBy('mytextarea');
if (myField.selectionStart || myField.selectionStart == '0') {
}

I get the error above.

now, if I change the div and set it visibility = 'hidden', everything is
fine.

is this a bug?

** Affects: firefox (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
TextArea.SelectStart when div display='non'
https://launchpad.net/bugs/50092

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs