* [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" @ 2012-10-05 15:51 Ulf Hansson [not found] ` <1349452272-4002-1-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Ulf Hansson @ 2012-10-05 15:51 UTC (permalink / raw) To: Mark Brown, Grant Likely, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f Cc: Ulf Hansson, Vipul Kumar Samar, Russell King, Viresh Kumar, Linus Walleij, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r From: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> This reverts commit 6887237cd7da904184dab2750504040c68f3a080. Commit "spi/pl022: enable runtime PM" introduced runtime PM issues. Due to that commit, "spi/pl022: fix spi-pl022 pm enable at probe" was merged to fix part of those issues. Instead of adding another fix, let's clean up and revert everything back to when it was already fine. Signed-off-by: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> Reviewed-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> --- drivers/spi/spi-pl022.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c index 9194641..5cf0643 100644 --- a/drivers/spi/spi-pl022.c +++ b/drivers/spi/spi-pl022.c @@ -2186,6 +2186,7 @@ pl022_probe(struct amba_device *adev, const struct amba_id *id) printk(KERN_INFO "pl022: mapped registers from 0x%08x to %p\n", adev->res.start, pl022->virtbase); + pm_runtime_enable(dev); pm_runtime_resume(dev); pl022->clk = devm_clk_get(&adev->dev, NULL); -- 1.7.10 ------------------------------------------------------------------------------ Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside your Ruby, Python, PHP, Java, and .NET app Try New Relic at no cost today and get our sweet Data Nerd shirt too! http://p.sf.net/sfu/newrelic-dev2dev ^ permalink raw reply related [flat|nested] 12+ messages in thread
[parent not found: <1349452272-4002-1-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org>]
* [PATCH 2/2] Revert "spi/pl022: enable runtime PM" [not found] ` <1349452272-4002-1-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> @ 2012-10-05 15:51 ` Ulf Hansson [not found] ` <1349452272-4002-2-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> 2012-10-17 6:59 ` [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" Mark Brown 1 sibling, 1 reply; 12+ messages in thread From: Ulf Hansson @ 2012-10-05 15:51 UTC (permalink / raw) To: Mark Brown, Grant Likely, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f Cc: Ulf Hansson, Vipul Kumar Samar, Russell King, Viresh Kumar, Linus Walleij, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r From: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> This reverts commit 2fb30d1147c599f5657e8c62c862f9a0f58d9d99. This patch introduced runtime PM issues and is not needed at all. Thus we should revert it. Conflicts: drivers/spi/spi-pl022.c Signed-off-by: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> Acked-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> --- drivers/spi/spi-pl022.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c index 5cf0643..a1db91a 100644 --- a/drivers/spi/spi-pl022.c +++ b/drivers/spi/spi-pl022.c @@ -2186,9 +2186,6 @@ pl022_probe(struct amba_device *adev, const struct amba_id *id) printk(KERN_INFO "pl022: mapped registers from 0x%08x to %p\n", adev->res.start, pl022->virtbase); - pm_runtime_enable(dev); - pm_runtime_resume(dev); - pl022->clk = devm_clk_get(&adev->dev, NULL); if (IS_ERR(pl022->clk)) { status = PTR_ERR(pl022->clk); @@ -2293,7 +2290,6 @@ pl022_remove(struct amba_device *adev) clk_disable(pl022->clk); clk_unprepare(pl022->clk); - pm_runtime_disable(&adev->dev); amba_release_regions(adev); tasklet_disable(&pl022->pump_transfers); spi_unregister_master(pl022->master); -- 1.7.10 ------------------------------------------------------------------------------ Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside your Ruby, Python, PHP, Java, and .NET app Try New Relic at no cost today and get our sweet Data Nerd shirt too! http://p.sf.net/sfu/newrelic-dev2dev ^ permalink raw reply related [flat|nested] 12+ messages in thread
[parent not found: <1349452272-4002-2-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org>]
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" [not found] ` <1349452272-4002-2-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> @ 2012-10-23 10:31 ` Ulf Hansson 2012-10-23 11:10 ` Mark Brown 0 siblings, 1 reply; 12+ messages in thread From: Ulf Hansson @ 2012-10-23 10:31 UTC (permalink / raw) To: Mark Brown, Grant Likely, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f Cc: Viresh Kumar, Linus Walleij, Vipul Kumar Samar, Russell King, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r It seems like this patch did not get applied together with: [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" The problem was likely my fault, since there were a lot of resends. Anyway, it should still be possible to apply. Kind regards Ulf Hansson On 5 October 2012 17:51, Ulf Hansson <ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> wrote: > From: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> > > This reverts commit 2fb30d1147c599f5657e8c62c862f9a0f58d9d99. > > This patch introduced runtime PM issues and is not needed at all. > Thus we should revert it. > > Conflicts: > > drivers/spi/spi-pl022.c > > Signed-off-by: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> > Acked-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> > --- > drivers/spi/spi-pl022.c | 4 ---- > 1 file changed, 4 deletions(-) > > diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c > index 5cf0643..a1db91a 100644 > --- a/drivers/spi/spi-pl022.c > +++ b/drivers/spi/spi-pl022.c > @@ -2186,9 +2186,6 @@ pl022_probe(struct amba_device *adev, const struct amba_id *id) > printk(KERN_INFO "pl022: mapped registers from 0x%08x to %p\n", > adev->res.start, pl022->virtbase); > > - pm_runtime_enable(dev); > - pm_runtime_resume(dev); > - > pl022->clk = devm_clk_get(&adev->dev, NULL); > if (IS_ERR(pl022->clk)) { > status = PTR_ERR(pl022->clk); > @@ -2293,7 +2290,6 @@ pl022_remove(struct amba_device *adev) > > clk_disable(pl022->clk); > clk_unprepare(pl022->clk); > - pm_runtime_disable(&adev->dev); > amba_release_regions(adev); > tasklet_disable(&pl022->pump_transfers); > spi_unregister_master(pl022->master); > -- > 1.7.10 > ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" 2012-10-23 10:31 ` Ulf Hansson @ 2012-10-23 11:10 ` Mark Brown [not found] ` <20121023111019.GV4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Mark Brown @ 2012-10-23 11:10 UTC (permalink / raw) To: Ulf Hansson Cc: Vipul Kumar Samar, Russell King, Viresh Kumar, Linus Walleij, Grant Likely, spi-devel-general, linux-arm-kernel [-- Attachment #1.1: Type: text/plain, Size: 458 bytes --] On Tue, Oct 23, 2012 at 12:31:06PM +0200, Ulf Hansson wrote: > It seems like this patch did not get applied together with: > [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" > > The problem was likely my fault, since there were a lot of resends. > Anyway, it should still be possible to apply. I *really* should not need to remind you to: - Not top post - Send patches in a form which can be applied if you want them applying [-- Attachment #1.2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20121023111019.GV4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>]
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" [not found] ` <20121023111019.GV4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> @ 2012-10-23 11:16 ` Russell King - ARM Linux 2012-10-23 11:41 ` Mark Brown 0 siblings, 1 reply; 12+ messages in thread From: Russell King - ARM Linux @ 2012-10-23 11:16 UTC (permalink / raw) To: Mark Brown Cc: Ulf Hansson, Vipul Kumar Samar, Viresh Kumar, Linus Walleij, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Tue, Oct 23, 2012 at 12:10:19PM +0100, Mark Brown wrote: > On Tue, Oct 23, 2012 at 12:31:06PM +0200, Ulf Hansson wrote: > > It seems like this patch did not get applied together with: > > [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" > > > > The problem was likely my fault, since there were a lot of resends. > > Anyway, it should still be possible to apply. > > I *really* should not need to remind you to: > > - Not top post > - Send patches in a form which can be applied if you want them applying How about actually applying the damned patch from the two-part patch set, rather than only the first, both of which has been around for almost a month now, and fixes what should never have gone into mainline in the first place? ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" 2012-10-23 11:16 ` Russell King - ARM Linux @ 2012-10-23 11:41 ` Mark Brown [not found] ` <20121023114130.GW4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> 0 siblings, 1 reply; 12+ messages in thread From: Mark Brown @ 2012-10-23 11:41 UTC (permalink / raw) To: Russell King - ARM Linux Cc: Ulf Hansson, Vipul Kumar Samar, Viresh Kumar, Linus Walleij, Grant Likely, spi-devel-general, linux-arm-kernel [-- Attachment #1.1: Type: text/plain, Size: 1004 bytes --] On Tue, Oct 23, 2012 at 12:16:56PM +0100, Russell King - ARM Linux wrote: > On Tue, Oct 23, 2012 at 12:10:19PM +0100, Mark Brown wrote: > > I *really* should not need to remind you to: > > - Not top post > > - Send patches in a form which can be applied if you want them applying > How about actually applying the damned patch from the two-part patch set, > rather than only the first, both of which has been around for almost a > month now, and fixes what should never have gone into mainline in the > first place? Well, the reason for the second point is that I don't have a copy of the patch any more, I need a copy of it before I can do anything. Half the reason these contentless top posts are annoying is that even if there's something to do it's not actionable. I have to say I had been under the impression that Linus' series that I applied the other day dealt with all the outstanding stuff here; the issues with this have been the awful changelogs and the overalapping sets of patches. [-- Attachment #1.2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20121023114130.GW4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>]
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" [not found] ` <20121023114130.GW4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> @ 2012-10-23 11:47 ` Russell King - ARM Linux [not found] ` <20121023114723.GU21164-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org> 2012-10-23 12:29 ` Mark Brown 2012-10-23 12:42 ` Linus Walleij 1 sibling, 2 replies; 12+ messages in thread From: Russell King - ARM Linux @ 2012-10-23 11:47 UTC (permalink / raw) To: Mark Brown Cc: Ulf Hansson, Vipul Kumar Samar, Viresh Kumar, Linus Walleij, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Tue, Oct 23, 2012 at 12:41:31PM +0100, Mark Brown wrote: > On Tue, Oct 23, 2012 at 12:16:56PM +0100, Russell King - ARM Linux wrote: > > On Tue, Oct 23, 2012 at 12:10:19PM +0100, Mark Brown wrote: > > > > I *really* should not need to remind you to: > > > > - Not top post > > > - Send patches in a form which can be applied if you want them applying > > > How about actually applying the damned patch from the two-part patch set, > > rather than only the first, both of which has been around for almost a > > month now, and fixes what should never have gone into mainline in the > > first place? > > Well, the reason for the second point is that I don't have a copy of the > patch any more, I need a copy of it before I can do anything. Half the > reason these contentless top posts are annoying is that even if there's > something to do it's not actionable. > > I have to say I had been under the impression that Linus' series that I > applied the other day dealt with all the outstanding stuff here; the > issues with this have been the awful changelogs and the overalapping > sets of patches. Given that Linus is the one who introduced the fuckups in the first place, and afaics Linus' series has not been posted anywhere I can see, and I have been through the issues and worked with Ulf to get them fixed, I find that to be down right insulting by you. You received *BOTH* of Ulf's patches on the 5th October. Both needed to be applied *TOGETHER* to reduce the window where things got worse before they got better. But for some goddamned unknown reason you decided to only take the first but totally and utterly ignored the second. Well done, you've probably crapped this driver up again. Way to go Mark. Now, tell us _exactly_ what patches you've applied to this driver. Post them to this mailing list so we can see them, and see what state this driver is now in. IMHO, you're being a terrible "maintainer" here - and this is being shown by the need to get you to post all the patches you've currently queued up for this. ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20121023114723.GU21164-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>]
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" [not found] ` <20121023114723.GU21164-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org> @ 2012-10-23 11:48 ` Russell King - ARM Linux 2012-10-23 13:01 ` Mark Brown 0 siblings, 1 reply; 12+ messages in thread From: Russell King - ARM Linux @ 2012-10-23 11:48 UTC (permalink / raw) To: Mark Brown Cc: Ulf Hansson, Vipul Kumar Samar, Viresh Kumar, Linus Walleij, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Tue, Oct 23, 2012 at 12:47:23PM +0100, Russell King - ARM Linux wrote: > On Tue, Oct 23, 2012 at 12:41:31PM +0100, Mark Brown wrote: > > On Tue, Oct 23, 2012 at 12:16:56PM +0100, Russell King - ARM Linux wrote: > > > On Tue, Oct 23, 2012 at 12:10:19PM +0100, Mark Brown wrote: > > > > > > I *really* should not need to remind you to: > > > > > > - Not top post > > > > - Send patches in a form which can be applied if you want them applying > > > > > How about actually applying the damned patch from the two-part patch set, > > > rather than only the first, both of which has been around for almost a > > > month now, and fixes what should never have gone into mainline in the > > > first place? > > > > Well, the reason for the second point is that I don't have a copy of the > > patch any more, I need a copy of it before I can do anything. Half the > > reason these contentless top posts are annoying is that even if there's > > something to do it's not actionable. > > > > I have to say I had been under the impression that Linus' series that I > > applied the other day dealt with all the outstanding stuff here; the > > issues with this have been the awful changelogs and the overalapping > > sets of patches. > > Given that Linus is the one who introduced the fuckups in the first place, > and afaics Linus' series has not been posted anywhere I can see, and I > have been through the issues and worked with Ulf to get them fixed, I find > that to be down right insulting by you. > > You received *BOTH* of Ulf's patches on the 5th October. Both needed > to be applied *TOGETHER* to reduce the window where things got worse > before they got better. But for some goddamned unknown reason you decided > to only take the first but totally and utterly ignored the second. > > Well done, you've probably crapped this driver up again. Way to go Mark. > Now, tell us _exactly_ what patches you've applied to this driver. Post > them to this mailing list so we can see them, and see what state this > driver is now in. > > IMHO, you're being a terrible "maintainer" here - and this is being shown > by the need to get you to post all the patches you've currently queued up > for this. Oh, and if you're unwilling to do that, then I'm taking both of Ulf's patches, committing them to my fixes branch, and sending them off to Linus tonight - because they are _NEEDED_ for the -rc series to fix this driver. ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" 2012-10-23 11:48 ` Russell King - ARM Linux @ 2012-10-23 13:01 ` Mark Brown 0 siblings, 0 replies; 12+ messages in thread From: Mark Brown @ 2012-10-23 13:01 UTC (permalink / raw) To: Russell King - ARM Linux Cc: Ulf Hansson, Vipul Kumar Samar, Viresh Kumar, Linus Walleij, Grant Likely, spi-devel-general, linux-arm-kernel [-- Attachment #1.1: Type: text/plain, Size: 563 bytes --] On Tue, Oct 23, 2012 at 12:48:42PM +0100, Russell King - ARM Linux wrote: > Oh, and if you're unwilling to do that, then I'm taking both of Ulf's > patches, committing them to my fixes branch, and sending them off to > Linus tonight - because they are _NEEDED_ for the -rc series to fix > this driver. As I said in my previous e-mail I've now done the revert myself; I'll send the fixes to Linus. If you wish to check the other patches that are queued they're in -next like I said; I'd appreciate someone who's actively using the driver taking a look at them. [-- Attachment #1.2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" 2012-10-23 11:47 ` Russell King - ARM Linux [not found] ` <20121023114723.GU21164-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org> @ 2012-10-23 12:29 ` Mark Brown 1 sibling, 0 replies; 12+ messages in thread From: Mark Brown @ 2012-10-23 12:29 UTC (permalink / raw) To: Russell King - ARM Linux Cc: Ulf Hansson, Vipul Kumar Samar, Viresh Kumar, Linus Walleij, Grant Likely, spi-devel-general, linux-arm-kernel [-- Attachment #1.1: Type: text/plain, Size: 2668 bytes --] On Tue, Oct 23, 2012 at 12:47:23PM +0100, Russell King - ARM Linux wrote: > On Tue, Oct 23, 2012 at 12:41:31PM +0100, Mark Brown wrote: > > I have to say I had been under the impression that Linus' series that I > > applied the other day dealt with all the outstanding stuff here; the > > issues with this have been the awful changelogs and the overalapping > > sets of patches. > Given that Linus is the one who introduced the fuckups in the first place, > and afaics Linus' series has not been posted anywhere I can see, and I > have been through the issues and worked with Ulf to get them fixed, I find > that to be down right insulting by you. Linus' patches were all posted to spi-devel-general. I can understand why you wouldn't subscribe to it given that it's a sourceforge list and hence full of spam but it is the list of record for SPI unfortunately. > You received *BOTH* of Ulf's patches on the 5th October. Both needed > to be applied *TOGETHER* to reduce the window where things got worse > before they got better. But for some goddamned unknown reason you decided > to only take the first but totally and utterly ignored the second. Unfortunately Ulf's original posting of the patches didn't include any analysis of the problems or explanation as to why the reverts were needed. Since I had no idea what the patches were supposed to do having not been involved in whatever discussion of the bugs were I didn't apply them then. Ulf did repost with a slightly clarified changelog and I *suspect* that the second patch just got fat fingered due to the multiple different revisions of the series that were floating around. > Well done, you've probably crapped this driver up again. Way to go Mark. > Now, tell us _exactly_ what patches you've applied to this driver. Post > them to this mailing list so we can see them, and see what state this > driver is now in. > IMHO, you're being a terrible "maintainer" here - and this is being shown > by the need to get you to post all the patches you've currently queued up > for this. As one would expect all the patches that are currently sitting there for the driver are in -next already; one of the nice things about -next is that it does tend to help remove doubt about things like this. You just pointed me at the discussion of the original issue that happened prior to Ulf's revert posting; I now see what's going on, your analysis is crystal clear [1]. I'm just generating the extra revert of 2fb30d (spi/pl022: enable runtime PM) which I'll squash down into the existing revert and send to Linus tomorrow. [1] http://lists.arm.linux.org.uk/lurker/message/20120927.152412.d281a899.en.html [-- Attachment #1.2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/2] Revert "spi/pl022: enable runtime PM" [not found] ` <20121023114130.GW4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> 2012-10-23 11:47 ` Russell King - ARM Linux @ 2012-10-23 12:42 ` Linus Walleij 1 sibling, 0 replies; 12+ messages in thread From: Linus Walleij @ 2012-10-23 12:42 UTC (permalink / raw) To: Mark Brown Cc: Ulf Hansson, Vipul Kumar Samar, Russell King - ARM Linux, Viresh Kumar, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Tue, Oct 23, 2012 at 1:41 PM, Mark Brown <broonie-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> wrote: > I have to say I had been under the impression that Linus' series that I > applied the other day dealt with all the outstanding stuff here; the > issues with this have been the awful changelogs and the overalapping > sets of patches. It did I think it was patch [1/4] (same subject as this thread), http://sourceforge.net/mailarchive/forum.php?thread_name=1350476818-13056-1-git-send-email-linus.walleij%40stericsson.com&forum_name=spi-devel-general to which you replied: > This was already applied, applied the rest thanks. So it probably wasn't and it's just some mishap so that 2,3,4 /4 were applied while 1/4 was actually needed to. Yours, Linus Walleij ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" [not found] ` <1349452272-4002-1-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> 2012-10-05 15:51 ` [PATCH 2/2] Revert "spi/pl022: enable runtime PM" Ulf Hansson @ 2012-10-17 6:59 ` Mark Brown 1 sibling, 0 replies; 12+ messages in thread From: Mark Brown @ 2012-10-17 6:59 UTC (permalink / raw) To: Ulf Hansson Cc: Ulf Hansson, Vipul Kumar Samar, Russell King, Viresh Kumar, Linus Walleij, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, Oct 05, 2012 at 05:51:11PM +0200, Ulf Hansson wrote: > From: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> > > This reverts commit 6887237cd7da904184dab2750504040c68f3a080. Applied, thanks. ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_sfd2d_oct ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2012-10-23 13:01 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-10-05 15:51 [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" Ulf Hansson [not found] ` <1349452272-4002-1-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> 2012-10-05 15:51 ` [PATCH 2/2] Revert "spi/pl022: enable runtime PM" Ulf Hansson [not found] ` <1349452272-4002-2-git-send-email-ulf.hansson-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org> 2012-10-23 10:31 ` Ulf Hansson 2012-10-23 11:10 ` Mark Brown [not found] ` <20121023111019.GV4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> 2012-10-23 11:16 ` Russell King - ARM Linux 2012-10-23 11:41 ` Mark Brown [not found] ` <20121023114130.GW4477-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org> 2012-10-23 11:47 ` Russell King - ARM Linux [not found] ` <20121023114723.GU21164-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org> 2012-10-23 11:48 ` Russell King - ARM Linux 2012-10-23 13:01 ` Mark Brown 2012-10-23 12:29 ` Mark Brown 2012-10-23 12:42 ` Linus Walleij 2012-10-17 6:59 ` [PATCH 1/2] Revert "spi/pl022: fix spi-pl022 pm enable at probe" Mark Brown
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).