All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: c-r4k: Fix size calc when avoiding IPIs for small icache flushes
@ 2016-09-05 14:24 ` Paul Burton
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Burton @ 2016-09-05 14:24 UTC (permalink / raw)
  To: linux-mips
  Cc: Paul Burton, James Hogan, Huacai Chen, linux-kernel,
	Florian Fainelli, Ralf Baechle

Commit f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP
calls") adds checks to force use of hit-type cache ops for small icache
flushes where they are globalised & index-type cache ops aren't, in
order to avoid the overhead of IPIs in those cases. However it
calculated the size of the region being flushed incorrectly, subtracting
the end address from the start address rather than the reverse. This
would have led to an overflow with size wrapping round to some large
value, and likely to the special case for avoiding IPIs not actually
being hit.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: James Hogan <james.hogan@imgtec.com>
Fixes: f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP calls")
---

 arch/mips/mm/c-r4k.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
index 1af381f..69b1f10 100644
--- a/arch/mips/mm/c-r4k.c
+++ b/arch/mips/mm/c-r4k.c
@@ -811,7 +811,7 @@ static void __r4k_flush_icache_range(unsigned long start, unsigned long end,
 		 * If address-based cache ops don't require an SMP call, then
 		 * use them exclusively for small flushes.
 		 */
-		size = start - end;
+		size = end - start;
 		cache_size = icache_size;
 		if (!cpu_has_ic_fills_f_dc) {
 			size *= 2;
-- 
2.9.3

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

* [PATCH] MIPS: c-r4k: Fix size calc when avoiding IPIs for small icache flushes
@ 2016-09-05 14:24 ` Paul Burton
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Burton @ 2016-09-05 14:24 UTC (permalink / raw)
  To: linux-mips
  Cc: Paul Burton, James Hogan, Huacai Chen, linux-kernel,
	Florian Fainelli, Ralf Baechle

Commit f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP
calls") adds checks to force use of hit-type cache ops for small icache
flushes where they are globalised & index-type cache ops aren't, in
order to avoid the overhead of IPIs in those cases. However it
calculated the size of the region being flushed incorrectly, subtracting
the end address from the start address rather than the reverse. This
would have led to an overflow with size wrapping round to some large
value, and likely to the special case for avoiding IPIs not actually
being hit.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: James Hogan <james.hogan@imgtec.com>
Fixes: f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP calls")
---

 arch/mips/mm/c-r4k.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
index 1af381f..69b1f10 100644
--- a/arch/mips/mm/c-r4k.c
+++ b/arch/mips/mm/c-r4k.c
@@ -811,7 +811,7 @@ static void __r4k_flush_icache_range(unsigned long start, unsigned long end,
 		 * If address-based cache ops don't require an SMP call, then
 		 * use them exclusively for small flushes.
 		 */
-		size = start - end;
+		size = end - start;
 		cache_size = icache_size;
 		if (!cpu_has_ic_fills_f_dc) {
 			size *= 2;
-- 
2.9.3

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

* Re: [PATCH] MIPS: c-r4k: Fix size calc when avoiding IPIs for small icache flushes
@ 2016-09-05 14:27   ` James Hogan
  0 siblings, 0 replies; 5+ messages in thread
From: James Hogan @ 2016-09-05 14:27 UTC (permalink / raw)
  To: Paul Burton, Ralf Baechle
  Cc: linux-mips, Huacai Chen, linux-kernel, Florian Fainelli

[-- Attachment #1: Type: text/plain, Size: 1654 bytes --]

On Mon, Sep 05, 2016 at 03:24:54PM +0100, Paul Burton wrote:
> Commit f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP
> calls") adds checks to force use of hit-type cache ops for small icache
> flushes where they are globalised & index-type cache ops aren't, in
> order to avoid the overhead of IPIs in those cases. However it
> calculated the size of the region being flushed incorrectly, subtracting
> the end address from the start address rather than the reverse. This
> would have led to an overflow with size wrapping round to some large
> value, and likely to the special case for avoiding IPIs not actually
> being hit.
> 
> Signed-off-by: Paul Burton <paul.burton@imgtec.com>
> Cc: James Hogan <james.hogan@imgtec.com>
> Fixes: f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP calls")

Good catch Paul! I've no idea how that happened.

Reviewed-by: James Hogan <james.hogan@imgtec.com>

Ralf: It'd be great to get this into v4.8 if possible.

Thanks
James

> ---
> 
>  arch/mips/mm/c-r4k.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
> index 1af381f..69b1f10 100644
> --- a/arch/mips/mm/c-r4k.c
> +++ b/arch/mips/mm/c-r4k.c
> @@ -811,7 +811,7 @@ static void __r4k_flush_icache_range(unsigned long start, unsigned long end,
>  		 * If address-based cache ops don't require an SMP call, then
>  		 * use them exclusively for small flushes.
>  		 */
> -		size = start - end;
> +		size = end - start;
>  		cache_size = icache_size;
>  		if (!cpu_has_ic_fills_f_dc) {
>  			size *= 2;
> -- 
> 2.9.3
> 

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH] MIPS: c-r4k: Fix size calc when avoiding IPIs for small icache flushes
@ 2016-09-05 14:27   ` James Hogan
  0 siblings, 0 replies; 5+ messages in thread
From: James Hogan @ 2016-09-05 14:27 UTC (permalink / raw)
  To: Paul Burton, Ralf Baechle
  Cc: linux-mips, Huacai Chen, linux-kernel, Florian Fainelli

[-- Attachment #1: Type: text/plain, Size: 1654 bytes --]

On Mon, Sep 05, 2016 at 03:24:54PM +0100, Paul Burton wrote:
> Commit f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP
> calls") adds checks to force use of hit-type cache ops for small icache
> flushes where they are globalised & index-type cache ops aren't, in
> order to avoid the overhead of IPIs in those cases. However it
> calculated the size of the region being flushed incorrectly, subtracting
> the end address from the start address rather than the reverse. This
> would have led to an overflow with size wrapping round to some large
> value, and likely to the special case for avoiding IPIs not actually
> being hit.
> 
> Signed-off-by: Paul Burton <paul.burton@imgtec.com>
> Cc: James Hogan <james.hogan@imgtec.com>
> Fixes: f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP calls")

Good catch Paul! I've no idea how that happened.

Reviewed-by: James Hogan <james.hogan@imgtec.com>

Ralf: It'd be great to get this into v4.8 if possible.

Thanks
James

> ---
> 
>  arch/mips/mm/c-r4k.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
> index 1af381f..69b1f10 100644
> --- a/arch/mips/mm/c-r4k.c
> +++ b/arch/mips/mm/c-r4k.c
> @@ -811,7 +811,7 @@ static void __r4k_flush_icache_range(unsigned long start, unsigned long end,
>  		 * If address-based cache ops don't require an SMP call, then
>  		 * use them exclusively for small flushes.
>  		 */
> -		size = start - end;
> +		size = end - start;
>  		cache_size = icache_size;
>  		if (!cpu_has_ic_fills_f_dc) {
>  			size *= 2;
> -- 
> 2.9.3
> 

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH] MIPS: c-r4k: Fix size calc when avoiding IPIs for small icache flushes
  2016-09-05 14:24 ` Paul Burton
  (?)
  (?)
@ 2016-09-07 23:34 ` Florian Fainelli
  -1 siblings, 0 replies; 5+ messages in thread
From: Florian Fainelli @ 2016-09-07 23:34 UTC (permalink / raw)
  To: Paul Burton, linux-mips
  Cc: James Hogan, Huacai Chen, linux-kernel, Ralf Baechle

On 09/05/2016 07:24 AM, Paul Burton wrote:
> Commit f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP
> calls") adds checks to force use of hit-type cache ops for small icache
> flushes where they are globalised & index-type cache ops aren't, in
> order to avoid the overhead of IPIs in those cases. However it
> calculated the size of the region being flushed incorrectly, subtracting
> the end address from the start address rather than the reverse. This
> would have led to an overflow with size wrapping round to some large
> value, and likely to the special case for avoiding IPIs not actually
> being hit.
> 
> Signed-off-by: Paul Burton <paul.burton@imgtec.com>
> Cc: James Hogan <james.hogan@imgtec.com>
> Fixes: f70ddc07b637 ("MIPS: c-r4k: Avoid small flush_icache_range SMP calls")

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

Yes would be good to get that in v4.8.
-- 
Florian

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

end of thread, other threads:[~2016-09-07 23:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-05 14:24 [PATCH] MIPS: c-r4k: Fix size calc when avoiding IPIs for small icache flushes Paul Burton
2016-09-05 14:24 ` Paul Burton
2016-09-05 14:27 ` James Hogan
2016-09-05 14:27   ` James Hogan
2016-09-07 23:34 ` Florian Fainelli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.