diff options
author | Dave Jiang <dave.jiang@intel.com> | 2017-10-30 13:22:20 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2017-11-02 10:42:30 -0700 |
commit | 9fb1a1903345fea598f48277576a3589a972b72e (patch) | |
tree | f531856064348bfdb55e256a988e6b3d411ad026 /tools/testing/nvdimm/test/nfit_test.h | |
parent | aa9ad44a42b4cf4387f8ecddaf8e51707fdcda5a (diff) | |
download | linux-stable-9fb1a1903345fea598f48277576a3589a972b72e.tar.gz linux-stable-9fb1a1903345fea598f48277576a3589a972b72e.tar.bz2 linux-stable-9fb1a1903345fea598f48277576a3589a972b72e.zip |
nfit_test: add error injection DSMs
Add nfit_test emulation for the new ACPI 6.2 error injectino DSMs.
This will allow unit tests to selectively inject the errors they wish to
test for.
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
[vishal: Move injection functions to ND_CMD_CALL]
[vishal: Add support for the notification option]
[vishal: move an nfit_test private definition into a local header]
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'tools/testing/nvdimm/test/nfit_test.h')
-rw-r--r-- | tools/testing/nvdimm/test/nfit_test.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/testing/nvdimm/test/nfit_test.h b/tools/testing/nvdimm/test/nfit_test.h index 52c83be9dcfa..113b44675a71 100644 --- a/tools/testing/nvdimm/test/nfit_test.h +++ b/tools/testing/nvdimm/test/nfit_test.h @@ -33,6 +33,11 @@ struct nfit_test_resource { }; #define ND_TRANSLATE_SPA_STATUS_INVALID_SPA 2 +#define NFIT_ARS_INJECT_INVALID 2 + +enum err_inj_options { + ND_ARS_ERR_INJ_OPT_NOTIFY = 0, +}; /* nfit commands */ enum nfit_cmd_num { |