Bug#616426: linux-source-2.6.37: fails to build using make-kpkg

2011-03-04 Thread rob
Package: linux-source-2.6.37
Version: 2.6.37-2
Severity: important

 AS  arch/x86/kernel/entry_64.o
arch/x86/kernel/entry_64.S: Assembler messages:
arch/x86/kernel/entry_64.S:1531: Error: .size expression does not evaluate to a
constant
make[4]: *** [arch/x86/kernel/entry_64.o] Error 1
make[3]: *** [arch/x86/kernel] Error 2
make[2]: *** [arch/x86] Error 2
make[2]: Leaving directory `/usr/src/linux-source-2.6.37'
make[1]: *** [debian/stamp/build/kernel] Error 2
make[1]: Leaving directory `/usr/src/linux-source-2.6.37'
make: *** [debian/stamp/do-build-arch] Error 2



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-source-2.6.37 depends on:
ii  binutils   2.21.0.20110302-1 The GNU assembler, linker and bina
ii  bzip2  1.0.5-6   high-quality block-sorting file co

Versions of packages linux-source-2.6.37 recommends:
ii  gcc   4:4.4.5-2  The GNU C compiler
ii  libc6-dev [libc-dev]  2.11.2-13  Embedded GNU C Library: Developmen
ii  make  3.81-8 An utility for Directing compilati

Versions of packages linux-source-2.6.37 suggests:
ii  kernel-package12.036+nmu1A utility for building Linux kerne
ii  libncurses5-dev [ncurses- 5.7+20100313-5 developer's libraries and docs for
pn  libqt3-mt-dev  (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110304113740.26787.8277.reportbug@debian



[PATCH 1/4] kernel hooks: Treat missing version argument as an error

2011-03-04 Thread Ben Hutchings
The version argument is mandatory and we should complain if some package
doesn't pass it rather than quietly failing to do our job.

However, making package removal fail is generally unhelpful, so
continue to return 0 from the postrm hook.

Signed-off-by: Ben Hutchings 
---
 kernel/postinst.d/initramfs-tools |5 -
 kernel/postrm.d/initramfs-tools   |5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/kernel/postinst.d/initramfs-tools 
b/kernel/postinst.d/initramfs-tools
index d4db23d..f312e43 100755
--- a/kernel/postinst.d/initramfs-tools
+++ b/kernel/postinst.d/initramfs-tools
@@ -4,7 +4,10 @@ version="$1"
 bootopt=""
 
 # passing the kernel version is required
-[ -z "${version}" ] && exit 0
+if [ -z "${version}" ]; then
+   echo >&2 "initramfs-tools: ${DPKG_MAINTSCRIPT_PACKAGE:-kernel package} 
did not pass a version number"
+   exit 2
+fi
 
 # kernel-package passes an extra arg
 if [ -n "$2" ]; then
diff --git a/kernel/postrm.d/initramfs-tools b/kernel/postrm.d/initramfs-tools
index 4e8f73b..051c8de 100755
--- a/kernel/postrm.d/initramfs-tools
+++ b/kernel/postrm.d/initramfs-tools
@@ -4,7 +4,10 @@ version="$1"
 bootopt=""
 
 # passing the kernel version is required
-[ -z "${version}" ] && exit 0
+if [ -z "${version}" ]; then
+   echo >&2 "initramfs-tools: ${DPKG_MAINTSCRIPT_PACKAGE:-kernel package} 
did not pass a version number"
+   exit 0
+fi
 
 # kernel-package passes an extra arg
 if [ -n "$2" ]; then
-- 
1.7.4.1





signature.asc
Description: This is a digitally signed message part


[PATCH 2/4] kernel hooks: Enable error-exit (sh -e)

2011-03-04 Thread Ben Hutchings
We should not continue after a command unexpectedly fails.

Change the $INITRD test so that failure is not treated as unexpected.

Signed-off-by: Ben Hutchings 
---
 kernel/postinst.d/initramfs-tools |6 --
 kernel/postrm.d/initramfs-tools   |6 +-
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/kernel/postinst.d/initramfs-tools 
b/kernel/postinst.d/initramfs-tools
index f312e43..b36d713 100755
--- a/kernel/postinst.d/initramfs-tools
+++ b/kernel/postinst.d/initramfs-tools
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/sh -e
 
 version="$1"
 bootopt=""
@@ -13,7 +13,9 @@ fi
 if [ -n "$2" ]; then
if [ -n "${KERNEL_PACKAGE_VERSION}" ]; then
# exit if custom kernel does not need an initramfs
-   [ "$INITRD" = 'No' ] && exit 0
+   if [ "$INITRD" = 'No' ]; then
+   exit 0
+   fi
bootdir=$(dirname "$2")
bootopt="-b ${bootdir}"
else
diff --git a/kernel/postrm.d/initramfs-tools b/kernel/postrm.d/initramfs-tools
index 051c8de..36fb61f 100755
--- a/kernel/postrm.d/initramfs-tools
+++ b/kernel/postrm.d/initramfs-tools
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/sh -e
 
 version="$1"
 bootopt=""
@@ -12,6 +12,10 @@ fi
 # kernel-package passes an extra arg
 if [ -n "$2" ]; then
if [ -n "${KERNEL_PACKAGE_VERSION}" ]; then
+   # exit if custom kernel does not need an initramfs
+   if [ "$INITRD" = 'No' ]; then
+   exit 0
+   fi
bootdir=$(dirname "$2")
bootopt="-b ${bootdir}"
else
-- 
1.7.4.1





signature.asc
Description: This is a digitally signed message part


Bug#616431: option_instat_callback: error -84 with MSA110UP 3G modem and usb-modeswitch

2011-03-04 Thread Sergio Junior
Package: linux-2.6
Version: 2.6.32-30
Severity: normal

Hello,

I'm using MSA110P 3G modem with usb-modeswitch (if I don't, the devices are not 
created). So I have 4 devices, as you can see in kernel.log

The only configuration I've made in usb-modeswitch is:
- Edited /etc/usb_modeswitch.d/19d2\:2000, adding 0091 to 
'TargetProductList

I'm also using wvdial to connect.

The problem, as you can see in kernel.log, is that after some time (minutes or 
hours), I receive ten "option: option_instat_callback: error -84" and my 
devices are disconnected.

Thanks in advance.

-- Package-specific info:
** Version:
Linux version 2.6.32-5-686 (Debian 2.6.32-30) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Wed Jan 12 04:01:41 UTC 2011

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-686 
root=UUID=dcf7ec90-4441-4df9-a850-6ca0ffedf17d ro quiet

** Not tainted

** Kernel log:
[   11.391409] usbcore: registered new interface driver usbserial_generic
[   11.391418] usbserial: USB Serial Driver core
[   11.434581] [drm] nouveau :01:00.0: No TV encoders found.
[   11.441675] [TTM] Zone  kernel: Available graphics memory: 387228 kiB.
[   11.441705] [drm] nouveau :01:00.0: 16 MiB VRAM
[   11.441849] agpgart-via :00:00.0: AGP 2.0 bridge
[   11.441879] agpgart-via :00:00.0: putting AGP V2 device into 4x mode
[   11.441951] nouveau :01:00.0: putting AGP V2 device into 4x mode
[   11.441959] [drm] nouveau :01:00.0: 64 MiB GART (aperture)
[   11.442266] [drm] nouveau :01:00.0: Allocating FIFO number 0
[   11.445552] [drm] nouveau :01:00.0: nouveau_channel_alloc: initialised 
FIFO 0
[   11.445640] [drm] nouveau :01:00.0: Saving VGA fonts
[   11.474397] [drm] nouveau :01:00.0: Detected a VGA connector
[   11.475199] [drm] nouveau :01:00.0: Setting dpms mode 3 on vga encoder 
(output 0)
[   11.590644] [drm] nouveau :01:00.0: allocated 1280x1024 fb: 0x45000, bo 
ee9fec00
[   11.726157] [drm] nouveau :01:00.0: Setting dpms mode 0 on vga encoder 
(output 0)
[   11.726171] [drm] nouveau :01:00.0: Output VGA-1 is running on CRTC 0 
using output @
[   11.729811] Console: switching to colour frame buffer device 160x64
[   11.735293] fb0: nouveaufb frame buffer device
[   11.735298] registered panic notifier
[   11.735313] [drm] Initialized nouveau 0.0.15 20090420 for :01:00.0 on 
minor 0
[   12.028327] USB Serial support registered for GSM modem (1-port)
[   12.030144] usbcore: registered new interface driver option
[   12.030153] option: v0.7.2:USB Driver for GSM modems
[   12.09] option 1-2:1.0: GSM modem (1-port) converter detected
[   12.098090] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB0
[   12.098277] option 1-2:1.1: GSM modem (1-port) converter detected
[   12.101049] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB1
[   12.101236] option 1-2:1.2: GSM modem (1-port) converter detected
[   12.103653] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB2
[   12.103866] option 1-2:1.4: GSM modem (1-port) converter detected
[   12.107096] usb 1-2: GSM modem (1-port) converter now attached to ttyUSB3
[   12.381050] ENS1371 :00:04.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, 
low) -> IRQ 10
[   14.887102] Adding 1951888k swap on /dev/sda2.  Priority:-1 extents:1 
across:1951888k 
[   15.444543] EXT3 FS on sda1, internal journal
[   15.927327] loop: module loaded
[   16.904924] fuse init (API version 7.13)
[   17.318811] kjournald starting.  Commit interval 5 seconds
[   17.319343] EXT3 FS on sda3, internal journal
[   17.319356] EXT3-fs: mounted filesystem with ordered data mode.
[   19.176548] eth0: link up, 100Mbps, full-duplex, lpa 0xC5E1
[   29.364101] eth0: no IPv6 routers present
[   43.194525] bttv0: PLL can sleep, using XTAL (28636363).
[   57.845188] Bluetooth: Core ver 2.15
[   57.845408] NET: Registered protocol family 31
[   57.845413] Bluetooth: HCI device and connection manager initialized
[   57.845422] Bluetooth: HCI socket layer initialized
[   59.135389] Bluetooth: L2CAP ver 2.14
[   59.135399] Bluetooth: L2CAP socket layer initialized
[   59.474393] Bluetooth: RFCOMM TTY layer initialized
[   59.474409] Bluetooth: RFCOMM socket layer initialized
[   59.474414] Bluetooth: RFCOMM ver 1.11
[   60.332696] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   60.332707] Bluetooth: BNEP filters: protocol multicast
[   60.461749] Bridge firewalling registered
[   62.081426] Bluetooth: SCO (Voice Link) ver 0.6
[   62.081435] Bluetooth: SCO socket layer initialized
[   78.808213] [drm] nouveau :01:00.0: Allocating FIFO number 1
[   78.810496] [drm] nouveau :01:00.0: nouveau_channel_alloc: initialised 
FIFO 1
[   87.544782] ip_tables: (C) 2000-2006 Netfilter Core Team
[   88.078861] nf_conntrack version 0.5.0 (12100 buckets, 48400 max)
[   88.083273] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please 
use
[   88.083286] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntra

Bug#616426: linux-source-2.6.37: fails to build using make-kpkg

2011-03-04 Thread Ben Hutchings
On Fri, 2011-03-04 at 11:37 +, rob wrote:
> Package: linux-source-2.6.37
> Version: 2.6.37-2
> Severity: important
> 
>  AS  arch/x86/kernel/entry_64.o
> arch/x86/kernel/entry_64.S: Assembler messages:
> arch/x86/kernel/entry_64.S:1531: Error: .size expression does not evaluate to 
> a
> constant
> make[4]: *** [arch/x86/kernel/entry_64.o] Error 1
> make[3]: *** [arch/x86/kernel] Error 2
> make[2]: *** [arch/x86] Error 2
> make[2]: Leaving directory `/usr/src/linux-source-2.6.37'
> make[1]: *** [debian/stamp/build/kernel] Error 2
> make[1]: Leaving directory `/usr/src/linux-source-2.6.37'
> make: *** [debian/stamp/do-build-arch] Error 2

Oddly enough, this code did build in the official packages!  May be a
bug in binutils (#616357).

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


signature.asc
Description: This is a digitally signed message part


Processed: block 616426 with 616357

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 616426 with 616357
Bug #616426 [linux-source-2.6.37] linux-source-2.6.37: fails to build using 
make-kpkg
Was not blocked by any bugs.
Added blocking bug(s) of 616426: 616357
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
616426: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=616426
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129924216412965.transcr...@bugs.debian.org



[PATCH 0/4] Assume & follow the kernel/initramfs/boot-loader update policy

2011-03-04 Thread Ben Hutchings
A couple of preparatory cleanups to the kernel hooks.  Then, rely on the
kernel to call our hook and on boot loaders to instal hooks.

Ben.

Ben Hutchings (4):
  kernel hooks: Treat missing version argument as an error
  kernel hooks: Enable error-exit (sh -e)
  update-initramfs: Depend on kernel hook scripts rather than $ramdisk
invocation
  update-initramfs: Remove support for 'do_bootloader' and specific
boot loaders

 debian/control|2 +-
 kernel/postinst.d/initramfs-tools |   28 ---
 kernel/postrm.d/initramfs-tools   |   26 --
 update-initramfs  |   66 -
 4 files changed, 52 insertions(+), 70 deletions(-)

-- 
1.7.4.1




signature.asc
Description: This is a digitally signed message part


[PATCH 3/4] update-initramfs: Depend on kernel hook scripts rather than $ramdisk invocation

2011-03-04 Thread Ben Hutchings
Official Debian and Ubuntu kernel packages will invoke us directly as
part of the $ramdisk handling inherited from kernel-package.  They
will later run our hook script, as will custom packages made with
'make-kpkg' or the upstream 'make deb-pkg'.

Currently, for official packages we perform an update on the first
invocation (possibly deferred using dpkg triggers) and then ignore the
second.  However, the long-term plan is to remove that first
invocation.  Therefore, ignore the first invocation and perform the
update on the second.

Signed-off-by: Ben Hutchings 
---
 kernel/postinst.d/initramfs-tools |   23 ++-
 kernel/postrm.d/initramfs-tools   |   23 ++-
 update-initramfs  |   29 -
 3 files changed, 40 insertions(+), 35 deletions(-)

diff --git a/kernel/postinst.d/initramfs-tools 
b/kernel/postinst.d/initramfs-tools
index b36d713..18202e4 100755
--- a/kernel/postinst.d/initramfs-tools
+++ b/kernel/postinst.d/initramfs-tools
@@ -9,19 +9,16 @@ if [ -z "${version}" ]; then
exit 2
 fi
 
-# kernel-package passes an extra arg
+# exit if custom kernel does not need an initramfs
+if [ -n "${KERNEL_PACKAGE_VERSION}" -a "$INITRD" = 'No' ]; then
+   exit 0
+fi
+
+# absolute file name of kernel image may be passed as a second argument;
+# create the initrd in the same directory
 if [ -n "$2" ]; then
-   if [ -n "${KERNEL_PACKAGE_VERSION}" ]; then
-   # exit if custom kernel does not need an initramfs
-   if [ "$INITRD" = 'No' ]; then
-   exit 0
-   fi
-   bootdir=$(dirname "$2")
-   bootopt="-b ${bootdir}"
-   else
-   # official Debian linux-images take care themself
-   exit 0
-   fi
+   bootdir=$(dirname "$2")
+   bootopt="-b ${bootdir}"
 fi
 
 # avoid running multiple times
@@ -33,4 +30,4 @@ if [ -n "$DEB_MAINT_PARAMS" ]; then
 fi
 
 # we're good - create initramfs.  update runs do_bootloader
-update-initramfs -c -t -k "${version}" ${bootopt} >&2
+INITRAMFS_TOOLS_KERNEL_HOOK=1 update-initramfs -c -t -k "${version}" 
${bootopt} >&2
diff --git a/kernel/postrm.d/initramfs-tools b/kernel/postrm.d/initramfs-tools
index 36fb61f..850dda0 100755
--- a/kernel/postrm.d/initramfs-tools
+++ b/kernel/postrm.d/initramfs-tools
@@ -9,19 +9,16 @@ if [ -z "${version}" ]; then
exit 0
 fi
 
-# kernel-package passes an extra arg
+# exit if custom kernel does not need an initramfs
+if [ -n "${KERNEL_PACKAGE_VERSION}" -a "$INITRD" = 'No' ]; then
+   exit 0
+fi
+
+# absolute file name of kernel image may be passed as a second argument;
+# create the initrd in the same directory
 if [ -n "$2" ]; then
-   if [ -n "${KERNEL_PACKAGE_VERSION}" ]; then
-   # exit if custom kernel does not need an initramfs
-   if [ "$INITRD" = 'No' ]; then
-   exit 0
-   fi
-   bootdir=$(dirname "$2")
-   bootopt="-b ${bootdir}"
-   else
-   # official linux-images take care themself
-   exit 0
-   fi
+   bootdir=$(dirname "$2")
+   bootopt="-b ${bootdir}"
 fi
 
 # avoid running multiple times
@@ -33,4 +30,4 @@ if [ -n "$DEB_MAINT_PARAMS" ]; then
 fi
 
 # delete initramfs
-update-initramfs -d -t -k "${version}" ${bootopt} >&2
+INITRAMFS_TOOLS_KERNEL_HOOK=1 update-initramfs -d -t -k "${version}" 
${bootopt} >&2
diff --git a/update-initramfs b/update-initramfs
index ba17260..96bcb1f 100755
--- a/update-initramfs
+++ b/update-initramfs
@@ -14,17 +14,28 @@ set -e
 
 [ -r ${CONF} ] && . ${CONF}
 
-if$USETRIGGERS \
-   && [ x"${DPKG_MAINTSCRIPT_PACKAGE:-}" != x ]\
-   && [ $# = 1 ]   \
-   && [ x"$1" = x-u ]  \
-   && dpkg-trigger --check-supported 2>/dev/null
-then
-   if dpkg-trigger --no-await update-initramfs; then
-   echo "update-initramfs: deferring update (trigger activated)"
+case "$DPKG_MAINTSCRIPT_PACKAGE" in
+linux-image-*)
+   if [ -z "$INITRAMFS_TOOLS_KERNEL_HOOK" ]; then
+   # kernel maintainer script called us directly; ignore
+   # it and let the hook script handle it instead
+   echo "update-initramfs: deferring update (hook will be called 
later)"
exit 0
fi
-fi
+   ;;
+?*)
+   if $USETRIGGERS \
+   && [ $# = 1 ]   \
+   && [ x"$1" = x-u ]  \
+   && dpkg-trigger --check-supported 2>/dev/null
+   then
+   if dpkg-trigger --no-await update-initramfs; then
+   echo "update-initramfs: deferring update (trigger 
activated)"
+   exit 0
+   fi
+ 

[PATCH 4/4] update-initramfs: Remove support for 'do_bootloader' and specific boot loaders

2011-03-04 Thread Ben Hutchings
elilo, lilo, and zipl all install post-update hooks for us, so we
don't need call them specifically.  Unfortunately, flash-kernel does
not yet, so keep that for a little longer.

Add 'breaks' relations to the versions of these packages that do not
install post-update hooks.

Signed-off-by: Ben Hutchings 
---
 debian/control   |2 +-
 update-initramfs |   37 +
 2 files changed, 2 insertions(+), 37 deletions(-)

diff --git a/debian/control b/debian/control
index f4b9ebf..bc7371b 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Depends: klibc-utils (>= 1.5.9-1), cpio, module-init-tools, 
udev (>= 0.086-1), f
 Suggests: bash-completion
 Provides: linux-initramfs-tool
 Conflicts: usplash (<< 0.5.50)
-Breaks: cryptsetup (<< 2:1.1.0-2.1)
+Breaks: cryptsetup (<< 2:1.1.0-2.1), elilo (<< 3.12-3.1~), lilo (<< 
22.8-8.2~), s390-tools (<< 1.8.3-2~)
 Description: tools for generating an initramfs
  This package contains tools to create and boot an initramfs for packaged 2.6
  Linux kernel. The initramfs is a gzipped cpio archive. At boot time, the
diff --git a/update-initramfs b/update-initramfs
index 96bcb1f..c00656b 100755
--- a/update-initramfs
+++ b/update-initramfs
@@ -3,7 +3,6 @@
 STATEDIR=/var/lib/initramfs-tools
 BOOTDIR=/boot
 CONF=/etc/initramfs-tools/update-initramfs.conf
-KPKGCONF=/etc/kernel-img.conf
 USETRIGGERS=true
 mode=""
 version=""
@@ -204,41 +203,7 @@ run_bootloader()
return 0
fi
 
-   # FIXME: to be removed postsqueeze release
-   # if both lilo and grub around, figure out if lilo needs to be run
-   if ( command -v update-grub >/dev/null 2>&1 \
-   || [ -e /boot/grub/menu.lst ] || [ -e /boot/grub/grub.cfg ] ) \
-   && ( [ -e /etc/lilo.conf ] && command -v lilo >/dev/null 2>&1 ); then
-   [ -r "${KPKGCONF}" ] && \
-   do_b=$(awk  '/^do_bootloader/{print $3}' "${KPKGCONF}")
-   if [ "${do_b}" = "yes" ] || [ "${do_b}" = "Yes" ] \
-   || [ "${do_b}" = "YES" ]; then
-   run_lilo
-   return 0
-   elif [ "${do_b}" = "no" ] || [ "${do_b}" = "No" ] \
-   || [ "${do_b}" = "NO" ]; then
-   return 0
-   fi
-
-   # do_bootloader unconfigured
-   echo
-   echo "WARNING: grub and lilo installed."
-   echo "Please deinstall unused bootloader."
-   echo
-   return 0
-   fi
-   if [ -r /etc/lilo.conf ] && command -v lilo >/dev/null 2>&1; then
-   run_lilo
-   return 0
-   fi
-   if [ -r /etc/elilo.conf ] && command -v elilo >/dev/null 2>&1; then
-   elilo
-   return 0
-   fi
-   if [ -r /etc/zipl.conf ]; then
-   zipl
-   return 0
-   fi
+   # FIXME: to be removed once flash-kernel installs a hook
if flash-kernel --supported >/dev/null 2>&1; then
flash-kernel ${version}
return 0
-- 
1.7.4.1




signature.asc
Description: This is a digitally signed message part


Bug#616426: linux-source-2.6.37: fails to build using make-kpkg

2011-03-04 Thread Stefan Lippers-Hollmann
Hi

On Friday 04 March 2011, Ben Hutchings wrote:
> On Fri, 2011-03-04 at 11:37 +, rob wrote:
> > Package: linux-source-2.6.37
> > Version: 2.6.37-2
> > Severity: important
> > 
> >  AS  arch/x86/kernel/entry_64.o
> > arch/x86/kernel/entry_64.S: Assembler messages:
> > arch/x86/kernel/entry_64.S:1531: Error: .size expression does not evaluate 
> > to a
> > constant
> > make[4]: *** [arch/x86/kernel/entry_64.o] Error 1
> > make[3]: *** [arch/x86/kernel] Error 2
> > make[2]: *** [arch/x86] Error 2
> > make[2]: Leaving directory `/usr/src/linux-source-2.6.37'
> > make[1]: *** [debian/stamp/build/kernel] Error 2
> > make[1]: Leaving directory `/usr/src/linux-source-2.6.37'
> > make: *** [debian/stamp/do-build-arch] Error 2
> 
> Oddly enough, this code did build in the official packages!  May be a
> bug in binutils (#616357).

Yes, it is related to #616357 (and official packages are affected just 
as well, if built with the new binutils).

Patch needed for 2.6.37 and 2.6.38-rc7(-git2):
- 
http://git.kernel.org/?p=linux/kernel/git/hjl/linux-2.6.37.y.git;a=commitdiff_plain;h=2c5ce9c1b8eb927c131a31d4466e24e00647e9cb

Patch only needed for 2.6.38-rc7(-git2), in addition to the one above:
- https://patchwork.kernel.org/patch/606241/

Regards
Stefan Lippers-Hollmann



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201103041431.55175.s@gmx.de



Bug#616334: already reported to kernel.org

2011-03-04 Thread Thomas Koch
found this bug reported already:

https://bugzilla.kernel.org/show_bug.cgi?id=29162

also discussed here
http://groups.google.com/group/linux.kernel/browse_thread/thread/47b82ab31ae4a056/62b9059817eafb39

The reporter also mentions, that the deadlock is triggered by KMail, as it was 
on my machine at least once.

Time to reinstall and finally get rid of reiserfs. :-)

Thomas Koch, http://www.koch.ro



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201103041533.44234.tho...@koch.ro



Bug#616441: linux-image-2.6.32-5-xen-686: NETDEV WATCHDOG: usb0 (cdc_subset): transmit queue 0 timed out

2011-03-04 Thread Ferenc Wagner
Package: linux-2.6
Version: 2.6.32-30
Severity: minor

Hi,

usb0 is a "crosslink" between two such machines for heartbeat purposes.
The below warning appeared when the node on the other end was executing
a reboot, right after its heartbeat process (reading/writing the other
end of the crosslink) shut down.  It does not happen on each such event,
though, so I can't readily reproduce it, but if may be feasible if
somebody knows what and how to press.  It hasn't got any obvious adverse
effect on the operation of the machines.

Thanks,
Feri.

-- Package-specific info:
** Version:
Linux version 2.6.32-5-xen-686 (Debian 2.6.32-30) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Wed Jan 12 07:52:18 UTC 2011

** Command line:
root=/dev/mapper/xen1ha-root ro console=hvc0 earlyprintk=xen 3

** Tainted: W (512)
 * Taint on warning.

** Kernel log:
WARNING: at 
/build/buildd-linux-2.6_2.6.32-30-i386-UYhWt7/linux-2.6-2.6.32/debian/build/source_i386_xen/net/sched/sch_generic.c:261
 dev_watchdog+0xbd/0x15d()
Hardware name: PowerEdge 2650
NETDEV WATCHDOG: usb0 (cdc_subset): transmit queue 0 timed out
Modules linked in: xt_physdev xen_evtchn xenfs crc32c ib_iser rdma_cm ib_cm 
iw_cm ib_sa ib_mad ib_core ib_addr iscsi_tcp libiscsi_tcp libiscsi 
scsi_transport_iscsi bridge 8021q garp stp bonding ip6t_REJECT ip6t_LOG 
nf_conntrack_ipv6 ip6table_filter ip6_tables xt_recent ipt_REJECT 
nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack xt_tcpudp ipt_LOG 
xt_limit xt_multiport iptable_filter ip_tables ebtable_filter ebtables x_tables 
ext3 jbd mbcache ipmi_devintf ipmi_si ipmi_msghandler evdev snd_pcm snd_timer 
snd cdc_subset soundcore usbnet dcdbas mii snd_page_alloc pcspkr psmouse 
serio_raw shpchp i2c_piix4 pci_hotplug i2c_core button processor acpi_processor 
xfs exportfs dm_mod raid1 md_mod sd_mod crc_t10dif sg sr_mod cdrom ata_generic 
pata_serverworks ohci_hcd ehci_hcd aic7xxx scsi_transport_spi floppy usbcore 
libata tg3 libphy thermal nls_base thermal_sys scsi_mod [last unloaded: 
scsi_wait_scan]
Pid: 0, comm: swapper Not tainted 2.6.32-5-xen-686 #1
Call Trace:
 [] ? warn_slowpath_common+0x5e/0x8a
 [] ? dev_watchdog+0x0/0x15d
 [] ? warn_slowpath_fmt+0x26/0x2a
 [] ? dev_watchdog+0xbd/0x15d
 [] ? lguest_clockevent_set_next_event+0x0/0x3e
 [] ? xen_restore_fl_direct_end+0x0/0x1
 [] ? _spin_unlock_irqrestore+0xd/0xf
 [] ? xen_force_evtchn_callback+0xc/0x10
 [] ? check_events+0x8/0xc
 [] ? run_timer_softirq+0x16a/0x1eb
 [] ? __do_softirq+0xaa/0x151
 [] ? do_softirq+0x31/0x3c
 [] ? irq_exit+0x26/0x58
 [] ? xen_evtchn_do_upcall+0x22/0x2c
 [] ? xen_do_upcall+0x7/0xc
 [] ? hypercall_page+0x3a7/0x1001
 [] ? xen_safe_halt+0xf/0x1b
 [] ? xen_idle+0x23/0x30
 [] ? cpu_idle+0x89/0xa5
---[ end trace 4720259753e3663e ]---

** Model information
not available

** Loaded modules:
Module  Size  Used by
xt_physdev  1228  0 
xen_evtchn  3471  11 
xenfs   7248  1 
crc32c  2172  80 
ib_iser21904  0 
rdma_cm17846  1 ib_iser
ib_cm  22569  1 rdma_cm
iw_cm   5119  1 rdma_cm
ib_sa  13079  2 rdma_cm,ib_cm
ib_mad 26365  2 ib_cm,ib_sa
ib_core33215  6 ib_iser,rdma_cm,ib_cm,iw_cm,ib_sa,ib_mad
ib_addr 4257  1 rdma_cm
iscsi_tcp   6685  34 
libiscsi_tcp9358  1 iscsi_tcp
libiscsi   24462  3 ib_iser,iscsi_tcp,libiscsi_tcp
scsi_transport_iscsi19896  4 ib_iser,iscsi_tcp,libiscsi
bridge 33031  0 
8021q  14114  0 
garp4130  1 8021q
stp  996  2 bridge,garp
bonding65272  0 
ip6t_REJECT 2148  2 
ip6t_LOG3666  3 
nf_conntrack_ipv6   8363  4 
ip6table_filter 1908  1 
ip6_tables  8560  2 ip6t_LOG,ip6table_filter
xt_recent   4885  2 
ipt_REJECT  1517  2 
nf_conntrack_ipv4   7597  4 
nf_defrag_ipv4   779  1 nf_conntrack_ipv4
xt_state 927  8 
nf_conntrack   38079  3 nf_conntrack_ipv6,nf_conntrack_ipv4,xt_state
xt_tcpudp   1743  18 
ipt_LOG 3570  5 
xt_limit1088  8 
xt_multiport1775  10 
iptable_filter  1790  1 
ip_tables   7690  1 iptable_filter
ebtable_filter  1155  0 
ebtables   12237  1 ebtable_filter
x_tables8327  13 
xt_physdev,ip6t_REJECT,ip6t_LOG,ip6_tables,xt_recent,ipt_REJECT,xt_state,xt_tcpudp,ipt_LOG,xt_limit,xt_multiport,ip_tables,ebtables
ext3   94196  1 
jbd32161  1 ext3
mbcache 3762  1 ext3
ipmi_devintf4029  2 
ipmi_si26764  1 
ipmi_msghandler22871  2 ipmi_devintf,ipmi_si
evdev   5609  1 
snd_pcm47402  0 
snd_timer  12258  1 snd_pcm
snd34375

Processed: bug 616334 is forwarded to https://bugzilla.kernel.org/show_bug.cgi?id=29162

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 616334 https://bugzilla.kernel.org/show_bug.cgi?id=29162
Bug #616334 [linux-2.6] write to reiserfs blocks/freezes
Set Bug forwarded-to-address to 
'https://bugzilla.kernel.org/show_bug.cgi?id=29162'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
616334: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=616334
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129925050517379.transcr...@bugs.debian.org



Bug#616334: already reported to kernel.org

2011-03-04 Thread maximilian attems
On Fri, Mar 04, 2011 at 03:33:43PM +0100, Thomas Koch wrote:
> found this bug reported already:
> 
> https://bugzilla.kernel.org/show_bug.cgi?id=29162

thanks marked as forwarded.
 
> also discussed here
> http://groups.google.com/group/linux.kernel/browse_thread/thread/47b82ab31ae4a056/62b9059817eafb39
> 
> The reporter also mentions, that the deadlock is triggered by KMail, as it 
> was 
> on my machine at least once.
> 
> Time to reinstall and finally get rid of reiserfs. :-)

well KDE is so badly programmed that it doesn't work anywhere else
as on ext3 fs (google ext4 and kde for fun). better switch desktop
env too.

happy weekend.

-- 
maks



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110304145635.gh16...@vostochny.stro.at



Bug#616441: linux-image-2.6.32-5-xen-686: NETDEV WATCHDOG: usb0 (cdc_subset): transmit queue 0 timed out

2011-03-04 Thread Ben Hutchings
On Fri, Mar 04, 2011 at 03:44:04PM +0100, Ferenc Wagner wrote:
> Package: linux-2.6
> Version: 2.6.32-30
> Severity: minor
> 
> Hi,
> 
> usb0 is a "crosslink" between two such machines for heartbeat purposes.
> The below warning appeared when the node on the other end was executing
> a reboot, right after its heartbeat process (reading/writing the other
> end of the crosslink) shut down.  It does not happen on each such event,
> though, so I can't readily reproduce it, but if may be feasible if
> somebody knows what and how to press.  It hasn't got any obvious adverse
> effect on the operation of the machines.

This is quite possibly a hardware bug.  Does the driver successfully
recover after this warning?

You may find it easier to reproduce if you use the packet generator to
send a lot of traffic from machine 1 to machine 2 and the shut down
machine 2.  If that works to reproduce it then the next step would be
to test a more recent kernel version to find out whether it has been
fixed already.

If you cannot find a reliable reproducer, I'm afraid this is unlikely
to be fixed.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110304150539.gn19...@decadent.org.uk



Processed: tagging 616441

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 616441 + moreinfo
Bug #616441 [linux-2.6] linux-image-2.6.32-5-xen-686: NETDEV WATCHDOG: usb0 
(cdc_subset): transmit queue 0 timed out
Added tag(s) moreinfo.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
616441: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=616441
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129925115120681.transcr...@bugs.debian.org



Bug#616441: linux-image-2.6.32-5-xen-686: NETDEV WATCHDOG: usb0 (cdc_subset): transmit queue 0 timed out

2011-03-04 Thread Ben Hutchings
On Fri, Mar 04, 2011 at 03:05:39PM +, Ben Hutchings wrote:
> On Fri, Mar 04, 2011 at 03:44:04PM +0100, Ferenc Wagner wrote:
> > Package: linux-2.6
> > Version: 2.6.32-30
> > Severity: minor
> > 
> > Hi,
> > 
> > usb0 is a "crosslink" between two such machines for heartbeat purposes.
> > The below warning appeared when the node on the other end was executing
> > a reboot, right after its heartbeat process (reading/writing the other
> > end of the crosslink) shut down.  It does not happen on each such event,
> > though, so I can't readily reproduce it, but if may be feasible if
> > somebody knows what and how to press.  It hasn't got any obvious adverse
> > effect on the operation of the machines.
> 
> This is quite possibly a hardware bug.  Does the driver successfully
> recover after this warning?
> 
> You may find it easier to reproduce if you use the packet generator to
[...]

That's the "pktgen" module which is documented at
.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110304154552.go19...@decadent.org.uk



Bug#611493: Workaround

2011-03-04 Thread Pascal BERNARD
By adding rootdelay=20 on the command line, the problem does not show.
It is not very satisfying though, since the casual user will not dive
into the initrd to read the script init and see that you can set this
variable on the command line.

Is there no event that can be caught once all devices have been
registered ?






-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1299259707.6353.7.camel@moraes.localdomain



Re: xserver-xorg-video-radeon:screen goes black, system hangs after 2sec:[youtube(FF/Opera)-reset req.]

2011-03-04 Thread Faidon Liambotis
severity 616301 critical
thanks

My system locks up whenever I click on a YouTube video link since
yesterday. I can probably live without YouTube :), but in any case this
shouldn't happen.

This isn't a singled out case nor in exotic, possibly faulty, hardware.
It's on a standard 1½-year old Dell OptiPlex 780 desktop with a Radeon
HD card (one of the standard configurations) and this is on a stock
squeeze system.

The findings so far seem to suggest this is a Mesa issue; I'd probably
file it under "Linux kernel bugs" (or even DoS bugs) but I'm not sure
where to properly file such bugs in the post-KMS stack world.

Regards,
Faidon


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110304190158.ga13...@faidon.noc.grnet.gr



Processed: Re: Bug#615941: /etc/modprobe.d/alsa-base-blacklist.conf doesn't blacklist pcspkr despite the comment saying so

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 615941 linux-latest-2.6
Bug #615941 [alsa-base] /etc/modprobe.d/alsa-base-blacklist.conf doesn't 
blacklist pcspkr despite the comment saying so
Bug reassigned from package 'alsa-base' to 'linux-latest-2.6'.
Bug No longer marked as found in versions alsa-driver/1.0.23+dfsg-2.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
615941: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615941
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129927167614905.transcr...@bugs.debian.org



Bug#598310: marked as done (linux-2.6: Please enable CONFIG_PPS_CLIENT_LDISC)

2011-03-04 Thread Debian Bug Tracking System
Your message dated Fri, 4 Mar 2011 18:20:18 -0600
with message-id <20110305002018.ga18...@cbane.org>
and subject line Re: Bug#598310: linux-2.6: Please enable 
CONFIG_PPS_CLIENT_LDISC
has caused the Debian Bug report #598310,
regarding linux-2.6: Please enable CONFIG_PPS_CLIENT_LDISC
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
598310: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598310
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: linux-2.6
Version: 2.6.36~rc5-1~experimental.1
Severity: wishlist


I'm using this system as a stratum-1 NTP server, synced to a PPS-enabled
GPS. However, the Debian-provided kernels don't have the PPS line
discipline enabled, which prevents the PPS API from seeing the PPS
events. Please enable this config option (which was first added in
2.6.34-rc2), which enables processing PPS events from the DCD line of
serial ports. This option only depends on the CONFIG_PPS option, which
is enabled in the global config file.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (700, 'testing'), (100, 'experimental')
Architecture: i386 (i586)

Kernel: Linux 2.6.35.5-2-anthe (SMP w/1 CPU core; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-2.6.36-rc5-686 depends on:
ii  debconf [deb 1.5.35  Debian configuration management sy
ii  initramfs-to 0.98.4  tools for generating an initramfs
ii  linux-base   2.6.36~rc5-1~experimental.1 Linux image base package
ii  module-init- 3.12-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.36-rc5-686 recommends:
ii  firmware-linux-anthe [firmwar 2.6.35.6-1 Binary firmware for various driver
ii  libc6-i6862.11.2-6   Embedded GNU C Library: Shared lib

Versions of packages linux-image-2.6.36-rc5-686 suggests:
pn  grub | lilo(no description available)
pn  linux-doc-2.6.36   (no description available)

Versions of packages linux-image-2.6.36-rc5-686 is related to:
pn  firmware-bnx2  (no description available)
pn  firmware-bnx2x (no description available)
pn  firmware-ipw2x00   (no description available)
pn  firmware-ivtv  (no description available)
pn  firmware-iwlwifi   (no description available)
pn  firmware-linux (no description available)
pn  firmware-linux-nonfree (no description available)
pn  firmware-qlogic(no description available)
pn  firmware-ralink(no description available)
pn  xen-hypervisor (no description available)

-- debconf information excluded


--- End Message ---
--- Begin Message ---
Version: 2.6.36~rc6-1~experimental.1

This was fixed, but it didn't get a "Closes" notice in the changelog.

--- End Message ---


Bug#611493: Workaround

2011-03-04 Thread Ben Hutchings
On Fri, 2011-03-04 at 18:28 +0100, Pascal BERNARD wrote:
> By adding rootdelay=20 on the command line, the problem does not show.
> It is not very satisfying though, since the casual user will not dive
> into the initrd to read the script init and see that you can set this
> variable on the command line.
> 
> Is there no event that can be caught once all devices have been
> registered ?

No, in general there is no such thing as 'once all devices have been
registered'.  For example USB enumeration is totally asynchronous.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


signature.asc
Description: This is a digitally signed message part


Re: Processed: Re: Bug#615941: /etc/modprobe.d/alsa-base-blacklist.conf doesn't blacklist pcspkr despite the comment saying so

2011-03-04 Thread Ben Hutchings
On Fri, 2011-03-04 at 20:51 +, Debian Bug Tracking System wrote:
> Processing commands for cont...@bugs.debian.org:
> 
> > reassign 615941 linux-latest-2.6

Don't assign kernel bugs to the metapackage.  You want linux-2.6.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


signature.asc
Description: This is a digitally signed message part


Processed: reassign 615941 to linux-2.6

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 615941 linux-2.6
Bug #615941 [linux-latest-2.6] /etc/modprobe.d/alsa-base-blacklist.conf doesn't 
blacklist pcspkr despite the comment saying so
Bug reassigned from package 'linux-latest-2.6' to 'linux-2.6'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
615941: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615941
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129928991225029.transcr...@bugs.debian.org



Bug#614515: Link with powertop

2011-03-04 Thread Raphael Plasson

Hi,

I think that there may be a link between the kernel crashes I reported 
earlier and some tunings with powertop. In powertop there are some 
parameters that can be modified for decreasing the laptop power 
consumption. Namely, I adjust parameters so that everything is reported 
as "good" in the "tunable" powertop tab (this indeed somehow decrease 
the power consumption reported by my laptop). These parameters are 
"wireless power saving", "Enable  Audio codec power management", "Enable 
SATA link power management", "VM writeback timeout", and  "Runtime PM" 
for several PCI Devices.


I made some tests with the last SID kernel. If I do not tune anything, 
the system remained totally stable for several days. Then I tried some 
different tuning. It appeared that the kernel crashed when returning 
from suspend to RAM immediately  after that the "VM writeback timeout" 
was activated (i.e. switched on "good" in powertop), and only this one. 
So the problem may comes from this. I say "may", because it is difficult 
to be sure: the crash occurs quite randomly, and is not 100% reproducible.


I hope this can help someone to identify the bug. Other people 
experiencing similar crashes may try to look at these powertop tunings 
for confirming/infirming this claim (and eventually for solving their 
problem, at least temporarily).


Raphaël



Processed: Re: Bug#615941: /etc/modprobe.d/alsa-base-blacklist.conf doesn't blacklist pcspkr despite the comment saying so

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 615941 linux-2.6
Bug #615941 [linux-2.6] /etc/modprobe.d/alsa-base-blacklist.conf doesn't 
blacklist pcspkr despite the comment saying so
Ignoring request to reassign bug #615941 to the same package
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
615941: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615941
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129929890822908.transcr...@bugs.debian.org



Processed: Retitle

2011-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 615941 "Please don't provide pcspkr"
Bug #615941 [linux-2.6] /etc/modprobe.d/alsa-base-blacklist.conf doesn't 
blacklist pcspkr despite the comment saying so
Changed Bug title to '"Please don't provide pcspkr"' from 
'/etc/modprobe.d/alsa-base-blacklist.conf doesn't blacklist pcspkr despite the 
comment saying so'
> --
Stopping processing here.

Please contact me if you need assistance.
-- 
615941: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615941
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.129930074029534.transcr...@bugs.debian.org



Bug#615941: /etc/modprobe.d/alsa-base-blacklist.conf doesn't blacklist pcspkr despite the comment saying so

2011-03-04 Thread Raphael Hertzog
On Fri, 04 Mar 2011, Elimar Riesebieter wrote:
> reassign 615941 linux-latest-2.6
> thanks
> 
> * Raphael Hertzog [110302 08:01 +0100]:
> > On Tue, 01 Mar 2011, Elimar Riesebieter wrote:
> > > > So there'se a comment referring to a non-existing entry. Additionnaly I
> > > > noticed that I hear again the annoying pcspkr beep since a few days... I
> > > > don't know why and while looking into this I found this.
> > > > 
> > > > Maybe it's related, maybe not. I managed to turn it off by muting the
> > > > "beep" channel within the mixer.
> > > 
> > > Hmmm, is pcspkr been loaded by your kernel? The comment can be
> > > removed easy but do we have to blacklist that module? I thought it
> > > wasn't built from Debian's kernel.
> > 
> > Yes, the module is loaded and it's not due to any modification of me. 
> > So the kernel or some other piece of software must have auto-loaded it.
> > 
> > $ lsmod |grep pcspkr
> > pcspkr  1739  0 
> 
> So this is a bug from Debian's kernel. This driver is useful for
> embedded systems only but not for an amd64 kernel.

Huh?

The comment in alsa's file is still misleading. You're a bit quick in
reassigning the problem I think.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Follow my Debian News ▶ http://RaphaelHertzog.com (English)
  ▶ http://RaphaelHertzog.fr (Français)



--
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110305075417.gc27...@rivendell.home.ouaza.com