Commit e719665b authored by Dexuan Cui's avatar Dexuan Cui Committed by Tim Gardner

Drivers: hv: vmbus: add a helper function to set a channel's pending send size

BugLink: http://bugs.launchpad.net/bugs/1541585

This will be used by the coming net/hvsock driver.
Signed-off-by: default avatarDexuan Cui <decui@microsoft.com>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 3c75354d)
Signed-off-by: default avatarTim Gardner <tim.gardner@canonical.com>
parent 10a56700
......@@ -816,6 +816,12 @@ static inline void *get_per_channel_state(struct vmbus_channel *c)
return c->per_channel_state;
}
static inline void set_channel_pending_send_size(struct vmbus_channel *c,
u32 size)
{
c->outbound.ring_buffer->pending_send_sz = size;
}
void vmbus_onmessage(void *context);
int vmbus_request_offers(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment