Bug#954778: Patch: Suppress irrelevant warning when generating a debian package

2020-03-29 Thread Reinhard Karcher
There was a blank line missing between the package definitions.
Sorry for late testing.

--
Best regards
Reinhard Karcher
from Reinhard.Karcher reinhard.karc...@gmx.net

Creating a Debian package by compiling the kernel
make bindeb-pkg
without creating debug information creates a warning that no
debug package was created
This patch excludes the debug package from the control file,
if no debug package is created by this configuration

Signed-off-by:Reinhard Karcher 

diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
index 357dc56bcf30..df1adbfb8ead 100755
--- a/scripts/package/mkdebian
+++ b/scripts/package/mkdebian
@@ -198,6 +198,10 @@ Description: Linux support headers for userspace development
  This package provides userspaces headers from the Linux kernel.  These headers
  are used by the installed headers for GNU glibc and other system libraries.
 Multi-Arch: same
+EOF
+
+if is_enabled CONFIG_DEBUG_INFO; then
+cat <> debian/control

 Package: $dbg_packagename
 Section: debug
@@ -206,6 +210,7 @@ Description: Linux kernel debugging symbols for $version
  This package will come in handy if you need to debug the kernel. It provides
  all the necessary debug symbols for the kernel and its modules.
 EOF
+fi

 cat < debian/rules
 #!$(command -v $MAKE) -f


Bug#954778: Patch: Suppress irrelevant warning when generating a debian package

2020-03-29 Thread Reinhard Karcher
Am Sonntag, 29. März 2020, 15:30 schrieb Masahiro Yamada:
> 
> I want you to directly use
> 
> if is_enabled CONFIG_DEBUG_INFO; then
> ...
> fi
> 

Corrected patch attached

--
Best regards
Reinhard Karcher
from Reinhard.Karcher reinhard.karc...@gmx.net

Creating a Debian package by compiling the kernel
make bindeb-pkg
without creating debug information creates a warning that no
debug package was created
This patch excludes the debug package from the control file,
if no debug package is created by this configuration

Signed-off-by:Reinhard Karcher 

diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
index 357dc56bcf30..327ea3c2a785 100755
--- a/scripts/package/mkdebian
+++ b/scripts/package/mkdebian
@@ -198,7 +198,10 @@ Description: Linux support headers for userspace development
  This package provides userspaces headers from the Linux kernel.  These headers
  are used by the installed headers for GNU glibc and other system libraries.
 Multi-Arch: same
+EOF

+if is_enabled CONFIG_DEBUG_INFO; then
+cat <> debian/control
 Package: $dbg_packagename
 Section: debug
 Architecture: $debarch
@@ -206,6 +209,7 @@ Description: Linux kernel debugging symbols for $version
  This package will come in handy if you need to debug the kernel. It provides
  all the necessary debug symbols for the kernel and its modules.
 EOF
+fi

 cat < debian/rules
 #!$(command -v $MAKE) -f


Bug#954778: Patch: Suppress irrelevant warning when generating a debian package

2020-03-29 Thread Reinhard Karcher
Am Sonntag, 29. März 2020, 14:01 schrieb Masahiro Yamada:
> 
> > By making a contribution to this project, I certify that:
> > The contribution was created in whole or in part by me and I have the
> > right to submit it under the open source license indicated in the file.
> 
> Please drop this.
> 
> Signed-off-by implies this.
> No need to explain this in an individual patch.

Droped in attached new version.

> > +if [ -n "$BUILD_DEBUG" ] ; then
> 
> This file does not define BUILD_DEBUG.
> So, this conditional is always false, isn't it?
> 
> It should be:
> 
> if is_enabled CONFIG_DEBUG_INFO; then
> 

The definition of BUILD_DEBUG is copied from builddeb too. 
See attached patch.

--
Best regards
Reinhard Karcher
from Reinhard.Karcher reinhard.karc...@gmx.net

Creating a Debian package by compiling the kernel
make bindeb-pkg
without creating debug information creates a warning that no
debug package was created
This patch excludes the debug package from the control file,
if no debug package is created by this configuration

Signed-off-by:Reinhard Karcher 

diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
index 357dc56bcf30..572abe5a149e 100755
--- a/scripts/package/mkdebian
+++ b/scripts/package/mkdebian
@@ -96,6 +96,7 @@ fi
 sourcename=$KDEB_SOURCENAME
 packagename=linux-image-$version
 kernel_headers_packagename=linux-headers-$version
+BUILD_DEBUG=$(if_enabled_echo CONFIG_DEBUG_INFO Yes)
 dbg_packagename=$packagename-dbg
 debarch=
 set_debarch
@@ -198,7 +199,10 @@ Description: Linux support headers for userspace development
  This package provides userspaces headers from the Linux kernel.  These headers
  are used by the installed headers for GNU glibc and other system libraries.
 Multi-Arch: same
+EOF

+if [ -n "$BUILD_DEBUG" ] ; then
+cat <> debian/control
 Package: $dbg_packagename
 Section: debug
 Architecture: $debarch
@@ -206,6 +210,7 @@ Description: Linux kernel debugging symbols for $version
  This package will come in handy if you need to debug the kernel. It provides
  all the necessary debug symbols for the kernel and its modules.
 EOF
+fi

 cat < debian/rules
 #!$(command -v $MAKE) -f


Bug#954778: Patch: Suppress irrelevant warning when generating a debian package

2020-03-24 Thread Reinhard Karcher
Creating a Debian package by compiling the kernel using make bindeb-pkg
without creating debug information creates a warning that no
debug package was created.
This patch excludes the debug package from the control file,
if no debug package is created by this configuration.

By making a contribution to this project, I certify that:
The contribution was created in whole or in part by me and I have the right to
submit it under the open source license indicated in the file.
Signed-off-by: Reinhard Karcher 
---
The condition to include the debug package is copied from the file
builddeb in the same directory.

diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
index 357dc56bcf30..1673b9f84804 100755
--- a/scripts/package/mkdebian
+++ b/scripts/package/mkdebian
@@ -198,7 +198,10 @@ Description: Linux support headers for userspace
development
  This package provides userspaces headers from the Linux kernel.  These
headers
  are used by the installed headers for GNU glibc and other system libraries.
 Multi-Arch: same
+EOF

+if [ -n "$BUILD_DEBUG" ] ; then
+cat <> debian/control
 Package: $dbg_packagename
 Section: debug
 Architecture: $debarch
@@ -206,6 +209,7 @@ Description: Linux kernel debugging symbols for $version
  This package will come in handy if you need to debug the kernel. It provides
  all the necessary debug symbols for the kernel and its modules.
 EOF
+fi

 cat < debian/rules
 #!$(command -v $MAKE) -f



Bug#954778: linux-image-amd64: if using make bindeb-pkg there is a warning about the missing debug package

2020-03-23 Thread Reinhard Karcher
Package: linux-image-amd64
Version: 5.4.19-1
Severity: wishlist
Tags: patch

Dear Maintainer,


   * What led up to the situation?
 Compiling a new kernel from the source

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
 make -j10 bindeb-pkg

   * What was the outcome of this action?
 A warning that there is no debug package

   * What outcome did you expect instead?
 No such warning.

I attach a patch to include the debug package in the
control file only if it is built later


-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.6.0-rc7 (SMP w/8 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de
(charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages linux-image-amd64 depends on:
ii  linux-image-5.4.0-4-amd64  5.4.19-1

linux-image-amd64 recommends no packages.

linux-image-amd64 suggests no packages.
Include the debug package in the control file only if it is to be created
diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
index 357dc56bcf30..1673b9f84804 100755
--- a/scripts/package/mkdebian
+++ b/scripts/package/mkdebian
@@ -198,7 +198,10 @@ Description: Linux support headers for userspace 
development
  This package provides userspaces headers from the Linux kernel.  These headers
  are used by the installed headers for GNU glibc and other system libraries.
 Multi-Arch: same
+EOF

+if [ -n "$BUILD_DEBUG" ] ; then
+cat <> debian/control
 Package: $dbg_packagename
 Section: debug
 Architecture: $debarch
@@ -206,6 +209,7 @@ Description: Linux kernel debugging symbols for $version
  This package will come in handy if you need to debug the kernel. It provides
  all the necessary debug symbols for the kernel and its modules.
 EOF
+fi

 cat < debian/rules
 #!$(command -v $MAKE) -f


Bug#934304: linux-image-5.2.0-2-amd64: powertop aborts on version 5.2

2019-08-09 Thread Reinhard Karcher
A selfcompiled kernel from git (version 5.3-rc3) does not show that error.



Bug#934304: linux-image-5.2.0-2-amd64: powertop aborts on version 5.2

2019-08-09 Thread Reinhard Karcher
As I rebooted the system after the abort, the abort is not seen in the log.
Attached is the relevant part of the log on the system, where the abort 
happened.

ReinhardAug 09 09:00:41 apollon kernel: BUG: kernel NULL pointer dereference, address: 

Aug 09 09:00:41 apollon kernel: #PF: supervisor instruction fetch in kernel mode
Aug 09 09:00:41 apollon kernel: #PF: error_code(0x0010) - not-present page
Aug 09 09:00:42 apollon kernel: Oops: 0010 [#1] SMP PTI
Aug 09 09:00:42 apollon kernel: CPU: 5 PID: 2187 Comm: powertop Not tainted 
5.2.0-2-amd64 #1 Debian 5.2.7-1
Aug 09 09:00:42 apollon kernel: Hardware name: FUJITSU LIFEBOOK N532/FJNBB21, 
BIOS 1.14 03/12/2013
Aug 09 09:00:42 apollon kernel: RIP: 0010:0x0
Aug 09 09:00:42 apollon kernel: Code: Bad RIP value.
Aug 09 09:00:42 apollon kernel: RSP: 0018:a9184277fcd8 EFLAGS: 00010246
Aug 09 09:00:42 apollon kernel: RAX:  RBX: 8eca2e72d700 
RCX: 0001
Aug 09 09:00:42 apollon kernel: RDX: 8eca6513d400 RSI: 8eca2e72d700 
RDI: 8eca66ae6060
Aug 09 09:00:42 apollon kernel: RBP: 8eca66ae6060 R08:  
R09: 
Aug 09 09:00:42 apollon kernel: R10: 8eca66a92540 R11:  
R12: 8eca2e72d710
Aug 09 09:00:42 apollon kernel: R13: b4b1cdd0 R14:  
R15: 8eca2e72d700
Aug 09 09:00:42 apollon kernel: FS:  7f5c80179fc0() 
GS:8eca6714() knlGS:
Aug 09 09:00:42 apollon kernel: CS:  0010 DS:  ES:  CR0: 
80050033
Aug 09 09:00:42 apollon kernel: CR2: ffd6 CR3: 0001ee624001 
CR4: 001606e0
Aug 09 09:00:42 apollon kernel: Call Trace:
Aug 09 09:00:42 apollon kernel:  do_dentry_open+0x13a/0x370
Aug 09 09:00:42 apollon kernel:  path_openat+0x2c6/0x1480
Aug 09 09:00:42 apollon kernel:  ? terminate_walk+0xe6/0x100
Aug 09 09:00:42 apollon kernel:  ? path_lookupat.isra.48+0xa3/0x220
Aug 09 09:00:42 apollon kernel:  ? reuse_swap_page+0x105/0x320
Aug 09 09:00:42 apollon kernel:  do_filp_open+0x93/0x100
Aug 09 09:00:42 apollon kernel:  ? __check_object_size+0x15d/0x189
Aug 09 09:00:42 apollon kernel:  do_sys_open+0x184/0x220
Aug 09 09:00:42 apollon kernel:  do_syscall_64+0x53/0x130
Aug 09 09:00:42 apollon kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Aug 09 09:00:42 apollon kernel: RIP: 0033:0x7f5c802d51ae
Aug 09 09:00:42 apollon kernel: Code: 25 00 00 41 00 3d 00 00 41 00 74 48 48 8d 
05 59 65 0d 00 8b 00 85 c0 75 69 89 f2 b8 01 01 00 00 48 89 fe bf 9c ff ff ff 
0f 05 <48> 3d 00 f0 ff ff 0f 87 a6 00 00 00 48 8b 4c 24 28 64 48 33 0c 25
Aug 09 09:00:42 apollon kernel: RSP: 002b:7fffe747d0a0 EFLAGS: 0246 
ORIG_RAX: 0101
Aug 09 09:00:42 apollon kernel: RAX: ffda RBX: 5607fd9cb870 
RCX: 7f5c802d51ae
Aug 09 09:00:42 apollon kernel: RDX:  RSI: 7fffe747e450 
RDI: ff9c
Aug 09 09:00:42 apollon kernel: RBP: 0008 R08: 0008 
R09: 0001
Aug 09 09:00:42 apollon kernel: R10:  R11: 0246 
R12: 7f5c806e9805
Aug 09 09:00:42 apollon kernel: R13: 7f5c806e9805 R14: 0001 
R15: 5607fda3d000
Aug 09 09:00:42 apollon kernel: Modules linked in: msr cpufreq_userspace 
cpufreq_powersave cpufreq_conservative nft_counter nft_chain_nat xt_MASQUERADE 
nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nft_compat nf_tables 
nfnetlink bridge stp llc arc4 uvcvideo iwldvm intel_rapl mac80211 
videobuf2_vmalloc x86_pkg_temp_thermal videobuf2_memops videobuf2_v4l2 
intel_powerclamp videobuf2_common coretemp videodev kvm_intel 
snd_hda_codec_hdmi media snd_hda_codec_realtek kvm irqbypass 
snd_hda_codec_generic ledtrig_audio snd_hda_intel nouveau crct10dif_pclmul 
iwlwifi snd_hda_codec snd_hda_core crc32_pclmul ghash_clmulni_intel snd_hwdep 
ttm i915 snd_pcm aesni_intel aes_x86_64 crypto_simd cryptd drm_kms_helper 
cfg80211 snd_timer sg drm snd glue_helper iTCO_wdt iTCO_vendor_support rfkill 
watchdog i2c_algo_bit soundcore pcc_cpufreq intel_cstate intel_uncore 
intel_rapl_perf joydev serio_raw evdev wmi_bmof mxm_wmi fujitsu_laptop button 
battery sparse_keymap pcspkr ac nfsd auth_rpcgss nfs_acl lockd grace sunrpc tun
Aug 09 09:00:42 apollon kernel:  binfmt_misc ip_tables x_tables autofs4 ext4 
crc16 mbcache jbd2 btrfs zstd_decompress zstd_compress raid10 raid456 
async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq 
libcrc32c crc32c_generic raid1 raid0 multipath linear md_mod sr_mod cdrom 
sd_mod ahci xhci_pci libahci xhci_hcd libata ehci_pci ehci_hcd psmouse r8169 
usbcore scsi_mod realtek libphy crc32c_intel lpc_ich i2c_i801 mfd_core 
usb_common video wmi
Aug 09 09:00:42 apollon kernel: CR2: 
Aug 09 09:00:42 apollon kernel: ---[ end trace 427904d505b760d2 ]---
Aug 09 09:00:42 apollon kernel: RIP: 0010:0x0
Aug 09 09:00:42 apollon kernel: Code: Bad RIP value.
Aug 09 09:00:42 apollon kernel: RSP: 0018:a9184277fcd8 EFLAGS: 

Bug#934304: linux-image-5.2.0-2-amd64: powertop aborts on version 5.2

2019-08-09 Thread Reinhard Karcher
Package: src:linux
Version: 5.2.7-1
Severity: normal

Dear Maintainer,

starting with version 5.2.0-2, powertop aborts, version 4.19.0-5 is OK




-- Package-specific info:
** Version:
Linux version 5.2.0-2-amd64 (debian-kernel@lists.debian.org) (gcc version 8.3.0 
(Debian 8.3.0-19)) #1 SMP Debian 5.2.7-1 (2019-08-07)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-5.2.0-2-amd64 
root=UUID=62878f00-afec-4500-affc-1e8ecd1c996e ro 
resume=/dev/disk/by-label/swap quiet nohz_full=1,2,3,4,5,6,7

** Not tainted

** Kernel log:
[   20.627518] AVX version of gcm_enc/dec engaged.
[   20.627518] AES CTR mode by8 optimization enabled
[   21.042236] media: Linux media interface: v0.10
[   21.067768] Console: switching to colour frame buffer device 240x67
[   21.072152] videodev: Linux video capture interface: v2.00
[   21.089373] snd_hda_intel :00:1b.0: bound :00:02.0 (ops 
i915_audio_component_bind_ops [i915])
[   21.091896] i915 :00:02.0: fb0: i915drmfb frame buffer device
[   21.092045] nouveau :01:00.0: NVIDIA GF108 (0c1400a1)
[   21.126179] nouveau :01:00.0: bios: version 70.08.a9.00.01
[   21.233964] nouveau :01:00.0: fb: 1024 MiB DDR3
[   21.251083] iwlwifi :03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[   21.251084] iwlwifi :03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[   21.251085] iwlwifi :03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[   21.251086] iwlwifi :03:00.0: Detected Intel(R) Centrino(R) Advanced-N 
6205 AGN, REV=0xB0
[   21.263890] iwlwifi :03:00.0: reporting RF_KILL (radio disabled)
[   21.263910] iwlwifi :03:00.0: RF_KILL bit toggled to disable radio.
[   21.296811] vga_switcheroo: enabled
[   21.296902] [TTM] Zone  kernel: Available graphics memory: 4031184 KiB
[   21.296903] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[   21.296904] [TTM] Initializing pool allocator
[   21.296907] [TTM] Initializing DMA pool allocator
[   21.296929] nouveau :01:00.0: DRM: VRAM: 1024 MiB
[   21.296930] nouveau :01:00.0: DRM: GART: 1048576 MiB
[   21.296933] nouveau :01:00.0: DRM: TMDS table version 2.0
[   21.296934] nouveau :01:00.0: DRM: DCB version 4.0
[   21.296935] nouveau :01:00.0: DRM: DCB outp 00: 02000300 
[   21.296937] nouveau :01:00.0: DRM: DCB conn 00: 
[   21.297651] nouveau :01:00.0: DRM: MM: using COPY0 for buffer copies
[   21.298157] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   21.298158] [drm] Driver supports precise vblank timestamp query.
[   21.326637] snd_hda_codec_realtek hdaudioC0D0: ALC269VC: SKU not ready 
0x909701f0
[   21.326958] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: 
line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   21.326959] snd_hda_codec_realtek hdaudioC0D0:speaker_outs=0 
(0x0/0x0/0x0/0x0/0x0)
[   21.326960] snd_hda_codec_realtek hdaudioC0D0:hp_outs=1 
(0x15/0x0/0x0/0x0/0x0)
[   21.326961] snd_hda_codec_realtek hdaudioC0D0:mono: mono_out=0x0
[   21.326961] snd_hda_codec_realtek hdaudioC0D0:dig-out=0x1e/0x0
[   21.326962] snd_hda_codec_realtek hdaudioC0D0:inputs:
[   21.326963] snd_hda_codec_realtek hdaudioC0D0:  Mic=0x18
[   21.326964] snd_hda_codec_realtek hdaudioC0D0:  Internal Mic=0x12
[   21.334017] nouveau :01:00.0: DRM: allocated 1024x768 fb: 0x6, bo 
292cc6e2
[   21.334071] nouveau :01:00.0: fb1: nouveaudrmfb frame buffer device
[   21.334182] [drm] Initialized nouveau 1.3.1 20120801 for :01:00.0 on 
minor 1
[   21.346638] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   21.388017] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/sound/card0/input15
[   21.388100] input: HDA Intel PCH Mic as 
/devices/pci:00/:00:1b.0/sound/card0/input16
[   21.388168] input: HDA Intel PCH Headphone as 
/devices/pci:00/:00:1b.0/sound/card0/input17
[   21.388252] input: HDA Intel PCH HDMI/DP,pcm=3 as 
/devices/pci:00/:00:1b.0/sound/card0/input18
[   21.400578] uvcvideo: Found UVC 1.00 device FJ Camera (04f2:b302)
[   21.438250] uvcvideo 1-1.1:1.0: Entity type for entity Extension 3 was not 
initialized!
[   21.438254] uvcvideo 1-1.1:1.0: Entity type for entity Processing 2 was not 
initialized!
[   21.438256] uvcvideo 1-1.1:1.0: Entity type for entity Camera 1 was not 
initialized!
[   21.438368] input: FJ Camera: FJ Camera as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input19
[   21.438478] usbcore: registered new interface driver uvcvideo
[   21.438480] USB Video Class driver (1.1.1)
[   22.369780] intel_rapl: Found RAPL domain package
[   22.369783] intel_rapl: Found RAPL domain core
[   22.369785] intel_rapl: Found RAPL domain uncore
[   22.369795] intel_rapl: RAPL package 0 domain package locked by BIOS
[   24.971080] Adding 16383996k swap on /dev/sda7.  Priority:-2 extents:1 
across:16383996k FS
[   26.379748] ACPI: \_SB_.PCI0.RP00.VGA_: failed to evaluate _DSM
[   27.546099] EXT4-fs (sda9): mounted filesystem with ordered 

Bug#924690: wlan broken with intel 6205

2019-03-16 Thread Reinhard Karcher
Using the new kernel 4.19.28-2 the WLAN is working again.

Reinhard



Bug#914495: linux-image-4.18.0-3-amd64: does not boot here

2018-11-26 Thread Reinhard Karcher
I have got the same poblem

lspci gives:
00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory 
Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (primary) (rev 03)
00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller (secondary) (rev 03)
00:1a.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #4 (rev 03)
00:1a.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #5 (rev 03)
00:1a.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI 
Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio 
Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 
(rev 03)
00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 
(rev 03)
00:1d.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #1 (rev 03)
00:1d.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #2 (rev 03)
00:1d.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI 
Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
00:1f.0 ISA bridge: Intel Corporation 82801HM (ICH8M) LPC Interface Controller 
(rev 03)
00:1f.1 IDE interface: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) IDE 
Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA 
Controller [AHCI mode] (rev 03)
00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
14:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN 
[Kedron] Network Connection (rev 61)
1c:03.0 CardBus bridge: O2 Micro, Inc. OZ711SP1 Memory CardBus Controller (rev 
01)
1c:03.2 SD Host controller: O2 Micro, Inc. Integrated MMC/SD Controller (rev 02)

Login-in via ssh and running journalctl -b -p 4:
-- Logs begin at Mon 2018-07-09 09:09:01 CEST, end at Fri 2018-11-23 10:42:39 
CET. --
Nov 23 10:17:29 apollon-alt kernel: core: PEBS disabled due to CPU errata
Nov 23 10:17:29 apollon-alt kernel: pmd_set_huge: Cannot satisfy [mem 
0xf800-0xf820] with a huge-page mapping due to MTRR override.
Nov 23 10:17:29 apollon-alt kernel: pci :00:1e.0: bridge has subordinate 1d 
but max busn 20
Nov 23 10:17:30 apollon-alt kernel: Unstable clock detected, switching default 
tracing clock to "global"
If you want to keep using the local clock, 
then add:
  "trace_clock=local"
on the kernel command line
Nov 23 10:17:40 apollon-alt kernel:  excluding 0xfc40-0xfc40
Nov 23 10:17:40 apollon-alt kernel: iwl4965 :14:00.0: can't disable ASPM; 
OS doesn't have ASPM control
Nov 23 10:17:40 apollon-alt kernel: BUG: unable to handle kernel NULL pointer 
dereference at 0008
Nov 23 10:17:40 apollon-alt kernel: Oops:  [#1] SMP PTI
Nov 23 10:17:40 apollon-alt kernel: CPU: 1 PID: 345 Comm: systemd-udevd Not 
tainted 4.18.0-3-amd64 #1 Debian 4.18.20-1
Nov 23 10:17:40 apollon-alt kernel: Hardware name: FUJITSU SIEMENS LIFEBOOK 
P8010/FJNB1E3, BIOS Version 1.08  08/20/2008
Nov 23 10:17:40 apollon-alt kernel: RIP: 0010:gen4_render_ring_flush+0x55/0xf0 
[i915]
Nov 23 10:17:40 apollon-alt kernel: Code: 00 be 16 00 00 00 48 89 ef e8 87 fe 
ff ff 48 3d 00 f0 ff ff 77 69 89 18 c7 40 04 02 40 00 7a 48 8b 55 78 48 8b 92 
10 02 00 00 <48> 8b 52 08 48 c7 40 0c 00 00 00 00 83 ca 04 89 50 08 48 8d 50 14 
Nov 23 10:17:40 apollon-alt kernel: RSP: 0018:a49200a73a88 EFLAGS: 00010287
Nov 23 10:17:40 apollon-alt kernel: RAX: a49210303000 RBX: 0202 
RCX: 0001ff68
Nov 23 10:17:40 apollon-alt kernel: RDX:  RSI: 01a8 
RDI: 0150
Nov 23 10:17:40 apollon-alt kernel: RBP: 89e0e92adb00 R08: 0001 
R09: 0004
Nov 23 10:17:40 apollon-alt kernel: R10: a49200a73a58 R11:  
R12: 89e0e7a68000
Nov 23 10:17:40 apollon-alt kernel: R13: 89e0e96f8800 R14:  
R15: 89e0e92adb00
Nov 23 10:17:40 apollon-alt kernel: FS:  7fac6dd658c0() 
GS:89e0efd0() knlGS:
Nov 23 10:17:40 apollon-alt kernel: CS:  0010 DS:  ES:  CR0: 
80050033
Nov 23 10:17:40 apollon-alt kernel: CR2: 0008 CR3: 000127a2c000 
CR4: 06e0
Nov 23 10:17:40 apollon-alt kernel: Call Trace:
Nov 23 10:17:40 apollon-alt kernel:  i915_request_alloc+0x243/0x360 [i915]
Nov 23 10:17:40 apollon-alt kernel:  i915_gem_init+0x284/0x480 [i915]
Nov 23 10:17:40 apollon-alt kernel:  i915_driver_load+0xb22/0xef0 [i915]
Nov 23 10:17:40 apollon-alt kernel:  ? mutex_lock+0xe/0x30
Nov 23 10:17:40 apollon-alt kernel:  ? acpi_dev_found+0x5f/0x70
Nov 23 10:17:40 apollon-alt kernel:  local_pci_probe+0x42/0xa0
Nov 23 10:17:40 

Bug#897589: linux-image-4.17.0-rc3-amd64-unsigned: uvcvideo doesn't work, spams boot console

2018-07-06 Thread Reinhard Karcher
reopen -1
found 4.17.3-1
thanks



Bug#897589: 897589:linux-image-4.17.0-rc3-amd64-unsigned: uvcvideo doesn't work, spams boot console

2018-06-21 Thread Reinhard Karcher
Hi,

I just compiled and tested 4.18.0-rc1 from kernel.org and the bug is there no 
longer. So we have to wait for 4.18.0 reaching Debian.

Reinhard



Bug#897618: linux-image-4.17.0-rc3-amd64-unsigned: xrandr gives a black screen for some resolutions

2018-05-03 Thread Reinhard Karcher
Package: src:linux
Version: 4.17~rc3-1~exp1
Severity: normal

My laptop has a resolution of 1920x1080.
xrandr -s 800x600 results in a black screen.
Using KDE, I can leave the session by typing ctrl-alt-delete
while the screen is black.
A resolution of 1360x768 is working.
/sys/kernel/debug/dri/0/framebuffer contains:
framebuffer[82]:
allocated by = Xorg
refcount=1
format=XR24 little-endian (0x34325258)
modifier=0x101
size=800x600
layers:
size[0]=800x600
pitch[0]=3584
offset[0]=0
obj[0]:(null)



Bug#897589: linux-image-4.17.0-rc3-amd64-unsigned: uvcvideo doesn't work, spams boot console

2018-05-03 Thread Reinhard Karcher
Package: src:linux
Version: 4.17~rc3-1~exp1
Severity: normal

Dear Maintainer,

   * What led up to the situation?
Booting linux-image-4.17.0-rc3-amd64-unsigned

   * What was the outcome of this action?
Here are the lines from boot log relevant for UVC video :

Mai 03 09:02:39 apollon kernel: uvcvideo: Found UVC 1.00 device FJ Camera
(04f2:b302)
Mai 03 09:02:39 apollon kernel: uvcvideo 1-1.1:1.0: Entity type for entity
Extension 3 was not initialized!
Mai 03 09:02:39 apollon kernel: uvcvideo 1-1.1:1.0: Entity type for entity
Processing 2 was not initialized!
Mai 03 09:02:39 apollon kernel: uvcvideo 1-1.1:1.0: Entity type for entity
Camera 1 was not initialized!
Mai 03 09:02:39 apollon kernel: input: FJ Camera: FJ Camera as
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input19
Mai 03 09:02:39 apollon kernel: usbcore: registered new interface driver
uvcvideo
Mai 03 09:02:39 apollon kernel: USB Video Class driver (1.1.1)
Mai 03 09:02:40 apollon systemd-udevd[454]: link_config: autonegotiation is
unset or enabled, the speed and duplex are not writable.
Mai 03 09:02:40 apollon systemd-udevd[434]: Process '/sbin/crda' failed with
exit code 249.
Mai 03 09:02:40 apollon systemd-udevd[434]: Process '/sbin/crda' failed with
exit code 249.
Mai 03 09:02:40 apollon systemd[1]: Found device TOSHIBA_MK7575GSX swap.
Mai 03 09:02:40 apollon systemd[1]: Activating swap /dev/disk/by-label/swap...
Mai 03 09:02:41 apollon systemd[1]: Found device TOSHIBA_MK7575GSX kvm.
Mai 03 09:02:41 apollon systemd[1]: Starting File System Check on /dev/disk/by-
label/kvm...
Mai 03 09:02:41 apollon systemd[1]: Found device TOSHIBA_MK7575GSX Amisgen.
Mai 03 09:02:41 apollon systemd[1]: Starting File System Check on /dev/disk/by-
label/Amisgen...
Mai 03 09:02:41 apollon kernel: Adding 16382972k swap on /dev/sda7.
Priority:-2 extents:1 across:16382972k FS
Mai 03 09:02:41 apollon systemd[1]: Activated swap /dev/disk/by-label/swap.
Mai 03 09:02:41 apollon systemd[1]: Reached target Swap.
Mai 03 09:02:41 apollon systemd[1]: Started File System Check Daemon to report
status.
Mai 03 09:02:42 apollon systemd-fsck[588]: kvm: sauber, 2415/14606336 Dateien,
48810240/58418944 Blöcke
Mai 03 09:02:42 apollon systemd[1]: Started File System Check on /dev/disk/by-
label/kvm.
Mai 03 09:02:42 apollon systemd[1]: Mounting /opt...
Mai 03 09:02:42 apollon systemd-fsck[589]: Amisgen: sauber, 7817/466032
Dateien, 1303177/1842432 Blöcke
Mai 03 09:02:42 apollon systemd[1]: Started File System Check on /dev/disk/by-
label/Amisgen.
Mai 03 09:02:42 apollon systemd[1]:Mai 03 09:18:24 apollon kernel: uvcvideo:
Failed to query (GET_MIN) UVC control 11 on unit 2: -32 (exp. 1).
Mai 03 09:18:24 apollon kernel: uvcvideo: Failed to query (GET_MIN) UVC control
11 on unit 2: -32 (exp. 1).
Mai 03 09:18:24 apollon kernel: uvcvideo: Failed to query (GET_MIN) UVC control
11 on unit 2: -32 (exp. 1).
Mai 03 09:18:24 apollon kernel: uvcvideo: Failed to query (GET_MIN) UVC control
11 on unit 2: -32 (exp. 1).
Mai 03 09:18:24 apollon kernel: uvcvideo: Failed to query (GET_MIN) UVC control
11 on unit 2: -32 (exp. 1).
Mai 03 09:18:26 apollon upowerd[2741]: unhandled action 'unbind' on
/sys/devices/pci:00/:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: fatal error
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: HC died; cleaning up
Mai 03 09:18:26 apollon kernel: uvcvideo: Failed to resubmit video URB (-19).
Mai 03 09:18:26 apollon kernel: uvcvideo: Failed to resubmit video URB (-19).
Mai 03 09:18:26 apollon kernel: uvcvideo: Failed to resubmit video URB (-19).
Mai 03 09:18:26 apollon kernel: uvcvideo: Failed to resubmit video URB (-19).
Mai 03 09:18:26 apollon kernel: uvcvideo: Failed to resubmit video URB (-19).
Mai 03 09:18:26 apollon kernel: usb 1-1: USB disconnect, device number 2
Mai 03 09:18:26 apollon kernel: usb 1-1.1: USB disconnect, device number 3
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
76dff4be/3602f240 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
ce9788f2/36037480 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
e49c589a/3602f780 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
3cbee1a8/3602f0c0 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
48da83c2/36037a80 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
4613b115/36037300 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
9cd47912/36077d80 (bad dma)
Mai 03 09:18:26 apollon kernel: ehci-pci :00:1a.0: dma_pool_free ehci_itd,
31896eb6/36077600 (bad dma)
 Mounting /windows/f...
Mai 03 09:02:42 apollon kernel: uvcvideo: Failed to query (GET_MIN) UVC control
11 on unit 2: -32 (exp. 1).

The last line repeating 

Bug#802464: Hyperthreaded cpu not enabled (smpboot: do_boot_cpu failed(-1) to wakeup CPU#1)

2015-10-23 Thread Reinhard Karcher
The bug is apparently solved upstream: 
fcafddec4e78a7776db4b6685db6b2902d4300fc
x86/smpboot: Fix CPU #1 boot timeout

Reinhard

Bug#802464: linux-image-4.3.0-rc5-amd64: Hyperthreaded cpu not enabled (Intel Core2) (smpboot: do_boot_cpu failed(-1) to wakeup CPU#1)

2015-10-20 Thread Reinhard Karcher
Package: src:linux
Version: 4.3~rc5-1~exp1
Severity: normal
Tags: upstream

Dear Maintainer,


   * What led up to the situation?
 Booting the kernel
 I got the message on the console: smpboot: do_boot_cpu failed(-1) to 
wakeup CPU#1
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
 I could not change anything 
   * What was the outcome of this action?
 There is only 1 CPU left and a performance regression
   * What outcome did you expect instead?
 I expected 2 CPUs, as in the kernel in sid


Some relevant lines from the Kernel log:

Oct 20 11:37:59 localhost kernel: [0.068000] smpboot: CPU0: Intel(R) 
Core(TM)2 CPU T7200  @ 2.00GHz (family: 0x6, model: 0xf, stepping: 0x6)
Oct 20 11:37:59 localhost kernel: [0.068000] Performance Events: PEBS 
fmt0-, 4-deep LBR, Core2 events, Intel PMU driver.
Oct 20 11:37:59 localhost kernel: [0.068000] perf_event_intel: PEBS 
disabled due to CPU errata
Oct 20 11:37:59 localhost kernel: [0.068000] ... version:2
Oct 20 11:37:59 localhost kernel: [0.068000] ... bit width:  40
Oct 20 11:37:59 localhost kernel: [0.068000] ... generic registers:  2
Oct 20 11:37:59 localhost kernel: [0.068000] ... value mask: 
00ff
Oct 20 11:37:59 localhost kernel: [0.068000] ... max period: 
7fff
Oct 20 11:37:59 localhost kernel: [0.068000] ... fixed-purpose events:   3
Oct 20 11:37:59 localhost kernel: [0.068000] ... event mask: 
00070003
Oct 20 11:37:59 localhost kernel: [0.068000] x86: Booting SMP configuration:
Oct 20 11:37:59 localhost kernel: [0.068000]  node  #0, CPUs:  #1
Oct 20 11:37:59 localhost kernel: [   10.064005] smpboot: do_boot_cpu 
failed(-1) to wakeup CPU#1
Oct 20 11:37:59 localhost kernel: [   10.064083] x86: Booted up 1 node, 1 CPUs
Oct 20 11:37:59 localhost kernel: [   10.064085] smpboot: Total of 1 processors 
activated (3991.22 BogoMIPS)

-- Package-specific info:
** Version:
Linux version 4.3.0-rc5-amd64 (debian-kernel@lists.debian.org) (gcc version 
4.9.3 (Debian 4.9.3-4) ) #1 SMP Debian 4.3~rc5-1~exp1 (2015-10-13)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-4.3.0-rc5-amd64 
root=UUID=7a5331fc-4a54-4442-a9b8-8dda0b8bd00e ro quiet resume=/dev/sda6

** Not tainted

** Kernel log:
[   26.330251] snd_hda_codec_conexant hdaudioC0D0:speaker_outs=0 
(0x0/0x0/0x0/0x0/0x0)
[   26.330254] snd_hda_codec_conexant hdaudioC0D0:hp_outs=0 
(0x0/0x0/0x0/0x0/0x0)
[   26.330256] snd_hda_codec_conexant hdaudioC0D0:mono: mono_out=0x0
[   26.330259] snd_hda_codec_conexant hdaudioC0D0:dig-out=0x13/0x0
[   26.330261] snd_hda_codec_conexant hdaudioC0D0:inputs:
[   26.330264] snd_hda_codec_conexant hdaudioC0D0:  Mic=0x12
[   26.330267] snd_hda_codec_conexant hdaudioC0D0:  Internal Mic=0x14
[   26.330270] snd_hda_codec_conexant hdaudioC0D0:  Line=0x11
[   26.331747] snd_hda_codec_conexant hdaudioC0D0: Enable sync_write for stable 
communication
[   26.335547] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/sound/card0/input7
[   26.335824] input: HDA Intel Mic as 
/devices/pci:00/:00:1b.0/sound/card0/input8
[   26.335911] input: HDA Intel Line as 
/devices/pci:00/:00:1b.0/sound/card0/input9
[   26.545027] usbcore: registered new interface driver btusb
[   26.680360] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection 
driver for Linux, in-tree:s
[   26.680364] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[   26.680504] iwl3945 :02:00.0: can't disable ASPM; OS doesn't have ASPM 
control
[   26.723536] iwl3945 :02:00.0: Tunable channels: 13 802.11bg, 23 802.11a 
channels
[   26.723541] iwl3945 :02:00.0: Detected Intel Wireless WiFi Link 3945ABG
[   26.764135] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[   26.795187] tifm_7xx1 :05:01.2: enabling device ( -> 0002)
[   27.203624] input: PC Speaker as /devices/platform/pcspkr/input/input10
[   27.993318] iTCO_vendor_support: vendor-support=0
[   28.029334] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   28.029383] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, 
TCOBASE=0x1060)
[   28.029646] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   28.122207] yenta_cardbus :05:01.0: enabling device ( -> 0003)
[   28.16] yenta_cardbus :05:01.0: CardBus bridge found [152d:0753]
[   28.122247] yenta_cardbus :05:01.0: Enabling burst memory read 
transactions
[   28.122253] yenta_cardbus :05:01.0: Using CSCINT to route CSC interrupts 
to PCI
[   28.122255] yenta_cardbus :05:01.0: Routing CardBus interrupts to PCI
[   28.122262] yenta_cardbus :05:01.0: TI: mfunc 0x01001922, devctl 0x66
[   28.352825] yenta_cardbus :05:01.0: ISA IRQ mask 0x0cf8, PCI irq 18
[   28.352830] yenta_cardbus :05:01.0: Socket status: 3006
[   28.352834] pci_bus :05: Raising subordinate bus# of 

Bug#780295: net bridge devices no longer brought up correctly

2015-03-12 Thread Reinhard Karcher
It's a problem with kmod, module-init-tools and libkmod2 version 20-1.
Replacing these packages with version 18-3 removes that problem.

Reinhard


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/9770441.0vmQAbIFvV@apollon



Bug#780295: net bridge devices no longer brought up correctly

2015-03-12 Thread Reinhard Karcher
It's a duplicate of bug 780255.

Reinhard


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/4184457.PkU13AxYZP@apollon



Bug#780295: net bridge devices no longer brought up correctly

2015-03-12 Thread Reinhard Karcher
I don't think that to be kernel problem. Booting linux-image-3.16.0-4-amd64
showed the same problem. Putting tun into /etc/modules restored
the old correct behavior.

Reinhard


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1922533.syd8VeVLO4@apollon



Bug#762458: [src:linux] Please enable CONFIG_IP_NF_NAT

2014-09-22 Thread Reinhard Karcher
Package: src:linux
Version: linux-image-3.17-rc5-amd64
Severity: normal

Between linux version 3.16 and 3.17 the option 
CONFIG_NF_NAT_IPV4 changed the name to
CONFIG_IP_NF_NAT. This option is not enabled in linux-image-3.17-rc5-amd64
Therefore I can't reach the internet from my KVM guest.

Please enable this option and the suboptions
CONFIG_IP_NF_TARGET_MASQUERADE
CONFIG_IP_NF_TARGET_NETMAP
CONFIG_IP_NF_TARGET_REDIRECT
as modules.
Generating a kernel with this options enabled, I can again access
the internet.

Reinhard
 
--- System information. ---
Architecture: amd64
Kernel:   Linux 3.17-rc5-amd64

Debian Release: jessie/sid
  500 unstabledebian 
  500 testing debian 
  500 stable  deb.opera.com 
  101 experimentaldebian 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/3453057.OuAJ73nbTp@apollon



Bug#752878: lsinitramfs: fails to list contents with recent kernels

2014-06-27 Thread Reinhard Karcher
I have no problems listing /boot/initrd.img-3.14-1-amd64 using 
lsinitramfs 0.115. My system is nearly the same, with the exception of 
udev (204-12 from testing) and kernel  (3.15-trunk-amd64 from 
experimental)

Reinhard


-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/29872092.32RqYrJxx1@apollon



Bug#721607: linux-image-3.11-rc7-amd64: suspend doesn't work

2013-09-13 Thread Reinhard Karcher
notfound -1 3.11-1~exp1
close -1 3.11-1~exp1
thanks


-- 
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/1561965.2zylWxBFOm@apollon



Bug#721607: linux-image-3.11-rc7-amd64: suspend doesn't work

2013-09-02 Thread Reinhard Karcher
Package: src:linux
Version: 3.11~rc7-1~exp1
Severity: important

Dear Maintainer,

Trying to do pm-suspend causes the computer to hang, display is black,
no response to any key, hard reset necessary. No information in logfiles found.
Trying to to pm-hibernate returns after a few seconds without touching the disk.

A self-compiled kernel using rc7 from git does suspend.

The IBUS TIMEOUT error message (see logfile at 15.318398) did not appear using
the selfcompiled kernel.

linux-image-3.10-2-amd64 was okay, while linux-image-3.11-rc4-amd64 had the
same error.


Reinhard

-- Package-specific info:
** Version:
Linux version 3.11-rc7-amd64 (debian-kernel@lists.debian.org) (gcc version 
4.7.3 (Debian 4.7.3-7) ) #1 SMP Debian 3.11~rc7-1~exp1 (2013-09-01)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.11-rc7-amd64 
root=UUID=62878f00-afec-4500-affc-1e8ecd1c996e ro resume=/dev/sda10 quiet

** Not tainted

** Kernel log:
[   10.638260] cfg80211:   (515 KHz - 525 KHz @ 4 KHz), (N/A, 2000 
mBm)
[   10.638261] cfg80211:   (525 KHz - 535 KHz @ 4 KHz), (N/A, 2000 
mBm)
[   10.638262] cfg80211:   (547 KHz - 5725000 KHz @ 4 KHz), (N/A, 2698 
mBm)
[   10.638264] cfg80211:   (5724 KHz - 6588 KHz @ 216 KHz), (N/A, 
4000 mBm)
[   10.811462] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[   15.157186] nouveau  [   VBIOS][:01:00.0] ... appears to be valid
[   15.157191] nouveau  [   VBIOS][:01:00.0] using image from ACPI
[   15.157387] nouveau  [   VBIOS][:01:00.0] BIT signature found
[   15.157391] nouveau  [   VBIOS][:01:00.0] version 70.08.a9.00.01
[   15.157670] nouveau  [ DEVINIT][:01:00.0] adaptor not initialised
[   15.157673] nouveau  [   VBIOS][:01:00.0] running init tables
[   15.264529] nouveau  [ PFB][:01:00.0] RAM type: DDR3
[   15.264531] nouveau  [ PFB][:01:00.0] RAM size: 512 MiB
[   15.264532] nouveau  [ PFB][:01:00.0]ZCOMP: 0 tags
[   15.288443] nouveau  [  PTHERM][:01:00.0] FAN control: none / external
[   15.288449] nouveau  [  PTHERM][:01:00.0] fan management: disabled
[   15.288453] nouveau  [  PTHERM][:01:00.0] internal sensor: yes
[   15.291853] vga_switcheroo: enabled
[   15.291922] [TTM] Zone  kernel: Available graphics memory: 4045282 kiB
[   15.291923] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[   15.291924] [TTM] Initializing pool allocator
[   15.291927] [TTM] Initializing DMA pool allocator
[   15.291937] nouveau  [ DRM] VRAM: 512 MiB
[   15.291938] nouveau  [ DRM] GART: 1048576 MiB
[   15.291941] nouveau  [ DRM] TMDS table version 2.0
[   15.291943] nouveau  [ DRM] DCB version 4.0
[   15.291945] nouveau  [ DRM] DCB outp 00: 02000300 
[   15.291946] nouveau  [ DRM] DCB conn 00: 
[   15.292595] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   15.292597] [drm] No driver support for vblank timestamp query.
[   15.292598] nouveau  [ DRM] ACPI backlight interface available, not 
registering our own
[   15.292604] nouveau W[ DRM] voltage table 0x50 unknown
[   15.292764] nouveau  [ DRM] 2 available performance level(s)
[   15.292776] nouveau  [ DRM] 1: core 270MHz shader 540MHz memory 405MHz
[   15.292779] nouveau  [ DRM] 3: core 475MHz shader 950MHz memory 900MHz 
voltage 10mV
[   15.292781] nouveau  [ DRM] c: core 270MHz shader 540MHz memory 405MHz
[   15.298258] nouveau  [ DRM] MM: using COPY0 for buffer copies
[   15.318398] nouveau E[PBUS][:01:00.0] MMIO write of 0x0401 FAULT 
at 0x002010 [ IBUS TIMEOUT ]
[   15.356889] nouveau E[PBUS][:01:00.0] MMIO write of 0x00040103 FAULT 
at 0x002008 [ IBUS TIMEOUT ]
[   15.380914] nouveau  [ DRM] allocated 1024x768 fb: 0x6, bo 
880224834400
[   15.381062] nouveau :01:00.0: fb1: nouveaufb frame buffer device
[   15.381065] [drm] Initialized nouveau 1.1.1 20120801 for :01:00.0 on 
minor 1
[   16.322151] Adding 16382972k swap on /dev/sda10.  Priority:-1 extents:1 
across:16382972k 
[   16.367044] EXT4-fs (sda9): re-mounted. Opts: (null)
[   16.541381] EXT4-fs (sda9): re-mounted. Opts: errors=remount-ro
[   17.201860] fuse init (API version 7.22)
[   18.066083] EXT4-fs (sda11): mounted filesystem with ordered data mode. 
Opts: errors=remount-ro
[   18.922540] tun: Universal TUN/TAP device driver, 1.6
[   18.922543] tun: (C) 1999-2004 Max Krasnyansky m...@qualcomm.com
[   19.386630] Bridge firewalling registered
[   19.388759] device tap0 entered promiscuous mode
[   19.389496] IPv6: ADDRCONF(NETDEV_UP): tap0: link is not ready
[   19.390124] device tap1 entered promiscuous mode
[   19.390773] IPv6: ADDRCONF(NETDEV_UP): tap1: link is not ready
[   19.392635] br0: port 2(tap1) entered forwarding state
[   19.392640] br0: port 2(tap1) entered forwarding state
[   19.877912] ip_tables: (C) 2000-2006 Netfilter Core Team
[   19.898833] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   19.922405] br0: port 

Bug#664064: linux-image-3.3.0-rc6-amd64: 4 messages every minute in syslog from netlink

2012-03-18 Thread Reinhard Karcher

Am 18.03.2012 04:15, schrieb Ben Hutchings:

OK, so it's something running in your KDE session.  And the results
you got from lsof suggest that it's some kind of network monitor
that's hosted by kded4, using the ntrack library
https://launchpad.net/ntrack.  I've never heard of this before.

ntrack appearently has the option to use either libnl or its own
built-in netlink protocol code, and is using the latter on your
system. If you install ntrack-module-libnl-0 and remove
ntrack-module-rtnetlink-0, does this fix the problem?



Yes, that fixes the problem. Thanks for your help.
Should the bug be filed against an other package?
kde-runtime - libntrack-qt4-1 - libntrack0 - ntrack-module-rtnetlink-0
Which one from the packages above?

Reinhard





--
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/4f65bff9.2050...@gmx.net



Bug#664064: linux-image-3.3.0-rc6-amd64: 4 messages every minute in syslog from netlink

2012-03-16 Thread Reinhard Karcher

Am 15.03.2012 18:14, schrieb Ben Hutchings:

It would be useful if we could tell which program is sending the
message, but I think that may be difficult to do.



Some further investigation showed that the 1st occurrence of the message 
is related to the start of KDE. After stopping X (and KDE) there are no 
new messages logged.


Reinhard



--
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/4f62ff97.9080...@gmx.net



Bug#664064: netlink messages

2012-03-16 Thread Reinhard Karcher
It's not an effect of Debian specific changes, a kernel generated from 
latest kernel git shows the same messages.


Reinhard



--
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/4f630161.6090...@gmx.net



Bug#664064: linux-image-3.3.0-rc6-amd64: 4 messages every minute in syslog from netlink

2012-03-15 Thread Reinhard Karcher
Package: linux-2.6
Version: 3.3~rc6-1~experimental.1
Severity: normal

The kernel log says all!
I have 2 laptops showing the messages, both amd64.
One of them runs a 32-bit system in a VM with the linux-image-3.3.0-rc6-686-pae 
kernel,
that does not have this problem.
The amd64 kernel from unstable (3.2.0-2) does not show the messages. 

Reinhard

-- Package-specific info:
** Version:
Linux version 3.3.0-rc6-amd64 (Debian 3.3~rc6-1~experimental.1) 
(debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-1) ) #1 SMP 
Mon Mar 5 20:53:11 UTC 2012

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.3.0-rc6-amd64 
root=UUID=9bb56ba6-3117-47d6-b07c-2cca477643e9 ro quiet cgroup_enable=memory

** Not tainted

** Kernel log:
[46368.760279] netlink: 140 bytes leftover after parsing attributes.
[46368.760289] netlink: 140 bytes leftover after parsing attributes.
[46368.760442] netlink: 140 bytes leftover after parsing attributes.
[46368.760496] netlink: 140 bytes leftover after parsing attributes.
[46428.760127] netlink: 140 bytes leftover after parsing attributes.
[46428.760138] netlink: 140 bytes leftover after parsing attributes.
[46428.760290] netlink: 140 bytes leftover after parsing attributes.
[46428.760342] netlink: 140 bytes leftover after parsing attributes.
[46488.759746] netlink: 140 bytes leftover after parsing attributes.
[46488.759757] netlink: 140 bytes leftover after parsing attributes.
[46488.759901] netlink: 140 bytes leftover after parsing attributes.
[46488.759953] netlink: 140 bytes leftover after parsing attributes.
[46548.760537] netlink: 140 bytes leftover after parsing attributes.
[46548.760548] netlink: 140 bytes leftover after parsing attributes.
[46548.760700] netlink: 140 bytes leftover after parsing attributes.
[46548.761953] netlink: 140 bytes leftover after parsing attributes.
[46608.760342] netlink: 140 bytes leftover after parsing attributes.
[46608.760353] netlink: 140 bytes leftover after parsing attributes.
[46608.760503] netlink: 140 bytes leftover after parsing attributes.
[46608.760555] netlink: 140 bytes leftover after parsing attributes.
[46668.760002] netlink: 140 bytes leftover after parsing attributes.
[46668.760057] netlink: 140 bytes leftover after parsing attributes.
[46668.760215] netlink: 140 bytes leftover after parsing attributes.
[46668.760268] netlink: 140 bytes leftover after parsing attributes.
[46728.759484] netlink: 140 bytes leftover after parsing attributes.
[46728.759497] netlink: 140 bytes leftover after parsing attributes.
[46728.759655] netlink: 140 bytes leftover after parsing attributes.
[46728.759709] netlink: 140 bytes leftover after parsing attributes.
[46788.759250] netlink: 140 bytes leftover after parsing attributes.
[46788.759264] netlink: 140 bytes leftover after parsing attributes.
[46788.759418] netlink: 140 bytes leftover after parsing attributes.
[46788.759475] netlink: 140 bytes leftover after parsing attributes.
[46848.760392] netlink: 140 bytes leftover after parsing attributes.
[46848.760403] netlink: 140 bytes leftover after parsing attributes.
[46848.760552] netlink: 140 bytes leftover after parsing attributes.
[46848.760604] netlink: 140 bytes leftover after parsing attributes.
[46908.760746] netlink: 140 bytes leftover after parsing attributes.
[46908.760753] netlink: 140 bytes leftover after parsing attributes.
[46908.760875] netlink: 140 bytes leftover after parsing attributes.
[46908.760911] netlink: 140 bytes leftover after parsing attributes.
[46968.761077] netlink: 140 bytes leftover after parsing attributes.
[46968.761088] netlink: 140 bytes leftover after parsing attributes.
[46968.761244] netlink: 140 bytes leftover after parsing attributes.
[46968.761297] netlink: 140 bytes leftover after parsing attributes.
[47028.759895] netlink: 140 bytes leftover after parsing attributes.
[47028.759905] netlink: 140 bytes leftover after parsing attributes.
[47028.760121] netlink: 140 bytes leftover after parsing attributes.
[47028.760175] netlink: 140 bytes leftover after parsing attributes.
[47088.759828] netlink: 140 bytes leftover after parsing attributes.
[47088.759838] netlink: 140 bytes leftover after parsing attributes.
[47088.759987] netlink: 140 bytes leftover after parsing attributes.
[47088.760117] netlink: 140 bytes leftover after parsing attributes.
[47148.760571] netlink: 140 bytes leftover after parsing attributes.
[47148.760583] netlink: 140 bytes leftover after parsing attributes.
[47148.760735] netlink: 140 bytes leftover after parsing attributes.
[47148.760785] netlink: 140 bytes leftover after parsing attributes.
[47208.760978] netlink: 140 bytes leftover after parsing attributes.
[47208.760986] netlink: 140 bytes leftover after parsing attributes.
[47208.761105] netlink: 140 bytes leftover after parsing attributes.
[47208.761139] netlink: 140 bytes leftover after parsing attributes.
[47268.759727] netlink: 140 bytes leftover after parsing attributes.
[47268.759739] netlink: 140 bytes leftover after parsing 

Bug#656668: 3.2 has different /sys/class/power

2012-01-20 Thread Reinhard Karcher
Do you use module-init-tools 4.0.3-1 from experimental? I get similar 
errors with that version.


Reinhard



--
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/4f19d1ba@gmx.net



Bug#656668: 3.2 has different /sys/class/power

2012-01-20 Thread Reinhard Karcher

Am 20.01.2012 21:51, schrieb Adam Heath:

I use module-init-tools 3.16-1.



No problems with that version and linux-image-3.2.0-1-amd64.
I see both, the battery(CMB1) and the power-supply(AC).

Reinhard



--
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/4f19d829.7060...@gmx.net



Bug#651382: linux-image-3.2.0-rc4-amd64: webcam stops working

2011-12-08 Thread Reinhard Karcher
Package: linux-2.6
Version: 3.2~rc4-1~experimental.1
Severity: normal

Dear Maintainer,
 
My webcam doesn't work any longer, neither vlc nor guvcview nor cheese can use
it any longer. The error message from cheese:
libv4l2: error turning on stream: Auf dem Gerät ist kein Speicherplatz mehr 
verfügbar (That means: no space left on device)

The webcam is connected via usb
lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 0409:005a NEC Corp. HighSpeed Hub
Bus 006 Device 003: ID 0ac8:3343 Z-Star Microelectronics Corp. Sirius USB 2.0 
Camera
Bus 004 Device 002: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor

linux-image 3.1 and before are OK.

Reinhard

-- Package-specific info:
** Version:
Linux version 3.2.0-rc4-amd64 (Debian 3.2~rc4-1~experimental.1) 
(b...@decadent.org.uk) (gcc version 4.6.2 (Debian 4.6.2-5) ) #1 SMP Sun Dec 4 
18:38:24 UTC 2011

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-rc4-amd64 
root=UUID=9bb56ba6-3117-47d6-b07c-2cca477643e9 ro quiet cgroup_enable=memory 
pcie_aspm=force i915.i915_enable_rc6=1

** Not tainted

** Kernel log:
[   10.678572] input: Fujitsu FUJ02E3 as 
/devices/LNXSYSTM:00/device:00/FUJ02E3:00/input/input8
[   10.678649] fujitsu_laptop: ACPI: Fujitsu FUJ02E3 [FEXT] (on)
[   10.679350] fujitsu_laptop: BTNI: [0xf0101]
[   10.683650] Registered led device: fujitsu::logolamp
[   10.683798] fujitsu_laptop: driver 0.6.0 successfully loaded
[   10.972699] iwl4965: Intel(R) Wireless WiFi 4965 driver for Linux, in-tree:
[   10.972704] iwl4965: Copyright(c) 2003-2011 Intel Corporation
[   10.972851] iwl4965 :14:00.0: PCI INT A - GSI 16 (level, low) - IRQ 16
[   10.972864] iwl4965 :14:00.0: setting latency timer to 64
[   10.972904] iwl4965 :14:00.0: Detected Intel(R) Wireless WiFi Link 
4965AGN, REV=0x4
[   11.011783] iwl4965 :14:00.0: device EEPROM VER=0x36, CALIB=0x5
[   11.011808] iwl4965 :14:00.0: Tunable channels: 13 802.11bg, 19 802.11a 
channels
[   11.011898] iwl4965 :14:00.0: irq 45 for MSI/MSI-X
[   11.459532] iwl4965 :14:00.0: loaded firmware version 228.61.2.24
[   11.459897] Registered led device: phy0-led
[   11.518755] psmouse serio4: synaptics: Touchpad model: 1, fw: 6.5, id: 
0x1c0b1, caps: 0xa04711/0xa02000/0x0
[   11.557495] input: SynPS/2 Synaptics TouchPad as 
/devices/platform/i8042/serio4/input/input9
[   11.970883] Linux media interface: v0.10
[   11.991754] Linux video capture interface: v2.00
[   12.022424] snd_hda_intel :00:1b.0: power state changed by ACPI to D0
[   12.022581] snd_hda_intel :00:1b.0: power state changed by ACPI to D0
[   12.022596] snd_hda_intel :00:1b.0: PCI INT A - GSI 21 (level, low) - 
IRQ 21
[   12.022690] snd_hda_intel :00:1b.0: irq 46 for MSI/MSI-X
[   12.022735] snd_hda_intel :00:1b.0: setting latency timer to 64
[   12.573043] ieee80211 phy0: Selected rate control algorithm 'iwl-4965-rs'
[   12.886606] hda_codec: ALC262: SKU not ready 0x90970130
[   12.887805] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/input/input10
[   12.951590] uvcvideo: Found UVC 1.00 device Sirius USB2.0 Camera (0ac8:3343)
[   12.955213] input: Sirius USB2.0 Camera as 
/devices/pci:00/:00:1d.7/usb6/6-4/6-4:1.0/input/input11
[   12.955399] usbcore: registered new interface driver uvcvideo
[   12.955403] USB Video Class driver (1.1.1)
[   13.771312] cfg80211: World regulatory domain updated:
[   13.771317] cfg80211: (start_freq - end_freq @ bandwidth), 
(max_antenna_gain, max_eirp)
[   13.771323] cfg80211: (2402000 KHz - 2472000 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[   13.771329] cfg80211: (2457000 KHz - 2482000 KHz @ 2 KHz), (300 mBi, 
2000 mBm)
[   13.771334] cfg80211: (2474000 KHz - 2494000 KHz @ 2 KHz), (300 mBi, 
2000 mBm)
[   13.771340] cfg80211: (517 KHz - 525 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[   13.771345] cfg80211: (5735000 KHz - 5835000 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[   13.771876] cfg80211: Calling CRDA for country: DE
[   13.777617] cfg80211: Regulatory domain changed to country: DE
[   13.777622] cfg80211: (start_freq - end_freq @ bandwidth), 
(max_antenna_gain, max_eirp)
[   13.777628] cfg80211: (240 KHz - 2483500 KHz @ 4 KHz), (N/A, 
2000 mBm)
[   13.777633] cfg80211: (515 KHz - 525 KHz @ 4 KHz), (N/A, 
2000 mBm)
[   13.777639] cfg80211: (525 KHz - 535 KHz @ 4 KHz), (N/A, 
2000 mBm)
[   13.777643] cfg80211: (547 KHz - 5725000 KHz @ 4 KHz), (N/A, 
2698 mBm)
[   13.894573] input: HDA Intel Headphone as 
/devices/pci:00/:00:1b.0/sound/card0/input12
[   16.007613] Adding 4803396k swap on 

Bug#651382: linux-image-3.2.0-rc4-amd64: webcam stops working

2011-12-08 Thread Reinhard Karcher

It's a kernel bug, that vanished with the latest git from kernel.org.
The bugs exists in the 3.2-rc4 revision at git.kernel.org.

Reinhard



--
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/4ee09045.8040...@gmx.net



Bug#633078: initramfs-tools: lsinitramfs doesn't understand xy-compression

2011-07-08 Thread Reinhard Karcher
Package: initramfs-tools
Version: 0.99
Severity: normal


lsinitramfs can only list initrds compressed by gzip, but mkinitramfs
can use an other compression option. From initramfs.conf:
# COMPRESS: [ gzip | bzip2 | lzma | lzop | xz ]
If I use e.g. xy-compression lsinitramfs can't list the initrd.

Reinhard

-- Package-specific info:
-- initramfs sizes
-rw-r--r-- 1 root root 6.9M Jul  5 13:11 /boot/initrd.img-2.6.39-2-amd64
-- /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-3.0.0-rc6+ 
root=UUID=9bb56ba6-3117-47d6-b07c-2cca477643e9 ro quiet cgroup_enable=memory

-- resume
# RESUME=/dev/sda5
RESUME='UUID=9fc8a3c1-5d84-4eee-9164-ba0f639fcea2'
-- /proc/filesystems
ext3
fuseblk

-- lsmod
Module  Size  Used by
cpufreq_stats   2730  0 
cpufreq_conservative 4275  0 
acpi_cpufreq4971  1 
cpufreq_userspace   1816  0 
mperf   1133  1 acpi_cpufreq
cpufreq_powersave870  0 
bluetooth  64479  2 
snd_hrtimer 1452  1 
nfsd  245435  13 
exportfs3080  1 nfsd
nfs   294725  0 
lockd  60455  2 nfsd,nfs
fscache25270  1 nfs
auth_rpcgss33623  2 nfsd,nfs
nfs_acl 1951  2 nfsd,nfs
sunrpc164630  19 nfsd,nfs,lockd,auth_rpcgss,nfs_acl
microcode   6638  0 
uinput  6516  1 
fuse   54985  1 
ipt_MASQUERADE  1490  1 
iptable_nat 3424  1 
nf_nat 12714  2 ipt_MASQUERADE,iptable_nat
nf_conntrack_ipv4   9798  3 iptable_nat,nf_nat
nf_conntrack   46020  4 
ipt_MASQUERADE,iptable_nat,nf_nat,nf_conntrack_ipv4
nf_defrag_ipv4  1219  1 nf_conntrack_ipv4
ip_tables  14003  1 iptable_nat
x_tables   14028  3 ipt_MASQUERADE,iptable_nat,ip_tables
bridge 60008  0 
stp 1392  1 bridge
llc 3262  2 bridge,stp
vhost_net  15302  0 
macvtap 6522  1 vhost_net
macvlan 6740  1 macvtap
tun12270  3 vhost_net
dm_mod 54655  0 
loop   13085  0 
kvm_intel  39134  0 
kvm   188076  1 kvm_intel
arc41242  2 
snd_hda_codec_realtek   272980  1 
snd_hda_intel  19281  3 
snd_hda_codec  55196  2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep   4906  1 snd_hda_codec
snd_pcm54125  2 snd_hda_intel,snd_hda_codec
snd_seq41643  1 
snd_timer  15939  3 snd_hrtimer,snd_pcm,snd_seq
snd_seq_device  4425  1 snd_seq
snd40837  15 
snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_seq,snd_timer,snd_seq_device
soundcore872  1 snd
snd_page_alloc  5931  2 snd_hda_intel,snd_pcm
iwl496578997  0 
iwl_legacy 43163  1 iwl4965
pcmcia 28284  0 
mac80211  172223  2 iwl4965,iwl_legacy
uvcvideo   51990  0 
processor  23253  3 acpi_cpufreq
yenta_socket   17734  0 
pcmcia_rsrc 7198  1 yenta_socket
cfg80211  124288  3 iwl4965,iwl_legacy,mac80211
psmouse33182  0 
pcmcia_core10198  3 pcmcia,yenta_socket,pcmcia_rsrc
videodev   58104  1 uvcvideo
v4l2_compat_ioctl32 6695  1 videodev
i2c_i8017278  0 
battery 5893  0 
ac  2144  0 
serio_raw   3674  0 
pcspkr  1667  0 
fujitsu_laptop 10371  0 
rfkill 12964  3 bluetooth,cfg80211
evdev   8254  20 
sg 18356  0 
sr_mod 12596  0 
sd_mod 29729  3 
crc_t10dif  1244  1 sd_mod
cdrom  30041  1 sr_mod
i915  300652  2 
drm_kms_helper 20782  1 i915
drm   151615  3 i915,drm_kms_helper
i2c_algo_bit4209  1 i915
sdhci_pci   7465  0 
sdhci  18049  1 sdhci_pci
uhci_hcd   18396  0 
thermal 7359  0 
ehci_hcd   31593  0 
mmc_core   57282  1 sdhci
ata_piix   20947  0 
sky2   38218  0 
ahci   19689  2 
libahci15716  1 ahci
libata140905  3 ata_piix,ahci,libahci
scsi_mod  120684  4 sg,sr_mod,sd_mod,libata
cfbcopyarea 3022  1 i915
button  4177  1 i915
i2c_core   16300  6 
videodev,i2c_i801,i915,drm_kms_helper,drm,i2c_algo_bit
video  10597  1 i915
thermal_sys12059  3 processor,thermal,video
cfbimgblt   1897  1 i915
cfbfillrect 2970  1 i915
usbcore   112731  3 uvcvideo,uhci_hcd,ehci_hcd

-- /etc/initramfs-tools/modules
intel_agp
i915

-- 

Bug#624135: linux-image-2.6.39-rc4-amd64: Moduls for intel wlan legacy missing

2011-04-25 Thread Reinhard Karcher
Package: linux-2.6
Version: 2.6.39~rc4-1~experimental.1
Severity: normal

The support for older Intel wlan cards (3945 and 4965) was removed from
the iwlagn module and new modules iw-legacy, iwl3945 and iwl4965 where
created. These modules are not present in the packages. Please enable the
compilation of this modules.
The new iwlagn module does not support the legacy cards.

-- Package-specific info:
** Version:
Linux version 2.6.39-rc4-amd64 (Debian 2.6.39~rc4-1~experimental.1) 
(b...@decadent.org.uk) (gcc version 4.4.6 (Debian 4.4.6-2) ) #1 SMP Sun Apr 24 
23:13:40 UTC 2011

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.39-rc4-amd64 
root=UUID=9bb56ba6-3117-47d6-b07c-2cca477643e9 ro quiet

** Not tainted

** Kernel log:
[3.597542] PM: Image not found (code -22)
[3.597546] PM: Hibernation image not present or could not be loaded.
[3.654779] EXT3-fs: barriers not enabled
[3.657280] kjournald starting.  Commit interval 5 seconds
[3.657345] EXT3-fs (sda2): mounted filesystem with ordered data mode
[5.751977] udevd[306]: starting version 168
[6.655609] ACPI: AC Adapter [AC] (on-line)
[6.663269] ACPI: acpi_idle registered with cpuidle
[6.667236] yenta_cardbus :1c:03.0: CardBus bridge found [10cf:143d]
[6.667276] yenta_cardbus :1c:03.0: O2: enabling read prefetch/write 
burst. If you experience problems or performance issues, use the yenta_socket 
parameter 'o2_speedup=off'
[6.667408] Monitor-Mwait will be used to enter C-1 state
[6.667449] Monitor-Mwait will be used to enter C-2 state
[6.667480] Monitor-Mwait will be used to enter C-3 state
[6.667489] Marking TSC unstable due to TSC halts in idle
[6.667754] Switching to clocksource hpet
[6.724999] input: PC Speaker as /devices/platform/pcspkr/input/input6
[6.793088] yenta_cardbus :1c:03.0: ISA IRQ mask 0x0cb8, PCI irq 16
[6.793097] yenta_cardbus :1c:03.0: Socket status: 3006
[6.793103] pci_bus :1c: Raising subordinate bus# of parent bus (#1c) 
from #1d to #20
[6.793118] yenta_cardbus :1c:03.0: pcmcia: parent PCI bridge window: 
[io  0x3000-0x3fff]
[6.793125] yenta_cardbus :1c:03.0: pcmcia: parent PCI bridge window: 
[mem 0xfc40-0xfc4f]
[6.793131] pcmcia_socket pcmcia_socket0: cs: memory probe 
0xfc40-0xfc4f: excluding 0xfc40-0xfc40
[6.793157] yenta_cardbus :1c:03.0: pcmcia: parent PCI bridge window: 
[mem 0xd000-0xd3ff pref]
[6.793162] pcmcia_socket pcmcia_socket0: cs: memory probe 
0xd000-0xd3ff: excluding 0xd000-0xd3ff
[7.048131] ACPI: Battery Slot [CMB1] (battery present)
[7.085389] input: Fujitsu FUJ02B1 as 
/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:30/FUJ02B1:00/input/input7
[7.085468] ACPI: Fujitsu FUJ02B1 [FJEX] (on)
[7.085782] input: Fujitsu FUJ02E3 as 
/devices/LNXSYSTM:00/device:00/FUJ02E3:00/input/input8
[7.085836] ACPI: Fujitsu FUJ02E3 [FEXT] (on)
[7.086408] fujitsu-laptop: BTNI: [0xf0101]
[7.087384] Registered led device: fujitsu::logolamp
[7.087488] fujitsu-laptop: driver 0.6.0 successfully loaded.
[7.121976] Linux video capture interface: v2.00
[7.129781] uvcvideo: Found UVC 1.00 device Sirius USB2.0 Camera (0ac8:3343)
[7.133179] input: Sirius USB2.0 Camera as 
/devices/pci:00/:00:1d.7/usb6/6-4/6-4:1.0/input/input9
[7.133388] usbcore: registered new interface driver uvcvideo
[7.133392] USB Video Class driver (v1.0.0)
[7.133583] i801_smbus :00:1f.3: PCI INT B - GSI 21 (level, low) - IRQ 
21
[7.390351] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 
0xa04711/0xa02000/0x0
[7.429064] input: SynPS/2 Synaptics TouchPad as 
/devices/platform/i8042/serio4/input/input10
[7.491840] HDA Intel :00:1b.0: power state changed by ACPI to D0
[7.491851] HDA Intel :00:1b.0: power state changed by ACPI to D0
[7.491870] HDA Intel :00:1b.0: PCI INT A - GSI 21 (level, low) - IRQ 
21
[7.491984] HDA Intel :00:1b.0: irq 45 for MSI/MSI-X
[7.492089] HDA Intel :00:1b.0: setting latency timer to 64
[7.915505] hda_codec: ALC262: SKU not ready 0x90970130
[7.915691] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/input/input11
[   11.202426] Adding 4803396k swap on /dev/sda5.  Priority:-1 extents:1 
across:4803396k 
[   11.464654] EXT3-fs (sda2): using internal journal
[   11.679131] loop: module loaded
[   11.765971] device-mapper: uevent: version 1.0.3
[   11.766476] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: 
dm-de...@redhat.com
[   13.427888] IPv4 FIB: Using LC-trie version 0.409
[   13.901698] sky2 :04:00.0: eth0: enabling interface
[   13.902484] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.786876] sky2 :04:00.0: eth0: Link is up at 100 Mbps, full duplex, 
flow control both
[   15.787595] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   19.688039] tun: Universal TUN/TAP device driver, 1.6
[   19.688045] 

Bug#624135: Acknowledgement (linux-image-2.6.39-rc4-amd64: Moduls for intel wlan legacy missing)

2011-04-25 Thread Reinhard Karcher
A diff between the original .config file and the one, that produces the 
modules:

--- .config.old 2011-04-25 01:20:00.0 +0200
+++ .config 2011-04-25 22:28:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
-# Linux/x86 2.6.39-rc4 Kernel Configuration
-# Sun Apr 24 22:33:52 2011
+# Linux/x86_64 2.6.39-rc4 Kernel Configuration
+# Mon Apr 25 22:28:04 2011
 #
 CONFIG_64BIT=y
 # CONFIG_X86_32 is not set
@@ -2155,7 +2155,15 @@
 # CONFIG_IWLWIFI_DEBUG is not set
 # CONFIG_IWLWIFI_DEVICE_TRACING is not set
 # CONFIG_IWL_P2P is not set
-# CONFIG_IWLWIFI_LEGACY is not set
+CONFIG_IWLWIFI_LEGACY=m
+
+#
+# Debugging Options
+#
+# CONFIG_IWLWIFI_LEGACY_DEBUG is not set
+# CONFIG_IWLWIFI_LEGACY_DEVICE_TRACING is not set
+CONFIG_IWL4965=m
+# CONFIG_IWL3945 is not set
 CONFIG_IWM=m
 # CONFIG_IWM_DEBUG is not set
 # CONFIG_IWM_TRACING is not set



--
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/4db5e134.2090...@gmx.net



Bug#558237: linux-source-2.6.32: X with xserver-xorg-video-intel does not work any longer

2009-12-08 Thread Reinhard Karcher
Status update for kernel-image-2.6.32-trunk-amd64:
 
things improved a little bit. Console switching is now possible, but in 
X only a black screen is visible, with the exception of the mouse 
cursor, which is visible and moves as it should.

The following message vanished from Xorg.0.log with the new kernel:

Fatal server error:
Failed to map batchbuffer: Input/output error


Please consult the The X.Org Foundation support
at http://wiki.x.org
 for help.
Please also check the log file at /var/log/Xorg.0.log for additional 
information.

The messages in the calling VT are the same:

../../../libdrm/intel/intel_bufmgr_gem.c:825: Error setting to CPU 
domain 96: Input/output error
../../../libdrm/intel/intel_bufmgr_gem.c:899: Error setting domain 773: 
Input/output error

Reinhard



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#558237: linux-source-2.6.32: X with xserver-xorg-video-intel does not work any longer

2009-12-08 Thread Reinhard Karcher
reported upstrem 25510 bugs.freedesktop.org

Reinhard



-- 
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#558237: linux-source-2.6.32: X with xserver-xorg-video-intel does not work any longer

2009-11-27 Thread Reinhard Karcher
Package: linux-source-2.6.32
Version: 2.6.32~rc8-1~experimental.1
Severity: important


X doesn't work, but doesn't abort; system is unusable. The following
message is printed on the console that started X:
.../../../libdrm/intel/intel_bufmgr_gem.c:825: Error setting to CPU domain 96: 
Input/output error
.../../../libdrm/intel/intel_bufmgr_gem.c:899: Error setting domain 773: 
Input/output error


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-rc8-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-source-2.6.32 depends on:
ii  binutils  2.20-4 The GNU assembler, linker and bina
ii  bzip2 1.0.5-3high-quality block-sorting file co

Versions of packages linux-source-2.6.32 recommends:
ii  gcc   4:4.3.4-1  The GNU C compiler
ii  libc6-dev [libc-dev]  2.10.2-2   GNU C Library: Development Librari
ii  make  3.81-7 An utility for Directing compilati

Versions of packages linux-source-2.6.32 suggests:
ii  kernel-package12.031 A utility for building Linux kerne
ii  libncurses5-dev [ncurses- 5.7+20090803-2 developer's libraries and docs for
pn  libqt3-mt-dev none (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



Bug#558237: linux-source-2.6.32: X with xserver-xorg-video-intel does not work any longer

2009-11-27 Thread Reinhard Karcher
Am Freitag 27 November 2009 11:53:08 schrieb Uwe Kleine-König:
 
 My system still works with xserver-xorg-video-intel 2:2.9.0-1 on
 2.6.32~rc8-1~experimental.1.
 
 Best regards
 Uwe
 
My versions of libdrm:

libdrm2:
  Installiert: 2.4.15-1
  Kandidat: 2.4.15-1
  Versions-Tabelle:
 *** 2.4.15-1 0
500 http://debian sid/main Packages
100 /var/lib/dpkg/status00:02.0 VGA compatible controller: Intel 
Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)

 2.4.14-1 0
500 http://debian squeeze/main Packages
 2.4.11+git+20090630+de1ed01-1 0
101 http://debian experimental/main Packages
libdrm-intel1:
  Installiert: 2.4.15-1
  Kandidat: 2.4.15-1
  Versions-Tabelle:
 *** 2.4.15-1 0
500 http://debian sid/main Packages
100 /var/lib/dpkg/status
 2.4.14-1 0
500 http://debian squeeze/main Packages
 2.4.11+git+20090630+de1ed01-1 0
101 http://debian experimental/main Packages

My hardware (output from lspci):
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 03)


Reinhard



--
To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#558237: linux-source-2.6.32: X with xserver-xorg-video-intel does not work any longer

2009-11-27 Thread Reinhard Karcher
Am Freitag 27 November 2009 12:49:23 schrieb Reinhard Karcher:
 Am Freitag 27 November 2009 11:53:08 schrieb Uwe Kleine-König:
  My system still works with xserver-xorg-video-intel 2:2.9.0-1 on
  2.6.32~rc8-1~experimental.1.
 
  Best regards
  Uwe
 
 My versions of libdrm:
 
 libdrm2:
   Installiert: 2.4.15-1
   Kandidat: 2.4.15-1
   Versions-Tabelle:
  *** 2.4.15-1 0
 500 http://debian sid/main Packages
 100 /var/lib/dpkg/status00:02.0 VGA compatible controller:
  Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller
  (rev 03)
 
  2.4.14-1 0
 500 http://debian squeeze/main Packages
  2.4.11+git+20090630+de1ed01-1 0
 101 http://debian experimental/main Packages
 libdrm-intel1:
   Installiert: 2.4.15-1
   Kandidat: 2.4.15-1
   Versions-Tabelle:
  *** 2.4.15-1 0
 500 http://debian sid/main Packages
 100 /var/lib/dpkg/status
  2.4.14-1 0
 500 http://debian squeeze/main Packages
  2.4.11+git+20090630+de1ed01-1 0
 101 http://debian experimental/main Packages
 
 My hardware (output from lspci):
 00:02.0 VGA compatible controller: Intel Corporation Mobile
  GM965/GL960 Integrated Graphics Controller (rev 03)
 
 

Some more software information:
KDE4 4.3.2 from testing/unstable, with or without workspace effects.

/var/log/Xorg.0.log:
X.Org X Server 1.6.5
Release Date: 2009-10-11
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30-2-amd64 x86_64 Debian
Current Operating System: Linux apollon 2.6.32-rc8-amd64 #1 SMP Sat Nov 
21 22:12:25 UTC 2009 x86_64
Build Date: 13 October 2009  09:39:10AM
xorg-server 2:1.6.5-1 (jcris...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Fri Nov 27 14:14:11 2009
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |--Screen Default Screen Section (0)
(**) |   |--Monitor default monitor
(==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
(**) Option DontZap off
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(**) FontPath set to:
/usr/local/share/dosemu/Xfonts,
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(II) Loader magic: 0x3b40
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(--) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2a02:10cf:13fe Intel Corporation Mobile 
GM965/GL960 Integrated Graphics Controller rev 3, Mem @ 
0xfc00/1048576, 0xe000/268435456, I/O @ 0x1800/8
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x000f - 0x000f (0x1) MX[B]
[2] -1  0   0x000c - 0x000e (0x3) MX[B]
[3] -1  0   0x - 0x0009 (0xa) MX[B]
[4] -1  0   0x - 0x (0x1) IX[B]
[5] -1  0   0x - 0x (0x1) IX[B]
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.6.5, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension SELinux
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: dbe
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor=X.Org Foundation
compiled for 1.6.5, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE