The patch titled Subject: mm/hugetlb: set up hugetlb_falloc during fallocate hole punch has been added to the -mm tree. Its filename is mm-hugetlb-setup-hugetlb_falloc-during-fallocate-hole-punch.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-hugetlb-setup-hugetlb_falloc-during-fallocate-hole-punch.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-hugetlb-setup-hugetlb_falloc-during-fallocate-hole-punch.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Mike Kravetz <mike.kravetz@xxxxxxxxxx> Subject: mm/hugetlb: set up hugetlb_falloc during fallocate hole punch When performing a fallocate hole punch, set up a hugetlb_falloc struct and make i_private point to it. i_private will point to this struct for the duration of the operation. At the end of the operation, wake up anyone who faulted on the hole and is on the waitq. Signed-off-by: Mike Kravetz <mike.kravetz@xxxxxxxxxx> Cc: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx> Cc: Naoya Horiguchi <n-horiguchi@xxxxxxxxxxxxx> Cc: Hugh Dickins <hughd@xxxxxxxxxx> Cc: Davidlohr Bueso <dave@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/hugetlbfs/inode.c | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff -puN fs/hugetlbfs/inode.c~mm-hugetlb-setup-hugetlb_falloc-during-fallocate-hole-punch fs/hugetlbfs/inode.c --- a/fs/hugetlbfs/inode.c~mm-hugetlb-setup-hugetlb_falloc-during-fallocate-hole-punch +++ a/fs/hugetlbfs/inode.c @@ -507,7 +507,9 @@ static long hugetlbfs_punch_hole(struct { struct hstate *h = hstate_inode(inode); loff_t hpage_size = huge_page_size(h); + unsigned long hpage_shift = huge_page_shift(h); loff_t hole_start, hole_end; + struct hugetlb_falloc hugetlb_falloc; /* * For hole punch round up the beginning offset of the hole and @@ -518,8 +520,23 @@ static long hugetlbfs_punch_hole(struct if (hole_end > hole_start) { struct address_space *mapping = inode->i_mapping; + DECLARE_WAIT_QUEUE_HEAD_ONSTACK(hugetlb_falloc_waitq); + + /* + * Page faults on the area to be hole punched must be + * stopped during the operation. Initialize struct and + * have inode->i_private point to it. + */ + hugetlb_falloc.waitq = &hugetlb_falloc_waitq; + hugetlb_falloc.start = hole_start >> hpage_shift; + hugetlb_falloc.end = hole_end >> hpage_shift; mutex_lock(&inode->i_mutex); + + spin_lock(&inode->i_lock); + inode->i_private = &hugetlb_falloc; + spin_unlock(&inode->i_lock); + i_mmap_lock_write(mapping); if (!RB_EMPTY_ROOT(&mapping->i_mmap)) hugetlb_vmdelete_list(&mapping->i_mmap, @@ -527,6 +544,12 @@ static long hugetlbfs_punch_hole(struct hole_end >> PAGE_SHIFT); i_mmap_unlock_write(mapping); remove_inode_hugepages(inode, hole_start, hole_end); + + spin_lock(&inode->i_lock); + inode->i_private = NULL; + wake_up_all(&hugetlb_falloc_waitq); + spin_unlock(&inode->i_lock); + mutex_unlock(&inode->i_mutex); } @@ -647,9 +670,6 @@ static long hugetlbfs_fallocate(struct f if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) i_size_write(inode, offset + len); inode->i_ctime = CURRENT_TIME; - spin_lock(&inode->i_lock); - inode->i_private = NULL; - spin_unlock(&inode->i_lock); out: mutex_unlock(&inode->i_mutex); return error; _ Patches currently in -mm which might be from mike.kravetz@xxxxxxxxxx are mm-hugetlb-define-hugetlb_falloc-structure-for-hole-punch-race.patch mm-hugetlb-setup-hugetlb_falloc-during-fallocate-hole-punch.patch mm-hugetlb-page-faults-check-for-fallocate-hole-punch-in-progress-and-wait.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html