linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* Re: VM issue causing high CPU loads
       [not found] <4A92A25A.4050608@yohan.staff.proxad.net>
@ 2009-08-24 23:21 ` Andrew Morton
  2009-08-26 11:08   ` Mel Gorman
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Andrew Morton @ 2009-08-24 23:21 UTC (permalink / raw)
  To: Yohan; +Cc: linux-kernel, linux-mm

On Mon, 24 Aug 2009 16:23:22 +0200
Yohan <kernel@yohan.staff.proxad.net> wrote:

> Hi,
> 
>     Is someone have an idea for that :
> 
>         http://bugzilla.kernel.org/show_bug.cgi?id=14024
> 

Please generate a kernel profile to work out where all the CPU tie is
being spent.  Documentation/basic_profiling.txt is a starting point.

Thanks.

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: VM issue causing high CPU loads
  2009-08-24 23:21 ` VM issue causing high CPU loads Andrew Morton
@ 2009-08-26 11:08   ` Mel Gorman
  2009-08-26 11:55     ` Yohan
  2009-08-26 11:53   ` Yohan
  2009-08-27  8:39   ` Yohan
  2 siblings, 1 reply; 5+ messages in thread
From: Mel Gorman @ 2009-08-26 11:08 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Yohan, linux-kernel, linux-mm

On Mon, Aug 24, 2009 at 04:21:55PM -0700, Andrew Morton wrote:
> On Mon, 24 Aug 2009 16:23:22 +0200
> Yohan <kernel@yohan.staff.proxad.net> wrote:
> 
> > Hi,
> > 
> >     Is someone have an idea for that :
> > 
> >         http://bugzilla.kernel.org/show_bug.cgi?id=14024
> > 
> 
> Please generate a kernel profile to work out where all the CPU tie is
> being spent.  Documentation/basic_profiling.txt is a starting point.
> 

In the absense of a profile, here is a total stab in the dark. Is this a
NUMA machine? If so, is /proc/sys/vm/zone_reclaim_mode set to 1 and does
setting it to 0 help?

This is based on a relatively recent bug where malloc() could stall for
long times with large amounts of CPU usage due to useless scanning in
page reclaim.

-- 
Mel Gorman
Part-time Phd Student                          Linux Technology Center
University of Limerick                         IBM Dublin Software Lab

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: VM issue causing high CPU loads
  2009-08-24 23:21 ` VM issue causing high CPU loads Andrew Morton
  2009-08-26 11:08   ` Mel Gorman
@ 2009-08-26 11:53   ` Yohan
  2009-08-27  8:39   ` Yohan
  2 siblings, 0 replies; 5+ messages in thread
From: Yohan @ 2009-08-26 11:53 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, linux-mm

Andrew Morton wrote:
> On Mon, 24 Aug 2009 16:23:22 +0200
> Yohan <kernel@yohan.staff.proxad.net> wrote:
>   
>> Hi,
>>
>>     Is someone have an idea for that :
>>
>>         http://bugzilla.kernel.org/show_bug.cgi?id=14024
>>     
> Please generate a kernel profile to work out where all the CPU tie is
> being spent.  Documentation/basic_profiling.txt is a starting point.
I did & post the profiles on the bugtrack
I dit it with a 2.6.31-rc7-git2 kernel
(need at least 2 week days after a reboot/drop_cache  to really show the 
bug)

Thanks

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

* Re: VM issue causing high CPU loads
  2009-08-26 11:08   ` Mel Gorman
@ 2009-08-26 11:55     ` Yohan
  0 siblings, 0 replies; 5+ messages in thread
From: Yohan @ 2009-08-26 11:55 UTC (permalink / raw)
  To: Mel Gorman; +Cc: Andrew Morton, linux-kernel, linux-mm

Mel Gorman wrote:
> On Mon, Aug 24, 2009 at 04:21:55PM -0700, Andrew Morton wrote:
>   
>> On Mon, 24 Aug 2009 16:23:22 +0200
>> Yohan <kernel@yohan.staff.proxad.net> wrote:
>>     
>>> Hi,
>>>
>>>     Is someone have an idea for that :
>>>
>>>         http://bugzilla.kernel.org/show_bug.cgi?id=14024
>>>       
>> Please generate a kernel profile to work out where all the CPU tie is
>> being spent.  Documentation/basic_profiling.txt is a starting point.
>>     
> In the absense of a profile, here is a total stab in the dark. Is this a
> NUMA machine? 
This is a Intel(R) Xeon(R) CPU E5520 on Dell R610
> If so, is /proc/sys/vm/zone_reclaim_mode set to 1 and does
> setting it to 0 help?
>   
The value is already 0...


Thanks

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

* Re: VM issue causing high CPU loads
  2009-08-24 23:21 ` VM issue causing high CPU loads Andrew Morton
  2009-08-26 11:08   ` Mel Gorman
  2009-08-26 11:53   ` Yohan
@ 2009-08-27  8:39   ` Yohan
  2 siblings, 0 replies; 5+ messages in thread
From: Yohan @ 2009-08-27  8:39 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, linux-mm

Andrew Morton wrote:
> On Mon, 24 Aug 2009 16:23:22 +0200
> Yohan <kernel@yohan.staff.proxad.net> wrote:
>   
>> Hi,
>>
>>     Is someone have an idea for that :
>>
>>         http://bugzilla.kernel.org/show_bug.cgi?id=14024
>>     
> Please generate a kernel profile to work out where all the CPU tie is
> being spent.  Documentation/basic_profiling.txt is a starting point.
>   
I post some new reports, it seems that the problem is in  
rpcauth_lookup_credcache ...

for information, this is an imap mail server that mounts ~10 netapp over 
~300 mountpoints..

Thanks
Yohan

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2009-08-27  8:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <4A92A25A.4050608@yohan.staff.proxad.net>
2009-08-24 23:21 ` VM issue causing high CPU loads Andrew Morton
2009-08-26 11:08   ` Mel Gorman
2009-08-26 11:55     ` Yohan
2009-08-26 11:53   ` Yohan
2009-08-27  8:39   ` Yohan

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