All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP]  [PATCH] mm/lib: correct the log messages
@ 2012-07-18  8:51 Zhouping Liu
  2012-07-18  9:04 ` Caspar Zhang
  2012-07-18  9:07 ` Wanlong Gao
  0 siblings, 2 replies; 3+ messages in thread
From: Zhouping Liu @ 2012-07-18  8:51 UTC (permalink / raw)
  To: LTP list

commit 5ad42f6cae increased the sleep time of ksmd scanning
inside _wait_ksm_done(), but it forgot to update the log messages.

Signed-off-by: Zhouping Liu <zliu@redhat.com>
---
 testcases/kernel/mem/lib/mem.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testcases/kernel/mem/lib/mem.c b/testcases/kernel/mem/lib/mem.c
index 9ec0454..81410d8 100644
--- a/testcases/kernel/mem/lib/mem.c
+++ b/testcases/kernel/mem/lib/mem.c
@@ -183,7 +183,7 @@ static void _wait_ksmd_done(void)
 	}
 
 	tst_resm(TINFO, "ksm daemon takes %ds to scan all mergeable pages",
-		    count * 5);
+		    count * 10);
 }
 
 static void _group_check(int run, int pages_shared, int pages_sharing,
-- 
1.7.10.4


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] [PATCH] mm/lib: correct the log messages
  2012-07-18  8:51 [LTP] [PATCH] mm/lib: correct the log messages Zhouping Liu
@ 2012-07-18  9:04 ` Caspar Zhang
  2012-07-18  9:07 ` Wanlong Gao
  1 sibling, 0 replies; 3+ messages in thread
From: Caspar Zhang @ 2012-07-18  9:04 UTC (permalink / raw)
  To: Zhouping Liu; +Cc: LTP list

On 07/18/2012 04:51 PM, Zhouping Liu wrote:
> commit 5ad42f6cae increased the sleep time of ksmd scanning
> inside _wait_ksm_done(), but it forgot to update the log messages.
>
> Signed-off-by: Zhouping Liu <zliu@redhat.com>
> ---
>   testcases/kernel/mem/lib/mem.c |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/testcases/kernel/mem/lib/mem.c b/testcases/kernel/mem/lib/mem.c
> index 9ec0454..81410d8 100644
> --- a/testcases/kernel/mem/lib/mem.c
> +++ b/testcases/kernel/mem/lib/mem.c
> @@ -183,7 +183,7 @@ static void _wait_ksmd_done(void)
>   	}
>
>   	tst_resm(TINFO, "ksm daemon takes %ds to scan all mergeable pages",
> -		    count * 5);
> +		    count * 10);
>   }
>
>   static void _group_check(int run, int pages_shared, int pages_sharing,
>
Acked-by: Caspar Zhang <caspar@casparzhang.com>


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

* Re: [LTP] [PATCH] mm/lib: correct the log messages
  2012-07-18  8:51 [LTP] [PATCH] mm/lib: correct the log messages Zhouping Liu
  2012-07-18  9:04 ` Caspar Zhang
@ 2012-07-18  9:07 ` Wanlong Gao
  1 sibling, 0 replies; 3+ messages in thread
From: Wanlong Gao @ 2012-07-18  9:07 UTC (permalink / raw)
  To: Zhouping Liu; +Cc: LTP list

On 07/18/2012 04:51 PM, Zhouping Liu wrote:
> commit 5ad42f6cae increased the sleep time of ksmd scanning
> inside _wait_ksm_done(), but it forgot to update the log messages.
> 
> Signed-off-by: Zhouping Liu <zliu@redhat.com>

Pushed, thank you.

Wanlong Gao

> ---
>  testcases/kernel/mem/lib/mem.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/testcases/kernel/mem/lib/mem.c b/testcases/kernel/mem/lib/mem.c
> index 9ec0454..81410d8 100644
> --- a/testcases/kernel/mem/lib/mem.c
> +++ b/testcases/kernel/mem/lib/mem.c
> @@ -183,7 +183,7 @@ static void _wait_ksmd_done(void)
>  	}
>  
>  	tst_resm(TINFO, "ksm daemon takes %ds to scan all mergeable pages",
> -		    count * 5);
> +		    count * 10);
>  }
>  
>  static void _group_check(int run, int pages_shared, int pages_sharing,
> 



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

end of thread, other threads:[~2012-07-18  9:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-18  8:51 [LTP] [PATCH] mm/lib: correct the log messages Zhouping Liu
2012-07-18  9:04 ` Caspar Zhang
2012-07-18  9:07 ` Wanlong Gao

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.