Commit bdc1dd47 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Greg Kroah-Hartman

vmbus: fix spelling errors

Several spelling errors in comments
Signed-off-by: default avatarStephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2c616a8b
...@@ -333,7 +333,7 @@ static int create_gpadl_header(void *kbuffer, u32 size, ...@@ -333,7 +333,7 @@ static int create_gpadl_header(void *kbuffer, u32 size,
* Gpadl is u32 and we are using a pointer which could * Gpadl is u32 and we are using a pointer which could
* be 64-bit * be 64-bit
* This is governed by the guest/host protocol and * This is governed by the guest/host protocol and
* so the hypervisor gurantees that this is ok. * so the hypervisor guarantees that this is ok.
*/ */
for (i = 0; i < pfncurr; i++) for (i = 0; i < pfncurr; i++)
gpadl_body->pfn[i] = slow_virt_to_phys( gpadl_body->pfn[i] = slow_virt_to_phys(
...@@ -380,7 +380,7 @@ static int create_gpadl_header(void *kbuffer, u32 size, ...@@ -380,7 +380,7 @@ static int create_gpadl_header(void *kbuffer, u32 size,
} }
/* /*
* vmbus_establish_gpadl - Estabish a GPADL for the specified buffer * vmbus_establish_gpadl - Establish a GPADL for the specified buffer
* *
* @channel: a channel * @channel: a channel
* @kbuffer: from kmalloc or vmalloc * @kbuffer: from kmalloc or vmalloc
...@@ -732,7 +732,7 @@ int vmbus_sendpacket_pagebuffer_ctl(struct vmbus_channel *channel, ...@@ -732,7 +732,7 @@ int vmbus_sendpacket_pagebuffer_ctl(struct vmbus_channel *channel,
/* Setup the descriptor */ /* Setup the descriptor */
desc.type = VM_PKT_DATA_USING_GPA_DIRECT; desc.type = VM_PKT_DATA_USING_GPA_DIRECT;
desc.flags = flags; desc.flags = flags;
desc.dataoffset8 = descsize >> 3; /* in 8-bytes grandularity */ desc.dataoffset8 = descsize >> 3; /* in 8-bytes granularity */
desc.length8 = (u16)(packetlen_aligned >> 3); desc.length8 = (u16)(packetlen_aligned >> 3);
desc.transactionid = requestid; desc.transactionid = requestid;
desc.rangecount = pagecount; desc.rangecount = pagecount;
...@@ -793,7 +793,7 @@ int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, ...@@ -793,7 +793,7 @@ int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel,
/* Setup the descriptor */ /* Setup the descriptor */
desc->type = VM_PKT_DATA_USING_GPA_DIRECT; desc->type = VM_PKT_DATA_USING_GPA_DIRECT;
desc->flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; desc->flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED;
desc->dataoffset8 = desc_size >> 3; /* in 8-bytes grandularity */ desc->dataoffset8 = desc_size >> 3; /* in 8-bytes granularity */
desc->length8 = (u16)(packetlen_aligned >> 3); desc->length8 = (u16)(packetlen_aligned >> 3);
desc->transactionid = requestid; desc->transactionid = requestid;
desc->rangecount = 1; desc->rangecount = 1;
...@@ -843,7 +843,7 @@ int vmbus_sendpacket_multipagebuffer(struct vmbus_channel *channel, ...@@ -843,7 +843,7 @@ int vmbus_sendpacket_multipagebuffer(struct vmbus_channel *channel,
/* Setup the descriptor */ /* Setup the descriptor */
desc.type = VM_PKT_DATA_USING_GPA_DIRECT; desc.type = VM_PKT_DATA_USING_GPA_DIRECT;
desc.flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED; desc.flags = VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED;
desc.dataoffset8 = descsize >> 3; /* in 8-bytes grandularity */ desc.dataoffset8 = descsize >> 3; /* in 8-bytes granularity */
desc.length8 = (u16)(packetlen_aligned >> 3); desc.length8 = (u16)(packetlen_aligned >> 3);
desc.transactionid = requestid; desc.transactionid = requestid;
desc.rangecount = 1; desc.rangecount = 1;
......
...@@ -69,7 +69,7 @@ static const int fw_versions[] = { ...@@ -69,7 +69,7 @@ static const int fw_versions[] = {
* *
* While the request/response protocol is guaranteed by the host, we further * While the request/response protocol is guaranteed by the host, we further
* ensure this by serializing packet processing in this driver - we do not * ensure this by serializing packet processing in this driver - we do not
* read additional packets from the VMBUs until the current packet is fully * read additional packets from the VMBUS until the current packet is fully
* handled. * handled.
*/ */
...@@ -398,7 +398,7 @@ kvp_send_key(struct work_struct *dummy) ...@@ -398,7 +398,7 @@ kvp_send_key(struct work_struct *dummy)
* the max lengths specified. We will however, reserve room * the max lengths specified. We will however, reserve room
* for the string terminating character - in the utf16s_utf8s() * for the string terminating character - in the utf16s_utf8s()
* function we limit the size of the buffer where the converted * function we limit the size of the buffer where the converted
* string is placed to HV_KVP_EXCHANGE_MAX_*_SIZE -1 to gaurantee * string is placed to HV_KVP_EXCHANGE_MAX_*_SIZE -1 to guarantee
* that the strings can be properly terminated! * that the strings can be properly terminated!
*/ */
...@@ -532,7 +532,7 @@ kvp_respond_to_host(struct hv_kvp_msg *msg_to_host, int error) ...@@ -532,7 +532,7 @@ kvp_respond_to_host(struct hv_kvp_msg *msg_to_host, int error)
*/ */
if (error) { if (error) {
/* /*
* Something failed or we have timedout; * Something failed or we have timed out;
* terminate the current host-side iteration. * terminate the current host-side iteration.
*/ */
goto response_done; goto response_done;
...@@ -606,8 +606,8 @@ kvp_respond_to_host(struct hv_kvp_msg *msg_to_host, int error) ...@@ -606,8 +606,8 @@ kvp_respond_to_host(struct hv_kvp_msg *msg_to_host, int error)
* This callback is invoked when we get a KVP message from the host. * This callback is invoked when we get a KVP message from the host.
* The host ensures that only one KVP transaction can be active at a time. * The host ensures that only one KVP transaction can be active at a time.
* KVP implementation in Linux needs to forward the key to a user-mde * KVP implementation in Linux needs to forward the key to a user-mde
* component to retrive the corresponding value. Consequently, we cannot * component to retrieve the corresponding value. Consequently, we cannot
* respond to the host in the conext of this callback. Since the host * respond to the host in the context of this callback. Since the host
* guarantees that at most only one transaction can be active at a time, * guarantees that at most only one transaction can be active at a time,
* we stash away the transaction state in a set of global variables. * we stash away the transaction state in a set of global variables.
*/ */
......
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