diff options
author | Dan Williams <dan.j.williams@intel.com> | 2017-07-20 01:57:44 +0300 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2019-01-07 08:24:46 +0300 |
commit | 93694f9630b0ed29cda61df58e480dcb34ef52fd (patch) | |
tree | 7f7fff99c1017d664559d771c8bdd28503881a53 /drivers/dax/dax-private.h | |
parent | 21b9e979501fdb5f6797193d70428a2b00bd5247 (diff) | |
download | linux-93694f9630b0ed29cda61df58e480dcb34ef52fd.tar.xz |
device-dax: Kill dax_region base
Nothing consumes this attribute of a region and devres otherwise
remembers the value for de-allocation purposes.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dax/dax-private.h')
-rw-r--r-- | drivers/dax/dax-private.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dax/dax-private.h b/drivers/dax/dax-private.h index d1b36a42132f..9b393c218fe4 100644 --- a/drivers/dax/dax-private.h +++ b/drivers/dax/dax-private.h @@ -19,7 +19,6 @@ /** * struct dax_region - mapping infrastructure for dax devices * @id: kernel-wide unique region for a memory range - * @base: linear address corresponding to @res * @kref: to pin while other agents have a need to do lookups * @dev: parent device backing this region * @align: allocation and mapping alignment for child dax devices @@ -28,7 +27,6 @@ */ struct dax_region { int id; - void *base; struct kref kref; struct device *dev; unsigned int align; |