[Bug 1734147] Re: corrupted BIOS due to Intel SPI bug in kernel

2018-01-06 Thread Arvind Kumar
** Changed in: linux (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  corrupted BIOS due to Intel SPI bug in kernel

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

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

[Bug 1448724] Re: Netmowrk manager does not show in top panel in Ubuntu 15.04

2015-04-30 Thread Arvind Kumar
I am a professional tester and i believe if there is a bug then it should be 
fixed and we cannot go with workaround for a long time.
I love Ubuntu and i want it should stable , stability and defect-less(no 
product can go defect less but they can be minimize) should be priority.

thanks for sharing workaround,i will use this until this bug will get
fixed

Thanks

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

Title:
  Netmowrk manager does not show in top panel in Ubuntu 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1448724/+subscriptions

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


[Bug 1448724] [NEW] Netmowrk manager does not show in top panel in Ubuntu 15.04

2015-04-26 Thread Arvind Kumar
Public bug reported:

Hi,

My laptop is connected to wifi but 
Network manager is not showing in top panel.
when i tried to see dash network connections , connected wifi does not show 
here it as well.

below is the information about my OS
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 15.04
Release:15.04
Codename:   vivid

uname -a
Linux Troy 3.19.0-15-generic #15-Ubuntu SMP Thu Apr 16 23:32:37 UTC 2015 x86_64 
x86_64 x86_64 GNU/Linux

Looks like it is a bug or let me know solution so that i can see
network-manager applet in top panel.

** Affects: network-manager-applet (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/1448724

Title:
  Netmowrk manager does not show in top panel in Ubuntu 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1448724/+subscriptions

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


[Bug 1371591] Re: file not initialized to 0s under some conditions on VMWare

2014-10-10 Thread Arvind Kumar
Hi Chris,

This is Arvind Kumar from VMware. Recently the issue discussed in this
bug was brought into VMware's notice. We looked at the patch
(https://lkml.org/lkml/2014/9/23/509) which was done to address the
issue. Since the patch is done in mptsas driver, it addresses the issue
only on lsilogic controller, if user uses some other controller e.g.
pvscsi or buslogic then the issue remains. Moreover the patch disables
the WRITE SAME completely on the lsilogic which indicates that VMware
will never be able to support WRITE SAME on lsilogic. As I understand
from the bug, it is concluded that the WRITE SAME is not properly
implemented by VMware. Actually we don't support WRITE SAME at all.

We internally investigated the issue and as per our understanding the
issue is not VMware specific and rather seems to be with the kernel,
which could very well happen on real hardware too in case the disk
doesn't support WRITE SAME command. Below are the details of the
investigation by Petr Vandrovec.

--

In blk-lib.c on line 294 it checks whether bdev supports write_same.
With LVM, bdev here is dm-0. It says yes, it is supported, and so
write_same is invoked (note that check is racy in case device loses
write_same capability between test and moment bio is issued):

291  int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
292   sector_t nr_sects, gfp_t gfp_mask)
293  {
294  if (bdev_write_same(bdev)) {
295  unsigned char bdn[BDEVNAME_SIZE];
296
297  if (!blkdev_issue_write_same(bdev, sector, nr_sects, 
gfp_mask,
298   ZERO_PAGE(0)))
299  return 0;
300
301  bdevname(bdev, bdn);
302  pr_err(%s: WRITE SAME failed. Manually zeroing.\n, 
bdn);
303  }
304
305  return __blkdev_issue_zeroout(bdev, sector, nr_sects, 
gfp_mask);
306  }
307  EXPORT_SYMBOL(blkdev_issue_zeroout);

Then it gets to LVM, and LVM forwards request to sda. When it fails,
kernel clears bdev_write_same() on sda, and returns -121 (EREMOTEIO).

Now next request comes. Nobody cleared bdev_write_same() on dm-0, it got
cleared only on sda, so request gets to LVM, which forwards it to sda.
Where it hits a snag in blk-core.c:

   1824  if (bio-bi_rw  REQ_WRITE_SAME  
!bdev_write_same(bio-bi_bdev)) {
   1825  err = -EOPNOTSUPP;
   1826  goto end_io;
   1827  }

bi_bdev here is sda, and I/O fails with EOPNOTSUPP, without WRITE_SAME
ever being issued. And then it hits completion code that treats
EOPNOTSUPP as success:

 18  static void bio_batch_end_io(struct bio *bio, int err)
 19  {
 20  struct bio_batch *bb = bio-bi_private;
 21
 22  if (err  (err != -EOPNOTSUPP))
 23  clear_bit(BIO_UPTODATE, bb-flags);
 24  if (atomic_dec_and_test(bb-done))
 25  complete(bb-wait);
 26  bio_put(bio);
 27  }

So everybody outside of blkdev_issue_write_same() thinks that I/O
succeeded, while in reality kernel even did not issue request!

Fix should:

1. Use different error code if WRITE_SAME request is thrown away. Or
remove special EOPNOTSUPP handling from end_io - I assume EOPNOTSUPP is
supposed to ignore failures from discarded commands, but then nobody
else should be using EOPNOTSUPP, and

2. WRITE_SAME failure should propagate from sda to dm-0.

--

Our understanding is that we should revert the fix in mptsas driver and
try to do the right fix as described above. I am attaching the patch
from Petr who did the investigation. CC'ing all involved people from
VMware too. Could you please evaluate the patch and suggest on further
steps?

Thanks!
Arvind

** Patch added: 0001-Do-not-silently-discard-WRITE_SAME-requests.patch
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1371591/+attachment/4230953/+files/0001-Do-not-silently-discard-WRITE_SAME-requests.patch

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

Title:
  file not initialized to 0s under some conditions on VMWare

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

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


[Bug 1282542] Re: (synaptic:3405): GLib-CRITICAL **: g_child_watch_add_full: assertion 'pid 0' failed

2014-09-23 Thread Arvind Kumar
I also have the same problem when i install packages
(synaptic:3035): GLib-CRITICAL **: g_child_watch_add_full: assertion 'pid  0' 
failed

please do something

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

Title:
  (synaptic:3405): GLib-CRITICAL **: g_child_watch_add_full: assertion
  'pid  0' failed

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

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


[Bug 1312526] Re: lightdm fails to start session unless user selects session

2014-09-13 Thread Arvind Kumar
I lost my faith in ubuntu that they can deliver a good product.
lightdm does not restart ,xorg server does not start.

I had to format my machine.

Please resolve all these issue on priority people affected very badly
rather than releasing ubuntu 14.10.

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

Title:
  lightdm fails to start session unless user selects session

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

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


[Bug 1304568] Re: Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel launch

2014-04-13 Thread Arvind Kumar
I am not able to attach $HOME/.cache/upstart/gnome-session-Unity.log so
attaching content of $HOME/.cache/upstart/gnome-session-Unity.log


(gnome-terminal:2913): GLib-GIO-CRITICAL **: g_settings_get: the format string 
may not contain '' (key 'monospace-font-name' from schema 
'org.gnome.desktop.interface'). This call will probably stop working with a 
future version of glib.
/var/lib/dpkg/lock:

** (zeitgeist-datahub:2673): WARNING **: zeitgeist-datahub.vala:212:
Error during inserting events:
GDBus.Error:org.gnome.zeitgeist.EngineError.InvalidArgument: Incomplete
event: interpretation, manifestation and actor are required

** (zeitgeist-datahub:2673): WARNING **: zeitgeist-datahub.vala:212: Error 
during inserting events: 
GDBus.Error:org.gnome.zeitgeist.EngineError.InvalidArgument: Incomplete event: 
interpretation, manifestation and actor are required
~   



i ran apport-collect 1304568 but is showed a message You are not the reporter 
or subscriber of this problem report or the report is a duplicate or already 
closed please create a new report using apport-bug and apport-bug shows nothing

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

Title:
  Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel  launch

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

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


[Bug 1304568] Re: Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel launch

2014-04-13 Thread Arvind Kumar
attached

** Attachment added: This is genome-session-Unity log
   
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1304568/+attachment/4082378/+files/gnome-session-Unity.log

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

Title:
  Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel  launch

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

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


[Bug 1304568] Re: Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel launch

2014-04-11 Thread Arvind Kumar
Some more information for resolving this bug.

uname -a
Linux Troy 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 
x86_64 x86_64 GNU/Linux

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

Title:
  Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel  launch

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

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


[Bug 1304568] Re: Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel launch

2014-04-11 Thread Arvind Kumar
Same issue exist for me as well, infact with others as well who upgraded
to ubuntu 14.04.

No launcher and panel after upgrade to ubuntu 14.04.

it looks Ubuntu 14.04 LTS is a buggy OS.

Please resolve this bug on priority.

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

Title:
  Upgrade 12.04 LTS to 14.04LTS Beta 2 lost panel  launch

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

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


Re: [Bug 267321] Re: GNash Player Problem

2010-02-28 Thread Arvind Kumar C
No. I dont use it.

On Sun, Feb 28, 2010 at 11:11 AM, Sindhudweep Sarkar 
sindhudweep.sar...@gmail.com wrote:

 Arvind: do you still face this problem in Karmic or Lucid?

 ** Changed in: gnash (Ubuntu)
   Status: New = Incomplete

 --
 GNash Player Problem
 https://bugs.launchpad.net/bugs/267321
 You received this bug notification because you are a direct subscriber
 of the bug.



-- 
Arvind

-- 
GNash Player Problem
https://bugs.launchpad.net/bugs/267321
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 267321] [NEW] GNash Player Problem

2008-09-06 Thread Arvind Kumar C
Public bug reported:

Binary package hint: firefox-3.0

I started with using gnash as my flash player. Then disabled it, and
before downloading a new plugin, i visited some sites that uses flash
objects. The pages were rendered in half, but I expected Firefox to show
me the popup bar on top to install the missed plugin. But nothing
happened.

Possible there is a problem with the Plugin management.

ProblemType: Bug
Architecture: i386
Date: Sun Sep  7 08:41:31 2008
DistroRelease: Ubuntu 8.04
Package: firefox-3.0 3.0~b5+nobinonly-0ubuntu3
PackageArchitecture: i386
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: firefox-3.0
Uname: Linux 2.6.24-16-generic i686

** Affects: firefox-3.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
GNash Player Problem
https://bugs.launchpad.net/bugs/267321
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 267321] Re: GNash Player Problem

2008-09-06 Thread Arvind Kumar C

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/1739/Dependencies.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/17355560/profiles.ini.txt

-- 
GNash Player Problem
https://bugs.launchpad.net/bugs/267321
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