diff options
author | Dave Jiang <dave.jiang@intel.com> | 2017-08-23 12:48:26 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2017-11-02 10:42:30 -0700 |
commit | aa9ad44a42b4cf4387f8ecddaf8e51707fdcda5a (patch) | |
tree | 3d4e9398d0c07cf1fac26da1d1d540697145ef3a /drivers/nvdimm/nd-core.h | |
parent | 11e142701609546632ba1fda586252d391026a3f (diff) | |
download | lwn-aa9ad44a42b4cf4387f8ecddaf8e51707fdcda5a.tar.gz lwn-aa9ad44a42b4cf4387f8ecddaf8e51707fdcda5a.zip |
libnvdimm: move poison list functions to a new 'badrange' file
nfit_test needs to use the poison list manipulation code as well. Make
it more generic and in the process rename poison to badrange, and move
all the related helpers to a new file.
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
[vishal: Add badrange.o to nfit_test's Kbuild]
[vishal: add a missed include in bus.c for the new badrange functions]
[vishal: rename all instances of 'be' to 'bre']
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/nvdimm/nd-core.h')
-rw-r--r-- | drivers/nvdimm/nd-core.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/nvdimm/nd-core.h b/drivers/nvdimm/nd-core.h index 86bc19ae30da..79274ead54fb 100644 --- a/drivers/nvdimm/nd-core.h +++ b/drivers/nvdimm/nd-core.h @@ -29,10 +29,9 @@ struct nvdimm_bus { struct list_head list; struct device dev; int id, probe_active; - struct list_head poison_list; struct list_head mapping_list; struct mutex reconfig_mutex; - spinlock_t poison_lock; + struct badrange badrange; }; struct nvdimm { |