From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757363Ab1IABMW (ORCPT ); Wed, 31 Aug 2011 21:12:22 -0400 Received: from e4.ny.us.ibm.com ([32.97.182.144]:50986 "EHLO e4.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756894Ab1IABMJ (ORCPT ); Wed, 31 Aug 2011 21:12:09 -0400 Message-ID: <4E5EDBE4.8010604@linux.vnet.ibm.com> Date: Wed, 31 Aug 2011 18:12:04 -0700 From: Allison Henderson User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10 MIME-Version: 1.0 To: linux-kernel@vger.kernel.org, linux-fsdevel CC: Ext4 Developers List , Andreas Dilger Subject: Re: lock i_mutex for fallocate? References: <4E5ED2D5.8040302@linux.vnet.ibm.com> In-Reply-To: <4E5ED2D5.8040302@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Oh, I meant for this to go to linux-fsdevel instead of linux-kernel, but all feedback is welcome! :) On 08/31/2011 05:33 PM, Allison Henderson wrote: > Hi All, > > In ext4 punch hole, we realized that the punch hole operation needs to > be done under i_mutex just like truncate. i_mutex for truncate is held > in the vfs layer, so we dont need to lock it at the file system layer, > but vfs does not lock i_mutex for fallocate. We can lock i_mutex for > fallocate at the fs layer, but question was raised then: should i_mutex > for fallocate be held in the vfs layer instead? I do not know if other > file systems need i_mutex to be locked for fallocate, or if they might > be locking it already, so I am doing some investigating on this idea, > and also the appropriate use of i_mutex in general. Can someone provide > some insight this topic? Thx! > > Allison Henderson