diff options
author | Sonia Sharma <sonia.sharma@microsoft.com> | 2021-07-21 14:41:03 -0700 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2021-07-22 10:14:25 +0000 |
commit | 63fb60c2fcc94d595a184fa187bdfb25e5ecd4a2 (patch) | |
tree | 0d3eb62e644867a8f110418cf001a20ddbd958c3 /include/linux/hyperv.h | |
parent | 31e5e64694cf9879e63b2802007fa934f4131126 (diff) |
hv: hyperv.h: Remove unused inline functions
There are some unused inline functions in hyper.h.
Remove those unused functions.
Signed-off-by: Sonia Sharma <sonia.sharma@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Link: https://lore.kernel.org/r/1626903663-23615-1-git-send-email-sosha@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'include/linux/hyperv.h')
-rw-r--r-- | include/linux/hyperv.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 2e859d2f9609..ddc8713ce57b 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -538,12 +538,6 @@ struct vmbus_channel_rescind_offer { u32 child_relid; } __packed; -static inline u32 -hv_ringbuffer_pending_size(const struct hv_ring_buffer_info *rbi) -{ - return rbi->ring_buffer->pending_send_sz; -} - /* * Request Offer -- no parameters, SynIC message contains the partition ID * Set Snoop -- no parameters, SynIC message contains the partition ID @@ -1092,16 +1086,6 @@ static inline void set_channel_pending_send_size(struct vmbus_channel *c, c->outbound.ring_buffer->pending_send_sz = size; } -static inline void set_low_latency_mode(struct vmbus_channel *c) -{ - c->low_latency = true; -} - -static inline void clear_low_latency_mode(struct vmbus_channel *c) -{ - c->low_latency = false; -} - void vmbus_onmessage(struct vmbus_channel_message_header *hdr); int vmbus_request_offers(void); |