blob: abda62d1e5a3bb5d5a05eb6eb4744ff340f7d0d1 [file] [log] [blame]
Dan Williams59816902018-03-29 19:07:13 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright(c) 2015 Intel Corporation. All rights reserved. */
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -04003#include <linux/device.h>
Dan Williams92281dee2015-08-10 23:07:06 -04004#include <linux/io.h>
Andrey Ryabinin0207df42018-08-17 15:47:04 -07005#include <linux/kasan.h>
Christoph Hellwig41e94a82015-08-17 16:00:35 +02006#include <linux/memory_hotplug.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -04007#include <linux/mm.h>
8#include <linux/pfn_t.h>
Jérôme Glisse5042db42017-09-08 16:11:43 -07009#include <linux/swap.h>
10#include <linux/swapops.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040011#include <linux/types.h>
Dan Williamse76384882018-05-16 11:46:08 -070012#include <linux/wait_bit.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040013#include <linux/xarray.h>
Dan Williams063a7d12018-12-28 00:39:46 -080014#include <linux/hmm.h>
Dan Williams92281dee2015-08-10 23:07:06 -040015
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040016static DEFINE_XARRAY(pgmap_array);
Dan Williams9476df72016-01-15 16:56:19 -080017#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
18#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
19
Jérôme Glisse5042db42017-09-08 16:11:43 -070020#if IS_ENABLED(CONFIG_DEVICE_PRIVATE)
Souptick Joarder2b740302018-08-23 17:01:36 -070021vm_fault_t device_private_entry_fault(struct vm_area_struct *vma,
Jérôme Glisse5042db42017-09-08 16:11:43 -070022 unsigned long addr,
23 swp_entry_t entry,
24 unsigned int flags,
25 pmd_t *pmdp)
26{
27 struct page *page = device_private_entry_to_page(entry);
Dan Williams063a7d12018-12-28 00:39:46 -080028 struct hmm_devmem *devmem;
29
30 devmem = container_of(page->pgmap, typeof(*devmem), pagemap);
Jérôme Glisse5042db42017-09-08 16:11:43 -070031
32 /*
33 * The page_fault() callback must migrate page back to system memory
34 * so that CPU can access it. This might fail for various reasons
35 * (device issue, device was unsafely unplugged, ...). When such
36 * error conditions happen, the callback must return VM_FAULT_SIGBUS.
37 *
38 * Note that because memory cgroup charges are accounted to the device
39 * memory, this should never fail because of memory restrictions (but
40 * allocation of regular system page might still fail because we are
41 * out of memory).
42 *
43 * There is a more in-depth description of what that callback can and
44 * cannot do, in include/linux/memremap.h
45 */
Dan Williams063a7d12018-12-28 00:39:46 -080046 return devmem->page_fault(vma, addr, page, flags, pmdp);
Jérôme Glisse5042db42017-09-08 16:11:43 -070047}
Jérôme Glisse5042db42017-09-08 16:11:43 -070048#endif /* CONFIG_DEVICE_PRIVATE */
49
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040050static void pgmap_array_delete(struct resource *res)
Christoph Hellwig41e94a82015-08-17 16:00:35 +020051{
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040052 xa_store_range(&pgmap_array, PHYS_PFN(res->start), PHYS_PFN(res->end),
53 NULL, GFP_KERNEL);
Dan Williamsab1b5972017-09-06 16:24:13 -070054 synchronize_rcu();
Dan Williams9476df72016-01-15 16:56:19 -080055}
56
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010057static unsigned long pfn_first(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080058{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010059 const struct resource *res = &pgmap->res;
60 struct vmem_altmap *altmap = &pgmap->altmap;
Dan Williams5c2c2582016-01-15 16:56:49 -080061 unsigned long pfn;
62
63 pfn = res->start >> PAGE_SHIFT;
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010064 if (pgmap->altmap_valid)
Dan Williams5c2c2582016-01-15 16:56:49 -080065 pfn += vmem_altmap_offset(altmap);
66 return pfn;
67}
68
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010069static unsigned long pfn_end(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080070{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010071 const struct resource *res = &pgmap->res;
Dan Williams5c2c2582016-01-15 16:56:49 -080072
73 return (res->start + resource_size(res)) >> PAGE_SHIFT;
74}
75
Dan Williams949b93252018-02-06 19:34:11 -080076static unsigned long pfn_next(unsigned long pfn)
77{
78 if (pfn % 1024 == 0)
79 cond_resched();
80 return pfn + 1;
81}
82
Dan Williams5c2c2582016-01-15 16:56:49 -080083#define for_each_device_pfn(pfn, map) \
Dan Williams949b93252018-02-06 19:34:11 -080084 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
Dan Williams5c2c2582016-01-15 16:56:49 -080085
Christoph Hellwige8d51342017-12-29 08:54:05 +010086static void devm_memremap_pages_release(void *data)
Dan Williams9476df72016-01-15 16:56:19 -080087{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010088 struct dev_pagemap *pgmap = data;
Christoph Hellwige8d51342017-12-29 08:54:05 +010089 struct device *dev = pgmap->dev;
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010090 struct resource *res = &pgmap->res;
Dan Williams9476df72016-01-15 16:56:19 -080091 resource_size_t align_start, align_size;
Dan Williams71389702017-04-28 10:23:37 -070092 unsigned long pfn;
Oscar Salvador2c2a5af2018-12-28 00:36:22 -080093 int nid;
Dan Williams71389702017-04-28 10:23:37 -070094
Dan Williamsa95c90f2018-12-28 00:34:57 -080095 pgmap->kill(pgmap->ref);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010096 for_each_device_pfn(pfn, pgmap)
Dan Williams71389702017-04-28 10:23:37 -070097 put_page(pfn_to_page(pfn));
Dan Williams50f44ee2019-06-13 15:56:33 -070098 pgmap->cleanup(pgmap->ref);
Dan Williams9476df72016-01-15 16:56:19 -080099
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200100 /* pages are dead and unused, undo the arch mapping */
Dan Williams9476df72016-01-15 16:56:19 -0800101 align_start = res->start & ~(SECTION_SIZE - 1);
Jan H. Schönherr10a0cd62018-01-19 16:27:54 -0800102 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
103 - align_start;
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800104
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800105 nid = page_to_nid(pfn_to_page(align_start >> PAGE_SHIFT));
106
Dan Williamsf931ab42017-01-10 16:57:36 -0800107 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800108 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
109 pfn = align_start >> PAGE_SHIFT;
110 __remove_pages(page_zone(pfn_to_page(pfn)), pfn,
111 align_size >> PAGE_SHIFT, NULL);
112 } else {
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800113 arch_remove_memory(nid, align_start, align_size,
Dan Williams69324b82018-12-28 00:35:01 -0800114 pgmap->altmap_valid ? &pgmap->altmap : NULL);
115 kasan_remove_zero_shadow(__va(align_start), align_size);
116 }
Dan Williamsf931ab42017-01-10 16:57:36 -0800117 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800118
Dan Williams90497712016-09-07 08:51:21 -0700119 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400120 pgmap_array_delete(res);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100121 dev_WARN_ONCE(dev, pgmap->altmap.alloc,
122 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800123}
124
Dan Williams4b94ffd2016-01-15 16:56:22 -0800125/**
126 * devm_memremap_pages - remap and provide memmap backing for the given resource
127 * @dev: hosting device for @res
Dan Williamsa95c90f2018-12-28 00:34:57 -0800128 * @pgmap: pointer to a struct dev_pagemap
Dan Williams4b94ffd2016-01-15 16:56:22 -0800129 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800130 * Notes:
Christoph Hellwige8d51342017-12-29 08:54:05 +0100131 * 1/ At a minimum the res, ref and type members of @pgmap must be initialized
132 * by the caller before passing it to this function
133 *
134 * 2/ The altmap field may optionally be initialized, in which case altmap_valid
135 * must be set to true
136 *
Dan Williams50f44ee2019-06-13 15:56:33 -0700137 * 3/ pgmap->ref must be 'live' on entry and will be killed and reaped
138 * at devm_memremap_pages_release() time, or if this routine fails.
Dan Williams5c2c2582016-01-15 16:56:49 -0800139 *
Christoph Hellwige8d51342017-12-29 08:54:05 +0100140 * 4/ res is expected to be a host memory range that could feasibly be
Dan Williams5c2c2582016-01-15 16:56:49 -0800141 * treated as a "System RAM" range, i.e. not a device mmio range, but
142 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800143 */
Christoph Hellwige8d51342017-12-29 08:54:05 +0100144void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200145{
Dan Williamsab1b5972017-09-06 16:24:13 -0700146 resource_size_t align_start, align_size, align_end;
Christoph Hellwige8d51342017-12-29 08:54:05 +0100147 struct vmem_altmap *altmap = pgmap->altmap_valid ?
148 &pgmap->altmap : NULL;
Dan Williams949b93252018-02-06 19:34:11 -0800149 struct resource *res = &pgmap->res;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700150 struct dev_pagemap *conflict_pgmap;
Michal Hocko940519f2019-05-13 17:21:26 -0700151 struct mhp_restrictions restrictions = {
152 /*
153 * We do not want any optional features only our own memmap
154 */
155 .altmap = altmap,
156 };
Alexander Duyck966cf442018-10-26 15:07:52 -0700157 pgprot_t pgprot = PAGE_KERNEL;
Alexander Duyck966cf442018-10-26 15:07:52 -0700158 int error, nid, is_ram;
Dan Williams5f29a772016-03-09 14:08:13 -0800159
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200160 switch (pgmap->type) {
161 case MEMORY_DEVICE_PRIVATE:
162 if (!IS_ENABLED(CONFIG_DEVICE_PRIVATE)) {
163 WARN(1, "Device private memory not supported\n");
164 return ERR_PTR(-EINVAL);
165 }
166 break;
167 case MEMORY_DEVICE_FS_DAX:
168 if (!IS_ENABLED(CONFIG_ZONE_DEVICE) ||
169 IS_ENABLED(CONFIG_FS_DAX_LIMITED)) {
170 WARN(1, "File system DAX not supported\n");
171 return ERR_PTR(-EINVAL);
172 }
173 break;
174 case MEMORY_DEVICE_DEVDAX:
175 case MEMORY_DEVICE_PCI_P2PDMA:
176 break;
177 default:
178 WARN(1, "Invalid pgmap type %d\n", pgmap->type);
179 break;
180 }
181
Dan Williams50f44ee2019-06-13 15:56:33 -0700182 if (!pgmap->ref || !pgmap->kill || !pgmap->cleanup) {
183 WARN(1, "Missing reference count teardown definition\n");
Dan Williamsa95c90f2018-12-28 00:34:57 -0800184 return ERR_PTR(-EINVAL);
Dan Williams50f44ee2019-06-13 15:56:33 -0700185 }
Dan Williamsa95c90f2018-12-28 00:34:57 -0800186
Dan Williams5f29a772016-03-09 14:08:13 -0800187 align_start = res->start & ~(SECTION_SIZE - 1);
188 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
189 - align_start;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700190 align_end = align_start + align_size - 1;
191
192 conflict_pgmap = get_dev_pagemap(PHYS_PFN(align_start), NULL);
193 if (conflict_pgmap) {
194 dev_WARN(dev, "Conflicting mapping in same section\n");
195 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700196 error = -ENOMEM;
197 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700198 }
199
200 conflict_pgmap = get_dev_pagemap(PHYS_PFN(align_end), NULL);
201 if (conflict_pgmap) {
202 dev_WARN(dev, "Conflicting mapping in same section\n");
203 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700204 error = -ENOMEM;
205 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700206 }
207
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700208 is_ram = region_intersects(align_start, align_size,
209 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200210
Dan Williams06489cf2018-12-28 00:34:54 -0800211 if (is_ram != REGION_DISJOINT) {
212 WARN_ONCE(1, "%s attempted on %s region %pr\n", __func__,
213 is_ram == REGION_MIXED ? "mixed" : "ram", res);
Dan Williamsa95c90f2018-12-28 00:34:57 -0800214 error = -ENXIO;
215 goto err_array;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200216 }
217
Dan Williams4b94ffd2016-01-15 16:56:22 -0800218 pgmap->dev = dev;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800219
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400220 error = xa_err(xa_store_range(&pgmap_array, PHYS_PFN(res->start),
221 PHYS_PFN(res->end), pgmap, GFP_KERNEL));
Dan Williams9476df72016-01-15 16:56:19 -0800222 if (error)
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400223 goto err_array;
Dan Williams9476df72016-01-15 16:56:19 -0800224
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200225 nid = dev_to_node(dev);
226 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400227 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200228
Dan Williams90497712016-09-07 08:51:21 -0700229 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(align_start), 0,
230 align_size);
231 if (error)
232 goto err_pfn_remap;
233
Dan Williamsf931ab42017-01-10 16:57:36 -0800234 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800235
236 /*
237 * For device private memory we call add_pages() as we only need to
238 * allocate and initialize struct page for the device memory. More-
239 * over the device memory is un-accessible thus we do not want to
240 * create a linear mapping for the memory like arch_add_memory()
241 * would do.
242 *
243 * For all other device memory types, which are accessible by
244 * the CPU, we do want the linear mapping and thus use
245 * arch_add_memory().
246 */
247 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
248 error = add_pages(nid, align_start >> PAGE_SHIFT,
Michal Hocko940519f2019-05-13 17:21:26 -0700249 align_size >> PAGE_SHIFT, &restrictions);
Dan Williams69324b82018-12-28 00:35:01 -0800250 } else {
251 error = kasan_add_zero_shadow(__va(align_start), align_size);
252 if (error) {
253 mem_hotplug_done();
254 goto err_kasan;
255 }
256
Michal Hocko940519f2019-05-13 17:21:26 -0700257 error = arch_add_memory(nid, align_start, align_size,
258 &restrictions);
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700259 }
260
Dan Williams69324b82018-12-28 00:35:01 -0800261 if (!error) {
262 struct zone *zone;
263
264 zone = &NODE_DATA(nid)->node_zones[ZONE_DEVICE];
265 move_pfn_range_to_zone(zone, align_start >> PAGE_SHIFT,
266 align_size >> PAGE_SHIFT, altmap);
267 }
268
Dan Williamsf931ab42017-01-10 16:57:36 -0800269 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800270 if (error)
271 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200272
Alexander Duyck966cf442018-10-26 15:07:52 -0700273 /*
274 * Initialization of the pages has been deferred until now in order
275 * to allow us to do the work while not holding the hotplug lock.
276 */
277 memmap_init_zone_device(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
278 align_start >> PAGE_SHIFT,
279 align_size >> PAGE_SHIFT, pgmap);
280 percpu_ref_get_many(pgmap->ref, pfn_end(pgmap) - pfn_first(pgmap));
Christoph Hellwige8d51342017-12-29 08:54:05 +0100281
Dan Williamsa95c90f2018-12-28 00:34:57 -0800282 error = devm_add_action_or_reset(dev, devm_memremap_pages_release,
283 pgmap);
284 if (error)
285 return ERR_PTR(error);
Christoph Hellwige8d51342017-12-29 08:54:05 +0100286
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200287 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800288
289 err_add_memory:
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700290 kasan_remove_zero_shadow(__va(align_start), align_size);
291 err_kasan:
Dan Williams90497712016-09-07 08:51:21 -0700292 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
293 err_pfn_remap:
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400294 pgmap_array_delete(res);
295 err_array:
Dan Williamsa95c90f2018-12-28 00:34:57 -0800296 pgmap->kill(pgmap->ref);
Dan Williams50f44ee2019-06-13 15:56:33 -0700297 pgmap->cleanup(pgmap->ref);
298
Dan Williams9476df72016-01-15 16:56:19 -0800299 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200300}
Dan Williams808153e2018-12-28 00:34:50 -0800301EXPORT_SYMBOL_GPL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800302
Dan Williams2e3f1392019-06-13 15:56:21 -0700303void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap)
304{
305 devm_release_action(dev, devm_memremap_pages_release, pgmap);
306}
307EXPORT_SYMBOL_GPL(devm_memunmap_pages);
308
Dan Williams4b94ffd2016-01-15 16:56:22 -0800309unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
310{
311 /* number of pfns from base where pfn_to_page() is valid */
312 return altmap->reserve + altmap->free;
313}
314
315void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
316{
317 altmap->alloc -= nr_pfns;
318}
319
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100320/**
321 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
322 * @pfn: page frame number to lookup page_map
323 * @pgmap: optional known pgmap that already has a reference
324 *
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100325 * If @pgmap is non-NULL and covers @pfn it will be returned as-is. If @pgmap
326 * is non-NULL but does not cover @pfn the reference to it will be released.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100327 */
328struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
329 struct dev_pagemap *pgmap)
330{
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100331 resource_size_t phys = PFN_PHYS(pfn);
332
333 /*
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100334 * In the cached case we're already holding a live reference.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100335 */
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100336 if (pgmap) {
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100337 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100338 return pgmap;
339 put_dev_pagemap(pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100340 }
341
342 /* fall back to slow path lookup */
343 rcu_read_lock();
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400344 pgmap = xa_load(&pgmap_array, PHYS_PFN(phys));
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100345 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
346 pgmap = NULL;
347 rcu_read_unlock();
348
349 return pgmap;
350}
Dan Williamse76384882018-05-16 11:46:08 -0700351EXPORT_SYMBOL_GPL(get_dev_pagemap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700352
Dan Williamse76384882018-05-16 11:46:08 -0700353#ifdef CONFIG_DEV_PAGEMAP_OPS
354DEFINE_STATIC_KEY_FALSE(devmap_managed_key);
Dan Williams31c5bda2018-07-26 16:37:22 -0700355EXPORT_SYMBOL(devmap_managed_key);
Dan Williamse76384882018-05-16 11:46:08 -0700356static atomic_t devmap_enable;
357
358/*
359 * Toggle the static key for ->page_free() callbacks when dev_pagemap
360 * pages go idle.
361 */
362void dev_pagemap_get_ops(void)
363{
364 if (atomic_inc_return(&devmap_enable) == 1)
365 static_branch_enable(&devmap_managed_key);
366}
367EXPORT_SYMBOL_GPL(dev_pagemap_get_ops);
368
369void dev_pagemap_put_ops(void)
370{
371 if (atomic_dec_and_test(&devmap_enable))
372 static_branch_disable(&devmap_managed_key);
373}
374EXPORT_SYMBOL_GPL(dev_pagemap_put_ops);
375
376void __put_devmap_managed_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700377{
378 int count = page_ref_dec_return(page);
379
380 /*
381 * If refcount is 1 then page is freed and refcount is stable as nobody
382 * holds a reference on the page.
383 */
384 if (count == 1) {
385 /* Clear Active bit in case of parallel mark_page_accessed */
386 __ClearPageActive(page);
387 __ClearPageWaiters(page);
388
Jérôme Glissec733a822017-09-08 16:11:54 -0700389 mem_cgroup_uncharge(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700390
391 page->pgmap->page_free(page, page->pgmap->data);
392 } else if (!count)
393 __put_page(page);
394}
Dan Williams31c5bda2018-07-26 16:37:22 -0700395EXPORT_SYMBOL(__put_devmap_managed_page);
Dan Williamse76384882018-05-16 11:46:08 -0700396#endif /* CONFIG_DEV_PAGEMAP_OPS */