Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754187Ab3ILMmV (ORCPT ); Thu, 12 Sep 2013 08:42:21 -0400 Received: from mail-la0-f53.google.com ([209.85.215.53]:50323 "EHLO mail-la0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752864Ab3ILMmU (ORCPT ); Thu, 12 Sep 2013 08:42:20 -0400 MIME-Version: 1.0 In-Reply-To: <1378805550-29949-42-git-send-email-mgorman@suse.de> References: <1378805550-29949-1-git-send-email-mgorman@suse.de> <1378805550-29949-42-git-send-email-mgorman@suse.de> Date: Thu, 12 Sep 2013 20:42:18 +0800 Message-ID: Subject: Re: [PATCH 41/50] sched: numa: Use {cpu, pid} to create task groups for shared faults From: Hillf Danton To: Mel Gorman Cc: Peter Zijlstra , Rik van Riel , Srikar Dronamraju , Ingo Molnar , Andrea Arcangeli , Johannes Weiner , Linux-MM , LKML Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 958 Lines: 31 Hello Mel On Tue, Sep 10, 2013 at 5:32 PM, Mel Gorman wrote: > > +void task_numa_free(struct task_struct *p) > +{ > + struct numa_group *grp = p->numa_group; > + int i; > + > + kfree(p->numa_faults); > + > + if (grp) { > + for (i = 0; i < 2*nr_node_ids; i++) > + atomic_long_sub(p->numa_faults[i], &grp->faults[i]); > + use after free, numa_faults ;/ > + spin_lock(&grp->lock); > + list_del(&p->numa_entry); > + grp->nr_tasks--; > + spin_unlock(&grp->lock); > + rcu_assign_pointer(p->numa_group, NULL); > + put_numa_group(grp); > + } > +} > + -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/