Re: [PATCH AUTOSEL 4.18 51/92] tools/testing/nvdimm: Fix support for emulating controller temperature

From: Dan Williams
Date: Fri Sep 14 2018 - 21:39:27 EST


On Fri, Sep 14, 2018 at 6:30 PM, Sasha Levin
<Alexander.Levin@xxxxxxxxxxxxx> wrote:
> From: Dan Williams <dan.j.williams@xxxxxxxxx>
>
> [ Upstream commit e5d772fbe7685aae0dff99f3b54158a0ec32155e ]
>
> In addition to populating the value the payload also needs to set the
> "controller temperature valid" flag.
>
> Fixes: cdd77d3e1930 ("nfit, libnvdimm: deprecate the generic SMART ioctl")
> Signed-off-by: Dan Williams <dan.j.williams@xxxxxxxxx>
> Signed-off-by: Sasha Levin <alexander.levin@xxxxxxxxxxxxx>
> ---
> tools/testing/nvdimm/test/nfit.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/tools/testing/nvdimm/test/nfit.c b/tools/testing/nvdimm/test/nfit.c
> index e2926f72a821..94c3bdf82ff7 100644
> --- a/tools/testing/nvdimm/test/nfit.c
> +++ b/tools/testing/nvdimm/test/nfit.c
> @@ -1308,7 +1308,8 @@ static void smart_init(struct nfit_test *t)
> | ND_INTEL_SMART_ALARM_VALID
> | ND_INTEL_SMART_USED_VALID
> | ND_INTEL_SMART_SHUTDOWN_VALID
> - | ND_INTEL_SMART_MTEMP_VALID,
> + | ND_INTEL_SMART_MTEMP_VALID
> + | ND_INTEL_SMART_CTEMP_VALID,
> .health = ND_INTEL_SMART_NON_CRITICAL_HEALTH,
> .media_temperature = 23 * 16,
> .ctrl_temperature = 25 * 16,

Does no harm, but also does no benefit since this is just unit test
infrastructure. You may want to blacklist this directory for stable
checking in the future.