Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c75354d authored by Dexuan Cui's avatar Dexuan Cui Committed by Greg Kroah-Hartman
Browse files

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



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>
parent 3ccb4fd8
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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);