Message ID | 20230807063549.5942-2-jehoon.park@samsung.com |
---|---|
State | New, archived |
Headers | show |
Series | [ndctl,v2,1/3] libcxl: Update a revision by CXL 3.0 specification | expand |
On Mon, 7 Aug 2023 15:35:47 +0900 Jehoon Park <jehoon.park@samsung.com> wrote: > Update the predefined value for device temperature field when it is not > implemented. (CXL 3.0.8.2.9.8.3.1) > > Signed-off-by: Jehoon Park <jehoon.park@samsung.com> Hi Jehoon, Key here is not that it was in 3.0, but that it was changed in 2.0 Errata F38 and as such software doesn't need to cope with the old (wrong) value. Good to state that clearly in the patch description. If it had been merely a change for 3.0 there would have needed to be an enable bit to change the default behavior (or something like that). Otherwise LGTM Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > --- > cxl/lib/private.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/cxl/lib/private.h b/cxl/lib/private.h > index a641727..a692fd5 100644 > --- a/cxl/lib/private.h > +++ b/cxl/lib/private.h > @@ -360,7 +360,7 @@ struct cxl_cmd_set_partition { > #define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_WARNING (1) > > #define CXL_CMD_HEALTH_INFO_LIFE_USED_NOT_IMPL 0xff > -#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0xffff > +#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0x7fff > > static inline int check_kmod(struct kmod_ctx *kmod_ctx) > {
On Mon, Aug 07, 2023 at 02:02:06PM +0100, Jonathan Cameron wrote: > On Mon, 7 Aug 2023 15:35:47 +0900 > Jehoon Park <jehoon.park@samsung.com> wrote: > > > Update the predefined value for device temperature field when it is not > > implemented. (CXL 3.0.8.2.9.8.3.1) > > > > Signed-off-by: Jehoon Park <jehoon.park@samsung.com> > Hi Jehoon, > > Key here is not that it was in 3.0, but that it was changed in 2.0 Errata F38 > and as such software doesn't need to cope with the old (wrong) value. > > Good to state that clearly in the patch description. If it had been merely > a change for 3.0 there would have needed to be an enable bit to change the > default behavior (or something like that). > > Otherwise LGTM > Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > Hi Jonathan, thanks for the reviews. I will correct the revision history in the next patch. > > --- > > cxl/lib/private.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/cxl/lib/private.h b/cxl/lib/private.h > > index a641727..a692fd5 100644 > > --- a/cxl/lib/private.h > > +++ b/cxl/lib/private.h > > @@ -360,7 +360,7 @@ struct cxl_cmd_set_partition { > > #define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_WARNING (1) > > > > #define CXL_CMD_HEALTH_INFO_LIFE_USED_NOT_IMPL 0xff > > -#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0xffff > > +#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0x7fff > > > > static inline int check_kmod(struct kmod_ctx *kmod_ctx) > > { >
On Mon, 07 Aug 2023, Jehoon Park wrote: >Update the predefined value for device temperature field when it is not >implemented. (CXL 3.0.8.2.9.8.3.1) > >Signed-off-by: Jehoon Park <jehoon.park@samsung.com> With Jonathan's feedback in the changelog, Reviewed-by: Davidlohr Bueso <dave@stgolabs.net> >--- > cxl/lib/private.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/cxl/lib/private.h b/cxl/lib/private.h >index a641727..a692fd5 100644 >--- a/cxl/lib/private.h >+++ b/cxl/lib/private.h >@@ -360,7 +360,7 @@ struct cxl_cmd_set_partition { > #define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_WARNING (1) > > #define CXL_CMD_HEALTH_INFO_LIFE_USED_NOT_IMPL 0xff >-#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0xffff >+#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0x7fff > > static inline int check_kmod(struct kmod_ctx *kmod_ctx) > { >-- >2.17.1 >
diff --git a/cxl/lib/private.h b/cxl/lib/private.h index a641727..a692fd5 100644 --- a/cxl/lib/private.h +++ b/cxl/lib/private.h @@ -360,7 +360,7 @@ struct cxl_cmd_set_partition { #define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_WARNING (1) #define CXL_CMD_HEALTH_INFO_LIFE_USED_NOT_IMPL 0xff -#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0xffff +#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL 0x7fff static inline int check_kmod(struct kmod_ctx *kmod_ctx) {
Update the predefined value for device temperature field when it is not implemented. (CXL 3.0.8.2.9.8.3.1) Signed-off-by: Jehoon Park <jehoon.park@samsung.com> --- cxl/lib/private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)