From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx140.postini.com [74.125.245.140]) by kanga.kvack.org (Postfix) with SMTP id 1BEC56B0031 for ; Thu, 12 Sep 2013 10:40:37 -0400 (EDT) Date: Thu, 12 Sep 2013 15:40:31 +0100 From: Mel Gorman Subject: Re: [PATCH 41/50] sched: numa: Use {cpu, pid} to create task groups for shared faults Message-ID: <20130912144031.GU22421@suse.de> References: <1378805550-29949-1-git-send-email-mgorman@suse.de> <1378805550-29949-42-git-send-email-mgorman@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Hillf Danton Cc: Peter Zijlstra , Rik van Riel , Srikar Dronamraju , Ingo Molnar , Andrea Arcangeli , Johannes Weiner , Linux-MM , LKML On Thu, Sep 12, 2013 at 08:42:18PM +0800, Hillf Danton wrote: > 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 ;/ > It gets fixed in the patch "sched: numa: use group fault statistics in numa placement" but I agree that it's the wrong place to fix it. -- Mel Gorman SUSE Labs -- 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: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753516Ab3ILOkj (ORCPT ); Thu, 12 Sep 2013 10:40:39 -0400 Received: from cantor2.suse.de ([195.135.220.15]:40231 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751034Ab3ILOkg (ORCPT ); Thu, 12 Sep 2013 10:40:36 -0400 Date: Thu, 12 Sep 2013 15:40:31 +0100 From: Mel Gorman To: Hillf Danton Cc: Peter Zijlstra , Rik van Riel , Srikar Dronamraju , Ingo Molnar , Andrea Arcangeli , Johannes Weiner , Linux-MM , LKML Subject: Re: [PATCH 41/50] sched: numa: Use {cpu, pid} to create task groups for shared faults Message-ID: <20130912144031.GU22421@suse.de> References: <1378805550-29949-1-git-send-email-mgorman@suse.de> <1378805550-29949-42-git-send-email-mgorman@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 12, 2013 at 08:42:18PM +0800, Hillf Danton wrote: > 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 ;/ > It gets fixed in the patch "sched: numa: use group fault statistics in numa placement" but I agree that it's the wrong place to fix it. -- Mel Gorman SUSE Labs