diff options
author | Alexander Duyck <alexander.h.duyck@linux.intel.com> | 2018-10-10 16:39:20 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2018-10-12 08:39:24 -0700 |
commit | 2d657d17f72d2ae70c02f0d0ea6a04ad0f016b57 (patch) | |
tree | dc29e62aec8df86f531adfdc3c706856ca8499e4 /drivers/nvdimm/label.h | |
parent | 19418b024427ec60ba6084addf691a8d93670398 (diff) | |
download | linux-2d657d17f72d2ae70c02f0d0ea6a04ad0f016b57.tar.gz linux-2d657d17f72d2ae70c02f0d0ea6a04ad0f016b57.tar.bz2 linux-2d657d17f72d2ae70c02f0d0ea6a04ad0f016b57.zip |
nvdimm: Split label init out from the logic for getting config data
This patch splits the initialization of the label data into two functions.
One for doing the init, and another for reading the actual configuration
data. The idea behind this is that by doing this we create a symmetry
between the getting and setting of config data in that we have a function
for both. In addition it will make it easier for us to identify the bits
that are related to init versus the pieces that are a wrapper for reading
data from the ACPI interface.
So for example by splitting things out like this it becomes much more
obvious that we were performing checks that weren't necessarily related to
the set/get operations such as relying on ndd->data being present when the
set and get ops should not care about a locally cached copy of the label
area.
Reviewed-by: Toshi Kani <toshi.kani@hpe.com>
Signed-off-by: Alexander Duyck <alexander.h.duyck@linux.intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/nvdimm/label.h')
-rw-r--r-- | drivers/nvdimm/label.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvdimm/label.h b/drivers/nvdimm/label.h index 18bbe183b3a9..685afb3de0fe 100644 --- a/drivers/nvdimm/label.h +++ b/drivers/nvdimm/label.h @@ -141,6 +141,7 @@ struct nvdimm_drvdata; int nd_label_validate(struct nvdimm_drvdata *ndd); void nd_label_copy(struct nvdimm_drvdata *ndd, struct nd_namespace_index *dst, struct nd_namespace_index *src); +int nd_label_data_init(struct nvdimm_drvdata *ndd); size_t sizeof_namespace_index(struct nvdimm_drvdata *ndd); int nd_label_active_count(struct nvdimm_drvdata *ndd); struct nd_namespace_label *nd_label_active(struct nvdimm_drvdata *ndd, int n); |