Browse Source

dax: unmap/truncate on device shutdown

Invalidate all mappings of a device-dax instance when the device is
unregistered.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Dan Williams 9 years ago
parent
commit
9dc1e4927b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/dax/dax.c

+ 1 - 0
drivers/dax/dax.c

@@ -550,6 +550,7 @@ static void unregister_dax_dev(void *dev)
 	 */
 	dax_dev->alive = false;
 	synchronize_rcu();
+	unmap_mapping_range(dax_dev->inode->i_mapping, 0, 0, 1);
 	cdev_del(cdev);
 	device_unregister(dev);
 }