diff options
author | Jérôme Glisse <jglisse@redhat.com> | 2015-04-01 14:10:18 -0400 |
---|---|---|
committer | Jérôme Glisse <jglisse@redhat.com> | 2015-07-17 09:21:44 -0400 |
commit | 1a10b3266b1ce108e8a72c8b55bf3dfcc17ea471 (patch) | |
tree | 741f965c138c1826752867150c8650bf014ba299 | |
parent | 34a57a966018f2282ce670f975250180bf0f5839 (diff) |
HMM: add discard range helper (to clear and free resources for a range).
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 <jglisse@redhat.com>
-rw-r--r-- | include/linux/hmm.h | 3 | ||||
-rw-r--r-- | mm/hmm.c | 24 |
2 files changed, 27 insertions, 0 deletions
diff --git a/include/linux/hmm.h b/include/linux/hmm.h index d819ec919be0..10e15581997f 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 */ @@ -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. |