lkml.org 
[lkml]   [2012]   [Mar]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [patch 1/2] mm, counters: remove task argument to sync_mm_rss and __sync_task_rss_stat
On Tue, 6 Mar 2012 19:21:39 -0800 (PST)
David Rientjes <rientjes@google.com> wrote:

> -static void __sync_task_rss_stat(struct task_struct *task, struct mm_struct *mm)
> +static void __sync_task_rss_stat(struct mm_struct *mm)
> {
> int i;
>
> for (i = 0; i < NR_MM_COUNTERS; i++) {
> - if (task->rss_stat.count[i]) {
> - add_mm_counter(mm, i, task->rss_stat.count[i]);
> - task->rss_stat.count[i] = 0;
> + if (current->rss_stat.count[i]) {
> + add_mm_counter(mm, i, current->rss_stat.count[i]);
> + current->rss_stat.count[i] = 0;
> }
> }
> - task->rss_stat.events = 0;
> + current->rss_stat.events = 0;
> }

hm, with my gcc it's beneficial to cache `current' in a local. But
when I tried that, Weird Things happened, because gcc has gone and
decided to inline __sync_task_rss_stat() into its callers. I don't see
how that could have been the right thing to do.


\
 
 \ /
  Last update: 2012-03-08 02:15    [W:0.112 / U:0.076 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site