diff mbox

powerpc: Fix comment around arch specific definition of RECLAIM_DISTANCE

Message ID 20140505051713.7744.47492.stgit@preeti (mailing list archive)
State Accepted
Commit 4750afa2c56821c9184c4d1b6606c3c459ca73de
Headers show

Commit Message

Preeti U Murthy May 5, 2014, 5:17 a.m. UTC
Commit 32e45ff43eaf5c17f changed the default value of
RECLAIM_DISTANCE to 30. However the comment around arch
specifc definition of RECLAIM_DISTANCE is not updated to
reflect the same. Correct the value mentioned in the comment.

Signed-off-by: Preeti U Murthy <preeti@linux.vnet.ibm.com>
Cc: Anton Blanchard <anton@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
---

 arch/powerpc/include/asm/topology.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Motohiro Kosaki May 5, 2014, 4:29 p.m. UTC | #1
> -----Original Message-----

> From: Preeti U Murthy [mailto:preeti@linux.vnet.ibm.com]

> Sent: Monday, May 05, 2014 1:17 AM

> To: linuxppc-dev@lists.ozlabs.org

> Cc: benh@kernel.crashing.org; anton@samba.org; Motohiro Kosaki JP

> Subject: [PATCH] powerpc: Fix comment around arch specific definition of RECLAIM_DISTANCE

> 

> Commit 32e45ff43eaf5c17f changed the default value of RECLAIM_DISTANCE to 30. However the comment around arch specifc

> definition of RECLAIM_DISTANCE is not updated to reflect the same. Correct the value mentioned in the comment.

> 

> Signed-off-by: Preeti U Murthy <preeti@linux.vnet.ibm.com>

> Cc: Anton Blanchard <anton@samba.org>

> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>

> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>


Acked-by: KOSAKI Motohiro <Kosaki.motohiro@jp.fujitsu.com>
diff mbox

Patch

diff --git a/arch/powerpc/include/asm/topology.h b/arch/powerpc/include/asm/topology.h
index c920215..356546d 100644
--- a/arch/powerpc/include/asm/topology.h
+++ b/arch/powerpc/include/asm/topology.h
@@ -12,7 +12,7 @@  struct device_node;
  * Before going off node we want the VM to try and reclaim from the local
  * node. It does this if the remote distance is larger than RECLAIM_DISTANCE.
  * With the default REMOTE_DISTANCE of 20 and the default RECLAIM_DISTANCE of
- * 20, we never reclaim and go off node straight away.
+ * 30, we never reclaim and go off node straight away.
  *
  * To fix this we choose a smaller value of RECLAIM_DISTANCE.
  */