Skip to content

Commit

Permalink
Staging: hv: vmbus: Cleanup the error return value in vmbus_recvpacke…
Browse files Browse the repository at this point in the history
…t_raw()

Use standard Linux errno values.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 25, 2011
1 parent d2598f0 commit 3d5cad9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/hv/channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ int vmbus_recvpacket_raw(struct vmbus_channel *channel, void *buffer,
pr_err("Buffer too small - needed %d bytes but "
"got space for only %d bytes\n",
packetlen, bufferlen);
return -2;
return -ENOBUFS;
}

*requestid = desc.trans_id;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ static void mousevsc_on_channel_callback(void *context)
}
break;
}
} else if (ret == -2) {
} else if (ret == -ENOBUFS) {
/* Handle large packet */
bufferlen = bytes_recvd;
buffer = kzalloc(bytes_recvd, GFP_KERNEL);
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/netvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ static void netvsc_channel_cb(void *context)

break;
}
} else if (ret == -2) {
} else if (ret == -ENOBUFS) {
/* Handle large packet */
buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
if (buffer == NULL) {
Expand Down

0 comments on commit 3d5cad9

Please sign in to comment.