Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757858AbXKAT0S (ORCPT ); Thu, 1 Nov 2007 15:26:18 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754121AbXKAT0G (ORCPT ); Thu, 1 Nov 2007 15:26:06 -0400 Received: from smtp2.linux-foundation.org ([207.189.120.14]:54741 "EHLO smtp2.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753495AbXKAT0F (ORCPT ); Thu, 1 Nov 2007 15:26:05 -0400 Date: Thu, 1 Nov 2007 12:25:09 -0700 From: Andrew Morton To: Matt Helsley Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, viro@ftp.linux.org.uk, haveblue@us.ibm.com Subject: Re: [RFC][PATCH 1/3] [RFC][PATCH] Fix procfs task exe symlinks Message-Id: <20071101122509.f26225bb.akpm@linux-foundation.org> In-Reply-To: <20071101044124.209949000@us.ibm.com> References: <20071101033508.720885000@us.ibm.com> <20071101044124.209949000@us.ibm.com> X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.20; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1534 Lines: 45 On Wed, 31 Oct 2007 20:35:09 -0700 Matt Helsley wrote: > +++ linux-2.6.23/include/linux/sched.h > @@ -430,10 +430,13 @@ struct mm_struct { > struct completion *core_startup_done, core_done; > > /* aio bits */ > rwlock_t ioctx_list_lock; > struct kioctx *ioctx_list; > + > + /* store ref to file /proc//exe symlink points to */ > + struct file *exe_file; > }; I guess with a little work this could be made conditional on CONFIG_PROC_FS. ie: change get_mm_exe_file() to void get_mm_exe_file(struct mm_struct *newmm, struct mm_struct *old_mm); > @@ -1716,10 +1744,14 @@ static void remove_vma_list(struct mm_st > > mm->total_vm -= nrpages; > if (vma->vm_flags & VM_LOCKED) > mm->locked_vm -= nrpages; > vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages); > + if (mm->exe_file && (vma->vm_file == mm->exe_file)) { > + fput(mm->exe_file); > + mm->exe_file = NULL; > + } > vma = remove_vma(vma); > } while (vma); > validate_mm(mm); > } hm, fput() while holding mmap_sem. I wonder if that's a problem. I assume you've runtime tested this with lockdep enabled, but fput() is one of those funny things which can call all sorts of things which one least expects and where testers hit things which developers don't. - 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/