Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754150AbbGQSyA (ORCPT ); Fri, 17 Jul 2015 14:54:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60133 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754113AbbGQSx5 (ORCPT ); Fri, 17 Jul 2015 14:53:57 -0400 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Glisse?= To: akpm@linux-foundation.org, , linux-mm@kvack.org Cc: Linus Torvalds , , Mel Gorman , "H. Peter Anvin" , Peter Zijlstra , Andrea Arcangeli , Johannes Weiner , Larry Woodman , Rik van Riel , Dave Airlie , Brendan Conoboy , Joe Donohue , Christophe Harle , Duncan Poole , Sherry Cheung , Subhash Gutti , John Hubbard , Mark Hairgrove , Lucien Dunning , Cameron Buschardt , Arvind Gopalakrishnan , Haggai Eran , Shachar Raindel , Liran Liss , Roland Dreier , Ben Sander , Greg Stoner , John Bridgman , Michael Mantor , Paul Blinzer , Leonid Shamis , Laurent Morichetti , Alexander Deucher , =?UTF-8?q?J=C3=A9r=C3=B4me=20Glisse?= Subject: [PATCH 11/15] HMM: add discard range helper (to clear and free resources for a range). Date: Fri, 17 Jul 2015 14:52:21 -0400 Message-Id: <1437159145-6548-12-git-send-email-jglisse@redhat.com> In-Reply-To: <1437159145-6548-1-git-send-email-jglisse@redhat.com> References: <1437159145-6548-1-git-send-email-jglisse@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2521 Lines: 71 A common use case is for device driver to stop caring for a range of address long before said range is munmapped by userspace program. To avoid keeping track of such range provide an helper function that will free HMM resources for a range of address. NOTE THAT DEVICE DRIVER MUST MAKE SURE THE HARDWARE WILL NO LONGER ACCESS THE RANGE BECAUSE CALLING THIS HELPER ! Signed-off-by: Jérôme Glisse --- include/linux/hmm.h | 3 +++ mm/hmm.c | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/include/linux/hmm.h b/include/linux/hmm.h index d819ec9..10e1558 100644 --- a/include/linux/hmm.h +++ b/include/linux/hmm.h @@ -265,6 +265,9 @@ void hmm_mirror_unregister(struct hmm_mirror *mirror); struct hmm_mirror *hmm_mirror_ref(struct hmm_mirror *mirror); void hmm_mirror_unref(struct hmm_mirror **mirror); int hmm_mirror_fault(struct hmm_mirror *mirror, struct hmm_event *event); +void hmm_mirror_range_discard(struct hmm_mirror *mirror, + unsigned long start, + unsigned long end); #endif /* CONFIG_HMM */ diff --git a/mm/hmm.c b/mm/hmm.c index 0ecc3b0..5b3aec0 100644 --- a/mm/hmm.c +++ b/mm/hmm.c @@ -896,6 +896,30 @@ out: } EXPORT_SYMBOL(hmm_mirror_fault); +/* hmm_mirror_range_discard() - discard a range of address. + * + * @mirror: The mirror struct. + * @start: Start address of the range to discard (inclusive). + * @end: End address of the range to discard (exclusive). + * + * Call when device driver want to stop mirroring a range of address and free + * any HMM resources associated with that range (including dma mapping if any). + * + * THIS FUNCTION ASSUME THAT DRIVER ALREADY STOPPED USING THE RANGE OF ADDRESS + * AND THUS DO NOT PERFORM ANY SYNCHRONIZATION OR UPDATE WITH THE DRIVER TO + * INVALIDATE SAID RANGE. + */ +void hmm_mirror_range_discard(struct hmm_mirror *mirror, + unsigned long start, + unsigned long end) +{ + struct hmm_event event; + + hmm_event_init(&event, mirror->hmm, start, end, HMM_MUNMAP); + hmm_mirror_update_pt(mirror, &event, NULL); +} +EXPORT_SYMBOL(hmm_mirror_range_discard); + /* hmm_mirror_register() - register mirror against current process for a device. * * @mirror: The mirror struct being registered. -- 1.9.3 -- 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/