pmem.c 15.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4
/*
 * Persistent Memory Driver
 *
5
 * Copyright (c) 2014-2015, Intel Corporation.
6 7 8 9 10 11 12 13 14
 * Copyright (c) 2015, Christoph Hellwig <hch@lst.de>.
 * Copyright (c) 2015, Boaz Harrosh <boaz@plexistor.com>.
 */

#include <asm/cacheflush.h>
#include <linux/blkdev.h>
#include <linux/hdreg.h>
#include <linux/init.h>
#include <linux/platform_device.h>
15
#include <linux/set_memory.h>
16 17
#include <linux/module.h>
#include <linux/moduleparam.h>
18
#include <linux/badblocks.h>
D
Dan Williams 已提交
19
#include <linux/memremap.h>
20
#include <linux/vmalloc.h>
21
#include <linux/blk-mq.h>
D
Dan Williams 已提交
22
#include <linux/pfn_t.h>
23
#include <linux/slab.h>
24
#include <linux/uio.h>
D
Dan Williams 已提交
25
#include <linux/dax.h>
26
#include <linux/nd.h>
27
#include <linux/backing-dev.h>
28
#include "pmem.h"
29
#include "pfn.h"
30
#include "nd.h"
31
#include "nd-core.h"
32

33 34 35 36 37 38 39 40 41 42 43 44 45
static struct device *to_dev(struct pmem_device *pmem)
{
	/*
	 * nvdimm bus services need a 'dev' parameter, and we record the device
	 * at init in bb.dev.
	 */
	return pmem->bb.dev;
}

static struct nd_region *to_region(struct pmem_device *pmem)
{
	return to_nd_region(to_dev(pmem)->parent);
}
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
static void hwpoison_clear(struct pmem_device *pmem,
		phys_addr_t phys, unsigned int len)
{
	unsigned long pfn_start, pfn_end, pfn;

	/* only pmem in the linear map supports HWPoison */
	if (is_vmalloc_addr(pmem->virt_addr))
		return;

	pfn_start = PHYS_PFN(phys);
	pfn_end = pfn_start + PHYS_PFN(len);
	for (pfn = pfn_start; pfn < pfn_end; pfn++) {
		struct page *page = pfn_to_page(pfn);

		/*
		 * Note, no need to hold a get_dev_pagemap() reference
		 * here since we're in the driver I/O path and
		 * outstanding I/O requests pin the dev_pagemap.
		 */
		if (test_and_clear_pmem_poison(page))
			clear_mce_nospec(pfn);
	}
}

71 72
static blk_status_t pmem_clear_poison(struct pmem_device *pmem,
		phys_addr_t offset, unsigned int len)
73
{
74
	struct device *dev = to_dev(pmem);
75 76
	sector_t sector;
	long cleared;
77
	blk_status_t rc = BLK_STS_OK;
78 79 80

	sector = (offset - pmem->data_offset) / 512;

81 82
	cleared = nvdimm_clear_poison(dev, pmem->phys_addr + offset, len);
	if (cleared < len)
83
		rc = BLK_STS_IOERR;
84
	if (cleared > 0 && cleared / 512) {
85
		hwpoison_clear(pmem, pmem->phys_addr + offset, cleared);
86
		cleared /= 512;
87
		dev_dbg(dev, "%#llx clear %ld sector%s\n",
88 89
				(unsigned long long) sector, cleared,
				cleared > 1 ? "s" : "");
90
		badblocks_clear(&pmem->bb, sector, cleared);
91 92
		if (pmem->bb_state)
			sysfs_notify_dirent(pmem->bb_state);
93
	}
94

95
	arch_invalidate_pmem(pmem->virt_addr + offset, len);
96 97

	return rc;
98 99
}

100 101 102
static void write_pmem(void *pmem_addr, struct page *page,
		unsigned int off, unsigned int len)
{
103 104 105 106 107
	unsigned int chunk;
	void *mem;

	while (len) {
		mem = kmap_atomic(page);
108
		chunk = min_t(unsigned int, len, PAGE_SIZE - off);
109 110 111 112 113
		memcpy_flushcache(pmem_addr, mem + off, chunk);
		kunmap_atomic(mem);
		len -= chunk;
		off = 0;
		page++;
114
		pmem_addr += chunk;
115
	}
116 117
}

118
static blk_status_t read_pmem(struct page *page, unsigned int off,
119 120
		void *pmem_addr, unsigned int len)
{
121
	unsigned int chunk;
122
	unsigned long rem;
123 124 125 126
	void *mem;

	while (len) {
		mem = kmap_atomic(page);
127
		chunk = min_t(unsigned int, len, PAGE_SIZE - off);
128
		rem = memcpy_mcsafe(mem + off, pmem_addr, chunk);
129
		kunmap_atomic(mem);
130
		if (rem)
131 132 133 134
			return BLK_STS_IOERR;
		len -= chunk;
		off = 0;
		page++;
135
		pmem_addr += chunk;
136
	}
137
	return BLK_STS_OK;
138 139
}

140
static blk_status_t pmem_do_bvec(struct pmem_device *pmem, struct page *page,
141
			unsigned int len, unsigned int off, unsigned int op,
142 143
			sector_t sector)
{
144
	blk_status_t rc = BLK_STS_OK;
145
	bool bad_pmem = false;
146
	phys_addr_t pmem_off = sector * 512 + pmem->data_offset;
D
Dan Williams 已提交
147
	void *pmem_addr = pmem->virt_addr + pmem_off;
148

149 150 151
	if (unlikely(is_bad_pmem(&pmem->bb, sector, len)))
		bad_pmem = true;

152
	if (!op_is_write(op)) {
153
		if (unlikely(bad_pmem))
154
			rc = BLK_STS_IOERR;
155
		else {
156
			rc = read_pmem(page, off, pmem_addr, len);
157 158
			flush_dcache_page(page);
		}
159
	} else {
160 161 162 163 164 165 166 167 168 169 170 171 172 173
		/*
		 * Note that we write the data both before and after
		 * clearing poison.  The write before clear poison
		 * handles situations where the latest written data is
		 * preserved and the clear poison operation simply marks
		 * the address range as valid without changing the data.
		 * In this case application software can assume that an
		 * interrupted write will either return the new good
		 * data or an error.
		 *
		 * However, if pmem_clear_poison() leaves the data in an
		 * indeterminate state we need to perform the write
		 * after clear poison.
		 */
174
		flush_dcache_page(page);
175
		write_pmem(pmem_addr, page, off, len);
176
		if (unlikely(bad_pmem)) {
177
			rc = pmem_clear_poison(pmem, pmem_off, len);
178
			write_pmem(pmem_addr, page, off, len);
179
		}
180 181
	}

182
	return rc;
183 184
}

185
static blk_qc_t pmem_make_request(struct request_queue *q, struct bio *bio)
186
{
187
	blk_status_t rc = 0;
D
Dan Williams 已提交
188 189
	bool do_acct;
	unsigned long start;
190 191
	struct bio_vec bvec;
	struct bvec_iter iter;
192
	struct pmem_device *pmem = q->queuedata;
193 194
	struct nd_region *nd_region = to_region(pmem);

195
	if (bio->bi_opf & REQ_PREFLUSH)
196
		nvdimm_flush(nd_region);
197

D
Dan Williams 已提交
198
	do_acct = nd_iostat_start(bio, &start);
199 200
	bio_for_each_segment(bvec, bio, iter) {
		rc = pmem_do_bvec(pmem, bvec.bv_page, bvec.bv_len,
201
				bvec.bv_offset, bio_op(bio), iter.bi_sector);
202
		if (rc) {
203
			bio->bi_status = rc;
204 205 206
			break;
		}
	}
D
Dan Williams 已提交
207 208
	if (do_acct)
		nd_iostat_end(bio, start);
209

J
Jens Axboe 已提交
210
	if (bio->bi_opf & REQ_FUA)
211
		nvdimm_flush(nd_region);
212

213
	bio_endio(bio);
214
	return BLK_QC_T_NONE;
215 216 217
}

static int pmem_rw_page(struct block_device *bdev, sector_t sector,
218
		       struct page *page, unsigned int op)
219
{
220
	struct pmem_device *pmem = bdev->bd_queue->queuedata;
221
	blk_status_t rc;
222

223
	rc = pmem_do_bvec(pmem, page, hpage_nr_pages(page) * PAGE_SIZE,
224
			  0, op, sector);
225

226 227 228 229 230 231 232
	/*
	 * The ->rw_page interface is subtle and tricky.  The core
	 * retries on any error, so we can only invoke page_endio() in
	 * the successful completion case.  Otherwise, we'll see crashes
	 * caused by double completion.
	 */
	if (rc == 0)
233
		page_endio(page, op_is_write(op), 0);
234

235
	return blk_status_to_errno(rc);
236 237
}

238
/* see "strong" declaration in tools/testing/nvdimm/pmem-dax.c */
D
Dan Williams 已提交
239 240
__weak long __pmem_direct_access(struct pmem_device *pmem, pgoff_t pgoff,
		long nr_pages, void **kaddr, pfn_t *pfn)
241
{
D
Dan Williams 已提交
242
	resource_size_t offset = PFN_PHYS(pgoff) + pmem->data_offset;
243

D
Dan Williams 已提交
244 245
	if (unlikely(is_bad_pmem(&pmem->bb, PFN_PHYS(pgoff) / 512,
					PFN_PHYS(nr_pages))))
246
		return -EIO;
247 248 249 250 251

	if (kaddr)
		*kaddr = pmem->virt_addr + offset;
	if (pfn)
		*pfn = phys_to_pfn_t(pmem->phys_addr + offset, pmem->pfn_flags);
252

253 254 255 256 257
	/*
	 * If badblocks are present, limit known good range to the
	 * requested range.
	 */
	if (unlikely(pmem->bb.count))
D
Dan Williams 已提交
258 259
		return nr_pages;
	return PHYS_PFN(pmem->size - pmem->pfn_pad - offset);
260 261 262 263 264
}

static const struct block_device_operations pmem_fops = {
	.owner =		THIS_MODULE,
	.rw_page =		pmem_rw_page,
265
	.revalidate_disk =	nvdimm_revalidate_disk,
266 267
};

D
Dan Williams 已提交
268 269 270 271 272 273 274 275
static long pmem_dax_direct_access(struct dax_device *dax_dev,
		pgoff_t pgoff, long nr_pages, void **kaddr, pfn_t *pfn)
{
	struct pmem_device *pmem = dax_get_private(dax_dev);

	return __pmem_direct_access(pmem, pgoff, nr_pages, kaddr, pfn);
}

276 277 278 279 280 281
/*
 * Use the 'no check' versions of copy_from_iter_flushcache() and
 * copy_to_iter_mcsafe() to bypass HARDENED_USERCOPY overhead. Bounds
 * checking, both file offset and device offset, is handled by
 * dax_iomap_actor()
 */
282 283 284
static size_t pmem_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
		void *addr, size_t bytes, struct iov_iter *i)
{
285
	return _copy_from_iter_flushcache(addr, bytes, i);
286 287
}

288 289 290
static size_t pmem_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff,
		void *addr, size_t bytes, struct iov_iter *i)
{
291
	return _copy_to_iter_mcsafe(addr, bytes, i);
292 293
}

D
Dan Williams 已提交
294 295
static const struct dax_operations pmem_dax_ops = {
	.direct_access = pmem_dax_direct_access,
296
	.dax_supported = generic_fsdax_supported,
297
	.copy_from_iter = pmem_copy_from_iter,
298
	.copy_to_iter = pmem_copy_to_iter,
D
Dan Williams 已提交
299 300
};

301 302 303
static const struct attribute_group *pmem_attribute_groups[] = {
	&dax_attribute_group,
	NULL,
D
Dan Williams 已提交
304 305
};

306
static void __pmem_release_queue(struct percpu_ref *ref)
307
{
308 309 310
	struct request_queue *q;

	q = container_of(ref, typeof(*q), q_usage_counter);
311 312 313
	blk_cleanup_queue(q);
}

314 315 316 317 318
static void pmem_release_queue(void *ref)
{
	__pmem_release_queue(ref);
}

319
static void pmem_freeze_queue(struct percpu_ref *ref)
320
{
321 322 323
	struct request_queue *q;

	q = container_of(ref, typeof(*q), q_usage_counter);
324
	blk_freeze_queue_start(q);
325 326
}

D
Dan Williams 已提交
327
static void pmem_release_disk(void *__pmem)
328
{
D
Dan Williams 已提交
329 330 331 332 333 334
	struct pmem_device *pmem = __pmem;

	kill_dax(pmem->dax_dev);
	put_dax(pmem->dax_dev);
	del_gendisk(pmem->disk);
	put_disk(pmem->disk);
335 336
}

337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
static void pmem_release_pgmap_ops(void *__pgmap)
{
	dev_pagemap_put_ops();
}

static void fsdax_pagefree(struct page *page, void *data)
{
	wake_up_var(&page->_refcount);
}

static int setup_pagemap_fsdax(struct device *dev, struct dev_pagemap *pgmap)
{
	dev_pagemap_get_ops();
	if (devm_add_action_or_reset(dev, pmem_release_pgmap_ops, pgmap))
		return -ENOMEM;
	pgmap->type = MEMORY_DEVICE_FS_DAX;
	pgmap->page_free = fsdax_pagefree;

	return 0;
}

358 359
static int pmem_attach_disk(struct device *dev,
		struct nd_namespace_common *ndns)
360
{
361
	struct nd_namespace_io *nsio = to_nd_namespace_io(&ndns->dev);
362
	struct nd_region *nd_region = to_nd_region(dev->parent);
363
	int nid = dev_to_node(dev), fua;
364
	struct resource *res = &nsio->res;
365
	struct resource bb_res;
366
	struct nd_pfn *nd_pfn = NULL;
D
Dan Williams 已提交
367
	struct dax_device *dax_dev;
368
	struct nd_pfn_sb *pfn_sb;
369
	struct pmem_device *pmem;
370
	struct request_queue *q;
371
	struct device *gendev;
372 373
	struct gendisk *disk;
	void *addr;
374 375 376 377 378
	int rc;

	pmem = devm_kzalloc(dev, sizeof(*pmem), GFP_KERNEL);
	if (!pmem)
		return -ENOMEM;
379 380 381 382

	/* while nsio_rw_bytes is active, parse a pfn info block if present */
	if (is_nd_pfn(dev)) {
		nd_pfn = to_nd_pfn(dev);
383 384 385
		rc = nvdimm_setup_pfn(nd_pfn, &pmem->pgmap);
		if (rc)
			return rc;
386 387 388 389
	}

	/* we're attaching a block device, disable raw namespace access */
	devm_nsio_disable(dev, nsio);
390

391
	dev_set_drvdata(dev, pmem);
392 393
	pmem->phys_addr = res->start;
	pmem->size = resource_size(res);
394 395
	fua = nvdimm_has_flush(nd_region);
	if (!IS_ENABLED(CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE) || fua < 0) {
396
		dev_warn(dev, "unable to guarantee persistence of writes\n");
397 398
		fua = 0;
	}
399

400
	if (!devm_request_mem_region(dev, res->start, resource_size(res),
401
				dev_name(&ndns->dev))) {
402
		dev_warn(dev, "could not reserve region %pR\n", res);
403
		return -EBUSY;
404 405
	}

406
	q = blk_alloc_queue_node(GFP_KERNEL, dev_to_node(dev));
407
	if (!q)
408
		return -ENOMEM;
409

D
Dan Williams 已提交
410
	pmem->pfn_flags = PFN_DEV;
411
	pmem->pgmap.ref = &q->q_usage_counter;
412
	pmem->pgmap.kill = pmem_freeze_queue;
413
	pmem->pgmap.cleanup = __pmem_release_queue;
414
	if (is_nd_pfn(dev)) {
415 416
		if (setup_pagemap_fsdax(dev, &pmem->pgmap))
			return -ENOMEM;
417
		addr = devm_memremap_pages(dev, &pmem->pgmap);
418 419
		pfn_sb = nd_pfn->pfn_sb;
		pmem->data_offset = le64_to_cpu(pfn_sb->dataoff);
420 421
		pmem->pfn_pad = resource_size(res) -
			resource_size(&pmem->pgmap.res);
422
		pmem->pfn_flags |= PFN_MAP;
423 424
		memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res));
		bb_res.start += pmem->data_offset;
425
	} else if (pmem_should_map_pages(dev)) {
426 427
		memcpy(&pmem->pgmap.res, &nsio->res, sizeof(pmem->pgmap.res));
		pmem->pgmap.altmap_valid = false;
428 429
		if (setup_pagemap_fsdax(dev, &pmem->pgmap))
			return -ENOMEM;
430
		addr = devm_memremap_pages(dev, &pmem->pgmap);
D
Dan Williams 已提交
431
		pmem->pfn_flags |= PFN_MAP;
432
		memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res));
433
	} else {
434 435 436
		if (devm_add_action_or_reset(dev, pmem_release_queue,
					&q->q_usage_counter))
			return -ENOMEM;
437 438
		addr = devm_memremap(dev, pmem->phys_addr,
				pmem->size, ARCH_MEMREMAP_PMEM);
439 440
		memcpy(&bb_res, &nsio->res, sizeof(bb_res));
	}
441

442 443
	if (IS_ERR(addr))
		return PTR_ERR(addr);
D
Dan Williams 已提交
444
	pmem->virt_addr = addr;
445

446
	blk_queue_write_cache(q, true, fua);
447 448
	blk_queue_make_request(q, pmem_make_request);
	blk_queue_physical_block_size(q, PAGE_SIZE);
449
	blk_queue_logical_block_size(q, pmem_sector_size(ndns));
450
	blk_queue_max_hw_sectors(q, UINT_MAX);
451
	blk_queue_flag_set(QUEUE_FLAG_NONROT, q);
452 453
	if (pmem->pfn_flags & PFN_MAP)
		blk_queue_flag_set(QUEUE_FLAG_DAX, q);
454
	q->queuedata = pmem;
455

456
	disk = alloc_disk_node(0, nid);
457 458
	if (!disk)
		return -ENOMEM;
D
Dan Williams 已提交
459
	pmem->disk = disk;
460 461

	disk->fops		= &pmem_fops;
462
	disk->queue		= q;
463
	disk->flags		= GENHD_FL_EXT_DEVT;
464
	disk->queue->backing_dev_info->capabilities |= BDI_CAP_SYNCHRONOUS_IO;
V
Vishal Verma 已提交
465
	nvdimm_namespace_disk_name(ndns, disk->disk_name);
466 467
	set_capacity(disk, (pmem->size - pmem->pfn_pad - pmem->data_offset)
			/ 512);
468 469
	if (devm_init_badblocks(dev, &pmem->bb))
		return -ENOMEM;
470
	nvdimm_badblocks_populate(nd_region, &pmem->bb, &bb_res);
471
	disk->bb = &pmem->bb;
472

D
Dan Williams 已提交
473 474 475 476 477
	dax_dev = alloc_dax(pmem, disk->disk_name, &pmem_dax_ops);
	if (!dax_dev) {
		put_disk(disk);
		return -ENOMEM;
	}
478
	dax_write_cache(dax_dev, nvdimm_has_cache(nd_region));
D
Dan Williams 已提交
479 480
	pmem->dax_dev = dax_dev;

481 482 483
	gendev = disk_to_dev(disk);
	gendev->groups = pmem_attribute_groups;

484
	device_add_disk(dev, disk, NULL);
D
Dan Williams 已提交
485
	if (devm_add_action_or_reset(dev, pmem_release_disk, pmem))
486 487
		return -ENOMEM;

488
	revalidate_disk(disk);
489

490 491
	pmem->bb_state = sysfs_get_dirent(disk_to_dev(disk)->kobj.sd,
					  "badblocks");
492 493
	if (!pmem->bb_state)
		dev_warn(dev, "'badblocks' notification disabled\n");
494

495 496
	return 0;
}
497

498
static int nd_pmem_probe(struct device *dev)
499
{
500
	struct nd_namespace_common *ndns;
501

502 503 504
	ndns = nvdimm_namespace_common_probe(dev);
	if (IS_ERR(ndns))
		return PTR_ERR(ndns);
505

506 507
	if (devm_nsio_enable(dev, to_nd_namespace_io(&ndns->dev)))
		return -ENXIO;
508

509
	if (is_nd_btt(dev))
510 511
		return nvdimm_namespace_attach_btt(ndns);

512
	if (is_nd_pfn(dev))
513
		return pmem_attach_disk(dev, ndns);
514

515
	/* if we find a valid info-block we'll come back as that personality */
516 517
	if (nd_btt_probe(dev, ndns) == 0 || nd_pfn_probe(dev, ndns) == 0
			|| nd_dax_probe(dev, ndns) == 0)
518 519
		return -ENXIO;

520 521
	/* ...otherwise we're just a raw pmem device */
	return pmem_attach_disk(dev, ndns);
522 523
}

524
static int nd_pmem_remove(struct device *dev)
525
{
526 527
	struct pmem_device *pmem = dev_get_drvdata(dev);

528
	if (is_nd_btt(dev))
D
Dan Williams 已提交
529
		nvdimm_namespace_detach_btt(to_nd_btt(dev));
530 531 532 533 534 535 536 537
	else {
		/*
		 * Note, this assumes device_lock() context to not race
		 * nd_pmem_notify()
		 */
		sysfs_put(pmem->bb_state);
		pmem->bb_state = NULL;
	}
538 539
	nvdimm_flush(to_nd_region(dev->parent));

540 541 542
	return 0;
}

543 544 545 546 547
static void nd_pmem_shutdown(struct device *dev)
{
	nvdimm_flush(to_nd_region(dev->parent));
}

548 549
static void nd_pmem_notify(struct device *dev, enum nvdimm_event event)
{
550
	struct nd_region *nd_region;
D
Dan Williams 已提交
551 552 553 554
	resource_size_t offset = 0, end_trunc = 0;
	struct nd_namespace_common *ndns;
	struct nd_namespace_io *nsio;
	struct resource res;
555
	struct badblocks *bb;
556
	struct kernfs_node *bb_state;
557 558 559 560

	if (event != NVDIMM_REVALIDATE_POISON)
		return;

D
Dan Williams 已提交
561 562 563 564
	if (is_nd_btt(dev)) {
		struct nd_btt *nd_btt = to_nd_btt(dev);

		ndns = nd_btt->ndns;
565 566 567
		nd_region = to_nd_region(ndns->dev.parent);
		nsio = to_nd_namespace_io(&ndns->dev);
		bb = &nsio->bb;
568
		bb_state = NULL;
569 570
	} else {
		struct pmem_device *pmem = dev_get_drvdata(dev);
571

572 573
		nd_region = to_region(pmem);
		bb = &pmem->bb;
574
		bb_state = pmem->bb_state;
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589

		if (is_nd_pfn(dev)) {
			struct nd_pfn *nd_pfn = to_nd_pfn(dev);
			struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;

			ndns = nd_pfn->ndns;
			offset = pmem->data_offset +
					__le32_to_cpu(pfn_sb->start_pad);
			end_trunc = __le32_to_cpu(pfn_sb->end_trunc);
		} else {
			ndns = to_ndns(dev);
		}

		nsio = to_nd_namespace_io(&ndns->dev);
	}
590

D
Dan Williams 已提交
591 592
	res.start = nsio->res.start + offset;
	res.end = nsio->res.end - end_trunc;
593
	nvdimm_badblocks_populate(nd_region, bb, &res);
594 595
	if (bb_state)
		sysfs_notify_dirent(bb_state);
596 597
}

598 599
MODULE_ALIAS("pmem");
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_IO);
600
MODULE_ALIAS_ND_DEVICE(ND_DEVICE_NAMESPACE_PMEM);
601 602 603
static struct nd_device_driver nd_pmem_driver = {
	.probe = nd_pmem_probe,
	.remove = nd_pmem_remove,
604
	.notify = nd_pmem_notify,
605
	.shutdown = nd_pmem_shutdown,
606 607
	.drv = {
		.name = "nd_pmem",
608
	},
609
	.type = ND_DRIVER_NAMESPACE_IO | ND_DRIVER_NAMESPACE_PMEM,
610 611
};

612
module_nd_driver(nd_pmem_driver);
613 614 615

MODULE_AUTHOR("Ross Zwisler <ross.zwisler@linux.intel.com>");
MODULE_LICENSE("GPL v2");