Kernel-testers Development Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
  2012-02-23 22:51 3.3-rc4+: " Rafael J. Wysocki
@ 2012-02-23 22:55 ` Rafael J. Wysocki
  2012-02-27 23:44   ` James Bottomley
  0 siblings, 1 reply; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-02-23 22:55 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	James Bottomley

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=42707
Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
Submitter	: James Bottomley <James.Bottomley@hansenpartnership.com>
Date		: 2012-01-28 19:56 (27 days old)
Message-ID	: <1327780565.2924.24.camel@dabdike.int.hansenpartnership.com>
References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
  2012-02-23 22:55 ` [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1 Rafael J. Wysocki
@ 2012-02-27 23:44   ` James Bottomley
  2012-02-28  1:24     ` Matt Carlson
       [not found]     ` <1330386274.2822.105.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
  0 siblings, 2 replies; 33+ messages in thread
From: James Bottomley @ 2012-02-27 23:44 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Matt Carlson, Michael Chan, Ben Hutchings,
	David S. Miller, netdev

On Thu, 2012-02-23 at 23:55 +0100, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a summary report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 3.2.  Please verify if it still should be listed and let the tracking team
> know (either way).
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=42707
> Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
> Submitter	: James Bottomley <James.Bottomley@hansenpartnership.com>
> Date		: 2012-01-28 19:56 (27 days old)
> Message-ID	: <1327780565.2924.24.camel@dabdike.int.hansenpartnership.com>
> References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2

Still present in 3.3-rc4; I've bisected it back to this commit:

commit 92feeabf3f673767c6ee4cfc7fc224098446c1c1
Author: Matt Carlson <mcarlson@broadcom.com>
Date:   Thu Dec 8 14:40:14 2011 +0000

    tg3: Save stats across chip resets

and sure enough, just reverting this single commit on 3.3-rc4 fixes the
problem.

James


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
  2012-02-27 23:44   ` James Bottomley
@ 2012-02-28  1:24     ` Matt Carlson
       [not found]       ` <20120228012408.GA29622-+O+RPeR0w/SWJtbYL5oUVDJtLkR7yuzc@public.gmane.org>
       [not found]     ` <1330386274.2822.105.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
  1 sibling, 1 reply; 33+ messages in thread
From: Matt Carlson @ 2012-02-28  1:24 UTC (permalink / raw)
  To: James Bottomley
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Kernel Testers List,
	Maciej Rutecki, Florian Mickler, Matt Carlson, Michael Chan,
	Ben Hutchings, David S. Miller, netdev

On Mon, Feb 27, 2012 at 05:44:34PM -0600, James Bottomley wrote:
> On Thu, 2012-02-23 at 23:55 +0100, Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a summary report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 3.2.  Please verify if it still should be listed and let the tracking team
> > know (either way).
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=42707
> > Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
> > Submitter	: James Bottomley <James.Bottomley@hansenpartnership.com>
> > Date		: 2012-01-28 19:56 (27 days old)
> > Message-ID	: <1327780565.2924.24.camel@dabdike.int.hansenpartnership.com>
> > References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2
> 
> Still present in 3.3-rc4; I've bisected it back to this commit:
> 
> commit 92feeabf3f673767c6ee4cfc7fc224098446c1c1
> Author: Matt Carlson <mcarlson@broadcom.com>
> Date:   Thu Dec 8 14:40:14 2011 +0000
> 
>     tg3: Save stats across chip resets
> 
> and sure enough, just reverting this single commit on 3.3-rc4 fixes the
> problem.
> 
> James

I don't see anything incorrect about the patch.  I'm guessing the patch
just changes the timing somehow.

tg3_reset_chip() does not take any driver-internal spinlocks.  That
happens at tg3_close().  I'm guessing the spinlock in the trace is coming
from synchronize_irq().

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
       [not found]       ` <20120228012408.GA29622-+O+RPeR0w/SWJtbYL5oUVDJtLkR7yuzc@public.gmane.org>
@ 2012-02-28 21:07         ` David Miller
  0 siblings, 0 replies; 33+ messages in thread
From: David Miller @ 2012-02-28 21:07 UTC (permalink / raw)
  To: mcarlson-dY08KVG/lbpWk0Htik3J/w
  Cc: James.Bottomley-d9PhHud1JfjCXq6kfMZ53/egYHeGw8Jk, rjw-KKrjLPT3xs0,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	kernel-testers-u79uwXL29TY76Z2rM5mHXA,
	maciej.rutecki-Re5JQEeQqe8AvxtiuMwx3w,
	florian-sVu6HhrpSfRAfugRpC6u6w, mchan-dY08KVG/lbpWk0Htik3J/w,
	bhutchings-s/n/eUQHGBpZroRs9YW3xA, netdev-u79uwXL29TY76Z2rM5mHXA

From: "Matt Carlson" <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Date: Mon, 27 Feb 2012 17:24:08 -0800

> On Mon, Feb 27, 2012 at 05:44:34PM -0600, James Bottomley wrote:
>> On Thu, 2012-02-23 at 23:55 +0100, Rafael J. Wysocki wrote:
>> > This message has been generated automatically as a part of a summary report
>> > of recent regressions.
>> > 
>> > The following bug entry is on the current list of known regressions
>> > from 3.2.  Please verify if it still should be listed and let the tracking team
>> > know (either way).
>> > 
>> > 
>> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=42707
>> > Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
>> > Submitter	: James Bottomley <James.Bottomley-JuX6DAaQMKPCXq6kfMZ53/egYHeGw8Jk@public.gmane.org>
>> > Date		: 2012-01-28 19:56 (27 days old)
>> > Message-ID	: <1327780565.2924.24.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
>> > References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2
>> 
>> Still present in 3.3-rc4; I've bisected it back to this commit:
>> 
>> commit 92feeabf3f673767c6ee4cfc7fc224098446c1c1
>> Author: Matt Carlson <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
>> Date:   Thu Dec 8 14:40:14 2011 +0000
>> 
>>     tg3: Save stats across chip resets
>> 
>> and sure enough, just reverting this single commit on 3.3-rc4 fixes the
>> problem.
>> 
>> James
> 
> I don't see anything incorrect about the patch.  I'm guessing the patch
> just changes the timing somehow.
> 
> tg3_reset_chip() does not take any driver-internal spinlocks.  That
> happens at tg3_close().  I'm guessing the spinlock in the trace is coming
> from synchronize_irq().

If you can't figure it out, we need to revert, so send me a revert patch
as soon as possible.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
       [not found]     ` <1330386274.2822.105.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
@ 2012-02-28 23:32       ` Matt Carlson
       [not found]         ` <20120228233225.GA1322-+O+RPeR0w/SWJtbYL5oUVDJtLkR7yuzc@public.gmane.org>
  0 siblings, 1 reply; 33+ messages in thread
From: Matt Carlson @ 2012-02-28 23:32 UTC (permalink / raw)
  To: James Bottomley
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Kernel Testers List,
	Maciej Rutecki, Florian Mickler, Matt Carlson, Michael Chan,
	Ben Hutchings, David S. Miller, netdev-u79uwXL29TY76Z2rM5mHXA

On Mon, Feb 27, 2012 at 05:44:34PM -0600, James Bottomley wrote:
> On Thu, 2012-02-23 at 23:55 +0100, Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a summary report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 3.2.  Please verify if it still should be listed and let the tracking team
> > know (either way).
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=42707
> > Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
> > Submitter	: James Bottomley <James.Bottomley-JuX6DAaQMKPCXq6kfMZ53/egYHeGw8Jk@public.gmane.org>
> > Date		: 2012-01-28 19:56 (27 days old)
> > Message-ID	: <1327780565.2924.24.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
> > References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2
> 
> Still present in 3.3-rc4; I've bisected it back to this commit:
> 
> commit 92feeabf3f673767c6ee4cfc7fc224098446c1c1
> Author: Matt Carlson <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
> Date:   Thu Dec 8 14:40:14 2011 +0000
> 
>     tg3: Save stats across chip resets
> 
> and sure enough, just reverting this single commit on 3.3-rc4 fixes the
> problem.
> 
> James

Are you dealing with a bcm5700 or bcm5701 device?  If so, can you try
the following patch?

Subject: [PATCH 1/1] tg3: Fix tg3_get_stats64 for 5700 / 5701 devs

tg3_get_stats64() takes tp->lock when dealing with non-serdes bcm5700
and bcm5701 devices.  However, functions that call tg3_halt() have
already acquired tp->lock.  When tg3_get_stats64() is called in
tg3_halt(), deadlock will occur.

This patch fixes the problem by separating the stat gathering code into
a new tg3_get_nstats() function.  tg3_get_stats64() is recoded to call
this function and take tp->lock.  The code that takes tp->lock in
tg3_calc_crc_errors() has been removed.  Function signatures have been
cleaned up too.

Signed-off-by: Matt Carlson <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
---
 drivers/net/ethernet/broadcom/tg3.c |   43 ++++++++++++++++++-----------------
 1 files changed, 22 insertions(+), 21 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
index 97dcccd..76f33d5 100644
--- a/drivers/net/ethernet/broadcom/tg3.c
+++ b/drivers/net/ethernet/broadcom/tg3.c
@@ -8001,10 +8001,8 @@ static int tg3_chip_reset(struct tg3 *tp)
 	return 0;
 }
 
-static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
-						 struct rtnl_link_stats64 *);
-static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *,
-						struct tg3_ethtool_stats *);
+static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
+static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
 
 /* tp->lock is held. */
 static int tg3_halt(struct tg3 *tp, int kind, int silent)
@@ -8025,7 +8023,7 @@ static int tg3_halt(struct tg3 *tp, int kind, int silent)
 
 	if (tp->hw_stats) {
 		/* Save the stats across chip resets... */
-		tg3_get_stats64(tp->dev, &tp->net_stats_prev),
+		tg3_get_nstats(tp, &tp->net_stats_prev);
 		tg3_get_estats(tp, &tp->estats_prev);
 
 		/* And make sure the next sample is new data */
@@ -10125,7 +10123,7 @@ static inline u64 get_stat64(tg3_stat64_t *val)
        return ((u64)val->high << 32) | ((u64)val->low);
 }
 
-static u64 calc_crc_errors(struct tg3 *tp)
+static u64 tg3_calc_crc_errors(struct tg3 *tp)
 {
 	struct tg3_hw_stats *hw_stats = tp->hw_stats;
 
@@ -10134,14 +10132,12 @@ static u64 calc_crc_errors(struct tg3 *tp)
 	     GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
 		u32 val;
 
-		spin_lock_bh(&tp->lock);
 		if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
 			tg3_writephy(tp, MII_TG3_TEST1,
 				     val | MII_TG3_TEST1_CRC_EN);
 			tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
 		} else
 			val = 0;
-		spin_unlock_bh(&tp->lock);
 
 		tp->phy_crc_errors += val;
 
@@ -10155,8 +10151,7 @@ static u64 calc_crc_errors(struct tg3 *tp)
 	estats->member =	old_estats->member + \
 				get_stat64(&hw_stats->member)
 
-static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp,
-					       struct tg3_ethtool_stats *estats)
+static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
 {
 	struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
 	struct tg3_hw_stats *hw_stats = tp->hw_stats;
@@ -10238,20 +10233,13 @@ static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp,
 	ESTAT_ADD(nic_tx_threshold_hit);
 
 	ESTAT_ADD(mbuf_lwm_thresh_hit);
-
-	return estats;
 }
 
-static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
-						 struct rtnl_link_stats64 *stats)
+static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
 {
-	struct tg3 *tp = netdev_priv(dev);
 	struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
 	struct tg3_hw_stats *hw_stats = tp->hw_stats;
 
-	if (!hw_stats)
-		return old_stats;
-
 	stats->rx_packets = old_stats->rx_packets +
 		get_stat64(&hw_stats->rx_ucast_packets) +
 		get_stat64(&hw_stats->rx_mcast_packets) +
@@ -10294,15 +10282,13 @@ static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
 		get_stat64(&hw_stats->tx_carrier_sense_errors);
 
 	stats->rx_crc_errors = old_stats->rx_crc_errors +
-		calc_crc_errors(tp);
+		tg3_calc_crc_errors(tp);
 
 	stats->rx_missed_errors = old_stats->rx_missed_errors +
 		get_stat64(&hw_stats->rx_discards);
 
 	stats->rx_dropped = tp->rx_dropped;
 	stats->tx_dropped = tp->tx_dropped;
-
-	return stats;
 }
 
 static int tg3_get_regs_len(struct net_device *dev)
@@ -12213,6 +12199,21 @@ static const struct ethtool_ops tg3_ethtool_ops = {
 	.set_rxfh_indir		= tg3_set_rxfh_indir,
 };
 
+static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
+						struct rtnl_link_stats64 *stats)
+{
+	struct tg3 *tp = netdev_priv(dev);
+
+	if (!tp->hw_stats)
+		return &tp->net_stats_prev;
+
+	spin_lock_bh(&tp->lock);
+	tg3_get_nstats(tp, stats);
+	spin_unlock_bh(&tp->lock);
+
+	return stats;
+}
+
 static void tg3_set_rx_mode(struct net_device *dev)
 {
 	struct tg3 *tp = netdev_priv(dev);
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
       [not found]         ` <20120228233225.GA1322-+O+RPeR0w/SWJtbYL5oUVDJtLkR7yuzc@public.gmane.org>
@ 2012-02-29  0:58           ` James Bottomley
  2012-02-29  9:33             ` Michael Chan
  0 siblings, 1 reply; 33+ messages in thread
From: James Bottomley @ 2012-02-29  0:58 UTC (permalink / raw)
  To: Matt Carlson
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Kernel Testers List,
	Maciej Rutecki, Florian Mickler, Michael Chan, Ben Hutchings,
	David S. Miller, netdev-u79uwXL29TY76Z2rM5mHXA

On Tue, 2012-02-28 at 15:32 -0800, Matt Carlson wrote:
> On Mon, Feb 27, 2012 at 05:44:34PM -0600, James Bottomley wrote:
> > On Thu, 2012-02-23 at 23:55 +0100, Rafael J. Wysocki wrote:
> > > This message has been generated automatically as a part of a summary report
> > > of recent regressions.
> > > 
> > > The following bug entry is on the current list of known regressions
> > > from 3.2.  Please verify if it still should be listed and let the tracking team
> > > know (either way).
> > > 
> > > 
> > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=42707
> > > Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
> > > Submitter	: James Bottomley <James.Bottomley-JuX6DAaQMKPCXq6kfMZ53/egYHeGw8Jk@public.gmane.org>
> > > Date		: 2012-01-28 19:56 (27 days old)
> > > Message-ID	: <1327780565.2924.24.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
> > > References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2
> > 
> > Still present in 3.3-rc4; I've bisected it back to this commit:
> > 
> > commit 92feeabf3f673767c6ee4cfc7fc224098446c1c1
> > Author: Matt Carlson <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
> > Date:   Thu Dec 8 14:40:14 2011 +0000
> > 
> >     tg3: Save stats across chip resets
> > 
> > and sure enough, just reverting this single commit on 3.3-rc4 fixes the
> > problem.
> > 
> > James
> 
> Are you dealing with a bcm5700 or bcm5701 device?

Yes, this is it:

20:02.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5701 Gigabit Ethernet (rev 15)
	Subsystem: Hewlett-Packard Company Core Lan 1000Base-T
	Flags: bus master, 66MHz, medium devsel, latency 128, IRQ 72
	Memory at ffffffff90000000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: [40] PCI-X non-bridge device
	Capabilities: [48] Power Management version 2
	Capabilities: [50] Vital Product Data
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
	Kernel driver in use: tg3

>   If so, can you try
> the following patch?
> 
> Subject: [PATCH 1/1] tg3: Fix tg3_get_stats64 for 5700 / 5701 devs

Well, the patch needs some attention:

  CC [M]  drivers/net/ethernet/broadcom/tg3.o
drivers/net/ethernet/broadcom/tg3.c: In function 'tg3_get_estats':
drivers/net/ethernet/broadcom/tg3.c:9882: warning: 'return' with a value, in function returning void

It also didn't apply incredibly well (the fuzz factors and line offsets
are a lot higher than they should be):

patching file drivers/net/ethernet/broadcom/tg3.c
Hunk #1 succeeded at 7886 (offset -115 lines).
Hunk #2 succeeded at 7908 (offset -115 lines).
Hunk #3 succeeded at 9845 (offset -278 lines).
Hunk #4 succeeded at 9854 (offset -278 lines).
Hunk #5 succeeded at 9873 (offset -278 lines).
Hunk #6 succeeded at 9958 (offset -275 lines).
Hunk #7 succeeded at 10007 with fuzz 1 (offset -275 lines).
Hunk #8 succeeded at 10103 with fuzz 2 (offset -2096 lines).

but it seems to work.

Thanks,

James


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
  2012-02-29  0:58           ` James Bottomley
@ 2012-02-29  9:33             ` Michael Chan
  2012-02-29 18:46               ` David Miller
  0 siblings, 1 reply; 33+ messages in thread
From: Michael Chan @ 2012-02-29  9:33 UTC (permalink / raw)
  To: James Bottomley
  Cc: Matt Carlson, Rafael J. Wysocki, Linux Kernel Mailing List,
	Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Ben Hutchings, David S. Miller, netdev


On Tue, 2012-02-28 at 18:58 -0600, James Bottomley wrote:
> Well, the patch needs some attention:
> 
>   CC [M]  drivers/net/ethernet/broadcom/tg3.o
> drivers/net/ethernet/broadcom/tg3.c: In function 'tg3_get_estats':
> drivers/net/ethernet/broadcom/tg3.c:9882: warning: 'return' with a
> value, in function returning void
> 
> It also didn't apply incredibly well (the fuzz factors and line
> offsets
> are a lot higher than they should be):
> 
> patching file drivers/net/ethernet/broadcom/tg3.c
> Hunk #1 succeeded at 7886 (offset -115 lines).
> Hunk #2 succeeded at 7908 (offset -115 lines).
> Hunk #3 succeeded at 9845 (offset -278 lines).
> Hunk #4 succeeded at 9854 (offset -278 lines).
> Hunk #5 succeeded at 9873 (offset -278 lines).
> Hunk #6 succeeded at 9958 (offset -275 lines).
> Hunk #7 succeeded at 10007 with fuzz 1 (offset -275 lines).
> Hunk #8 succeeded at 10103 with fuzz 2 (offset -2096 lines).
> 
> but it seems to work.

I think Matt did the patch for the net-next tree.  Here's the same patch
for the net tree which is the correct tree for this patch.  Thanks.


Subject: [PATCH net] tg3: Fix tg3_get_stats64 for 5700 / 5701 devs

From: Matt Carlson <mcarlson@broadcom.com>

tg3_get_stats64() takes tp->lock when dealing with non-serdes bcm5700
and bcm5701 devices.  However, functions that call tg3_halt() have
already acquired tp->lock.  When tg3_get_stats64() is called in
tg3_halt(), deadlock will occur.

This patch fixes the problem by separating the stat gathering code into
a new tg3_get_nstats() function.  tg3_get_stats64() is recoded to call
this function and take tp->lock.  The code that takes tp->lock in
tg3_calc_crc_errors() has been removed.  Function signatures have been
cleaned up too.

Signed-off-by: Matt Carlson <mcarlson@broadcom.com>
Signed-off-by: Michael Chan <mchan@broadcom.com>
---
 drivers/net/ethernet/broadcom/tg3.c |   45 ++++++++++++++++++-----------------
 1 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
index a1f2e0f..423d023 100644
--- a/drivers/net/ethernet/broadcom/tg3.c
+++ b/drivers/net/ethernet/broadcom/tg3.c
@@ -7886,10 +7886,8 @@ static int tg3_chip_reset(struct tg3 *tp)
 	return 0;
 }
 
-static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *,
-						 struct rtnl_link_stats64 *);
-static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *,
-						struct tg3_ethtool_stats *);
+static void tg3_get_nstats(struct tg3 *, struct rtnl_link_stats64 *);
+static void tg3_get_estats(struct tg3 *, struct tg3_ethtool_stats *);
 
 /* tp->lock is held. */
 static int tg3_halt(struct tg3 *tp, int kind, int silent)
@@ -7910,7 +7908,7 @@ static int tg3_halt(struct tg3 *tp, int kind, int silent)
 
 	if (tp->hw_stats) {
 		/* Save the stats across chip resets... */
-		tg3_get_stats64(tp->dev, &tp->net_stats_prev),
+		tg3_get_nstats(tp, &tp->net_stats_prev),
 		tg3_get_estats(tp, &tp->estats_prev);
 
 		/* And make sure the next sample is new data */
@@ -9847,7 +9845,7 @@ static inline u64 get_stat64(tg3_stat64_t *val)
        return ((u64)val->high << 32) | ((u64)val->low);
 }
 
-static u64 calc_crc_errors(struct tg3 *tp)
+static u64 tg3_calc_crc_errors(struct tg3 *tp)
 {
 	struct tg3_hw_stats *hw_stats = tp->hw_stats;
 
@@ -9856,14 +9854,12 @@ static u64 calc_crc_errors(struct tg3 *tp)
 	     GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701)) {
 		u32 val;
 
-		spin_lock_bh(&tp->lock);
 		if (!tg3_readphy(tp, MII_TG3_TEST1, &val)) {
 			tg3_writephy(tp, MII_TG3_TEST1,
 				     val | MII_TG3_TEST1_CRC_EN);
 			tg3_readphy(tp, MII_TG3_RXR_COUNTERS, &val);
 		} else
 			val = 0;
-		spin_unlock_bh(&tp->lock);
 
 		tp->phy_crc_errors += val;
 
@@ -9877,14 +9873,13 @@ static u64 calc_crc_errors(struct tg3 *tp)
 	estats->member =	old_estats->member + \
 				get_stat64(&hw_stats->member)
 
-static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp,
-					       struct tg3_ethtool_stats *estats)
+static void tg3_get_estats(struct tg3 *tp, struct tg3_ethtool_stats *estats)
 {
 	struct tg3_ethtool_stats *old_estats = &tp->estats_prev;
 	struct tg3_hw_stats *hw_stats = tp->hw_stats;
 
 	if (!hw_stats)
-		return old_estats;
+		return;
 
 	ESTAT_ADD(rx_octets);
 	ESTAT_ADD(rx_fragments);
@@ -9963,20 +9958,13 @@ static struct tg3_ethtool_stats *tg3_get_estats(struct tg3 *tp,
 	ESTAT_ADD(nic_tx_threshold_hit);
 
 	ESTAT_ADD(mbuf_lwm_thresh_hit);
-
-	return estats;
 }
 
-static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
-						 struct rtnl_link_stats64 *stats)
+static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats)
 {
-	struct tg3 *tp = netdev_priv(dev);
 	struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev;
 	struct tg3_hw_stats *hw_stats = tp->hw_stats;
 
-	if (!hw_stats)
-		return old_stats;
-
 	stats->rx_packets = old_stats->rx_packets +
 		get_stat64(&hw_stats->rx_ucast_packets) +
 		get_stat64(&hw_stats->rx_mcast_packets) +
@@ -10019,15 +10007,13 @@ static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
 		get_stat64(&hw_stats->tx_carrier_sense_errors);
 
 	stats->rx_crc_errors = old_stats->rx_crc_errors +
-		calc_crc_errors(tp);
+		tg3_calc_crc_errors(tp);
 
 	stats->rx_missed_errors = old_stats->rx_missed_errors +
 		get_stat64(&hw_stats->rx_discards);
 
 	stats->rx_dropped = tp->rx_dropped;
 	stats->tx_dropped = tp->tx_dropped;
-
-	return stats;
 }
 
 static inline u32 calc_crc(unsigned char *buf, int len)
@@ -15409,6 +15395,21 @@ static void __devinit tg3_init_coal(struct tg3 *tp)
 	}
 }
 
+static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
+						struct rtnl_link_stats64 *stats)
+{
+	struct tg3 *tp = netdev_priv(dev);
+
+	if (!tp->hw_stats)
+		return &tp->net_stats_prev;
+
+	spin_lock_bh(&tp->lock);
+	tg3_get_nstats(tp, stats);
+	spin_unlock_bh(&tp->lock);
+
+	return stats;
+}
+
 static const struct net_device_ops tg3_netdev_ops = {
 	.ndo_open		= tg3_open,
 	.ndo_stop		= tg3_close,
-- 
1.7.1




^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
  2012-02-29  9:33             ` Michael Chan
@ 2012-02-29 18:46               ` David Miller
  0 siblings, 0 replies; 33+ messages in thread
From: David Miller @ 2012-02-29 18:46 UTC (permalink / raw)
  To: mchan-dY08KVG/lbpWk0Htik3J/w
  Cc: James.Bottomley-d9PhHud1JfjCXq6kfMZ53/egYHeGw8Jk,
	mcarlson-dY08KVG/lbpWk0Htik3J/w, rjw-KKrjLPT3xs0,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	kernel-testers-u79uwXL29TY76Z2rM5mHXA,
	maciej.rutecki-Re5JQEeQqe8AvxtiuMwx3w,
	florian-sVu6HhrpSfRAfugRpC6u6w, bhutchings-s/n/eUQHGBpZroRs9YW3xA,
	netdev-u79uwXL29TY76Z2rM5mHXA

From: "Michael Chan" <mchan-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
Date: Wed, 29 Feb 2012 01:33:37 -0800

> Subject: [PATCH net] tg3: Fix tg3_get_stats64 for 5700 / 5701 devs
> 
> From: Matt Carlson <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
> 
> tg3_get_stats64() takes tp->lock when dealing with non-serdes bcm5700
> and bcm5701 devices.  However, functions that call tg3_halt() have
> already acquired tp->lock.  When tg3_get_stats64() is called in
> tg3_halt(), deadlock will occur.
> 
> This patch fixes the problem by separating the stat gathering code into
> a new tg3_get_nstats() function.  tg3_get_stats64() is recoded to call
> this function and take tp->lock.  The code that takes tp->lock in
> tg3_calc_crc_errors() has been removed.  Function signatures have been
> cleaned up too.
> 
> Signed-off-by: Matt Carlson <mcarlson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>
> Signed-off-by: Michael Chan <mchan-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>

Applied, thanks everyone.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* 3.3-rc6: Reported regressions from 3.2
@ 2012-03-04 20:29 Rafael J. Wysocki
  2012-03-04 20:29 ` [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys Rafael J. Wysocki
                   ` (15 more replies)
  0 siblings, 16 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:29 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Maciej Rutecki, Florian Mickler, Andrew Morton, Linus Torvalds,
	Kernel Testers List, Network Development, Linux ACPI,
	Linux PM List, Linux SCSI List, Linux Wireless List, DRI

Hi all,

It looks like many people have switched away from the kernel Bugzilla
after the kernel.org outage and they are using various means of reporting
(and tracking) kernel bugs.  For this reason, it's becoming increasingly
difficult for us to track all of the possible sources of reports and we
are not aware of a number of them as a result.  To tackle this issue we
kindly request that regression reports be CCed or forwarded to the LKML
as stated below.

Thanks,
Rafael

-----------------------------------------------------------------------------

This message contains a list of some regressions from 3.2,
for which there are no fixes in the mainline known to the tracking team.
If any of them have been fixed already, please let us know.

If you know of any other unresolved regressions from 3.2, please let us
know either and we'll add them to the list.  Moreover, when you are
reporting a kernel regression, please send a CC of your report to the LKML
(or forward it to the LKML if you are not reporting the regression by e-mail)
with the word "regression" in the subject, as that will make it much
easier for us to find it.  Also, please let us know if any of the entries
below are invalid.

Each entry from the list will be sent additionally in an automatic reply
to this message with CCs to the people involved in reporting and handling
the issue.


Listed regressions statistics:

  Date          Total  Pending  Unresolved
  ----------------------------------------
  2012-03-04       23       15          15
  2012-02-23       15       13          13


Unresolved regressions
----------------------

Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42860
Subject		: 3.3.0-rc5: OOps in dql_completed (Broadcom tg3 driver)
Submitter	: Christoph Lameter <cl@gentwo.org>
Date		: 2012-03-01 21:13 (4 days old)
Message-ID	: <alpine.DEB.2.00.1203011505510.6685@router.home>
References	: http://marc.info/?l=linux-kernel&m=133063645224373&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42850
Subject		: [BUG] Kernel Bug at fs/btrfs/volumes.c:3638
Submitter	: Nageswara R Sastry <rnsastry@linux.vnet.ibm.com>
Date		: 2012-02-24 10:53 (10 days old)
Message-ID	: <4F476959.2010400@linux.vnet.ibm.com>
References	: http://marc.info/?l=linux-kernel&m=133008013332251&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42823
Subject		: WARNING: at block/genhd.c:1465
Submitter	: Christian Kujau <lists@nerdbynature.de>
Date		: 2012-02-21 11:00 (13 days old)
Message-ID	: <alpine.DEB.2.01.1202210246400.4930@trent.utfs.org>
References	: http://marc.info/?l=linux-kernel&m=132982259213941&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42822
Subject		: [3.3.0-rc3][uvcvideo][regression] oops - uvc_video_clock_update
Submitter	: Shawn Starr <shawn.starr@rogers.com>
Date		: 2012-02-20 1:08 (14 days old)
Message-ID	: <5887142.ZMTDAjc4qf@segfault.sh0n.net>
References	: http://marc.info/?l=linux-kernel&m=132970057611642&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42821
Subject		: alpha: futex regression bisected
Submitter	: Michael Cree <mcree@orcon.net.nz>
Date		: 2012-02-20 8:20 (14 days old)
First-Bad-Commit: http://git.kernel.org/linus/8d7718aa082aaf30a0b4989e1f04858952f941bc
Message-ID	: <4F420256.2090600@orcon.net.nz>
References	: http://marc.info/?l=linux-kernel&m=132972606917069&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42776
Subject		: OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88
Submitter	: Meelis Roos <mroos@linux.ee>
Date		: 2012-02-13 7:45 (21 days old)
Message-ID	: <alpine.SOC.1.00.1202130942030.1488@math.ut.ee>
References	: http://marc.info/?l=linux-kernel&m=132911916331615&w=2
		  http://marc.info/?l=linux-kernel&m=132993294018762&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42761
Subject		: Possible circular locking dependency (3.3-rc2)
Submitter	: Felipe Balbi <balbi@ti.com>
Date		: 2012-02-08 12:41 (26 days old)
Message-ID	: <20120208124147.GF16334@legolas.emea.dhcp.ti.com>
References	: http://marc.info/?l=linux-kernel&m=132870492311858&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42746
Subject		: 3.3-rc2 snd_pcm lockdep backtrace
Submitter	: Josh Boyer <jwboyer@redhat.com>
Date		: 2012-02-06 14:56 (28 days old)
Message-ID	: <20120206145621.GA4771@zod.bos.redhat.com>
References	: http://marc.info/?l=linux-kernel&m=132854040916172&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42733
Subject		: Regression 3.2 -> 3.3-rc1 10 sec hang at boot and resume, COMRESET failed
Submitter	: Norbert Preining <preining@logic.at>
Date		: 2012-02-02 5:12 (32 days old)
Message-ID	: <20120202051258.GA15550@gamma.logic.tuwien.ac.at>
References	: http://marc.info/?l=linux-kernel&m=132815978615112&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42713
Subject		: Regression in skge that started around acb42a3 (so past v3.3-rc1)
Submitter	: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Date		: 2012-01-30 15:58 (35 days old)
Message-ID	: <20120130155816.GA1400@phenom.dumpdata.com>
References	: http://marc.info/?l=linux-kernel&m=132793944220262&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42707
Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
Submitter	: James Bottomley <James.Bottomley@hansenpartnership.com>
Date		: 2012-01-28 19:56 (37 days old)
First-Bad-Commit: http://git.kernel.org/linus/92feeabf3f673767c6ee4cfc7fc224098446c1c1
Message-ID	: <1327780565.2924.24.camel@dabdike.int.hansenpartnership.com>
References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42686
Subject		: iwlagn is getting even worse with 3.3-rc1
Submitter	: Norbert Preining <preining@logic.at>
Date		: 2012-01-24 1:36 (41 days old)
Message-ID	: <20120124013625.GB18436@gamma.logic.tuwien.ac.at>
References	: http://marc.info/?l=linux-kernel&m=132736918325378&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42683
Subject		: WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1'
Submitter	: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Date		: 2012-01-23 18:06 (42 days old)
Message-ID	: <20120123180601.GA24553@phenom.dumpdata.com>
References	: http://marc.info/?l=linux-kernel&m=132734233916154&w=2


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42678
Subject		: [3.3-rc1] radeon stuck in kernel after lockup
Submitter	: Torsten Kaiser <just.for.lkml@googlemail.com>
Date		: 2012-01-21 19:03 (44 days old)
Message-ID	: <CAPVoSvSXMvRb=1itu9DjF+s=6zfAChvUxS-x=b8EV9kOZinNpA@mail.gmail.com>
References	: http://marc.info/?l=linux-kernel&m=132717279606670&w=2
Handled-By	: Jérôme Glisse <glisse@freedesktop.org>


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42649
Subject		: Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
Submitter	: Duncan <1i5t5.duncan@cox.net>
Date		: 2012-01-24 18:18 (41 days old)
First-Bad-Commit: http://git.kernel.org/linus/b4b583d4e9a5ff28c4a150bb25a4fff5cd4dfbbd


For details, please visit the bug entries and follow the links given in
references.

As you can see, there is a Bugzilla entry for each of the listed regressions.
There also is a Bugzilla entry used for tracking the regressions from 3.2,
unresolved as well as resolved, at:

http://bugzilla.kernel.org/show_bug.cgi?id=42644

Please let the tracking team know if there are any Bugzilla entries that
should be added to the list in there.

Thanks!

^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
@ 2012-03-04 20:29 ` Rafael J. Wysocki
  2012-03-04 21:03   ` Jiri Kosina
  2012-03-04 20:31 ` [Bug #42713] Regression in skge that started around acb42a3 (so past v3.3-rc1) Rafael J. Wysocki
                   ` (14 subsequent siblings)
  15 siblings, 1 reply; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:29 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Duncan,
	Jiri Kosina

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42649
Subject		: Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
Submitter	: Duncan <1i5t5.duncan@cox.net>
Date		: 2012-01-24 18:18 (41 days old)
First-Bad-Commit: http://git.kernel.org/linus/b4b583d4e9a5ff28c4a150bb25a4fff5cd4dfbbd


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42683] WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1'
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
  2012-03-04 20:29 ` [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42713] Regression in skge that started around acb42a3 (so past v3.3-rc1) Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42733] Regression 3.2 -> 3.3-rc1 10 sec hang at boot and resume, COMRESET failed Rafael J. Wysocki
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Konrad Rzeszutek Wilk

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42683
Subject		: WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1'
Submitter	: Konrad Rzeszutek Wilk <konrad.wilk-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
Date		: 2012-01-23 18:06 (42 days old)
Message-ID	: <20120123180601.GA24553-6K5HmflnPlqSPmnEAIUT9EEOCMrvLtNR@public.gmane.org>
References	: http://marc.info/?l=linux-kernel&m=132734233916154&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42713] Regression in skge that started around acb42a3 (so past v3.3-rc1)
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
  2012-03-04 20:29 ` [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-05  1:03   ` Paul Gortmaker
  2012-03-04 20:31 ` [Bug #42683] WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1' Rafael J. Wysocki
                   ` (13 subsequent siblings)
  15 siblings, 1 reply; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Konrad Rzeszutek Wilk

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42713
Subject		: Regression in skge that started around acb42a3 (so past v3.3-rc1)
Submitter	: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Date		: 2012-01-30 15:58 (35 days old)
Message-ID	: <20120130155816.GA1400@phenom.dumpdata.com>
References	: http://marc.info/?l=linux-kernel&m=132793944220262&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (4 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42686] iwlagn is getting even worse with 3.3-rc1 Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42678] [3.3-rc1] radeon stuck in kernel after lockup Rafael J. Wysocki
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	James Bottomley, Matt Carlson

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42707
Subject		: Hang deconfiguring network interface (in shutdown) on 3.3-rc1
Submitter	: James Bottomley <James.Bottomley-JuX6DAaQMKPCXq6kfMZ53/egYHeGw8Jk@public.gmane.org>
Date		: 2012-01-28 19:56 (37 days old)
First-Bad-Commit: http://git.kernel.org/linus/92feeabf3f673767c6ee4cfc7fc224098446c1c1
Message-ID	: <1327780565.2924.24.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
References	: http://marc.info/?l=linux-kernel&m=132778076214873&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42678] [3.3-rc1] radeon stuck in kernel after lockup
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (5 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1 Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42776] OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88 Rafael J. Wysocki
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Jérôme Glisse, Torsten Kaiser

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42678
Subject		: [3.3-rc1] radeon stuck in kernel after lockup
Submitter	: Torsten Kaiser <just.for.lkml-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
Date		: 2012-01-21 19:03 (44 days old)
Message-ID	: <CAPVoSvSXMvRb=1itu9DjF+s=6zfAChvUxS-x=b8EV9kOZinNpA@mail.gmail.com>
References	: http://marc.info/?l=linux-kernel&m=132717279606670&w=2
Handled-By	: Jérôme Glisse <glisse-CC+yJ3UmIYqDUpFQwHEjaQ@public.gmane.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42686] iwlagn is getting even worse with 3.3-rc1
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (3 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42733] Regression 3.2 -> 3.3-rc1 10 sec hang at boot and resume, COMRESET failed Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1 Rafael J. Wysocki
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Norbert Preining

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42686
Subject		: iwlagn is getting even worse with 3.3-rc1
Submitter	: Norbert Preining <preining@logic.at>
Date		: 2012-01-24 1:36 (41 days old)
Message-ID	: <20120124013625.GB18436@gamma.logic.tuwien.ac.at>
References	: http://marc.info/?l=linux-kernel&m=132736918325378&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42733] Regression 3.2 -> 3.3-rc1 10 sec hang at boot and resume, COMRESET failed
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (2 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42683] WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1' Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42686] iwlagn is getting even worse with 3.3-rc1 Rafael J. Wysocki
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Norbert Preining

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42733
Subject		: Regression 3.2 -> 3.3-rc1 10 sec hang at boot and resume, COMRESET failed
Submitter	: Norbert Preining <preining-DX+603jRYB8@public.gmane.org>
Date		: 2012-02-02 5:12 (32 days old)
Message-ID	: <20120202051258.GA15550-DqSSrKF0TaySnEC3TeqHn5dqbFPxfnh/@public.gmane.org>
References	: http://marc.info/?l=linux-kernel&m=132815978615112&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42776] OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (6 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42678] [3.3-rc1] radeon stuck in kernel after lockup Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-05  7:26   ` Meelis Roos
  2012-03-04 20:31 ` [Bug #42761] Possible circular locking dependency (3.3-rc2) Rafael J. Wysocki
                   ` (7 subsequent siblings)
  15 siblings, 1 reply; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Meelis Roos

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42776
Subject		: OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88
Submitter	: Meelis Roos <mroos-Y27EyoLml9s@public.gmane.org>
Date		: 2012-02-13 7:45 (21 days old)
Message-ID	: <alpine.SOC.1.00.1202130942030.1488-ptEonEWSGqKptlylMvRsHA@public.gmane.org>
References	: http://marc.info/?l=linux-kernel&m=132911916331615&w=2
		  http://marc.info/?l=linux-kernel&m=132993294018762&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42746] 3.3-rc2 snd_pcm lockdep backtrace
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (8 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42761] Possible circular locking dependency (3.3-rc2) Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42821] alpha: futex regression bisected Rafael J. Wysocki
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Josh Boyer

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42746
Subject		: 3.3-rc2 snd_pcm lockdep backtrace
Submitter	: Josh Boyer <jwboyer@redhat.com>
Date		: 2012-02-06 14:56 (28 days old)
Message-ID	: <20120206145621.GA4771@zod.bos.redhat.com>
References	: http://marc.info/?l=linux-kernel&m=132854040916172&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42761] Possible circular locking dependency (3.3-rc2)
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (7 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42776] OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88 Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42746] 3.3-rc2 snd_pcm lockdep backtrace Rafael J. Wysocki
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Felipe Balbi

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42761
Subject		: Possible circular locking dependency (3.3-rc2)
Submitter	: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>
Date		: 2012-02-08 12:41 (26 days old)
Message-ID	: <20120208124147.GF16334-UiBtZHVXSwEVvW8u9ZQWYwjfymiNCTlR@public.gmane.org>
References	: http://marc.info/?l=linux-kernel&m=132870492311858&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42821] alpha: futex regression bisected
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (9 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42746] 3.3-rc2 snd_pcm lockdep backtrace Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42822] [3.3.0-rc3][uvcvideo][regression] oops - uvc_video_clock_update Rafael J. Wysocki
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Michael Cree, Michel Lespinasse

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42821
Subject		: alpha: futex regression bisected
Submitter	: Michael Cree <mcree@orcon.net.nz>
Date		: 2012-02-20 8:20 (14 days old)
First-Bad-Commit: http://git.kernel.org/linus/8d7718aa082aaf30a0b4989e1f04858952f941bc
Message-ID	: <4F420256.2090600@orcon.net.nz>
References	: http://marc.info/?l=linux-kernel&m=132972606917069&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42823] WARNING: at block/genhd.c:1465
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (11 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42822] [3.3.0-rc3][uvcvideo][regression] oops - uvc_video_clock_update Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42850] [BUG] Kernel Bug at fs/btrfs/volumes.c:3638 Rafael J. Wysocki
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Christian Kujau

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42823
Subject		: WARNING: at block/genhd.c:1465
Submitter	: Christian Kujau <lists@nerdbynature.de>
Date		: 2012-02-21 11:00 (13 days old)
Message-ID	: <alpine.DEB.2.01.1202210246400.4930@trent.utfs.org>
References	: http://marc.info/?l=linux-kernel&m=132982259213941&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42822] [3.3.0-rc3][uvcvideo][regression] oops - uvc_video_clock_update
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (10 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42821] alpha: futex regression bisected Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42823] WARNING: at block/genhd.c:1465 Rafael J. Wysocki
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler, Shawn Starr

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42822
Subject		: [3.3.0-rc3][uvcvideo][regression] oops - uvc_video_clock_update
Submitter	: Shawn Starr <shawn.starr@rogers.com>
Date		: 2012-02-20 1:08 (14 days old)
Message-ID	: <5887142.ZMTDAjc4qf@segfault.sh0n.net>
References	: http://marc.info/?l=linux-kernel&m=132970057611642&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42860] 3.3.0-rc5: OOps in dql_completed (Broadcom tg3 driver)
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (13 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42850] [BUG] Kernel Bug at fs/btrfs/volumes.c:3638 Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-05 16:04 ` [linux-pm] 3.3-rc6: Reported regressions from 3.2 Alan Stern
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Christoph Lameter

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42860
Subject		: 3.3.0-rc5: OOps in dql_completed (Broadcom tg3 driver)
Submitter	: Christoph Lameter <cl@gentwo.org>
Date		: 2012-03-01 21:13 (4 days old)
Message-ID	: <alpine.DEB.2.00.1203011505510.6685@router.home>
References	: http://marc.info/?l=linux-kernel&m=133063645224373&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [Bug #42850] [BUG] Kernel Bug at fs/btrfs/volumes.c:3638
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (12 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42823] WARNING: at block/genhd.c:1465 Rafael J. Wysocki
@ 2012-03-04 20:31 ` Rafael J. Wysocki
  2012-03-04 20:31 ` [Bug #42860] 3.3.0-rc5: OOps in dql_completed (Broadcom tg3 driver) Rafael J. Wysocki
  2012-03-05 16:04 ` [linux-pm] 3.3-rc6: Reported regressions from 3.2 Alan Stern
  15 siblings, 0 replies; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 20:31 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: Kernel Testers List, Maciej Rutecki, Florian Mickler,
	Nageswara R Sastry

This message has been generated automatically as a part of a summary report
of recent regressions.

The following bug entry is on the current list of known regressions
from 3.2.  Please verify if it still should be listed and let the tracking team
know (either way).


Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42850
Subject		: [BUG] Kernel Bug at fs/btrfs/volumes.c:3638
Submitter	: Nageswara R Sastry <rnsastry-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Date		: 2012-02-24 10:53 (10 days old)
Message-ID	: <4F476959.2010400-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
References	: http://marc.info/?l=linux-kernel&m=133008013332251&w=2


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
  2012-03-04 20:29 ` [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys Rafael J. Wysocki
@ 2012-03-04 21:03   ` Jiri Kosina
       [not found]     ` <alpine.LNX.2.00.1203042201220.23367-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org>
  2012-03-05  1:06     ` Duncan
  0 siblings, 2 replies; 33+ messages in thread
From: Jiri Kosina @ 2012-03-04 21:03 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Duncan, Nikolai Kondrashov

On Sun, 4 Mar 2012, Rafael J. Wysocki wrote:

> This message has been generated automatically as a part of a summary report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 3.2.  Please verify if it still should be listed and let the tracking team
> know (either way).
> 
> 
> Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42649
> Subject		: Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
> Submitter	: Duncan <1i5t5.duncan-j9pdmedNgrk@public.gmane.org>
> Date		: 2012-01-24 18:18 (41 days old)
> First-Bad-Commit: http://git.kernel.org/linus/b4b583d4e9a5ff28c4a150bb25a4fff5cd4dfbbd

[ adding Nikolai to CC ]

Nikolai already submitted a fix for b4b583d4e here: 
http://www.spinics.net/lists/linux-input/msg19542.html

I will be queuing that shortly, and will try to make sure that it makes it 
into 3.3 still (otherwise 3.3-stable).

Duncan, I'd be interested whether it fixes the issue you are reporting as 
well.

Thanks,

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
       [not found]     ` <alpine.LNX.2.00.1203042201220.23367-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org>
@ 2012-03-04 21:43       ` Rafael J. Wysocki
       [not found]         ` <201203042243.43003.rjw-KKrjLPT3xs0@public.gmane.org>
  0 siblings, 1 reply; 33+ messages in thread
From: Rafael J. Wysocki @ 2012-03-04 21:43 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Duncan, Nikolai Kondrashov

On Sunday, March 04, 2012, Jiri Kosina wrote:
> On Sun, 4 Mar 2012, Rafael J. Wysocki wrote:
> 
> > This message has been generated automatically as a part of a summary report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 3.2.  Please verify if it still should be listed and let the tracking team
> > know (either way).
> > 
> > 
> > Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42649
> > Subject		: Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
> > Submitter	: Duncan <1i5t5.duncan-j9pdmedNgrk@public.gmane.org>
> > Date		: 2012-01-24 18:18 (41 days old)
> > First-Bad-Commit: http://git.kernel.org/linus/b4b583d4e9a5ff28c4a150bb25a4fff5cd4dfbbd
> 
> [ adding Nikolai to CC ]
> 
> Nikolai already submitted a fix for b4b583d4e here: 
> http://www.spinics.net/lists/linux-input/msg19542.html

Thanks, added to the bug entry.

Rafael

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42713] Regression in skge that started around acb42a3 (so past v3.3-rc1)
  2012-03-04 20:31 ` [Bug #42713] Regression in skge that started around acb42a3 (so past v3.3-rc1) Rafael J. Wysocki
@ 2012-03-05  1:03   ` Paul Gortmaker
  0 siblings, 0 replies; 33+ messages in thread
From: Paul Gortmaker @ 2012-03-05  1:03 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Konrad Rzeszutek Wilk

On Sun, Mar 4, 2012 at 3:31 PM, Rafael J. Wysocki <rjw-KKrjLPT3xs0@public.gmane.org> wrote:
> This message has been generated automatically as a part of a summary report
> of recent regressions.
>
> The following bug entry is on the current list of known regressions
> from 3.2.  Please verify if it still should be listed and let the tracking team
> know (either way).
>
>
> Bug-Entry       : https://bugzilla.kernel.org/show_bug.cgi?id=42713
> Subject         : Regression in skge that started around acb42a3 (so past v3.3-rc1)
> Submitter       : Konrad Rzeszutek Wilk <konrad.wilk-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> Date            : 2012-01-30 15:58 (35 days old)
> Message-ID      : <20120130155816.GA1400-6K5HmflnPlqSPmnEAIUT9EEOCMrvLtNR@public.gmane.org>
> References      : http://marc.info/?l=linux-kernel&m=132793944220262&w=2

This might also be a useful reference:

https://lkml.org/lkml/2012/2/6/486

Paul.
--

>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
  2012-03-04 21:03   ` Jiri Kosina
       [not found]     ` <alpine.LNX.2.00.1203042201220.23367-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org>
@ 2012-03-05  1:06     ` Duncan
  2012-03-05  9:22       ` Jiri Kosina
  1 sibling, 1 reply; 33+ messages in thread
From: Duncan @ 2012-03-05  1:06 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Kernel Testers List,
	Maciej Rutecki, Florian Mickler, Nikolai Kondrashov

On Sun, 4 Mar 2012 22:03:10 +0100 (CET)
Jiri Kosina <jkosina@suse.cz> wrote:

> On Sun, 4 Mar 2012, Rafael J. Wysocki wrote:
> 
> > The following bug entry is on the current list of known regressions
> > from 3.2.

> > Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42649
> > Subject	: Regression 3.2 -> 3.3-rc1 commit b4b583d4
> > inet/media keyboard: stuck "extra" keys
> > Submitter	: Duncan <1i5t5.duncan@cox.net> 
> > Date	: 2012-01-24 18:18 (41 days old)
> > First-Bad-Commit:
> > http://git.kernel.org/linus/b4b583d4e9a5ff28c4a150bb25a4fff5cd4dfbbd
> 
> [ adding Nikolai to CC ]
> 
> Nikolai already submitted a fix for b4b583d4e here: 
> http://www.spinics.net/lists/linux-input/msg19542.html
> 
> I will be queuing that shortly, and will try to make sure that it
> makes it into 3.3 still (otherwise 3.3-stable).
> 
> Duncan, I'd be interested whether it fixes the issue you are
> reporting as well.

Just finished testing.  Confirming.

3.3-rc6 unpatched (still) bad,

3.3-rc6 with that patch applied, good.

-- 
Duncan - No HTML messages please, as they are filtered as spam.
"Every nonfree program has a lord, a master --
and if you use the program, he is your master."  Richard Stallman

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42776] OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88
  2012-03-04 20:31 ` [Bug #42776] OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88 Rafael J. Wysocki
@ 2012-03-05  7:26   ` Meelis Roos
  0 siblings, 0 replies; 33+ messages in thread
From: Meelis Roos @ 2012-03-05  7:26 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler

> Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42776
> Subject		: OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88
> Submitter	: Meelis Roos <mroos@linux.ee>
> Date		: 2012-02-13 7:45 (21 days old)
> Message-ID	: <alpine.SOC.1.00.1202130942030.1488@math.ut.ee>
> References	: http://marc.info/?l=linux-kernel&m=132911916331615&w=2
> 		  http://marc.info/?l=linux-kernel&m=132993294018762&w=2

Works in 3.3-rc6. The patch is like a workaround if understand correctly 
but it cures the problem.

-- 
Meelis Roos (mroos@linux.ee)

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
  2012-03-05  1:06     ` Duncan
@ 2012-03-05  9:22       ` Jiri Kosina
  0 siblings, 0 replies; 33+ messages in thread
From: Jiri Kosina @ 2012-03-05  9:22 UTC (permalink / raw)
  To: Duncan
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Kernel Testers List,
	Maciej Rutecki, Florian Mickler, Nikolai Kondrashov

On Sun, 4 Mar 2012, Duncan wrote:

> > Nikolai already submitted a fix for b4b583d4e here: 
> > http://www.spinics.net/lists/linux-input/msg19542.html
> > 
> > I will be queuing that shortly, and will try to make sure that it
> > makes it into 3.3 still (otherwise 3.3-stable).
> > 
> > Duncan, I'd be interested whether it fixes the issue you are
> > reporting as well.
> 
> Just finished testing.  Confirming.
> 
> 3.3-rc6 unpatched (still) bad,
> 
> 3.3-rc6 with that patch applied, good.

Awesome, thanks a lot for quick verification.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [linux-pm] 3.3-rc6: Reported regressions from 3.2
  2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
                   ` (14 preceding siblings ...)
  2012-03-04 20:31 ` [Bug #42860] 3.3.0-rc5: OOps in dql_completed (Broadcom tg3 driver) Rafael J. Wysocki
@ 2012-03-05 16:04 ` Alan Stern
       [not found]   ` <Pine.LNX.4.44L0.1203051056560.1847-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
  15 siblings, 1 reply; 33+ messages in thread
From: Alan Stern @ 2012-03-05 16:04 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Greg KH,
	Maciej Rutecki

On Sun, 4 Mar 2012, Rafael J. Wysocki wrote:

> Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42683
> Subject		: WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1'
> Submitter	: Konrad Rzeszutek Wilk <konrad.wilk-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> Date		: 2012-01-23 18:06 (42 days old)
> Message-ID	: <20120123180601.GA24553-6K5HmflnPlqSPmnEAIUT9EEOCMrvLtNR@public.gmane.org>
> References	: http://marc.info/?l=linux-kernel&m=132734233916154&w=2

This has been fixed by commits 2885e25c422fb68208f677f944a45fce8eda2a3c
and 29bb5d4fd3140a7d5d02d858118c74a45f15c296, plus probably one more
that I can't identify.

Alan Stern

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [linux-pm] 3.3-rc6: Reported regressions from 3.2
       [not found]   ` <Pine.LNX.4.44L0.1203051056560.1847-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
@ 2012-03-05 19:01     ` Maciej Rutecki
  0 siblings, 0 replies; 33+ messages in thread
From: Maciej Rutecki @ 2012-03-05 19:01 UTC (permalink / raw)
  To: Alan Stern
  Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Kernel Testers List,
	Greg KH

On poniedziałek, 5 marca 2012 o 17:04:38 Alan Stern wrote:
> This has been fixed by commits 2885e25c422fb68208f677f944a45fce8eda2a3c
> and 29bb5d4fd3140a7d5d02d858118c74a45f15c296


Thanks. Closing bug.

Regards
-- 
Maciej Rutecki
http://www.mrutecki.pl

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
       [not found]         ` <201203042243.43003.rjw-KKrjLPT3xs0@public.gmane.org>
@ 2012-03-05 19:43           ` Jiri Kosina
  0 siblings, 0 replies; 33+ messages in thread
From: Jiri Kosina @ 2012-03-05 19:43 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linux Kernel Mailing List, Kernel Testers List, Maciej Rutecki,
	Florian Mickler, Duncan, Nikolai Kondrashov

On Sun, 4 Mar 2012, Rafael J. Wysocki wrote:

> > > This message has been generated automatically as a part of a summary report
> > > of recent regressions.
> > > 
> > > The following bug entry is on the current list of known regressions
> > > from 3.2.  Please verify if it still should be listed and let the tracking team
> > > know (either way).
> > > 
> > > 
> > > Bug-Entry	: https://bugzilla.kernel.org/show_bug.cgi?id=42649
> > > Subject		: Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys
> > > Submitter	: Duncan <1i5t5.duncan-j9pdmedNgrk@public.gmane.org>
> > > Date		: 2012-01-24 18:18 (41 days old)
> > > First-Bad-Commit: http://git.kernel.org/linus/b4b583d4e9a5ff28c4a150bb25a4fff5cd4dfbbd
> > 
> > [ adding Nikolai to CC ]
> > 
> > Nikolai already submitted a fix for b4b583d4e here: 
> > http://www.spinics.net/lists/linux-input/msg19542.html
> 
> Thanks, added to the bug entry.

Fix now in Linus' tree, commit 883e0e3662.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2012-03-05 19:43 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-04 20:29 3.3-rc6: Reported regressions from 3.2 Rafael J. Wysocki
2012-03-04 20:29 ` [Bug #42649] Regression 3.2 -> 3.3-rc1 commit b4b583d4 inet/media keyboard: stuck "extra" keys Rafael J. Wysocki
2012-03-04 21:03   ` Jiri Kosina
     [not found]     ` <alpine.LNX.2.00.1203042201220.23367-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org>
2012-03-04 21:43       ` Rafael J. Wysocki
     [not found]         ` <201203042243.43003.rjw-KKrjLPT3xs0@public.gmane.org>
2012-03-05 19:43           ` Jiri Kosina
2012-03-05  1:06     ` Duncan
2012-03-05  9:22       ` Jiri Kosina
2012-03-04 20:31 ` [Bug #42713] Regression in skge that started around acb42a3 (so past v3.3-rc1) Rafael J. Wysocki
2012-03-05  1:03   ` Paul Gortmaker
2012-03-04 20:31 ` [Bug #42683] WARN... Device 'cpu1' does not have a release() function, it is broken and must be fixed. when doing 'xl vcpu-set <guest_id> 1' Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42733] Regression 3.2 -> 3.3-rc1 10 sec hang at boot and resume, COMRESET failed Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42686] iwlagn is getting even worse with 3.3-rc1 Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1 Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42678] [3.3-rc1] radeon stuck in kernel after lockup Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42776] OF-related boot crash in 3.3.0-rc3-00188-g3ec1e88 Rafael J. Wysocki
2012-03-05  7:26   ` Meelis Roos
2012-03-04 20:31 ` [Bug #42761] Possible circular locking dependency (3.3-rc2) Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42746] 3.3-rc2 snd_pcm lockdep backtrace Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42821] alpha: futex regression bisected Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42822] [3.3.0-rc3][uvcvideo][regression] oops - uvc_video_clock_update Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42823] WARNING: at block/genhd.c:1465 Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42850] [BUG] Kernel Bug at fs/btrfs/volumes.c:3638 Rafael J. Wysocki
2012-03-04 20:31 ` [Bug #42860] 3.3.0-rc5: OOps in dql_completed (Broadcom tg3 driver) Rafael J. Wysocki
2012-03-05 16:04 ` [linux-pm] 3.3-rc6: Reported regressions from 3.2 Alan Stern
     [not found]   ` <Pine.LNX.4.44L0.1203051056560.1847-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
2012-03-05 19:01     ` Maciej Rutecki
  -- strict thread matches above, loose matches on Subject: below --
2012-02-23 22:51 3.3-rc4+: " Rafael J. Wysocki
2012-02-23 22:55 ` [Bug #42707] Hang deconfiguring network interface (in shutdown) on 3.3-rc1 Rafael J. Wysocki
2012-02-27 23:44   ` James Bottomley
2012-02-28  1:24     ` Matt Carlson
     [not found]       ` <20120228012408.GA29622-+O+RPeR0w/SWJtbYL5oUVDJtLkR7yuzc@public.gmane.org>
2012-02-28 21:07         ` David Miller
     [not found]     ` <1330386274.2822.105.camel-sFMDBYUN5F8GjUHQrlYNx2Wm91YjaHnnhRte9Li2A+AAvxtiuMwx3w@public.gmane.org>
2012-02-28 23:32       ` Matt Carlson
     [not found]         ` <20120228233225.GA1322-+O+RPeR0w/SWJtbYL5oUVDJtLkR7yuzc@public.gmane.org>
2012-02-29  0:58           ` James Bottomley
2012-02-29  9:33             ` Michael Chan
2012-02-29 18:46               ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox