Hi Enric, I have gotten around to reviewing this series, and hope to get this in ASAP. I found an issue with this commit, but I'll go ahead and fix it myself as I'm creating the immutable branch. No need to respin the series. On Tue, May 16, 2017 at 06:13:09PM +0200, Enric Balletbo i Serra wrote: > +static int ec_read_version_supported(struct cros_ec_dev *ec) > +{ > + struct ec_params_get_cmd_versions_v1 *params; > + struct ec_response_get_cmd_versions *response; > + int ret; > + > + struct cros_ec_command *msg; > + > + msg = kzalloc(sizeof(*msg) + max(sizeof(params), sizeof(response)), > + GFP_KERNEL); > + if (!msg) > + return 0; > + > + msg->command = EC_CMD_GET_CMD_VERSIONS + ec->cmd_offset; > + msg->outsize = sizeof(*params); > + msg->insize = sizeof(*response); By my diff, the above two lines were changed from the original CHROMIUM commit, based on Doug's comment here: https://lkml.org/lkml/2017/2/22/630 However, this is an incomplete fix. Instead, we should pick this: https://chromium-review.googlesource.com/#/c/444085/ I'll go ahead and do that. Thanks! Benson -- Benson Leung Staff Software Engineer Chrome OS Kernel Google Inc. bleung@google.com Chromium OS Project bleung@chromium.org