[Bug 85095] Crash when editing a name of file.

2007-02-14 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: gnomebaker

I have added a couple of files to a project and tried to change a name
of file. I have highlighted a piece of name and pressed Del and
gnomebaker crashed. Odd, but when I delete the letters by pressing
backspace it works fine.

** Affects: gnomebaker (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Crash when editing a name of file.
https://launchpad.net/bugs/85095

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


[Bug 74980] The issues powernowd init script.

2006-12-08 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: powernowd

After adding "CPU frequency scaling monitor" applet to my GNOMe environment I 
noticed that powernowd doesn't do its job as it should.
 It's enabled by default and I have OPTIONS="-q -m 1 -p 100 -u 70 -l 10" in 
/etc/default/powernowd. Moreover, I couldn't even find powernowd process 
running. After investigating /etc/init.d/powernowd I noteced that start 
function has some weird issues. I commented some lines as shown below and it 
started working after that

start() {
log_begin_msg "Starting $DESC... "
$DAEMON $OPTIONS >/dev/null 2>&1
#   if use_ondemand
#   then
#   log_end_msg 0
#   return 0
#   fi
#   if check_kernel
#   then
#echo "Starting $DESC: "
#   start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- 
$OPTIONS >/dev/null 2>&1 || {
#   status=$?
#   log_end_msg $status
#   return $status
#   }
#   else
#   log_success_msg "CPU frequency scaling not supported"
#   #   echo "required sysfs objects not found!"
#   #   echo -e "\tRead /usr/share/doc/powernowd/README.Debian for more 
information."
#   fi
log_end_msg 0
return 0
}


In additional I am showing some info about my laptop

[EMAIL PROTECTED]:~$ lspci -v
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 1882
Flags: bus master, fast devsel, latency 0
Capabilities: 

00:01.0 PCI bridge: Intel Corporation Mobile 915GM/PM Express PCI Express Root 
Port (rev 04) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-cfff
Memory behind bridge: fe90-fe9f
Prefetchable memory behind bridge: cff0-dfef
Capabilities: 

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 10c3
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: 

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at e480 [size=32]

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 217
I/O ports at e800 [size=32]

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at e880 [size=32]

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 169
I/O ports at ec00 [size=32]

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at febfbc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: 

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 
01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=06, sec-latency=32
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: 5000-52f0
Capabilities: 

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge 
(rev 04)
Flags: bus master, medium devsel, latency 0

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at ffa0 [size=16]

01:00.0 VGA compatible controller: ATI Technologies Inc M26 [Radeon Mobility 
X700] (prog-if 00 [VGA])
Subsystem: ASUSTeK Computer Inc. Unknown device 1962
Flags: bus master, fast devsel, latency 0, IRQ 169
   

Re: [Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
Mathew, thank you for looking into this. My machine supports ondemand
and the problem is not in powerd at all.  The problem is in
use_ondemand() function

In start function you have

   if use_ondemand
   then
   log_end_msg 0
   return 0
   fi

So once use_ondemand is called

use_ondemand() {
for x in /sys/devices/system/cpu/*; do
echo -n ondemand >$x/cpufreq/scaling_governor;
status=$?
if [ $status != 0 ]; then
return $status
fi
done
return 0
}

use_ondemand() returns zero since it can write into scaling_governor BUT
"if use_ondemand" will stop executing the script since it has return
statement. You just need to change it to "if ! use_ondemand" or just
remove that statement at all.

Hope this helps

On Mon, 2006-12-18 at 21:20 +, Matthew Garrett wrote:

> The ondemand governor can react to load changes more quickly than
> powernowd can, so powernowd exits on machines which support ondemand.
> 
> ** Changed in: powernowd (Ubuntu)
>Status: Unconfirmed => Rejected
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: Rejected => Unconfirmed

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


Re: [Bug 74980] Re: The issues powernowd init script.

2007-01-08 Thread Sergii Golovatiuk
I reverted scripts back to original and got

perfomance before loading gnome and
ondemand once it's loaded.

Does it make any sense to you?


On Sat, 2007-01-06 at 11:32 +, Sebastian Breier wrote:

> Sergii: Could you do the following:
> 1. Change the powernowd start script back to the original state
> 2. Boot your machine regularly into feisty
> 3. Do *NOT* log into X
> 4. Change to console (Ctrl-Alt-F1)
> 5. Log in
> 6. cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor (tell me the 
> output)
> 7. Log into X
> 8. When everything is fully loaded, do 6 again (tell me the output)
> 
> I've had the same issue; My problem lies with gnome-power-manager though
> - because the powernowd initscript correctly sets the scaling_governor
> to "ondemand". When logging into X, g-p-m sets the scaling_governor to
> "performance", "conservative" or "powersave", depending on its settings.
> 
> The question is why g-p-m never changes it to "ondemand" if Matthew
> already says that's a better settings if the machine supports it.
> 
> Please tell me your output from above, we'll open a new bug for g-p-m if
> you have the same issue.
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2008-02-28 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: New => Fix Released

-- 
The issues powernowd init script.
https://bugs.launchpad.net/bugs/74980
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 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2008-02-28 Thread Sergii Golovatiuk
** Changed in: evolution-data-server (Ubuntu)
   Status: Triaged => Fix Released

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
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 87571] Re: [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/6523934/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/6523935/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/6523936/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/6523937/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/6523938/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/6523939/Registers.txt

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 87571] [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: network-manager

It crashed when I tried to start it.

ProblemType: Crash
CrashCounter: 1
Date: Sat Feb 24 16:35:14 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/sbin/NetworkManager
Package: network-manager 0.6.4-6ubuntu2
ProcCmdline: NetworkManager
ProcCwd: /
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
Signal: 5
SourcePackage: network-manager
Stacktrace: #0  0x080691d9 in main ()
StacktraceTop: main ()
ThreadStacktrace:
 .
 Thread 1 (process 18780):
 #0  0x080691d9 in main ()
Uname: Linux laptop 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 
GNU/Linux
UserGroups:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-18 Thread Sergii Golovatiuk
I can confirm that last updated fixed the issue. I see SD icon on
desktop and can access it without any problems. Thank you guys for fast
resolution.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
I can confirm this bug exists on ASUS M6VA on Feisty Beta. When I load
sdhci or tifm_sd system creates /dev/mmcblk0p1 but automount doesn't
work.


[EMAIL PROTECTED]:~# lspci|grep Ric
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
02:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C552 IEEE 1394 Controller (rev 08)
02:01.2 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 
SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
02:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 08)
02:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 03)

[EMAIL PROTECTED]:~# lsmod|grep sdhci
sdhci  18700  0 
mmc_core   26756  2 sdhci,mmc_block

syslog:
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Secure Digital Host 
Controller Interface driver
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Copyright(c) Pierre Ossman
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: SDHCI controller found at 
:02:01.2 [1180:0822] (rev 17)
Apr  6 19:17:54 asus kernel: [ 3563.624000] ACPI: PCI Interrupt :02:01.2[C] 
-> GSI 18 (level, low) -> IRQ 20
Apr  6 19:17:54 asus kernel: [ 3563.628000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 19:17:54 asus NetworkManager: ^I[1175876274.345889] 
nm_hal_device_added (): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1180_822_mmc_host'). 
Apr  6 19:17:54 asus kernel: [ 3563.956000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 19:17:54 asus kernel: [ 3563.956000]  mmcblk0: p1

[EMAIL PROTECTED]:~# ls /dev/mmcblk0*
/dev/mmcblk0  /dev/mmcblk0p1

and with timfm_sd

[EMAIL PROTECTED]:~# lsmod|grep mmc
mmc_block  13832  0 
mmc_core   26756  2 mmc_block,tifm_sd

Apr  6 15:11:48 asus kernel: [  105.232000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 15:11:48 asus kernel: [  105.252000] ACPI: PCI Interrupt :00:1b.0[A] 
-> GSI 16 (level, low) -> IRQ 16
Apr  6 15:11:48 asus kernel: [  105.252000] PCI: Setting latency timer of 
device :00:1b.0 to 64
Apr  6 15:11:48 asus kernel: [  105.648000] cs: IO port probe 0x100-0x3af: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x3e0-0x4ff: 
excluding 0x4d0-0x4d7
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x820-0x8ff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xc00-0xcf7: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xa00-0xaff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.656000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 15:11:48 asus kernel: [  105.656000]  mmcblk0: p1

Hope this helps

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
Could it be udev rule problem? Can anyone check 65-persistent-
storage.rules?

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 90749] Re: Deluge 0.5 in feisty

2007-04-06 Thread Sergii Golovatiuk
5.0 is much stable and usable. It would be nice to see it in feisty.

-- 
Deluge 0.5 in feisty
https://bugs.launchpad.net/bugs/90749
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: evolution

It crashed, whyen I tried to open INBOX IMAP folder. The server runs
Smartmail and it seems that evolution has more than one problem with
smartmail. sometimes, it stops receiving the messages, sometimes, it
can't open folder with e-mail.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Mon Apr  9 15:42:56 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/evolution-2.10
Package: evolution 2.10.0-0ubuntu2
PackageArchitecture: i386
ProcCmdline: evolution --component=mail
ProcCwd: /home/serg
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: evolution
Stacktrace:
 #0  0xb54bcae2 in ?? ()
from /usr/lib/evolution-data-server-1.2/camel-providers-10/libcamelimap.so
 #1  0x in ?? ()
StacktraceTop:
 ?? ()
 ?? ()
Uname: Linux asus 2.6.20-14-generic #2 SMP Mon Apr 2 20:37:49 UTC 2007 i686 
GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/7222737/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/7222738/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/7222739/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/7222740/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/7222741/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/7222742/Registers.txt

** Attachment added: "ThreadStacktrace.txt"
   http://librarian.launchpad.net/7222743/ThreadStacktrace.txt

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-10 Thread Sergii Golovatiuk
I am also attaching strace logs. Evolution died and apport didn't
recognize a crash. I just tried to open Inbox, and evolution died.

[pid 16332] ioctl(3, FIONREAD 
[pid 16392] read(58,  
[pid 16332] <... ioctl resumed> , [0])  = 0
[pid 16392] <... read resumed> "GIOP\1\2\1\0T\0\0\0", 12) = 12
[pid 16332] gettimeofday( 
[pid 16392] read(58,  
[pid 16332] <... gettimeofday resumed> {1176229005, 88498}, NULL) = 0
[pid 16392] <... read resumed> 
"\260\236\341\277\3\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\331\310"..., 84) = 84
[pid 16332] poll( 
[pid 16392] write(9, "A", 1 
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI, revents=POLLIN}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = 1
[pid 16392] <... write resumed> )   = 1
[pid 16332] gettimeofday( 
[pid 16392] poll( 
[pid 16332] <... gettimeofday resumed> {1176229005, 88657}, NULL) = 0
[pid 16332] read(8, "A", 1) = 1
[pid 16332] writev(58, [{"GIOP\1\2\1\1$\0\0\0", 12}, 
{"\260\236\341\277\0\0\0\0\1\0\0\0\1\0\0\0\f\0\0\0\1\1\1"..., 36}], 2) = 48
[pid 16332] ioctl(3, FIONREAD, [0]) = 0
[pid 16332] gettimeofday({1176229005, 88839}, NULL) = 0
[pid 16332] poll( 
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\223\270\202%6`\340\222\300q&\362\351\2202H\320\26Y\233"..., 14132, 0) = 1452
[pid 16360] recv(40, 0x85192b8, 12680, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 124256}, NULL) = 0
[pid 16360] poll([{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\321\37\214O\225\210\341\24x\246z\247\316J\2007\\\34l\336"..., 12680, 0) = 2904
[pid 16360] recv(40, 0x8519e10, 9776, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 129052}, NULL) = 0
[pid 16360] poll( 
[pid 16378] <... select resumed> )  = 1 (in [55], left {239, 796000})
[pid 16378] read(55, "BODY ((\"text\" \"plain\" (\"charset\""..., 1024) = 199
[pid 16378] fcntl64(55, F_SETFL, O_RDWR) = 0
[pid 16378] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
Process 16378 detached
[pid 16389] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16390] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16361] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16352] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16362] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16364] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16392] <... poll resumed> [{fd=57, events=POLLIN}, {fd=61, 
events=POLLIN|POLLPRI}, {fd=58, events=POLLIN|POLLPRI}, {fd=18, 
events=POLLIN|POLLPRI}, {fd=14, events=POLLIN|POLLPRI}, {fd=15, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=11, 
events=POLLIN|POLLPRI}, {fd=12, events=POLLIN|POLLPRI}, {fd=60, 
events=POLLIN|POLLPRI}], 10, -1) = -1 EINTR (Interrupted system call)
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = -1 EINTR (Interrupted system call)
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = -1 EINTR (Interrupted system call)
[pid 16359] <... poll resumed> [{fd=45, events=POLLIN}, {fd=47, 
events=POLLIN}], 2, -1) = -1 EINTR (Interrupted system call)
[pid 16351] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16377] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16389] +++ killed by SIGSEGV (core dumped) +++
Process 16389 detached
[pid 16390] +++ killed by SIGSEGV (core dumped) +++
Process 16390 detached
[pid 16361] +++ killed by SIGSEGV (core dumped) +++
Process 16361 detached
[pid 16352] +++ killed by SIGSEGV (core dumped) +++
Process 16352 detached
[pid 16362] +++ killed by SIGSEGV (core dumped) +++
Process 16362 detached
[pid 16364] +++ killed by SIGSEGV (core dumped) +++
Process 16364 detached
[pid 16392] +++ killed by SIGSEGV (core dumped) +++
Process 16392 detached
[pid 16360] +++ killed by SIGSEGV (core dumped) +++
Process 16360 detached
[pid 16359] +++ killed by SIGSEGV (core dumped) +++
Process 16359 detached
[pid 16351] +++ killed by SIGSEGV (core dumped) +++
Process 16351 detached
[pid 16377] +++ killed by SIGSEGV (core dumped) +++
Process 16377 detached
+++ killed by SIGSEGV (core dumped) +++
Process 16332 detached


Hope this helps.

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mail

[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-10 Thread Sergii Golovatiuk
I agree, it's not kernel bug. Most likely it's udev rule or hal/dbus
bug. Since this bug affected a lot of people, I would change the
priority and tell mainteners to see the difference from early versions.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 85095] Crash when editing a name of file.

2007-02-14 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: gnomebaker

I have added a couple of files to a project and tried to change a name
of file. I have highlighted a piece of name and pressed Del and
gnomebaker crashed. Odd, but when I delete the letters by pressing
backspace it works fine.

** Affects: gnomebaker (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Crash when editing a name of file.
https://launchpad.net/bugs/85095

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


[Bug 74980] The issues powernowd init script.

2006-12-08 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: powernowd

After adding "CPU frequency scaling monitor" applet to my GNOMe environment I 
noticed that powernowd doesn't do its job as it should.
 It's enabled by default and I have OPTIONS="-q -m 1 -p 100 -u 70 -l 10" in 
/etc/default/powernowd. Moreover, I couldn't even find powernowd process 
running. After investigating /etc/init.d/powernowd I noteced that start 
function has some weird issues. I commented some lines as shown below and it 
started working after that

start() {
log_begin_msg "Starting $DESC... "
$DAEMON $OPTIONS >/dev/null 2>&1
#   if use_ondemand
#   then
#   log_end_msg 0
#   return 0
#   fi
#   if check_kernel
#   then
#echo "Starting $DESC: "
#   start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- 
$OPTIONS >/dev/null 2>&1 || {
#   status=$?
#   log_end_msg $status
#   return $status
#   }
#   else
#   log_success_msg "CPU frequency scaling not supported"
#   #   echo "required sysfs objects not found!"
#   #   echo -e "\tRead /usr/share/doc/powernowd/README.Debian for more 
information."
#   fi
log_end_msg 0
return 0
}


In additional I am showing some info about my laptop

[EMAIL PROTECTED]:~$ lspci -v
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 1882
Flags: bus master, fast devsel, latency 0
Capabilities: 

00:01.0 PCI bridge: Intel Corporation Mobile 915GM/PM Express PCI Express Root 
Port (rev 04) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-cfff
Memory behind bridge: fe90-fe9f
Prefetchable memory behind bridge: cff0-dfef
Capabilities: 

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 10c3
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: 

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at e480 [size=32]

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 217
I/O ports at e800 [size=32]

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at e880 [size=32]

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 169
I/O ports at ec00 [size=32]

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at febfbc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: 

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 
01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=06, sec-latency=32
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: 5000-52f0
Capabilities: 

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge 
(rev 04)
Flags: bus master, medium devsel, latency 0

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at ffa0 [size=16]

01:00.0 VGA compatible controller: ATI Technologies Inc M26 [Radeon Mobility 
X700] (prog-if 00 [VGA])
Subsystem: ASUSTeK Computer Inc. Unknown device 1962
Flags: bus master, fast devsel, latency 0, IRQ 169
   

[Bug 87571] Re: [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/6523934/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/6523935/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/6523936/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/6523937/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/6523938/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/6523939/Registers.txt

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 87571] [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: network-manager

It crashed when I tried to start it.

ProblemType: Crash
CrashCounter: 1
Date: Sat Feb 24 16:35:14 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/sbin/NetworkManager
Package: network-manager 0.6.4-6ubuntu2
ProcCmdline: NetworkManager
ProcCwd: /
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
Signal: 5
SourcePackage: network-manager
Stacktrace: #0  0x080691d9 in main ()
StacktraceTop: main ()
ThreadStacktrace:
 .
 Thread 1 (process 18780):
 #0  0x080691d9 in main ()
Uname: Linux laptop 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 
GNU/Linux
UserGroups:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 74980] Re: The issues powernowd init script.

2008-02-28 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: New => Fix Released

-- 
The issues powernowd init script.
https://bugs.launchpad.net/bugs/74980
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 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2008-02-28 Thread Sergii Golovatiuk
** Changed in: evolution-data-server (Ubuntu)
   Status: Triaged => Fix Released

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
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


Re: [Bug 74980] Re: The issues powernowd init script.

2007-01-08 Thread Sergii Golovatiuk
I reverted scripts back to original and got

perfomance before loading gnome and
ondemand once it's loaded.

Does it make any sense to you?


On Sat, 2007-01-06 at 11:32 +, Sebastian Breier wrote:

> Sergii: Could you do the following:
> 1. Change the powernowd start script back to the original state
> 2. Boot your machine regularly into feisty
> 3. Do *NOT* log into X
> 4. Change to console (Ctrl-Alt-F1)
> 5. Log in
> 6. cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor (tell me the 
> output)
> 7. Log into X
> 8. When everything is fully loaded, do 6 again (tell me the output)
> 
> I've had the same issue; My problem lies with gnome-power-manager though
> - because the powernowd initscript correctly sets the scaling_governor
> to "ondemand". When logging into X, g-p-m sets the scaling_governor to
> "performance", "conservative" or "powersave", depending on its settings.
> 
> The question is why g-p-m never changes it to "ondemand" if Matthew
> already says that's a better settings if the machine supports it.
> 
> Please tell me your output from above, we'll open a new bug for g-p-m if
> you have the same issue.
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-18 Thread Sergii Golovatiuk
I can confirm that last updated fixed the issue. I see SD icon on
desktop and can access it without any problems. Thank you guys for fast
resolution.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-10 Thread Sergii Golovatiuk
I am also attaching strace logs. Evolution died and apport didn't
recognize a crash. I just tried to open Inbox, and evolution died.

[pid 16332] ioctl(3, FIONREAD 
[pid 16392] read(58,  
[pid 16332] <... ioctl resumed> , [0])  = 0
[pid 16392] <... read resumed> "GIOP\1\2\1\0T\0\0\0", 12) = 12
[pid 16332] gettimeofday( 
[pid 16392] read(58,  
[pid 16332] <... gettimeofday resumed> {1176229005, 88498}, NULL) = 0
[pid 16392] <... read resumed> 
"\260\236\341\277\3\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\331\310"..., 84) = 84
[pid 16332] poll( 
[pid 16392] write(9, "A", 1 
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI, revents=POLLIN}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = 1
[pid 16392] <... write resumed> )   = 1
[pid 16332] gettimeofday( 
[pid 16392] poll( 
[pid 16332] <... gettimeofday resumed> {1176229005, 88657}, NULL) = 0
[pid 16332] read(8, "A", 1) = 1
[pid 16332] writev(58, [{"GIOP\1\2\1\1$\0\0\0", 12}, 
{"\260\236\341\277\0\0\0\0\1\0\0\0\1\0\0\0\f\0\0\0\1\1\1"..., 36}], 2) = 48
[pid 16332] ioctl(3, FIONREAD, [0]) = 0
[pid 16332] gettimeofday({1176229005, 88839}, NULL) = 0
[pid 16332] poll( 
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\223\270\202%6`\340\222\300q&\362\351\2202H\320\26Y\233"..., 14132, 0) = 1452
[pid 16360] recv(40, 0x85192b8, 12680, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 124256}, NULL) = 0
[pid 16360] poll([{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\321\37\214O\225\210\341\24x\246z\247\316J\2007\\\34l\336"..., 12680, 0) = 2904
[pid 16360] recv(40, 0x8519e10, 9776, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 129052}, NULL) = 0
[pid 16360] poll( 
[pid 16378] <... select resumed> )  = 1 (in [55], left {239, 796000})
[pid 16378] read(55, "BODY ((\"text\" \"plain\" (\"charset\""..., 1024) = 199
[pid 16378] fcntl64(55, F_SETFL, O_RDWR) = 0
[pid 16378] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
Process 16378 detached
[pid 16389] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16390] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16361] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16352] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16362] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16364] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16392] <... poll resumed> [{fd=57, events=POLLIN}, {fd=61, 
events=POLLIN|POLLPRI}, {fd=58, events=POLLIN|POLLPRI}, {fd=18, 
events=POLLIN|POLLPRI}, {fd=14, events=POLLIN|POLLPRI}, {fd=15, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=11, 
events=POLLIN|POLLPRI}, {fd=12, events=POLLIN|POLLPRI}, {fd=60, 
events=POLLIN|POLLPRI}], 10, -1) = -1 EINTR (Interrupted system call)
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = -1 EINTR (Interrupted system call)
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = -1 EINTR (Interrupted system call)
[pid 16359] <... poll resumed> [{fd=45, events=POLLIN}, {fd=47, 
events=POLLIN}], 2, -1) = -1 EINTR (Interrupted system call)
[pid 16351] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16377] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16389] +++ killed by SIGSEGV (core dumped) +++
Process 16389 detached
[pid 16390] +++ killed by SIGSEGV (core dumped) +++
Process 16390 detached
[pid 16361] +++ killed by SIGSEGV (core dumped) +++
Process 16361 detached
[pid 16352] +++ killed by SIGSEGV (core dumped) +++
Process 16352 detached
[pid 16362] +++ killed by SIGSEGV (core dumped) +++
Process 16362 detached
[pid 16364] +++ killed by SIGSEGV (core dumped) +++
Process 16364 detached
[pid 16392] +++ killed by SIGSEGV (core dumped) +++
Process 16392 detached
[pid 16360] +++ killed by SIGSEGV (core dumped) +++
Process 16360 detached
[pid 16359] +++ killed by SIGSEGV (core dumped) +++
Process 16359 detached
[pid 16351] +++ killed by SIGSEGV (core dumped) +++
Process 16351 detached
[pid 16377] +++ killed by SIGSEGV (core dumped) +++
Process 16377 detached
+++ killed by SIGSEGV (core dumped) +++
Process 16332 detached


Hope this helps.

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mail

[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-10 Thread Sergii Golovatiuk
I agree, it's not kernel bug. Most likely it's udev rule or hal/dbus
bug. Since this bug affected a lot of people, I would change the
priority and tell mainteners to see the difference from early versions.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


Re: [Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
Mathew, thank you for looking into this. My machine supports ondemand
and the problem is not in powerd at all.  The problem is in
use_ondemand() function

In start function you have

   if use_ondemand
   then
   log_end_msg 0
   return 0
   fi

So once use_ondemand is called

use_ondemand() {
for x in /sys/devices/system/cpu/*; do
echo -n ondemand >$x/cpufreq/scaling_governor;
status=$?
if [ $status != 0 ]; then
return $status
fi
done
return 0
}

use_ondemand() returns zero since it can write into scaling_governor BUT
"if use_ondemand" will stop executing the script since it has return
statement. You just need to change it to "if ! use_ondemand" or just
remove that statement at all.

Hope this helps

On Mon, 2006-12-18 at 21:20 +, Matthew Garrett wrote:

> The ondemand governor can react to load changes more quickly than
> powernowd can, so powernowd exits on machines which support ondemand.
> 
> ** Changed in: powernowd (Ubuntu)
>Status: Unconfirmed => Rejected
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: Rejected => Unconfirmed

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
I can confirm this bug exists on ASUS M6VA on Feisty Beta. When I load
sdhci or tifm_sd system creates /dev/mmcblk0p1 but automount doesn't
work.


[EMAIL PROTECTED]:~# lspci|grep Ric
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
02:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C552 IEEE 1394 Controller (rev 08)
02:01.2 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 
SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
02:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 08)
02:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 03)

[EMAIL PROTECTED]:~# lsmod|grep sdhci
sdhci  18700  0 
mmc_core   26756  2 sdhci,mmc_block

syslog:
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Secure Digital Host 
Controller Interface driver
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Copyright(c) Pierre Ossman
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: SDHCI controller found at 
:02:01.2 [1180:0822] (rev 17)
Apr  6 19:17:54 asus kernel: [ 3563.624000] ACPI: PCI Interrupt :02:01.2[C] 
-> GSI 18 (level, low) -> IRQ 20
Apr  6 19:17:54 asus kernel: [ 3563.628000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 19:17:54 asus NetworkManager: ^I[1175876274.345889] 
nm_hal_device_added (): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1180_822_mmc_host'). 
Apr  6 19:17:54 asus kernel: [ 3563.956000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 19:17:54 asus kernel: [ 3563.956000]  mmcblk0: p1

[EMAIL PROTECTED]:~# ls /dev/mmcblk0*
/dev/mmcblk0  /dev/mmcblk0p1

and with timfm_sd

[EMAIL PROTECTED]:~# lsmod|grep mmc
mmc_block  13832  0 
mmc_core   26756  2 mmc_block,tifm_sd

Apr  6 15:11:48 asus kernel: [  105.232000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 15:11:48 asus kernel: [  105.252000] ACPI: PCI Interrupt :00:1b.0[A] 
-> GSI 16 (level, low) -> IRQ 16
Apr  6 15:11:48 asus kernel: [  105.252000] PCI: Setting latency timer of 
device :00:1b.0 to 64
Apr  6 15:11:48 asus kernel: [  105.648000] cs: IO port probe 0x100-0x3af: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x3e0-0x4ff: 
excluding 0x4d0-0x4d7
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x820-0x8ff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xc00-0xcf7: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xa00-0xaff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.656000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 15:11:48 asus kernel: [  105.656000]  mmcblk0: p1

Hope this helps

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
Could it be udev rule problem? Can anyone check 65-persistent-
storage.rules?

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 90749] Re: Deluge 0.5 in feisty

2007-04-06 Thread Sergii Golovatiuk
5.0 is much stable and usable. It would be nice to see it in feisty.

-- 
Deluge 0.5 in feisty
https://bugs.launchpad.net/bugs/90749
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: evolution

It crashed, whyen I tried to open INBOX IMAP folder. The server runs
Smartmail and it seems that evolution has more than one problem with
smartmail. sometimes, it stops receiving the messages, sometimes, it
can't open folder with e-mail.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Mon Apr  9 15:42:56 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/evolution-2.10
Package: evolution 2.10.0-0ubuntu2
PackageArchitecture: i386
ProcCmdline: evolution --component=mail
ProcCwd: /home/serg
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: evolution
Stacktrace:
 #0  0xb54bcae2 in ?? ()
from /usr/lib/evolution-data-server-1.2/camel-providers-10/libcamelimap.so
 #1  0x in ?? ()
StacktraceTop:
 ?? ()
 ?? ()
Uname: Linux asus 2.6.20-14-generic #2 SMP Mon Apr 2 20:37:49 UTC 2007 i686 
GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/7222737/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/7222738/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/7222739/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/7222740/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/7222741/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/7222742/Registers.txt

** Attachment added: "ThreadStacktrace.txt"
   http://librarian.launchpad.net/7222743/ThreadStacktrace.txt

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 74980] Re: The issues powernowd init script.

2008-02-28 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: New => Fix Released

-- 
The issues powernowd init script.
https://bugs.launchpad.net/bugs/74980
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 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2008-02-28 Thread Sergii Golovatiuk
** Changed in: evolution-data-server (Ubuntu)
   Status: Triaged => Fix Released

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
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


Re: [Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
Mathew, thank you for looking into this. My machine supports ondemand
and the problem is not in powerd at all.  The problem is in
use_ondemand() function

In start function you have

   if use_ondemand
   then
   log_end_msg 0
   return 0
   fi

So once use_ondemand is called

use_ondemand() {
for x in /sys/devices/system/cpu/*; do
echo -n ondemand >$x/cpufreq/scaling_governor;
status=$?
if [ $status != 0 ]; then
return $status
fi
done
return 0
}

use_ondemand() returns zero since it can write into scaling_governor BUT
"if use_ondemand" will stop executing the script since it has return
statement. You just need to change it to "if ! use_ondemand" or just
remove that statement at all.

Hope this helps

On Mon, 2006-12-18 at 21:20 +, Matthew Garrett wrote:

> The ondemand governor can react to load changes more quickly than
> powernowd can, so powernowd exits on machines which support ondemand.
> 
> ** Changed in: powernowd (Ubuntu)
>Status: Unconfirmed => Rejected
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: Rejected => Unconfirmed

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 104780] [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: evolution

It crashed, whyen I tried to open INBOX IMAP folder. The server runs
Smartmail and it seems that evolution has more than one problem with
smartmail. sometimes, it stops receiving the messages, sometimes, it
can't open folder with e-mail.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Mon Apr  9 15:42:56 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/evolution-2.10
Package: evolution 2.10.0-0ubuntu2
PackageArchitecture: i386
ProcCmdline: evolution --component=mail
ProcCwd: /home/serg
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: evolution
Stacktrace:
 #0  0xb54bcae2 in ?? ()
from /usr/lib/evolution-data-server-1.2/camel-providers-10/libcamelimap.so
 #1  0x in ?? ()
StacktraceTop:
 ?? ()
 ?? ()
Uname: Linux asus 2.6.20-14-generic #2 SMP Mon Apr 2 20:37:49 UTC 2007 i686 
GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/7222737/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/7222738/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/7222739/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/7222740/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/7222741/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/7222742/Registers.txt

** Attachment added: "ThreadStacktrace.txt"
   http://librarian.launchpad.net/7222743/ThreadStacktrace.txt

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-10 Thread Sergii Golovatiuk
I am also attaching strace logs. Evolution died and apport didn't
recognize a crash. I just tried to open Inbox, and evolution died.

[pid 16332] ioctl(3, FIONREAD 
[pid 16392] read(58,  
[pid 16332] <... ioctl resumed> , [0])  = 0
[pid 16392] <... read resumed> "GIOP\1\2\1\0T\0\0\0", 12) = 12
[pid 16332] gettimeofday( 
[pid 16392] read(58,  
[pid 16332] <... gettimeofday resumed> {1176229005, 88498}, NULL) = 0
[pid 16392] <... read resumed> 
"\260\236\341\277\3\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\331\310"..., 84) = 84
[pid 16332] poll( 
[pid 16392] write(9, "A", 1 
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI, revents=POLLIN}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = 1
[pid 16392] <... write resumed> )   = 1
[pid 16332] gettimeofday( 
[pid 16392] poll( 
[pid 16332] <... gettimeofday resumed> {1176229005, 88657}, NULL) = 0
[pid 16332] read(8, "A", 1) = 1
[pid 16332] writev(58, [{"GIOP\1\2\1\1$\0\0\0", 12}, 
{"\260\236\341\277\0\0\0\0\1\0\0\0\1\0\0\0\f\0\0\0\1\1\1"..., 36}], 2) = 48
[pid 16332] ioctl(3, FIONREAD, [0]) = 0
[pid 16332] gettimeofday({1176229005, 88839}, NULL) = 0
[pid 16332] poll( 
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\223\270\202%6`\340\222\300q&\362\351\2202H\320\26Y\233"..., 14132, 0) = 1452
[pid 16360] recv(40, 0x85192b8, 12680, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 124256}, NULL) = 0
[pid 16360] poll([{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\321\37\214O\225\210\341\24x\246z\247\316J\2007\\\34l\336"..., 12680, 0) = 2904
[pid 16360] recv(40, 0x8519e10, 9776, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 129052}, NULL) = 0
[pid 16360] poll( 
[pid 16378] <... select resumed> )  = 1 (in [55], left {239, 796000})
[pid 16378] read(55, "BODY ((\"text\" \"plain\" (\"charset\""..., 1024) = 199
[pid 16378] fcntl64(55, F_SETFL, O_RDWR) = 0
[pid 16378] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
Process 16378 detached
[pid 16389] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16390] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16361] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16352] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16362] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16364] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16392] <... poll resumed> [{fd=57, events=POLLIN}, {fd=61, 
events=POLLIN|POLLPRI}, {fd=58, events=POLLIN|POLLPRI}, {fd=18, 
events=POLLIN|POLLPRI}, {fd=14, events=POLLIN|POLLPRI}, {fd=15, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=11, 
events=POLLIN|POLLPRI}, {fd=12, events=POLLIN|POLLPRI}, {fd=60, 
events=POLLIN|POLLPRI}], 10, -1) = -1 EINTR (Interrupted system call)
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = -1 EINTR (Interrupted system call)
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = -1 EINTR (Interrupted system call)
[pid 16359] <... poll resumed> [{fd=45, events=POLLIN}, {fd=47, 
events=POLLIN}], 2, -1) = -1 EINTR (Interrupted system call)
[pid 16351] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16377] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16389] +++ killed by SIGSEGV (core dumped) +++
Process 16389 detached
[pid 16390] +++ killed by SIGSEGV (core dumped) +++
Process 16390 detached
[pid 16361] +++ killed by SIGSEGV (core dumped) +++
Process 16361 detached
[pid 16352] +++ killed by SIGSEGV (core dumped) +++
Process 16352 detached
[pid 16362] +++ killed by SIGSEGV (core dumped) +++
Process 16362 detached
[pid 16364] +++ killed by SIGSEGV (core dumped) +++
Process 16364 detached
[pid 16392] +++ killed by SIGSEGV (core dumped) +++
Process 16392 detached
[pid 16360] +++ killed by SIGSEGV (core dumped) +++
Process 16360 detached
[pid 16359] +++ killed by SIGSEGV (core dumped) +++
Process 16359 detached
[pid 16351] +++ killed by SIGSEGV (core dumped) +++
Process 16351 detached
[pid 16377] +++ killed by SIGSEGV (core dumped) +++
Process 16377 detached
+++ killed by SIGSEGV (core dumped) +++
Process 16332 detached


Hope this helps.

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mail

[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-10 Thread Sergii Golovatiuk
I agree, it's not kernel bug. Most likely it's udev rule or hal/dbus
bug. Since this bug affected a lot of people, I would change the
priority and tell mainteners to see the difference from early versions.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 74980] The issues powernowd init script.

2006-12-08 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: powernowd

After adding "CPU frequency scaling monitor" applet to my GNOMe environment I 
noticed that powernowd doesn't do its job as it should.
 It's enabled by default and I have OPTIONS="-q -m 1 -p 100 -u 70 -l 10" in 
/etc/default/powernowd. Moreover, I couldn't even find powernowd process 
running. After investigating /etc/init.d/powernowd I noteced that start 
function has some weird issues. I commented some lines as shown below and it 
started working after that

start() {
log_begin_msg "Starting $DESC... "
$DAEMON $OPTIONS >/dev/null 2>&1
#   if use_ondemand
#   then
#   log_end_msg 0
#   return 0
#   fi
#   if check_kernel
#   then
#echo "Starting $DESC: "
#   start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- 
$OPTIONS >/dev/null 2>&1 || {
#   status=$?
#   log_end_msg $status
#   return $status
#   }
#   else
#   log_success_msg "CPU frequency scaling not supported"
#   #   echo "required sysfs objects not found!"
#   #   echo -e "\tRead /usr/share/doc/powernowd/README.Debian for more 
information."
#   fi
log_end_msg 0
return 0
}


In additional I am showing some info about my laptop

[EMAIL PROTECTED]:~$ lspci -v
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 1882
Flags: bus master, fast devsel, latency 0
Capabilities: 

00:01.0 PCI bridge: Intel Corporation Mobile 915GM/PM Express PCI Express Root 
Port (rev 04) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-cfff
Memory behind bridge: fe90-fe9f
Prefetchable memory behind bridge: cff0-dfef
Capabilities: 

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 10c3
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: 

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at e480 [size=32]

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 217
I/O ports at e800 [size=32]

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at e880 [size=32]

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 169
I/O ports at ec00 [size=32]

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at febfbc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: 

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 
01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=06, sec-latency=32
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: 5000-52f0
Capabilities: 

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge 
(rev 04)
Flags: bus master, medium devsel, latency 0

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at ffa0 [size=16]

01:00.0 VGA compatible controller: ATI Technologies Inc M26 [Radeon Mobility 
X700] (prog-if 00 [VGA])
Subsystem: ASUSTeK Computer Inc. Unknown device 1962
Flags: bus master, fast devsel, latency 0, IRQ 169
   

[Bug 85095] Crash when editing a name of file.

2007-02-14 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: gnomebaker

I have added a couple of files to a project and tried to change a name
of file. I have highlighted a piece of name and pressed Del and
gnomebaker crashed. Odd, but when I delete the letters by pressing
backspace it works fine.

** Affects: gnomebaker (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Crash when editing a name of file.
https://launchpad.net/bugs/85095

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


[Bug 87571] Re: [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/6523934/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/6523935/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/6523936/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/6523937/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/6523938/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/6523939/Registers.txt

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 87571] [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: network-manager

It crashed when I tried to start it.

ProblemType: Crash
CrashCounter: 1
Date: Sat Feb 24 16:35:14 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/sbin/NetworkManager
Package: network-manager 0.6.4-6ubuntu2
ProcCmdline: NetworkManager
ProcCwd: /
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
Signal: 5
SourcePackage: network-manager
Stacktrace: #0  0x080691d9 in main ()
StacktraceTop: main ()
ThreadStacktrace:
 .
 Thread 1 (process 18780):
 #0  0x080691d9 in main ()
Uname: Linux laptop 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 
GNU/Linux
UserGroups:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


Re: [Bug 74980] Re: The issues powernowd init script.

2007-01-08 Thread Sergii Golovatiuk
I reverted scripts back to original and got

perfomance before loading gnome and
ondemand once it's loaded.

Does it make any sense to you?


On Sat, 2007-01-06 at 11:32 +, Sebastian Breier wrote:

> Sergii: Could you do the following:
> 1. Change the powernowd start script back to the original state
> 2. Boot your machine regularly into feisty
> 3. Do *NOT* log into X
> 4. Change to console (Ctrl-Alt-F1)
> 5. Log in
> 6. cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor (tell me the 
> output)
> 7. Log into X
> 8. When everything is fully loaded, do 6 again (tell me the output)
> 
> I've had the same issue; My problem lies with gnome-power-manager though
> - because the powernowd initscript correctly sets the scaling_governor
> to "ondemand". When logging into X, g-p-m sets the scaling_governor to
> "performance", "conservative" or "powersave", depending on its settings.
> 
> The question is why g-p-m never changes it to "ondemand" if Matthew
> already says that's a better settings if the machine supports it.
> 
> Please tell me your output from above, we'll open a new bug for g-p-m if
> you have the same issue.
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-18 Thread Sergii Golovatiuk
I can confirm that last updated fixed the issue. I see SD icon on
desktop and can access it without any problems. Thank you guys for fast
resolution.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
I can confirm this bug exists on ASUS M6VA on Feisty Beta. When I load
sdhci or tifm_sd system creates /dev/mmcblk0p1 but automount doesn't
work.


[EMAIL PROTECTED]:~# lspci|grep Ric
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
02:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C552 IEEE 1394 Controller (rev 08)
02:01.2 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 
SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
02:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 08)
02:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 03)

[EMAIL PROTECTED]:~# lsmod|grep sdhci
sdhci  18700  0 
mmc_core   26756  2 sdhci,mmc_block

syslog:
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Secure Digital Host 
Controller Interface driver
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Copyright(c) Pierre Ossman
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: SDHCI controller found at 
:02:01.2 [1180:0822] (rev 17)
Apr  6 19:17:54 asus kernel: [ 3563.624000] ACPI: PCI Interrupt :02:01.2[C] 
-> GSI 18 (level, low) -> IRQ 20
Apr  6 19:17:54 asus kernel: [ 3563.628000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 19:17:54 asus NetworkManager: ^I[1175876274.345889] 
nm_hal_device_added (): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1180_822_mmc_host'). 
Apr  6 19:17:54 asus kernel: [ 3563.956000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 19:17:54 asus kernel: [ 3563.956000]  mmcblk0: p1

[EMAIL PROTECTED]:~# ls /dev/mmcblk0*
/dev/mmcblk0  /dev/mmcblk0p1

and with timfm_sd

[EMAIL PROTECTED]:~# lsmod|grep mmc
mmc_block  13832  0 
mmc_core   26756  2 mmc_block,tifm_sd

Apr  6 15:11:48 asus kernel: [  105.232000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 15:11:48 asus kernel: [  105.252000] ACPI: PCI Interrupt :00:1b.0[A] 
-> GSI 16 (level, low) -> IRQ 16
Apr  6 15:11:48 asus kernel: [  105.252000] PCI: Setting latency timer of 
device :00:1b.0 to 64
Apr  6 15:11:48 asus kernel: [  105.648000] cs: IO port probe 0x100-0x3af: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x3e0-0x4ff: 
excluding 0x4d0-0x4d7
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x820-0x8ff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xc00-0xcf7: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xa00-0xaff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.656000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 15:11:48 asus kernel: [  105.656000]  mmcblk0: p1

Hope this helps

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
Could it be udev rule problem? Can anyone check 65-persistent-
storage.rules?

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 90749] Re: Deluge 0.5 in feisty

2007-04-06 Thread Sergii Golovatiuk
5.0 is much stable and usable. It would be nice to see it in feisty.

-- 
Deluge 0.5 in feisty
https://bugs.launchpad.net/bugs/90749
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 85095] Crash when editing a name of file.

2007-02-14 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: gnomebaker

I have added a couple of files to a project and tried to change a name
of file. I have highlighted a piece of name and pressed Del and
gnomebaker crashed. Odd, but when I delete the letters by pressing
backspace it works fine.

** Affects: gnomebaker (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Crash when editing a name of file.
https://launchpad.net/bugs/85095

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


[Bug 87571] Re: [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/6523934/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/6523935/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/6523936/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/6523937/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/6523938/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/6523939/Registers.txt

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 87571] [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: network-manager

It crashed when I tried to start it.

ProblemType: Crash
CrashCounter: 1
Date: Sat Feb 24 16:35:14 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/sbin/NetworkManager
Package: network-manager 0.6.4-6ubuntu2
ProcCmdline: NetworkManager
ProcCwd: /
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
Signal: 5
SourcePackage: network-manager
Stacktrace: #0  0x080691d9 in main ()
StacktraceTop: main ()
ThreadStacktrace:
 .
 Thread 1 (process 18780):
 #0  0x080691d9 in main ()
Uname: Linux laptop 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 
GNU/Linux
UserGroups:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


Re: [Bug 74980] Re: The issues powernowd init script.

2007-01-08 Thread Sergii Golovatiuk
I reverted scripts back to original and got

perfomance before loading gnome and
ondemand once it's loaded.

Does it make any sense to you?


On Sat, 2007-01-06 at 11:32 +, Sebastian Breier wrote:

> Sergii: Could you do the following:
> 1. Change the powernowd start script back to the original state
> 2. Boot your machine regularly into feisty
> 3. Do *NOT* log into X
> 4. Change to console (Ctrl-Alt-F1)
> 5. Log in
> 6. cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor (tell me the 
> output)
> 7. Log into X
> 8. When everything is fully loaded, do 6 again (tell me the output)
> 
> I've had the same issue; My problem lies with gnome-power-manager though
> - because the powernowd initscript correctly sets the scaling_governor
> to "ondemand". When logging into X, g-p-m sets the scaling_governor to
> "performance", "conservative" or "powersave", depending on its settings.
> 
> The question is why g-p-m never changes it to "ondemand" if Matthew
> already says that's a better settings if the machine supports it.
> 
> Please tell me your output from above, we'll open a new bug for g-p-m if
> you have the same issue.
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


Re: [Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
Mathew, thank you for looking into this. My machine supports ondemand
and the problem is not in powerd at all.  The problem is in
use_ondemand() function

In start function you have

   if use_ondemand
   then
   log_end_msg 0
   return 0
   fi

So once use_ondemand is called

use_ondemand() {
for x in /sys/devices/system/cpu/*; do
echo -n ondemand >$x/cpufreq/scaling_governor;
status=$?
if [ $status != 0 ]; then
return $status
fi
done
return 0
}

use_ondemand() returns zero since it can write into scaling_governor BUT
"if use_ondemand" will stop executing the script since it has return
statement. You just need to change it to "if ! use_ondemand" or just
remove that statement at all.

Hope this helps

On Mon, 2006-12-18 at 21:20 +, Matthew Garrett wrote:

> The ondemand governor can react to load changes more quickly than
> powernowd can, so powernowd exits on machines which support ondemand.
> 
> ** Changed in: powernowd (Ubuntu)
>Status: Unconfirmed => Rejected
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: Rejected => Unconfirmed

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2008-02-28 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: New => Fix Released

-- 
The issues powernowd init script.
https://bugs.launchpad.net/bugs/74980
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 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2008-02-28 Thread Sergii Golovatiuk
** Changed in: evolution-data-server (Ubuntu)
   Status: Triaged => Fix Released

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
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 74980] The issues powernowd init script.

2006-12-08 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: powernowd

After adding "CPU frequency scaling monitor" applet to my GNOMe environment I 
noticed that powernowd doesn't do its job as it should.
 It's enabled by default and I have OPTIONS="-q -m 1 -p 100 -u 70 -l 10" in 
/etc/default/powernowd. Moreover, I couldn't even find powernowd process 
running. After investigating /etc/init.d/powernowd I noteced that start 
function has some weird issues. I commented some lines as shown below and it 
started working after that

start() {
log_begin_msg "Starting $DESC... "
$DAEMON $OPTIONS >/dev/null 2>&1
#   if use_ondemand
#   then
#   log_end_msg 0
#   return 0
#   fi
#   if check_kernel
#   then
#echo "Starting $DESC: "
#   start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- 
$OPTIONS >/dev/null 2>&1 || {
#   status=$?
#   log_end_msg $status
#   return $status
#   }
#   else
#   log_success_msg "CPU frequency scaling not supported"
#   #   echo "required sysfs objects not found!"
#   #   echo -e "\tRead /usr/share/doc/powernowd/README.Debian for more 
information."
#   fi
log_end_msg 0
return 0
}


In additional I am showing some info about my laptop

[EMAIL PROTECTED]:~$ lspci -v
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 1882
Flags: bus master, fast devsel, latency 0
Capabilities: 

00:01.0 PCI bridge: Intel Corporation Mobile 915GM/PM Express PCI Express Root 
Port (rev 04) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-cfff
Memory behind bridge: fe90-fe9f
Prefetchable memory behind bridge: cff0-dfef
Capabilities: 

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 10c3
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: 

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at e480 [size=32]

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 217
I/O ports at e800 [size=32]

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at e880 [size=32]

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 169
I/O ports at ec00 [size=32]

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at febfbc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: 

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 
01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=06, sec-latency=32
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: 5000-52f0
Capabilities: 

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge 
(rev 04)
Flags: bus master, medium devsel, latency 0

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at ffa0 [size=16]

01:00.0 VGA compatible controller: ATI Technologies Inc M26 [Radeon Mobility 
X700] (prog-if 00 [VGA])
Subsystem: ASUSTeK Computer Inc. Unknown device 1962
Flags: bus master, fast devsel, latency 0, IRQ 169
   

[Bug 85095] Crash when editing a name of file.

2007-02-14 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: gnomebaker

I have added a couple of files to a project and tried to change a name
of file. I have highlighted a piece of name and pressed Del and
gnomebaker crashed. Odd, but when I delete the letters by pressing
backspace it works fine.

** Affects: gnomebaker (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Crash when editing a name of file.
https://launchpad.net/bugs/85095

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


[Bug 87571] Re: [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/6523934/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/6523935/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/6523936/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/6523937/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/6523938/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/6523939/Registers.txt

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 87571] [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: network-manager

It crashed when I tried to start it.

ProblemType: Crash
CrashCounter: 1
Date: Sat Feb 24 16:35:14 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/sbin/NetworkManager
Package: network-manager 0.6.4-6ubuntu2
ProcCmdline: NetworkManager
ProcCwd: /
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
Signal: 5
SourcePackage: network-manager
Stacktrace: #0  0x080691d9 in main ()
StacktraceTop: main ()
ThreadStacktrace:
 .
 Thread 1 (process 18780):
 #0  0x080691d9 in main ()
Uname: Linux laptop 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 
GNU/Linux
UserGroups:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


Re: [Bug 74980] Re: The issues powernowd init script.

2007-01-08 Thread Sergii Golovatiuk
I reverted scripts back to original and got

perfomance before loading gnome and
ondemand once it's loaded.

Does it make any sense to you?


On Sat, 2007-01-06 at 11:32 +, Sebastian Breier wrote:

> Sergii: Could you do the following:
> 1. Change the powernowd start script back to the original state
> 2. Boot your machine regularly into feisty
> 3. Do *NOT* log into X
> 4. Change to console (Ctrl-Alt-F1)
> 5. Log in
> 6. cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor (tell me the 
> output)
> 7. Log into X
> 8. When everything is fully loaded, do 6 again (tell me the output)
> 
> I've had the same issue; My problem lies with gnome-power-manager though
> - because the powernowd initscript correctly sets the scaling_governor
> to "ondemand". When logging into X, g-p-m sets the scaling_governor to
> "performance", "conservative" or "powersave", depending on its settings.
> 
> The question is why g-p-m never changes it to "ondemand" if Matthew
> already says that's a better settings if the machine supports it.
> 
> Please tell me your output from above, we'll open a new bug for g-p-m if
> you have the same issue.
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-18 Thread Sergii Golovatiuk
I can confirm that last updated fixed the issue. I see SD icon on
desktop and can access it without any problems. Thank you guys for fast
resolution.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
I can confirm this bug exists on ASUS M6VA on Feisty Beta. When I load
sdhci or tifm_sd system creates /dev/mmcblk0p1 but automount doesn't
work.


[EMAIL PROTECTED]:~# lspci|grep Ric
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
02:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C552 IEEE 1394 Controller (rev 08)
02:01.2 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 
SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
02:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 08)
02:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 03)

[EMAIL PROTECTED]:~# lsmod|grep sdhci
sdhci  18700  0 
mmc_core   26756  2 sdhci,mmc_block

syslog:
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Secure Digital Host 
Controller Interface driver
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Copyright(c) Pierre Ossman
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: SDHCI controller found at 
:02:01.2 [1180:0822] (rev 17)
Apr  6 19:17:54 asus kernel: [ 3563.624000] ACPI: PCI Interrupt :02:01.2[C] 
-> GSI 18 (level, low) -> IRQ 20
Apr  6 19:17:54 asus kernel: [ 3563.628000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 19:17:54 asus NetworkManager: ^I[1175876274.345889] 
nm_hal_device_added (): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1180_822_mmc_host'). 
Apr  6 19:17:54 asus kernel: [ 3563.956000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 19:17:54 asus kernel: [ 3563.956000]  mmcblk0: p1

[EMAIL PROTECTED]:~# ls /dev/mmcblk0*
/dev/mmcblk0  /dev/mmcblk0p1

and with timfm_sd

[EMAIL PROTECTED]:~# lsmod|grep mmc
mmc_block  13832  0 
mmc_core   26756  2 mmc_block,tifm_sd

Apr  6 15:11:48 asus kernel: [  105.232000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 15:11:48 asus kernel: [  105.252000] ACPI: PCI Interrupt :00:1b.0[A] 
-> GSI 16 (level, low) -> IRQ 16
Apr  6 15:11:48 asus kernel: [  105.252000] PCI: Setting latency timer of 
device :00:1b.0 to 64
Apr  6 15:11:48 asus kernel: [  105.648000] cs: IO port probe 0x100-0x3af: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x3e0-0x4ff: 
excluding 0x4d0-0x4d7
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x820-0x8ff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xc00-0xcf7: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xa00-0xaff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.656000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 15:11:48 asus kernel: [  105.656000]  mmcblk0: p1

Hope this helps

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
Could it be udev rule problem? Can anyone check 65-persistent-
storage.rules?

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 90749] Re: Deluge 0.5 in feisty

2007-04-06 Thread Sergii Golovatiuk
5.0 is much stable and usable. It would be nice to see it in feisty.

-- 
Deluge 0.5 in feisty
https://bugs.launchpad.net/bugs/90749
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: evolution

It crashed, whyen I tried to open INBOX IMAP folder. The server runs
Smartmail and it seems that evolution has more than one problem with
smartmail. sometimes, it stops receiving the messages, sometimes, it
can't open folder with e-mail.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Mon Apr  9 15:42:56 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/evolution-2.10
Package: evolution 2.10.0-0ubuntu2
PackageArchitecture: i386
ProcCmdline: evolution --component=mail
ProcCwd: /home/serg
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: evolution
Stacktrace:
 #0  0xb54bcae2 in ?? ()
from /usr/lib/evolution-data-server-1.2/camel-providers-10/libcamelimap.so
 #1  0x in ?? ()
StacktraceTop:
 ?? ()
 ?? ()
Uname: Linux asus 2.6.20-14-generic #2 SMP Mon Apr 2 20:37:49 UTC 2007 i686 
GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/7222737/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/7222738/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/7222739/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/7222740/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/7222741/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/7222742/Registers.txt

** Attachment added: "ThreadStacktrace.txt"
   http://librarian.launchpad.net/7222743/ThreadStacktrace.txt

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-10 Thread Sergii Golovatiuk
I am also attaching strace logs. Evolution died and apport didn't
recognize a crash. I just tried to open Inbox, and evolution died.

[pid 16332] ioctl(3, FIONREAD 
[pid 16392] read(58,  
[pid 16332] <... ioctl resumed> , [0])  = 0
[pid 16392] <... read resumed> "GIOP\1\2\1\0T\0\0\0", 12) = 12
[pid 16332] gettimeofday( 
[pid 16392] read(58,  
[pid 16332] <... gettimeofday resumed> {1176229005, 88498}, NULL) = 0
[pid 16392] <... read resumed> 
"\260\236\341\277\3\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\331\310"..., 84) = 84
[pid 16332] poll( 
[pid 16392] write(9, "A", 1 
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI, revents=POLLIN}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = 1
[pid 16392] <... write resumed> )   = 1
[pid 16332] gettimeofday( 
[pid 16392] poll( 
[pid 16332] <... gettimeofday resumed> {1176229005, 88657}, NULL) = 0
[pid 16332] read(8, "A", 1) = 1
[pid 16332] writev(58, [{"GIOP\1\2\1\1$\0\0\0", 12}, 
{"\260\236\341\277\0\0\0\0\1\0\0\0\1\0\0\0\f\0\0\0\1\1\1"..., 36}], 2) = 48
[pid 16332] ioctl(3, FIONREAD, [0]) = 0
[pid 16332] gettimeofday({1176229005, 88839}, NULL) = 0
[pid 16332] poll( 
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\223\270\202%6`\340\222\300q&\362\351\2202H\320\26Y\233"..., 14132, 0) = 1452
[pid 16360] recv(40, 0x85192b8, 12680, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 124256}, NULL) = 0
[pid 16360] poll([{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\321\37\214O\225\210\341\24x\246z\247\316J\2007\\\34l\336"..., 12680, 0) = 2904
[pid 16360] recv(40, 0x8519e10, 9776, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 129052}, NULL) = 0
[pid 16360] poll( 
[pid 16378] <... select resumed> )  = 1 (in [55], left {239, 796000})
[pid 16378] read(55, "BODY ((\"text\" \"plain\" (\"charset\""..., 1024) = 199
[pid 16378] fcntl64(55, F_SETFL, O_RDWR) = 0
[pid 16378] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
Process 16378 detached
[pid 16389] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16390] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16361] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16352] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16362] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16364] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16392] <... poll resumed> [{fd=57, events=POLLIN}, {fd=61, 
events=POLLIN|POLLPRI}, {fd=58, events=POLLIN|POLLPRI}, {fd=18, 
events=POLLIN|POLLPRI}, {fd=14, events=POLLIN|POLLPRI}, {fd=15, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=11, 
events=POLLIN|POLLPRI}, {fd=12, events=POLLIN|POLLPRI}, {fd=60, 
events=POLLIN|POLLPRI}], 10, -1) = -1 EINTR (Interrupted system call)
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = -1 EINTR (Interrupted system call)
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = -1 EINTR (Interrupted system call)
[pid 16359] <... poll resumed> [{fd=45, events=POLLIN}, {fd=47, 
events=POLLIN}], 2, -1) = -1 EINTR (Interrupted system call)
[pid 16351] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16377] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16389] +++ killed by SIGSEGV (core dumped) +++
Process 16389 detached
[pid 16390] +++ killed by SIGSEGV (core dumped) +++
Process 16390 detached
[pid 16361] +++ killed by SIGSEGV (core dumped) +++
Process 16361 detached
[pid 16352] +++ killed by SIGSEGV (core dumped) +++
Process 16352 detached
[pid 16362] +++ killed by SIGSEGV (core dumped) +++
Process 16362 detached
[pid 16364] +++ killed by SIGSEGV (core dumped) +++
Process 16364 detached
[pid 16392] +++ killed by SIGSEGV (core dumped) +++
Process 16392 detached
[pid 16360] +++ killed by SIGSEGV (core dumped) +++
Process 16360 detached
[pid 16359] +++ killed by SIGSEGV (core dumped) +++
Process 16359 detached
[pid 16351] +++ killed by SIGSEGV (core dumped) +++
Process 16351 detached
[pid 16377] +++ killed by SIGSEGV (core dumped) +++
Process 16377 detached
+++ killed by SIGSEGV (core dumped) +++
Process 16332 detached


Hope this helps.

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mail

[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-10 Thread Sergii Golovatiuk
I agree, it's not kernel bug. Most likely it's udev rule or hal/dbus
bug. Since this bug affected a lot of people, I would change the
priority and tell mainteners to see the difference from early versions.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


Re: [Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
Mathew, thank you for looking into this. My machine supports ondemand
and the problem is not in powerd at all.  The problem is in
use_ondemand() function

In start function you have

   if use_ondemand
   then
   log_end_msg 0
   return 0
   fi

So once use_ondemand is called

use_ondemand() {
for x in /sys/devices/system/cpu/*; do
echo -n ondemand >$x/cpufreq/scaling_governor;
status=$?
if [ $status != 0 ]; then
return $status
fi
done
return 0
}

use_ondemand() returns zero since it can write into scaling_governor BUT
"if use_ondemand" will stop executing the script since it has return
statement. You just need to change it to "if ! use_ondemand" or just
remove that statement at all.

Hope this helps

On Mon, 2006-12-18 at 21:20 +, Matthew Garrett wrote:

> The ondemand governor can react to load changes more quickly than
> powernowd can, so powernowd exits on machines which support ondemand.
> 
> ** Changed in: powernowd (Ubuntu)
>Status: Unconfirmed => Rejected
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: Rejected => Unconfirmed

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] The issues powernowd init script.

2006-12-08 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: powernowd

After adding "CPU frequency scaling monitor" applet to my GNOMe environment I 
noticed that powernowd doesn't do its job as it should.
 It's enabled by default and I have OPTIONS="-q -m 1 -p 100 -u 70 -l 10" in 
/etc/default/powernowd. Moreover, I couldn't even find powernowd process 
running. After investigating /etc/init.d/powernowd I noteced that start 
function has some weird issues. I commented some lines as shown below and it 
started working after that

start() {
log_begin_msg "Starting $DESC... "
$DAEMON $OPTIONS >/dev/null 2>&1
#   if use_ondemand
#   then
#   log_end_msg 0
#   return 0
#   fi
#   if check_kernel
#   then
#echo "Starting $DESC: "
#   start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- 
$OPTIONS >/dev/null 2>&1 || {
#   status=$?
#   log_end_msg $status
#   return $status
#   }
#   else
#   log_success_msg "CPU frequency scaling not supported"
#   #   echo "required sysfs objects not found!"
#   #   echo -e "\tRead /usr/share/doc/powernowd/README.Debian for more 
information."
#   fi
log_end_msg 0
return 0
}


In additional I am showing some info about my laptop

[EMAIL PROTECTED]:~$ lspci -v
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 1882
Flags: bus master, fast devsel, latency 0
Capabilities: 

00:01.0 PCI bridge: Intel Corporation Mobile 915GM/PM Express PCI Express Root 
Port (rev 04) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-cfff
Memory behind bridge: fe90-fe9f
Prefetchable memory behind bridge: cff0-dfef
Capabilities: 

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 10c3
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: 

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at e480 [size=32]

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 217
I/O ports at e800 [size=32]

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at e880 [size=32]

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 169
I/O ports at ec00 [size=32]

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at febfbc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: 

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 
01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=06, sec-latency=32
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: 5000-52f0
Capabilities: 

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge 
(rev 04)
Flags: bus master, medium devsel, latency 0

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at ffa0 [size=16]

01:00.0 VGA compatible controller: ATI Technologies Inc M26 [Radeon Mobility 
X700] (prog-if 00 [VGA])
Subsystem: ASUSTeK Computer Inc. Unknown device 1962
Flags: bus master, fast devsel, latency 0, IRQ 169
   

Re: [Bug 74980] Re: The issues powernowd init script.

2007-01-08 Thread Sergii Golovatiuk
I reverted scripts back to original and got

perfomance before loading gnome and
ondemand once it's loaded.

Does it make any sense to you?


On Sat, 2007-01-06 at 11:32 +, Sebastian Breier wrote:

> Sergii: Could you do the following:
> 1. Change the powernowd start script back to the original state
> 2. Boot your machine regularly into feisty
> 3. Do *NOT* log into X
> 4. Change to console (Ctrl-Alt-F1)
> 5. Log in
> 6. cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor (tell me the 
> output)
> 7. Log into X
> 8. When everything is fully loaded, do 6 again (tell me the output)
> 
> I've had the same issue; My problem lies with gnome-power-manager though
> - because the powernowd initscript correctly sets the scaling_governor
> to "ondemand". When logging into X, g-p-m sets the scaling_governor to
> "performance", "conservative" or "powersave", depending on its settings.
> 
> The question is why g-p-m never changes it to "ondemand" if Matthew
> already says that's a better settings if the machine supports it.
> 
> Please tell me your output from above, we'll open a new bug for g-p-m if
> you have the same issue.
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-18 Thread Sergii Golovatiuk
I can confirm that last updated fixed the issue. I see SD icon on
desktop and can access it without any problems. Thank you guys for fast
resolution.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
I can confirm this bug exists on ASUS M6VA on Feisty Beta. When I load
sdhci or tifm_sd system creates /dev/mmcblk0p1 but automount doesn't
work.


[EMAIL PROTECTED]:~# lspci|grep Ric
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
02:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C552 IEEE 1394 Controller (rev 08)
02:01.2 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 
SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
02:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 08)
02:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 03)

[EMAIL PROTECTED]:~# lsmod|grep sdhci
sdhci  18700  0 
mmc_core   26756  2 sdhci,mmc_block

syslog:
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Secure Digital Host 
Controller Interface driver
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Copyright(c) Pierre Ossman
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: SDHCI controller found at 
:02:01.2 [1180:0822] (rev 17)
Apr  6 19:17:54 asus kernel: [ 3563.624000] ACPI: PCI Interrupt :02:01.2[C] 
-> GSI 18 (level, low) -> IRQ 20
Apr  6 19:17:54 asus kernel: [ 3563.628000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 19:17:54 asus NetworkManager: ^I[1175876274.345889] 
nm_hal_device_added (): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1180_822_mmc_host'). 
Apr  6 19:17:54 asus kernel: [ 3563.956000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 19:17:54 asus kernel: [ 3563.956000]  mmcblk0: p1

[EMAIL PROTECTED]:~# ls /dev/mmcblk0*
/dev/mmcblk0  /dev/mmcblk0p1

and with timfm_sd

[EMAIL PROTECTED]:~# lsmod|grep mmc
mmc_block  13832  0 
mmc_core   26756  2 mmc_block,tifm_sd

Apr  6 15:11:48 asus kernel: [  105.232000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 15:11:48 asus kernel: [  105.252000] ACPI: PCI Interrupt :00:1b.0[A] 
-> GSI 16 (level, low) -> IRQ 16
Apr  6 15:11:48 asus kernel: [  105.252000] PCI: Setting latency timer of 
device :00:1b.0 to 64
Apr  6 15:11:48 asus kernel: [  105.648000] cs: IO port probe 0x100-0x3af: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x3e0-0x4ff: 
excluding 0x4d0-0x4d7
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x820-0x8ff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xc00-0xcf7: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xa00-0xaff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.656000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 15:11:48 asus kernel: [  105.656000]  mmcblk0: p1

Hope this helps

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
Could it be udev rule problem? Can anyone check 65-persistent-
storage.rules?

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 90749] Re: Deluge 0.5 in feisty

2007-04-06 Thread Sergii Golovatiuk
5.0 is much stable and usable. It would be nice to see it in feisty.

-- 
Deluge 0.5 in feisty
https://bugs.launchpad.net/bugs/90749
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: evolution

It crashed, whyen I tried to open INBOX IMAP folder. The server runs
Smartmail and it seems that evolution has more than one problem with
smartmail. sometimes, it stops receiving the messages, sometimes, it
can't open folder with e-mail.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Mon Apr  9 15:42:56 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/evolution-2.10
Package: evolution 2.10.0-0ubuntu2
PackageArchitecture: i386
ProcCmdline: evolution --component=mail
ProcCwd: /home/serg
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: evolution
Stacktrace:
 #0  0xb54bcae2 in ?? ()
from /usr/lib/evolution-data-server-1.2/camel-providers-10/libcamelimap.so
 #1  0x in ?? ()
StacktraceTop:
 ?? ()
 ?? ()
Uname: Linux asus 2.6.20-14-generic #2 SMP Mon Apr 2 20:37:49 UTC 2007 i686 
GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/7222737/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/7222738/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/7222739/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/7222740/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/7222741/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/7222742/Registers.txt

** Attachment added: "ThreadStacktrace.txt"
   http://librarian.launchpad.net/7222743/ThreadStacktrace.txt

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-10 Thread Sergii Golovatiuk
I am also attaching strace logs. Evolution died and apport didn't
recognize a crash. I just tried to open Inbox, and evolution died.

[pid 16332] ioctl(3, FIONREAD 
[pid 16392] read(58,  
[pid 16332] <... ioctl resumed> , [0])  = 0
[pid 16392] <... read resumed> "GIOP\1\2\1\0T\0\0\0", 12) = 12
[pid 16332] gettimeofday( 
[pid 16392] read(58,  
[pid 16332] <... gettimeofday resumed> {1176229005, 88498}, NULL) = 0
[pid 16392] <... read resumed> 
"\260\236\341\277\3\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\331\310"..., 84) = 84
[pid 16332] poll( 
[pid 16392] write(9, "A", 1 
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI, revents=POLLIN}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = 1
[pid 16392] <... write resumed> )   = 1
[pid 16332] gettimeofday( 
[pid 16392] poll( 
[pid 16332] <... gettimeofday resumed> {1176229005, 88657}, NULL) = 0
[pid 16332] read(8, "A", 1) = 1
[pid 16332] writev(58, [{"GIOP\1\2\1\1$\0\0\0", 12}, 
{"\260\236\341\277\0\0\0\0\1\0\0\0\1\0\0\0\f\0\0\0\1\1\1"..., 36}], 2) = 48
[pid 16332] ioctl(3, FIONREAD, [0]) = 0
[pid 16332] gettimeofday({1176229005, 88839}, NULL) = 0
[pid 16332] poll( 
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\223\270\202%6`\340\222\300q&\362\351\2202H\320\26Y\233"..., 14132, 0) = 1452
[pid 16360] recv(40, 0x85192b8, 12680, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 124256}, NULL) = 0
[pid 16360] poll([{fd=40, events=POLLIN, revents=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = 1
[pid 16360] recv(40, 
"\321\37\214O\225\210\341\24x\246z\247\316J\2007\\\34l\336"..., 12680, 0) = 2904
[pid 16360] recv(40, 0x8519e10, 9776, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
[pid 16360] gettimeofday({1176229005, 129052}, NULL) = 0
[pid 16360] poll( 
[pid 16378] <... select resumed> )  = 1 (in [55], left {239, 796000})
[pid 16378] read(55, "BODY ((\"text\" \"plain\" (\"charset\""..., 1024) = 199
[pid 16378] fcntl64(55, F_SETFL, O_RDWR) = 0
[pid 16378] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
Process 16378 detached
[pid 16389] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16390] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16361] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16352] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16362] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16364] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16392] <... poll resumed> [{fd=57, events=POLLIN}, {fd=61, 
events=POLLIN|POLLPRI}, {fd=58, events=POLLIN|POLLPRI}, {fd=18, 
events=POLLIN|POLLPRI}, {fd=14, events=POLLIN|POLLPRI}, {fd=15, 
events=POLLIN|POLLPRI}, {fd=13, events=POLLIN|POLLPRI}, {fd=11, 
events=POLLIN|POLLPRI}, {fd=12, events=POLLIN|POLLPRI}, {fd=60, 
events=POLLIN|POLLPRI}], 10, -1) = -1 EINTR (Interrupted system call)
[pid 16332] <... poll resumed> [{fd=4, events=POLLIN}, {fd=3, events=POLLIN}, 
{fd=8, events=POLLIN|POLLPRI}, {fd=23, events=POLLIN}, {fd=10, 
events=POLLIN|POLLPRI}, {fd=41, events=POLLIN}, {fd=19, events=POLLIN}, {fd=21, 
events=POLLIN}], 8, 104565) = -1 EINTR (Interrupted system call)
[pid 16360] <... poll resumed> [{fd=40, events=POLLIN}, {fd=51, 
events=POLLIN}], 2, 24) = -1 EINTR (Interrupted system call)
[pid 16359] <... poll resumed> [{fd=45, events=POLLIN}, {fd=47, 
events=POLLIN}], 2, -1) = -1 EINTR (Interrupted system call)
[pid 16351] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16377] <... futex resumed> )   = -1 EINTR (Interrupted system call)
[pid 16389] +++ killed by SIGSEGV (core dumped) +++
Process 16389 detached
[pid 16390] +++ killed by SIGSEGV (core dumped) +++
Process 16390 detached
[pid 16361] +++ killed by SIGSEGV (core dumped) +++
Process 16361 detached
[pid 16352] +++ killed by SIGSEGV (core dumped) +++
Process 16352 detached
[pid 16362] +++ killed by SIGSEGV (core dumped) +++
Process 16362 detached
[pid 16364] +++ killed by SIGSEGV (core dumped) +++
Process 16364 detached
[pid 16392] +++ killed by SIGSEGV (core dumped) +++
Process 16392 detached
[pid 16360] +++ killed by SIGSEGV (core dumped) +++
Process 16360 detached
[pid 16359] +++ killed by SIGSEGV (core dumped) +++
Process 16359 detached
[pid 16351] +++ killed by SIGSEGV (core dumped) +++
Process 16351 detached
[pid 16377] +++ killed by SIGSEGV (core dumped) +++
Process 16377 detached
+++ killed by SIGSEGV (core dumped) +++
Process 16332 detached


Hope this helps.

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mail

[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-10 Thread Sergii Golovatiuk
I agree, it's not kernel bug. Most likely it's udev rule or hal/dbus
bug. Since this bug affected a lot of people, I would change the
priority and tell mainteners to see the difference from early versions.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 74980] Re: The issues powernowd init script.

2008-02-28 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: New => Fix Released

-- 
The issues powernowd init script.
https://bugs.launchpad.net/bugs/74980
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 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2008-02-28 Thread Sergii Golovatiuk
** Changed in: evolution-data-server (Ubuntu)
   Status: Triaged => Fix Released

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
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


Re: [Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
Mathew, thank you for looking into this. My machine supports ondemand
and the problem is not in powerd at all.  The problem is in
use_ondemand() function

In start function you have

   if use_ondemand
   then
   log_end_msg 0
   return 0
   fi

So once use_ondemand is called

use_ondemand() {
for x in /sys/devices/system/cpu/*; do
echo -n ondemand >$x/cpufreq/scaling_governor;
status=$?
if [ $status != 0 ]; then
return $status
fi
done
return 0
}

use_ondemand() returns zero since it can write into scaling_governor BUT
"if use_ondemand" will stop executing the script since it has return
statement. You just need to change it to "if ! use_ondemand" or just
remove that statement at all.

Hope this helps

On Mon, 2006-12-18 at 21:20 +, Matthew Garrett wrote:

> The ondemand governor can react to load changes more quickly than
> powernowd can, so powernowd exits on machines which support ondemand.
> 
> ** Changed in: powernowd (Ubuntu)
>Status: Unconfirmed => Rejected
>

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] Re: The issues powernowd init script.

2006-12-19 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: Rejected => Unconfirmed

-- 
The issues powernowd init script.
https://launchpad.net/bugs/74980

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


[Bug 74980] The issues powernowd init script.

2006-12-08 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: powernowd

After adding "CPU frequency scaling monitor" applet to my GNOMe environment I 
noticed that powernowd doesn't do its job as it should.
 It's enabled by default and I have OPTIONS="-q -m 1 -p 100 -u 70 -l 10" in 
/etc/default/powernowd. Moreover, I couldn't even find powernowd process 
running. After investigating /etc/init.d/powernowd I noteced that start 
function has some weird issues. I commented some lines as shown below and it 
started working after that

start() {
log_begin_msg "Starting $DESC... "
$DAEMON $OPTIONS >/dev/null 2>&1
#   if use_ondemand
#   then
#   log_end_msg 0
#   return 0
#   fi
#   if check_kernel
#   then
#echo "Starting $DESC: "
#   start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- 
$OPTIONS >/dev/null 2>&1 || {
#   status=$?
#   log_end_msg $status
#   return $status
#   }
#   else
#   log_success_msg "CPU frequency scaling not supported"
#   #   echo "required sysfs objects not found!"
#   #   echo -e "\tRead /usr/share/doc/powernowd/README.Debian for more 
information."
#   fi
log_end_msg 0
return 0
}


In additional I am showing some info about my laptop

[EMAIL PROTECTED]:~$ lspci -v
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express 
Processor to DRAM Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 1882
Flags: bus master, fast devsel, latency 0
Capabilities: 

00:01.0 PCI bridge: Intel Corporation Mobile 915GM/PM Express PCI Express Root 
Port (rev 04) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-cfff
Memory behind bridge: fe90-fe9f
Prefetchable memory behind bridge: cff0-dfef
Capabilities: 

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
High Definition Audio Controller (rev 04)
Subsystem: ASUSTeK Computer Inc. Unknown device 10c3
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: 

00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #1 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at e480 [size=32]

00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #2 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 217
I/O ports at e800 [size=32]

00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #3 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at e880 [size=32]

00:1d.3 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB UHCI #4 (rev 04) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 169
I/O ports at ec00 [size=32]

00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
USB2 EHCI Controller (rev 04) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at febfbc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: 

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d4) (prog-if 
01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=06, sec-latency=32
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: 5000-52f0
Capabilities: 

00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge 
(rev 04)
Flags: bus master, medium devsel, latency 0

00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) 
IDE Controller (rev 04) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 1967
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at 
I/O ports at ffa0 [size=16]

01:00.0 VGA compatible controller: ATI Technologies Inc M26 [Radeon Mobility 
X700] (prog-if 00 [VGA])
Subsystem: ASUSTeK Computer Inc. Unknown device 1962
Flags: bus master, fast devsel, latency 0, IRQ 169
   

[Bug 85095] Crash when editing a name of file.

2007-02-14 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: gnomebaker

I have added a couple of files to a project and tried to change a name
of file. I have highlighted a piece of name and pressed Del and
gnomebaker crashed. Odd, but when I delete the letters by pressing
backspace it works fine.

** Affects: gnomebaker (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Crash when editing a name of file.
https://launchpad.net/bugs/85095

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


[Bug 87571] Re: [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/6523934/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/6523935/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/6523936/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/6523937/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/6523938/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/6523939/Registers.txt

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 87571] [apport] NetworkManager crashed with signal 5 in main()

2007-02-24 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: network-manager

It crashed when I tried to start it.

ProblemType: Crash
CrashCounter: 1
Date: Sat Feb 24 16:35:14 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/sbin/NetworkManager
Package: network-manager 0.6.4-6ubuntu2
ProcCmdline: NetworkManager
ProcCwd: /
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
 LANG=en_US.UTF-8
 LANGUAGE=en_US:en
Signal: 5
SourcePackage: network-manager
Stacktrace: #0  0x080691d9 in main ()
StacktraceTop: main ()
ThreadStacktrace:
 .
 Thread 1 (process 18780):
 #0  0x080691d9 in main ()
Uname: Linux laptop 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 
GNU/Linux
UserGroups:

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] NetworkManager crashed with signal 5 in main()
https://launchpad.net/bugs/87571

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


[Bug 74980] Re: The issues powernowd init script.

2008-02-28 Thread Sergii Golovatiuk
** Changed in: powernowd (Ubuntu)
   Status: New => Fix Released

-- 
The issues powernowd init script.
https://bugs.launchpad.net/bugs/74980
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 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2008-02-28 Thread Sergii Golovatiuk
** Changed in: evolution-data-server (Ubuntu)
   Status: Triaged => Fix Released

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
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 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-18 Thread Sergii Golovatiuk
I can confirm that last updated fixed the issue. I see SD icon on
desktop and can access it without any problems. Thank you guys for fast
resolution.

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
I can confirm this bug exists on ASUS M6VA on Feisty Beta. When I load
sdhci or tifm_sd system creates /dev/mmcblk0p1 but automount doesn't
work.


[EMAIL PROTECTED]:~# lspci|grep Ric
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
02:01.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C552 IEEE 1394 Controller (rev 08)
02:01.2 Generic system peripheral [0805]: Ricoh Co Ltd R5C822 
SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
02:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 08)
02:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 03)

[EMAIL PROTECTED]:~# lsmod|grep sdhci
sdhci  18700  0 
mmc_core   26756  2 sdhci,mmc_block

syslog:
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Secure Digital Host 
Controller Interface driver
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: Copyright(c) Pierre Ossman
Apr  6 19:17:54 asus kernel: [ 3563.624000] sdhci: SDHCI controller found at 
:02:01.2 [1180:0822] (rev 17)
Apr  6 19:17:54 asus kernel: [ 3563.624000] ACPI: PCI Interrupt :02:01.2[C] 
-> GSI 18 (level, low) -> IRQ 20
Apr  6 19:17:54 asus kernel: [ 3563.628000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 19:17:54 asus NetworkManager: ^I[1175876274.345889] 
nm_hal_device_added (): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1180_822_mmc_host'). 
Apr  6 19:17:54 asus kernel: [ 3563.956000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 19:17:54 asus kernel: [ 3563.956000]  mmcblk0: p1

[EMAIL PROTECTED]:~# ls /dev/mmcblk0*
/dev/mmcblk0  /dev/mmcblk0p1

and with timfm_sd

[EMAIL PROTECTED]:~# lsmod|grep mmc
mmc_block  13832  0 
mmc_core   26756  2 mmc_block,tifm_sd

Apr  6 15:11:48 asus kernel: [  105.232000] mmc0: SDHCI at 0xfeafb400 irq 20 DMA
Apr  6 15:11:48 asus kernel: [  105.252000] ACPI: PCI Interrupt :00:1b.0[A] 
-> GSI 16 (level, low) -> IRQ 16
Apr  6 15:11:48 asus kernel: [  105.252000] PCI: Setting latency timer of 
device :00:1b.0 to 64
Apr  6 15:11:48 asus kernel: [  105.648000] cs: IO port probe 0x100-0x3af: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x3e0-0x4ff: 
excluding 0x4d0-0x4d7
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0x820-0x8ff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xc00-0xcf7: 
clean.
Apr  6 15:11:48 asus kernel: [  105.652000] cs: IO port probe 0xa00-0xaff: 
clean.
Apr  6 15:11:48 asus kernel: [  105.656000] mmcblk0: mmc0:b368 SDC   4020224KiB 
Apr  6 15:11:48 asus kernel: [  105.656000]  mmcblk0: p1

Hope this helps

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 53268] Re: On Thinkpad X60s and Z60 SD card reader doesn't work

2007-04-06 Thread Sergii Golovatiuk
Could it be udev rule problem? Can anyone check 65-persistent-
storage.rules?

-- 
On Thinkpad X60s and Z60 SD card reader doesn't work
https://bugs.launchpad.net/bugs/53268
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 90749] Re: Deluge 0.5 in feisty

2007-04-06 Thread Sergii Golovatiuk
5.0 is much stable and usable. It would be nice to see it in feisty.

-- 
Deluge 0.5 in feisty
https://bugs.launchpad.net/bugs/90749
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk
Public bug reported:

Binary package hint: evolution

It crashed, whyen I tried to open INBOX IMAP folder. The server runs
Smartmail and it seems that evolution has more than one problem with
smartmail. sometimes, it stops receiving the messages, sometimes, it
can't open folder with e-mail.

ProblemType: Crash
Architecture: i386
CrashCounter: 1
Date: Mon Apr  9 15:42:56 2007
DistroRelease: Ubuntu 7.04
ExecutablePath: /usr/bin/evolution-2.10
Package: evolution 2.10.0-0ubuntu2
PackageArchitecture: i386
ProcCmdline: evolution --component=mail
ProcCwd: /home/serg
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: evolution
Stacktrace:
 #0  0xb54bcae2 in ?? ()
from /usr/lib/evolution-data-server-1.2/camel-providers-10/libcamelimap.so
 #1  0x in ?? ()
StacktraceTop:
 ?? ()
 ?? ()
Uname: Linux asus 2.6.20-14-generic #2 SMP Mon Apr 2 20:37:49 UTC 2007 i686 
GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 104780] Re: [apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]

2007-04-09 Thread Sergii Golovatiuk

** Attachment added: "CoreDump.gz"
   http://librarian.launchpad.net/7222737/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://librarian.launchpad.net/7222738/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://librarian.launchpad.net/7222739/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://librarian.launchpad.net/7222740/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://librarian.launchpad.net/7222741/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://librarian.launchpad.net/7222742/Registers.txt

** Attachment added: "ThreadStacktrace.txt"
   http://librarian.launchpad.net/7222743/ThreadStacktrace.txt

-- 
[apport] evolution-2.10 crashed with SIGSEGV [on SmartMail]
https://bugs.launchpad.net/bugs/104780
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


  1   2   >