public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: patch sata_nv-fix-mcp5x-reset.patch added to 2.6.28-stable tree
       [not found] <20090203224712.E16AA4901A@coco.kroah.org>
@ 2009-02-04 14:18 ` Stefan Lippers-Hollmann
  2009-02-04 16:48   ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Lippers-Hollmann @ 2009-02-04 14:18 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, tj, jgarzik, stable

Hi

On Dienstag, 3. Februar 2009, gregkh@suse.de wrote:
> This is a note to let you know that we have just queued up the patch titled
> 
>     Subject: sata_nv: fix MCP5x reset
> 
> to the 2.6.28-stable tree.  Its filename is
> 
>     sata_nv-fix-mcp5x-reset.patch
> 
> A git repo of this tree can be found at 
>     http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
> 
> 
> From 2d775708bc6613f1be47f1e720781343341ecc94 Mon Sep 17 00:00:00 2001
> From: Tejun Heo <tj@kernel.org>
> Date: Sun, 25 Jan 2009 11:29:38 +0900
> Subject: sata_nv: fix MCP5x reset
> 
> From: Tejun Heo <tj@kernel.org>
> 
> commit 2d775708bc6613f1be47f1e720781343341ecc94 upstream.
> 
> MCP5x family of controllers seem to share much more with nf2's as far
> as reset protocol is concerned.  It requires heardreset to get the PHY
> going and classfication code report after hardreset is unreliable.
> Create a new board type MCP5x and use noclassify hardreset.  SWNCQ is
> modified to inherit from this new type.
> 
> This fixes hotplug regression reported in kernel bz#12351.
[...]
> --- a/drivers/ata/sata_nv.c
> +++ b/drivers/ata/sata_nv.c
[...]
> +/* Kernel bz#12351 reports that when SWNCQ is enabled, for hotplug to
> + * work, hardreset should be used and hardreset can't report proper
> + * signature, which suggests that mcp5x is closer to nf2 as long as
> + * reset quirkiness is concerned.  Define separate ops for mcp5x with
> + * nv_noclassify_hardreset().
> + */
> +static struct ata_port_operations nv_mcp5x_ops = {
> +	.inherits		= &nv_common_ops,
> +	.hardreset		= nv_noclassify_hardreset,
> +};
[...]

This fails to compile on 2.6.28.3+stable-queue (and most likely 2.6.27 as 
well), because it depends on the rename from nv_nf2_hardreset() to 
nv_noclassify_hardreset() in:

commit e8caa3c70e94d867ca2efe9e53fd388b52d6d0c8
Author: Tejun Heo <tj@kernel.org>
Date:   Sun Jan 25 11:25:22 2009 +0900

    sata_nv: rename nv_nf2_hardreset()

    nv_nf2_hardreset() will be used by other flavors too.  Rename it to
    nv_noclassify_hardreset().

    Signed-off-by: Tejun Heo <tj@kernel.org>
    Signed-off-by: Jeff Garzik <jgarzik@redhat.com>

As this function has only been renamed without functional changes, either 
applying "sata_nv: rename nv_nf2_hardreset()" as well or using
s/nv_nf2_hardreset/nv_noclassify_hardreset/g on this patch
(and potentially following changes, "sata_nv: ck804 has borked hardreset 
too" 8d993eaa9c3c61b8a5929a7f695078a1fcfb4869 comes to mind) fixes the 
build.

Regards
	Stefan Lippers-Hollmann

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

* Re: patch sata_nv-fix-mcp5x-reset.patch added to 2.6.28-stable tree
  2009-02-04 14:18 ` patch sata_nv-fix-mcp5x-reset.patch added to 2.6.28-stable tree Stefan Lippers-Hollmann
@ 2009-02-04 16:48   ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2009-02-04 16:48 UTC (permalink / raw)
  To: Stefan Lippers-Hollmann; +Cc: linux-kernel, tj, jgarzik, stable

On Wed, Feb 04, 2009 at 03:18:50PM +0100, Stefan Lippers-Hollmann wrote:
> Hi
> 
> On Dienstag, 3. Februar 2009, gregkh@suse.de wrote:
> > This is a note to let you know that we have just queued up the patch titled
> > 
> >     Subject: sata_nv: fix MCP5x reset
> > 
> > to the 2.6.28-stable tree.  Its filename is
> > 
> >     sata_nv-fix-mcp5x-reset.patch
> > 
> > A git repo of this tree can be found at 
> >     http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
> > 
> > 
> > From 2d775708bc6613f1be47f1e720781343341ecc94 Mon Sep 17 00:00:00 2001
> > From: Tejun Heo <tj@kernel.org>
> > Date: Sun, 25 Jan 2009 11:29:38 +0900
> > Subject: sata_nv: fix MCP5x reset
> > 
> > From: Tejun Heo <tj@kernel.org>
> > 
> > commit 2d775708bc6613f1be47f1e720781343341ecc94 upstream.
> > 
> > MCP5x family of controllers seem to share much more with nf2's as far
> > as reset protocol is concerned.  It requires heardreset to get the PHY
> > going and classfication code report after hardreset is unreliable.
> > Create a new board type MCP5x and use noclassify hardreset.  SWNCQ is
> > modified to inherit from this new type.
> > 
> > This fixes hotplug regression reported in kernel bz#12351.
> [...]
> > --- a/drivers/ata/sata_nv.c
> > +++ b/drivers/ata/sata_nv.c
> [...]
> > +/* Kernel bz#12351 reports that when SWNCQ is enabled, for hotplug to
> > + * work, hardreset should be used and hardreset can't report proper
> > + * signature, which suggests that mcp5x is closer to nf2 as long as
> > + * reset quirkiness is concerned.  Define separate ops for mcp5x with
> > + * nv_noclassify_hardreset().
> > + */
> > +static struct ata_port_operations nv_mcp5x_ops = {
> > +	.inherits		= &nv_common_ops,
> > +	.hardreset		= nv_noclassify_hardreset,
> > +};
> [...]
> 
> This fails to compile on 2.6.28.3+stable-queue (and most likely 2.6.27 as 
> well), because it depends on the rename from nv_nf2_hardreset() to 
> nv_noclassify_hardreset() in:
> 
> commit e8caa3c70e94d867ca2efe9e53fd388b52d6d0c8
> Author: Tejun Heo <tj@kernel.org>
> Date:   Sun Jan 25 11:25:22 2009 +0900
> 
>     sata_nv: rename nv_nf2_hardreset()
> 
>     nv_nf2_hardreset() will be used by other flavors too.  Rename it to
>     nv_noclassify_hardreset().
> 
>     Signed-off-by: Tejun Heo <tj@kernel.org>
>     Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
> 
> As this function has only been renamed without functional changes, either 
> applying "sata_nv: rename nv_nf2_hardreset()" as well or using
> s/nv_nf2_hardreset/nv_noclassify_hardreset/g on this patch
> (and potentially following changes, "sata_nv: ck804 has borked hardreset 
> too" 8d993eaa9c3c61b8a5929a7f695078a1fcfb4869 comes to mind) fixes the 
> build.

Thanks a lot for letting me know this.  I've added the additional
build-fix patch and also 8d993eaa9c3c61b8a5929a7f695078a1fcfb4869 as it
looks relevant.

greg k-h

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

end of thread, other threads:[~2009-02-04 16:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20090203224712.E16AA4901A@coco.kroah.org>
2009-02-04 14:18 ` patch sata_nv-fix-mcp5x-reset.patch added to 2.6.28-stable tree Stefan Lippers-Hollmann
2009-02-04 16:48   ` Greg KH

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