From: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx> Sent: Tuesday, May 25, 2021 3:59 AM > > Eliminate the follow smatch warning: > > drivers/hv/connection.c:236 vmbus_connect() warn: missing error code > 'ret'. > > Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx> > Signed-off-by: Jiapeng Chong <jiapeng.chong@xxxxxxxxxxxxxxxxx> > --- > drivers/hv/connection.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c > index 311cd00..5e479d5 100644 > --- a/drivers/hv/connection.c > +++ b/drivers/hv/connection.c > @@ -232,8 +232,10 @@ int vmbus_connect(void) > */ > > for (i = 0; ; i++) { > - if (i == ARRAY_SIZE(vmbus_versions)) > + if (i == ARRAY_SIZE(vmbus_versions)) { > + ret = -EDOM; > goto cleanup; > + } > > version = vmbus_versions[i]; > if (version > max_version) > -- > 1.8.3.1 I might have used -EINVAL instead of -EDOM as the error return value, but it really doesn't matter, and having a return value that is unique in the function might be helpful. Reviewed-by: Michael Kelley <mikelley@xxxxxxxxxxxxx>