Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757945AbbEVRBj (ORCPT ); Fri, 22 May 2015 13:01:39 -0400 Received: from cantor2.suse.de ([195.135.220.15]:47854 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756674AbbEVRBh (ORCPT ); Fri, 22 May 2015 13:01:37 -0400 Message-ID: <1432314077.2185.4.camel@stgolabs.net> Subject: Re: [RFC v3 PATCH 04/10] mm/hugetlb: expose hugetlb fault mutex for use by fallocate From: Davidlohr Bueso To: Mike Kravetz Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Dave Hansen , Naoya Horiguchi , David Rientjes , Hugh Dickins , Aneesh Kumar , Hillf Danton , Christoph Hellwig Date: Fri, 22 May 2015 10:01:17 -0700 In-Reply-To: <1432223264-4414-5-git-send-email-mike.kravetz@oracle.com> References: <1432223264-4414-1-git-send-email-mike.kravetz@oracle.com> <1432223264-4414-5-git-send-email-mike.kravetz@oracle.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.11 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1010 Lines: 32 On Thu, 2015-05-21 at 08:47 -0700, Mike Kravetz wrote: > +/* > + * Interfaces to the fault mutex routines for use by hugetlbfs > + * fallocate code. Faults must be synchronized with page adds or > + * deletes by fallocate. fallocate only deals with shared mappings. > + */ > +u32 hugetlb_fault_mutex_shared_hash(struct address_space *mapping, pgoff_t idx) > +{ > + return fault_mutex_hash(NULL, NULL, NULL, mapping, idx, 0); > +} > + > +void hugetlb_fault_mutex_lock(u32 hash) > +{ > + mutex_lock(&htlb_fault_mutex_table[hash]); > +} > + > +void hugetlb_fault_mutex_unlock(u32 hash) > +{ > + mutex_unlock(&htlb_fault_mutex_table[hash]); > +}+ These should really be inlined -- maybe add them to hugetlb.h along with the mutex hashtable bits. Thanks, Davidlohr -- 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/