Processed: Re: Bug#494768: sendfile and CIFS

2008-08-16 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 retitle 494768 sendfile no longer works with CIFS
Bug#494768: apache2 cannot use sendfile() on CIFS partitions
Changed Bug title to `sendfile no longer works with CIFS' from `apache2 cannot 
use sendfile() on CIFS partitions'.

 reassign 494768 linux-2.6
Bug#494768: sendfile no longer works with CIFS
Bug reassigned from package `apache2' to `linux-2.6'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Bug#495009: closed by Bastian Blank wa...@debian.org (Re: Bug#495009: please update vserver patch and re enable it)

2008-08-16 Thread Micah Anderson
maximilian attems [EMAIL PROTECTED] writes:

Hi all,

 On Thu, Aug 14, 2008 at 12:30:05PM +0300, Arturas K. wrote:
 * I know you guys are busy - so am I, but I am eager to try and help on 
 this particular feature.

 please stop waffling.

 if you checked current sid repo you'd see that waldi turned on vserver
 feature with latest patch, plus there was a mail/irc request for
 testing snapshots.

I saw the additioin of this in the commit, but I didn't see any mail/irc
requests for testing snapshots (I'm on #debian-kernel, and did not see
it here on the list). 

Can you please provide a reference for those? I'd like to test.

Thanks for your hard work, its appreciated,
micah


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#495358: The Debian kernel has a buggy b43 driver

2008-08-16 Thread Arjan van de Ven
Package: kernel
Version: 2.6.24-1-686

Right now the Debian b43 driver is in 4th place in the kerneloops.org
statistics with the following backtrace:

WARNING: at drivers/ssb/main.c:883 ssb_tmslow_reject_bitmask()
Pid: 3259, comm: NetworkManager Not tainted 2.6.24-1-486 #1
 [f885f7d3] ssb_tmslow_reject_bitmask+0x4b/0x56 [ssb]
 [f885ff0b] ssb_device_is_enabled+0x9/0x2d [ssb]
 [f8a07e46] b43_wireless_core_init+0x34/0x60b [b43]
 [f8a15b2b] b43_rfkill_init+0x142/0x188 [b43]
 [f8a0894c] b43_start+0x4d/0x86 [b43]
 [f89ea69b] ieee80211_open+0x19c/0x339 [mac80211]
 [c025b3ff] dev_open+0x41/0x75
 [c025a179] dev_change_flags+0x9c/0x148
 [c0260bb3] do_setlink+0x20c/0x2b5
 [c0261d82] rtnl_setlink+0xdb/0xf6
 [c026e82c] netlink_dump_start+0xe2/0x113
 [c0261ca7] rtnl_setlink+0x0/0xf6
 [c0261a4c] rtnetlink_rcv_msg+0x19a/0x1b4
 [c0261305] rtnl_dump_ifinfo+0x0/0x8e
 [c02618b2] rtnetlink_rcv_msg+0x0/0x1b4
 [c026d8bd] netlink_rcv_skb+0x2d/0x7f
 [c02618ac] rtnetlink_rcv+0x14/0x1a
 [c026d6c8] netlink_unicast+0x179/0x1d3
 [c026de7d] netlink_sendmsg+0x278/0x284

Later kernels appear to have this mostly fixed. 

More information about this at

http://www.kerneloops.org/guilty.php?version=2.6.24guilty=ssb_tmslow_reject_bitmaskstart=1605632end=1605632like=1




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#494546: hotkeys in 2.6.26 (was: No boot without ac adapter ...)

2008-08-16 Thread Eric Cooper
On Sat, Aug 16, 2008 at 12:15:03PM +0300, Damyan Ivanov wrote:
 what is more interesting is if hotkeys still work after bringing 
 volume to min and then to max (with them).

This is bug #494546 that you posted about earlier, right?

The thermal workaround has no affect on it.  I can confirm that

  1. the hotkeys still stop working after rapid, repeated use in the
 stock Debian 2.6.26 kernel

  2. the referenced patch fixes the problem (also attached here for
 convenience)

-- 
Eric Cooper e c c @ c m u . e d u
This fixes a regression in 2.6.26 (from 2.6.25.3).  Initially reported as
Asus Eee PC hotkeys stop working if pressed quickly in bugzilla
http://bugzilla.kernel.org/show_bug.cgi?id=11089.

The regression was caused by a recently added check for interrupt storms.
The Eee PC triggers this check and switches to polling.  When multiple events
arrive between polling intervals, only one is fetched from the EC.  This causes
erroneous behaviour; ultimately events stop being delivered altogether when the
EC buffer overflows.

Signed-off-by: Alan Jenkins [EMAIL PROTECTED]

---
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 5622aee..2b4c5a2 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -459,14 +459,10 @@ void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit)
 
 EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler);
 
-static void acpi_ec_gpe_query(void *ec_cxt)
+static void acpi_ec_gpe_run_handler(struct acpi_ec *ec, u8 value)
 {
-	struct acpi_ec *ec = ec_cxt;
-	u8 value = 0;
 	struct acpi_ec_query_handler *handler, copy;
 
-	if (!ec || acpi_ec_query(ec, value))
-		return;
 	mutex_lock(ec-lock);
 	list_for_each_entry(handler, ec-list, node) {
 		if (value == handler-query_bit) {
@@ -484,6 +480,18 @@ static void acpi_ec_gpe_query(void *ec_cxt)
 	mutex_unlock(ec-lock);
 }
 
+static void acpi_ec_gpe_query(void *ec_cxt)
+{
+	struct acpi_ec *ec = ec_cxt;
+	u8 value = 0;
+
+	if (!ec)
+		return;
+
+	while (!acpi_ec_query(ec, value))
+		acpi_ec_gpe_run_handler(ec, value);
+}
+
 static u32 acpi_ec_gpe_handler(void *data)
 {
 	acpi_status status = AE_OK;




Bug#495271: linux-image-2.6.26-1-amd64: PATA HD not detected with Intel ICH9 and Marvel 88SE6121 chipsets

2008-08-16 Thread Michal Pokrywka

Hi,

This bug occurs on my Asus P5QC motherboard (ICH10R) with PATA DVD recorder.

Kernel is 2.6.26-1-686

Additional things in dmesg that may be relevant:
(I only guess that ata7/8 is the IDE port with DVD plugged as master, so 
it is ata7)


[6.729480] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[9.727130] ata7.15: qc timeout (cmd 0xe4)
[9.727175] ata7.15: failed to read PMP GSCR[0] (Emask=0x4)
[9.727221] ata7: failed to recover some devices, retrying in 5 secs
[   15.215132] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   18.215120] ata7.15: qc timeout (cmd 0xe4)
[   18.215165] ata7.15: failed to read PMP GSCR[0] (Emask=0x4)
[   18.215210] ata7: failed to recover some devices, retrying in 5 secs
[   23.703241] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   26.703603] ata7.15: qc timeout (cmd 0xe4)
[   26.703648] ata7.15: failed to read PMP GSCR[0] (Emask=0x4)
[   26.703694] ata7: failed to recover some devices, retrying in 5 secs
[   32.191230] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   32.511328] ata8: SATA link down (SStatus 0 SControl 300)


'lspci -v' for related devices:

03:00.0 IDE interface: Marvell Technology Group Ltd. 88SE6121 SATA II 
Controller (rev b2) (prog-if 8f [Master SecP SecO PriP PriO])

   Subsystem: ASUSTeK Computer Inc. Device 82e0
   Flags: bus master, fast devsel, latency 0, IRQ 16
   I/O ports at dc00 [size=8]
   I/O ports at d880 [size=4]
   I/O ports at d800 [size=8]
   I/O ports at d480 [size=4]
   I/O ports at d400 [size=16]
   Memory at feaffc00 (32-bit, non-prefetchable) [size=1K]
   Capabilities: [48] Power Management version 2
   Capabilities: [50] Message Signalled Interrupts: Mask- 64bit- 
Queue=0/0 Enable-

   Capabilities: [e0] Express Legacy Endpoint, MSI 00
   Capabilities: [100] Advanced Error Reporting ?
   Kernel driver in use: ahci
   Kernel modules: ahci, pata_marvell

00:1f.2 SATA controller: Intel Corporation ICH10 6 port SATA AHCI 
Controller (prog-if 01)

   Subsystem: ASUSTeK Computer Inc. Device 82d4
   Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 219
   I/O ports at 9c00 [size=8]
   I/O ports at 9880 [size=4]
   I/O ports at 9800 [size=8]
   I/O ports at 9480 [size=4]
   I/O ports at 9400 [size=32]
   Memory at f9ffe800 (32-bit, non-prefetchable) [size=2K]
   Capabilities: [80] Message Signalled Interrupts: Mask- 64bit- 
Queue=0/4 Enable+

   Capabilities: [70] Power Management version 3
   Capabilities: [a8] SATA HBA ?
   Capabilities: [b0] Vendor Specific Information ?
   Kernel driver in use: ahci
   Kernel modules: ahci




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processed: [bts-link] source package linux-2.6

2008-08-16 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 #
 # bts-link upstream status pull for source package linux-2.6
 # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
 #
 user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
 # remote status report for #490903
 #  * http://bugzilla.kernel.org/show_bug.cgi?id=11194
 #  * remote status changed: (?) - NEW
 usertags 490903 + status-NEW
Bug#490903: regression: kernel panic on boot with megaraid_mbox driver
There were no usertags set.
Usertags are now: status-NEW.
 # remote status report for #493518
 #  * http://bugzilla.kernel.org/show_bug.cgi?id=11196
 #  * remote status changed: (?) - NEW
 usertags 493518 + status-NEW
Bug#493518: Kernel freeze due to sky2 network driver
There were no usertags set.
Usertags are now: status-NEW.
 # remote status report for #494477
 #  * http://bugzilla.kernel.org/show_bug.cgi?id=11242
 #  * remote status changed: (?) - NEW
 usertags 494477 + status-NEW
Bug#494477: Linux 2.6.26-1-686: insert key behaves abnormally
There were no usertags set.
Usertags are now: status-NEW.
 # remote status report for #494546
 #  * http://bugzilla.kernel.org/show_bug.cgi?id=10724
 #  * remote status changed: (?) - REOPENED
 usertags 494546 + status-REOPENED
Bug#494546: EC GPE storm checks causing problems
There were no usertags set.
Usertags are now: status-REOPENED.
 # remote status report for #475319
 #  * http://bugzilla.kernel.org/show_bug.cgi?id=9614
 #  * remote status changed: NEEDINFO - NEW
 forwarded 475319 http://bugzilla.kernel.org/show_bug.cgi?id=10448, 
 merged-upstream: http://bugzilla.kernel.org/show_bug.cgi?id=9614
Bug#475319: linux-2.6: loading video kernel module causes Samsung Q45 to freeze
Forwarded-to-address changed from 
http://bugzilla.kernel.org/show_bug.cgi?id=10448 to 
http://bugzilla.kernel.org/show_bug.cgi?id=10448, merged-upstream: 
http://bugzilla.kernel.org/show_bug.cgi?id=9614.

 usertags 475319 - status-NEEDINFO
Bug#475319: linux-2.6: loading video kernel module causes Samsung Q45 to freeze
Usertags were: status-NEEDINFO.
Usertags are now: .
 usertags 475319 + status-NEW
Bug#475319: linux-2.6: loading video kernel module causes Samsung Q45 to freeze
There were no usertags set.
Usertags are now: status-NEW.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[bts-link] source package linux-2.6

2008-08-16 Thread bts-link-upstream
#
# bts-link upstream status pull for source package linux-2.6
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #490903
#  * http://bugzilla.kernel.org/show_bug.cgi?id=11194
#  * remote status changed: (?) - NEW
usertags 490903 + status-NEW

# remote status report for #493518
#  * http://bugzilla.kernel.org/show_bug.cgi?id=11196
#  * remote status changed: (?) - NEW
usertags 493518 + status-NEW

# remote status report for #494477
#  * http://bugzilla.kernel.org/show_bug.cgi?id=11242
#  * remote status changed: (?) - NEW
usertags 494477 + status-NEW

# remote status report for #494546
#  * http://bugzilla.kernel.org/show_bug.cgi?id=10724
#  * remote status changed: (?) - REOPENED
usertags 494546 + status-REOPENED

# remote status report for #475319
#  * http://bugzilla.kernel.org/show_bug.cgi?id=9614
#  * remote status changed: NEEDINFO - NEW
forwarded 475319 http://bugzilla.kernel.org/show_bug.cgi?id=10448, 
merged-upstream: http://bugzilla.kernel.org/show_bug.cgi?id=9614
usertags 475319 - status-NEEDINFO
usertags 475319 + status-NEW

thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#495405: Kernel Bug!

2008-08-16 Thread Hamid Reza Hasani

Package: kernel
Version: 2.6.26

When I made kernel 2.6.26 I saw this error message:
(I used this command: `make-dpkg --initrd kernel_image kernel_headers`)

make[1]: Entering directory `/usr/src/linux-2.6.26'
 CHK include/linux/version.h
 CHK include/linux/utsrelease.h
 CALLscripts/checksyscalls.sh
 CHK include/linux/compile.h
drivers/media/video/.bw-qcam.o.cmd:1: *** missing separator.  Stop.
make[3]: *** [drivers/media/video] Error 2
make[2]: *** [drivers/media] Error 2
make[1]: *** [drivers] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.26'
make: *** [debian/stamp-build-kernel] Error 2

I use gcc-4.3 and I don't change default configuration!
I am using Debian Lenny(testing)


Hamid Reza Hasani
---
Have a good time
Ya Ali







--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#495408: linux-image-2.6-686: Please ship vmlinux

2008-08-16 Thread Huang, Zhangrong
Package: linux-image-2.6-686
Version: 2.6.26+15
Severity: wishlist

*** Please type your report below this line ***

Most distros ship both vmlinuz and vmlinux, and vmlinux is very useful
for kernel panic analysis.
Most users don't like rebuild whole kernel themselves, so please ship
vmlinux in linux-image package, it would be very helpful.
Thanks.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6-686 depends on:
ii  linux-image-2.6.26-1-686  2.6.26-2   Linux 2.6.26 image on PPro/Celeron

linux-image-2.6-686 recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]