Bug#712674: [PATCH net-next] cassini: Make missing firmware non-fatal

2013-07-01 Thread David Miller
From: Ben Hutchings 
Date: Mon, 01 Jul 2013 00:13:27 +0100

> The firmware patch for the Saturn PHY fixes a bug, but is not absolutely
> essential.  And its licence is unclear, so it is not included in all
> distributions.  Just log an error message and continue if it is missing
> or invalid.
> 
> References: http://bugs.debian.org/712674
> Signed-off-by: Ben Hutchings 
> Tested-by: Jose Andres Arias Velichko  (against 
> 3.2)

This looks fine, applied.


-- 
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/20130701.234803.1786506561267879534.da...@davemloft.net



Bug#714497: More info: not found in 3.8-2-amd64

2013-07-01 Thread Steve M. Robbins
Hi,

I booted my old kernel (3.8-2) and the problem has gone away, so it is 
definitely something in the 3.9 kernel.


-- 
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/201307012203.16387.st...@sumost.ca



Re: [PATCH] New upstream release (3.10)

2013-07-01 Thread Ben Hutchings
On Mon, 2013-07-01 at 23:10 +0100, Chris Boot wrote:
> This patch updates the linux-tools package for linux-3.10. This was relatively
> straightforward except for the CONFIG_SYMBOL_PREFIX rework; I believe I have
> kept with the spirit of the v3.9 version of the package.

Looks good to me.  I've applied this.

[...]
> --- a/debian/changelog
> +++ b/debian/changelog
> @@ -1,3 +1,9 @@
> +linux-tools (3.10-1) UNRELEASED; urgency=low
[...]

I don't think 3.10 should go into unstable until at least 3.10.1.  So I
applied this to the trunk branch and changed the version to 3.10-1~exp1.
I don't know if it will actually get uploaded to experimental though.

Ben.

-- 
Ben Hutchings
Life would be so much easier if we could look at the source code.


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


[PATCH] scripts/package/builddeb: build perftools package

2013-07-01 Thread Sage Weil
This will build a linux-tools-$version package for each build that includes
perf.

Signed-off-by: Gary Lowell 
---
 scripts/package/builddeb |   95 +-
 1 file changed, 94 insertions(+), 1 deletion(-)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index acb8650..f57d33c 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -78,17 +78,20 @@ tmpdir="$objtree/debian/tmp"
 fwdir="$objtree/debian/fwtmp"
 kernel_headers_dir="$objtree/debian/hdrtmp"
 libc_headers_dir="$objtree/debian/headertmp"
+tools_dir="$objtree/debian/toolstmp"
+tmp_build_dir="$objtree/debian/toolsbuild"
 packagename=linux-image-$version
 fwpackagename=linux-firmware-image
 kernel_headers_packagename=linux-headers-$version
 libc_headers_packagename=linux-libc-dev
+tools_packagename=linux-tools-$version
 
 if [ "$ARCH" = "um" ] ; then
packagename=user-mode-linux-$version
 fi
 
 # Setup the directory structure
-rm -rf "$tmpdir" "$fwdir" "$kernel_headers_dir" "$libc_headers_dir"
+rm -rf "$tmpdir" "$fwdir" "$kernel_headers_dir" "$libc_headers_dir" 
"$tools_dir" "$tmp_build_dir"
 mkdir -m 755 -p "$tmpdir/DEBIAN"
 mkdir -p  "$tmpdir/lib" "$tmpdir/boot" "$tmpdir/usr/share/doc/$packagename"
 mkdir -m 755 -p "$fwdir/DEBIAN"
@@ -98,6 +101,10 @@ mkdir -p 
"$libc_headers_dir/usr/share/doc/$libc_headers_packagename"
 mkdir -m 755 -p "$kernel_headers_dir/DEBIAN"
 mkdir -p "$kernel_headers_dir/usr/share/doc/$kernel_headers_packagename"
 mkdir -p "$kernel_headers_dir/lib/modules/$version/"
+mkdir -m 755 -p "$tools_dir/DEBIAN"
+mkdir -p "$tools_dir/usr/share/doc/$tools_packagename"
+mkdir -p "$tools_dir/usr/bin/"
+mkdir -p "$tmp_build_dir"
 if [ "$ARCH" = "um" ] ; then
mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin"
 fi
@@ -120,6 +127,77 @@ else
fi
 fi
 
+# Build the tools
+num_tools="0"
+tools_flavour_abi=${version#*-}
+tools_flavour=${tools_flavour_abi#*-}
+tools_version=${version%-$tools_flavour}
+debian_tools_version="${version%%-*}"
+debian_tools_version="${version%.*}"
+if grep -q '^CONFIG_PERF_EVENTS=y' .config ; then
+   # Build and install perf
+   (
+unset MAKEFLAGS
+unset MFLAGS
+unset MAKEOVERRIDES
+
+mkdir -p $objtree/tools/perf
+cd "$srctree/tools/perf"
+$MAKE DESTDIR="$tools_dir/usr/" LDFLAGS= O=$objtree/tools/perf/ install
+mv "$tools_dir/usr/bin/perf" 
"$tools_dir/usr/bin/perf_$debian_tools_version"
+ln -s "/usr/bin/perf_$debian_tools_version" 
"$tools_dir/usr/bin/perf_$tools_version"
+mv "$tools_dir/usr/libexec/perf-core" 
"$tools_dir/usr/share/perf_$debian_tools_version-core"
+rmdir "$tools_dir/usr/libexec"
+
+# Documentation can't be built out-of-tree so copy source
+# over to objtree and build man pages there
+mkdir -p $tmp_build_dir/perf
+cp -a "$srctree/tools/perf/Documentation" "$tmp_build_dir/perf/"
+cp -a "$srctree/tools/perf/config" "$tmp_build_dir/perf/"
+cd "$tmp_build_dir/perf/Documentation"
+$MAKE man
+$MAKE DESTDIR="$tools_dir/usr/" install
+for manpage in `find $tools_dir/usr/share/man/ -type f`; do
+   mv $manpage ${manpage/perf/perf_$debian_tools_version}
+   gzip -9 ${manpage/perf/perf_$debian_tools_version}
+done
+   )
+   num_tools=$(($num_tools+1))
+fi
+
+if [[ "$ARCH" = "i386" || "$ARCH" = "x86_64" ]]; then
+   # Build turbostat
+   (
+cp -a $srctree/tools/power/x86/turbostat "$tmp_build_dir"
+ln -s $srctree/arch "$tmp_build_dir/../../../arch"
+cd "$tmp_build_dir/turbostat/"
+unset MAKEFLAGS
+unset MFLAGS
+unset MAKEOVERRIDES
+$MAKE LDFLAGS=
+cp turbostat "$tools_dir/usr/bin/turbostat_$debian_tools_version"
+ln -s "/usr/bin/turbostat_$debian_tools_version" 
"$tools_dir/usr/bin/turbostat_$tools_version"
+mkdir -p "$tools_dir/usr/share/man/man8"
+cp turbostat.8 
"$tools_dir/usr/share/man/man8/turbotstat_${debian_tools_version}.8"
+gzip -9 
"$tools_dir/usr/share/man/man8/turbotstat_${debian_tools_version}.8"
+   )
+
+   # Build x86_energy_perf_policy
+   (
+cp -a $srctree/tools/power/x86/x86_energy_perf_policy "$tmp_build_dir"
+cd "$tmp_build_dir/x86_energy_perf_policy"
+unset MAKEFLAGS
+unset MFLAGS
+unset MAKEOVERRIDES
+$MAKE LDFLAGS=
+cp x86_energy_perf_policy 
"$tools_dir/usr/bin/x86_energy_perf_policy_$debian_tools_version"
+ln -s "/usr/bin/x86_energy_perf_policy_$debian_tools_version" 
"$tools_dir/usr/bin/x86_energy_perf_policy_$tools_version"
+cp x86_energy_perf_policy.8 
"$tools_dir/usr/share/man/man8/x86_energy_perf_policy_${debian_tools_version}.8"
+gzip -9 
"$tools_dir/usr/share/man/man8/x86_energy_perf_policy_${debian_tools_version}.8"
+   )
+   num_tools=$(($num_tools+2))
+fi
+
 if grep -q '^CO

Bug#714578: linux-image-3.9-1-kirkwood: fails to include ehci_orion in initramfs; USB broken at boot

2013-07-01 Thread David Ryskalczyk
I can confirm this bug and the above workaround. Again, not sure how
exactly to fix.

--David R


-- 
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/cab3bdi4+opylrwwdp3dph99uwyoez5ckjxoq8u+v_jzn5k0...@mail.gmail.com



[bts-link] source package src:linux

2013-07-01 Thread bts-link-upstream
#
# bts-link upstream status pull for source package src:linux
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #693720 (http://bugs.debian.org/693720)
# Bug title: base: shutdown with hwclock --systohc cause battery to drain.
#  * http://bugzilla.kernel.org/show_bug.cgi?id=47811
#  * remote status changed: ASSIGNED -> NEEDINFO
usertags 693720 - status-ASSIGNED
usertags 693720 + status-NEEDINFO

# remote status report for #714217 (http://bugs.debian.org/714217)
# Bug title: X display is shifted upwards on GMA500
#  * https://bugs.freedesktop.org/show_bug.cgi?id=66243
#  * remote status changed: (?) -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 714217 + fixed-upstream
usertags 714217 + status-RESOLVED resolution-FIXED

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/20130701224853.20943.61632.btsl...@sonntag.debian.org



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

2013-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #
> # bts-link upstream status pull for source package src:linux
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
> # remote status report for #693720 (http://bugs.debian.org/693720)
> # Bug title: base: shutdown with hwclock --systohc cause battery to drain.
> #  * http://bugzilla.kernel.org/show_bug.cgi?id=47811
> #  * remote status changed: ASSIGNED -> NEEDINFO
> usertags 693720 - status-ASSIGNED
Usertags were: status-ASSIGNED.
Usertags are now: .
> usertags 693720 + status-NEEDINFO
There were no usertags set.
Usertags are now: status-NEEDINFO.
> # remote status report for #714217 (http://bugs.debian.org/714217)
> # Bug title: X display is shifted upwards on GMA500
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=66243
> #  * remote status changed: (?) -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 714217 + fixed-upstream
Bug #714217 [src:linux] X display is shifted upwards on GMA500
Added tag(s) fixed-upstream.
> usertags 714217 + status-RESOLVED resolution-FIXED
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
714217: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714217
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.137271962622807.transcr...@bugs.debian.org



Bug#714694: linux-image-amd64: Could not start debian

2013-07-01 Thread Ben Hutchings
Control: tag -1 moreinfo

On Mon, Jul 01, 2013 at 09:31:38PM +0200, Chimrod wrote:
> Package: linux-image-amd64
> Version: 3.9+49
> Severity: important
> 
> Hello,
> 
> Since I upgrade the kernel, I could not start my system anymore. initramfs is
> launched, but fail in loading my filesystem. I have no other choice than
> restart the system with the previous kernel.

How is the root disk attached (SATA, PATA, USB)?

Have you tried using the 'rootdelay=N' parameter (N is number of
seconds to wait for the root device to be ready) to the kernel
command line?

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/20130701211841.gu4...@decadent.org.uk



Processed: Re: Bug#714694: linux-image-amd64: Could not start debian

2013-07-01 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 moreinfo
Bug #714694 [src:linux] linux-image-amd64: Could not start debian
Added tag(s) moreinfo.

-- 
714694: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714694
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.b714694.137271352417373.transcr...@bugs.debian.org



Processed: reassign 714694 to src:linux

2013-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 714694 src:linux 3.9.6-1
Bug #714694 [linux-image-amd64] linux-image-amd64: Could not start debian
Bug reassigned from package 'linux-image-amd64' to 'src:linux'.
No longer marked as found in versions linux-latest/49.
Ignoring request to alter fixed versions of bug #714694 to the same values 
previously set
Bug #714694 [src:linux] linux-image-amd64: Could not start debian
Marked as found in versions linux/3.9.6-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
714694: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714694
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.137271328915622.transcr...@bugs.debian.org



Processed: Re: Bug#714695: linux-image-3.9-1-686-pae: I can't install the kernel

2013-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 714695 grub-pc 2.00-14
Bug #714695 [src:linux] linux-image-3.9-1-686-pae: I can't install the kernel
Bug reassigned from package 'src:linux' to 'grub-pc'.
No longer marked as found in versions linux/3.9.8-1.
Ignoring request to alter fixed versions of bug #714695 to the same values 
previously set
Bug #714695 [grub-pc] linux-image-3.9-1-686-pae: I can't install the kernel
Marked as found in versions grub2/2.00-14.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
714695: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714695
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.137271269911141.transcr...@bugs.debian.org



Bug#714695: linux-image-3.9-1-686-pae: I can't install the kernel

2013-07-01 Thread cosimo morelli
Package: src:linux
Version: 3.9.8-1
Severity: normal

Dear Maintainer,

this is the problem

lordofenuplas@debian:~$ sudo apt-get -f install
[sudo] password for lordofenuplas:
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
0 aggiornati, 0 installati, 0 da rimuovere e 74 non aggiornati.
3 non completamente installati o rimossi.
Dopo quest'operazione, verranno occupati 0 B di spazio su disco.
Configurazione di linux-image-3.9-1-686-pae (3.9.8-1)...
Running depmod.
vmlinuz(/boot/vmlinuz-3.9-1-686-pae
) points to /boot/vmlinuz-3.9-1-686-pae
 (/boot/vmlinuz-3.9-1-686-pae) -- doing nothing at /var/lib/dpkg/info/linux-
image-3.9-1-686-pae.postinst line 268.
initrd.img(/boot/initrd.img-3.9-1-686-pae
) points to /boot/initrd.img-3.9-1-686-pae
 (/boot/initrd.img-3.9-1-686-pae) -- doing nothing at /var/lib/dpkg/info/linux-
image-3.9-1-686-pae.postinst line 268.
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.9-1-686-pae
/boot/vmlinuz-3.9-1-686-pae
update-initramfs: Generating /boot/initrd.img-3.9-1-686-pae
run-parts: executing /etc/kernel/postinst.d/pm-utils 3.9-1-686-pae
/boot/vmlinuz-3.9-1-686-pae
run-parts: executing /etc/kernel/postinst.d/zz-extlinux 3.9-1-686-pae
/boot/vmlinuz-3.9-1-686-pae
P: Checking for EXTLINUX directory... found.
P: Writing config for /boot/vmlinuz-3.9-1-686-pae...
P: Writing config for /boot/vmlinuz-3.8-2-686-pae...
P: Writing config for /boot/vmlinuz-3.8-1-686-pae...
P: Writing config for /boot/vmlinuz-3.2.0-4-686-pae...
P: Writing config for Windows 7 (loader) on /dev/sda1...
P: Installing debian theme... done.
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 3.9-1-686-pae
/boot/vmlinuz-3.9-1-686-pae
Creazione di grub.cfg...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
run-parts: /etc/kernel/postinst.d/zz-update-grub exited with return code 1
Failed to process /etc/kernel/postinst.d at /var/lib/dpkg/info/linux-
image-3.9-1-686-pae.postinst line 696.
dpkg: errore nell'elaborare linux-image-3.9-1-686-pae (--configure):
 il sottoprocesso installato script di post-installation ha restituito lo stato
di errore 1
Configurazione di grub-pc (2.00-14)...
Undefined subroutine &conffile::abs_path called at /usr/bin/ucfq line 529,
 line 24.
Installazione completata, nessun errore segnalato.
Creazione di grub.cfg...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
dpkg: errore nell'elaborare grub-pc (--configure):
 il sottoprocesso installato script di post-installation ha restituito lo stato
di errore 1
dpkg: problemi con le dipendenze impediscono la configurazione di linux-
image-686-pae:
 linux-image-686-pae dipende da linux-image-3.9-1-686-pae; comunque:
  Il pacchetto linux-image-3.9-1-686-pae non รจ ancora configurato.

dpkg: errore nell'elaborare linux-image-686-pae (--configure):
 problemi con le dipendenze - lasciato non configurato
Si sono verificati degli errori nell'elaborazione:
 linux-image-3.9-1-686-pae
 grub-pc
 linux-image-686-pae
localepurge: Disk space freed in /usr/share/locale: 0 KiB
localepurge: Disk space freed in /usr/share/man: 0 KiB
localepurge: Disk space freed in /usr/share/gnome/help: 0 KiB
localepurge: Disk space freed in /usr/share/omf: 0 KiB
localepurge: Disk space freed in /usr/share/doc/kde/HTML: 0 KiB

Total disk space freed by localepurge: 0 KiB

E: Sub-process /usr/bin/dpkg returned an error code (1)



-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
not available

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series Chipset Memory 
Controller Hub [8086:2a40] (rev 07)
Subsystem: Hewlett-Packard Company Device [103c:3676]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: agpgart-intel

00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series 
Chipset Integrated Graphics Controller [8086:2a42] (rev 07) (prog-if 00 [VGA 
controller])
Subsystem: Hewlett-Packard Company Device [103c:3676]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR-  [disabled]
Capabilities: 
Kernel driver in use: i915

00:02.1 Display controller [0380]: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller [8086:2a43] (rev 07)
Subsystem: Hewlett-Packard Company Device [103c:3676]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 

00:1a.0 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 [8086:2937] (re

Bug#616077: "AUTH_GSS upcall timed out" in export with kerberos

2013-07-01 Thread Rico Rommel
Am Montag, 1. Juli 2013, 17:29:28 schrieb Laurent Bonnaud:
> Hi,
> 
> I also had this problem on a Debian squeeze server.  I upgraded this
> server to wheezy and the problem remains.  Did anyone make progress on
> debugging this ?

Hi,

for me it happens, if a file  is accessed twice in KDE from the client. When I 
open a file first time, e.g. with okular, everything is ok. If I try to re-open 
the file, the server logs "AUTH_GSS upcall timed out" and the client hangs for 
about 1 minute.

As a workaround i switched both, client and server, to nfs 4.1.

Rico





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


Bug#616077: "AUTH_GSS upcall timed out" in export with kerberos

2013-07-01 Thread Laurent Bonnaud

Hi,

I also had this problem on a Debian squeeze server.  I upgraded this 
server to wheezy and the problem remains.  Did anyone make progress on 
debugging this ?


--
Laurent Bonnaud.
http://www.iut2grenoble.com/


--
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/51d1a058.5010...@iut2.upmf-grenoble.fr



Processed: notfound 701744 in linux/2.6.32-48, found 701744 in linux-2.6/2.6.32-48

2013-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfound 701744 linux/2.6.32-48
Bug #701744 [src:linux] [xen] Update to hypervisor 4.0.1-5.6 or 
linux-image-2.6.32-5-xen-amd64 2.6.32-48 causes networking (VIF) failures
The source linux and version 2.6.32-48 do not appear to match any binary 
packages
No longer marked as found in versions linux/2.6.32-48.
> found 701744 linux-2.6/2.6.32-48
Bug #701744 [src:linux] [xen] Update to hypervisor 4.0.1-5.6 or 
linux-image-2.6.32-5-xen-amd64 2.6.32-48 causes networking (VIF) failures
Marked as found in versions linux-2.6/2.6.32-48.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
701744: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701744
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.137268168017932.transcr...@bugs.debian.org



Bug#705116: still present in 3.2.46-1

2013-07-01 Thread Jean-Guilhem Cailton
Hi,

FYI, a same freeze happened with 3.2.46-1 (and previously with
3.2.41-2+deb7u2), on the same machine. A Xscreensaver display was frozen
on the screen, and there was no answer to ping, and nothing in logs.

No such problem was observed with 3.8.13-1 or 3.9.6-1.

Best regards


-- 
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/51d156b7.4090...@arkemie.com



Re: firmware-linux-free: Packet loss after Upgrade (Intel 82576)

2013-07-01 Thread Helmut Wollmersdorfer

[firmware-linux-free 2.6.32-48squeeze3]

It's maybe related to

bug #701744
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701744

see message #81
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=81;bug=701744

and therein the solution
http://marc.info/?l=linux-netdev&m=136973447431251&w=2

Helmut Wollmersdorfer


--
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/37c0f1c2-99e6-4779-91c2-0c098b46f...@fixpunkt.de



Bug#714295: Data corruption when using INIC-1623TA2 controller

2013-07-01 Thread Martin Braure de Calignon
Hello,

On Sun., 2013-06-30 at 23:17 -0700, Tejun Heo wrote:
> Unfortunately, I don't have any idea.  That driver never really
> matured enough.  I couldn't find enough information and no one from
> initio responded, so

Thank you Tejun and Ben,

that's totally suxx. I'm gonna try to contact them too, but I doubt it's
gonna change anything :(
I was hopping that we could turn on some logging so that we understand,
at least, what is happening (even if we can't solve it), and I could
then have made some tests by modifying code, recompiling module, ...
If the driver could cause data loss, shouldn't it be flagged as
experimental?
In the meantime, I'm probably going to purchase a new SATA card :(

Thanks again guys for your hard work! I really appreciate!

Martin

-- 
Martin Braure de Calignon


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


Re: firmware-linux-free: Packet loss after Upgrade (Intel 82576)

2013-07-01 Thread Helmut Wollmersdorfer



Am 28.06.2013 um 19:24 schrieb Ben Hutchings:


On Fri, Jun 28, 2013 at 04:44:15PM +0200, Helmut Wollmersdorfer wrote:

Subject: firmware-linux-free: Packet loss after Upgrade (Intel 82576)
Package: firmware-linux-free

[...]

Intel 82576 has all its firmware in flash.



Hmm ...

works OK:

firmware-linux-free 2.6.32-45
linux-image-2.6.32-5-xen-amd64  2.6.32-45



NOT ok:

firmware-linux-free 2.6.32-48squeeze3
linux-image-2.6.32-5-xen-amd64  2.6.32-48squeeze3


also NOT ok:

firmware-linux-free 2.6.32-48squeeze3
linux-image-2.6.32-5-xen-amd64  2.6.32-45


That's why I targeted firmware-linux-free 2.6.32-48squeeze3 as buggy.

Will try to reproduce with this type of NICs on available hardware.

Helmut Wollmersdorfer


--
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/184fc0b5-3b05-49ff-8383-8da0589da...@fixpunkt.de