staging: hv: Convert camel cased struct fields in vmbus_private.h to lower cases

Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Haiyang Zhang 2011-01-26 12:12:14 -08:00 committed by Greg Kroah-Hartman
parent 415f228712
commit da9fcb7260
5 changed files with 77 additions and 77 deletions

View File

@ -77,10 +77,10 @@ static void vmbus_setevent(struct vmbus_channel *channel)
if (channel->offermsg.monitor_allocated) { if (channel->offermsg.monitor_allocated) {
/* Each u32 represents 32 channels */ /* Each u32 represents 32 channels */
set_bit(channel->offermsg.child_relid & 31, set_bit(channel->offermsg.child_relid & 31,
(unsigned long *) vmbus_connection.SendInterruptPage + (unsigned long *) vmbus_connection.send_int_page +
(channel->offermsg.child_relid >> 5)); (channel->offermsg.child_relid >> 5));
monitorpage = vmbus_connection.MonitorPages; monitorpage = vmbus_connection.monitor_pages;
monitorpage++; /* Get the child to parent monitor page */ monitorpage++; /* Get the child to parent monitor page */
set_bit(channel->monitor_bit, set_bit(channel->monitor_bit,
@ -100,11 +100,11 @@ static void VmbusChannelClearEvent(struct vmbus_channel *channel)
if (Channel->offermsg.monitor_allocated) { if (Channel->offermsg.monitor_allocated) {
/* Each u32 represents 32 channels */ /* Each u32 represents 32 channels */
clear_bit(Channel->offermsg.child_relid & 31, clear_bit(Channel->offermsg.child_relid & 31,
(unsigned long *)vmbus_connection.SendInterruptPage + (unsigned long *)vmbus_connection.send_int_page +
(Channel->offermsg.child_relid >> 5)); (Channel->offermsg.child_relid >> 5));
monitorPage = monitorPage = (struct hv_monitor_page *)
(struct hv_monitor_page *)vmbus_connection.MonitorPages; vmbus_connection.monitor_pages;
monitorPage++; /* Get the child to parent monitor page */ monitorPage++; /* Get the child to parent monitor page */
clear_bit(Channel->monitor_bit, clear_bit(Channel->monitor_bit,
@ -133,7 +133,7 @@ void vmbus_get_debug_info(struct vmbus_channel *channel,
&channel->offermsg.offer.if_instance, &channel->offermsg.offer.if_instance,
sizeof(struct hv_guid)); sizeof(struct hv_guid));
monitorpage = (struct hv_monitor_page *)vmbus_connection.MonitorPages; monitorpage = (struct hv_monitor_page *)vmbus_connection.monitor_pages;
debuginfo->monitorid = channel->offermsg.monitorid; debuginfo->monitorid = channel->offermsg.monitorid;
@ -267,7 +267,7 @@ int vmbus_open(struct vmbus_channel *newchannel, u32 send_ringbuffer_size,
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_add_tail(&openInfo->msglistentry, list_add_tail(&openInfo->msglistentry,
&vmbus_connection.ChannelMsgList); &vmbus_connection.chn_msg_list);
spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
DPRINT_DBG(VMBUS, "Sending channel open msg..."); DPRINT_DBG(VMBUS, "Sending channel open msg...");
@ -501,8 +501,8 @@ int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer,
unsigned long flags; unsigned long flags;
int ret = 0; int ret = 0;
next_gpadl_handle = atomic_read(&vmbus_connection.NextGpadlHandle); next_gpadl_handle = atomic_read(&vmbus_connection.next_gpadl_handle);
atomic_inc(&vmbus_connection.NextGpadlHandle); atomic_inc(&vmbus_connection.next_gpadl_handle);
ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount); ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount);
if (ret) if (ret)
@ -523,7 +523,7 @@ int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer,
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_add_tail(&msginfo->msglistentry, list_add_tail(&msginfo->msglistentry,
&vmbus_connection.ChannelMsgList); &vmbus_connection.chn_msg_list);
spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
DPRINT_DBG(VMBUS, "buffer %p, size %d msg cnt %d", DPRINT_DBG(VMBUS, "buffer %p, size %d msg cnt %d",
@ -618,7 +618,7 @@ int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle)
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_add_tail(&info->msglistentry, list_add_tail(&info->msglistentry,
&vmbus_connection.ChannelMsgList); &vmbus_connection.chn_msg_list);
spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
ret = vmbus_post_msg(msg, ret = vmbus_post_msg(msg,

View File

@ -308,7 +308,7 @@ void free_channel(struct vmbus_channel *channel)
* ie we can't destroy ourselves. * ie we can't destroy ourselves.
*/ */
INIT_WORK(&channel->work, release_channel); INIT_WORK(&channel->work, release_channel);
queue_work(vmbus_connection.WorkQueue, &channel->work); queue_work(vmbus_connection.work_queue, &channel->work);
} }
@ -363,7 +363,7 @@ static void vmbus_process_offer(struct work_struct *work)
/* Make sure this is a new offer */ /* Make sure this is a new offer */
spin_lock_irqsave(&vmbus_connection.channel_lock, flags); spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
list_for_each_entry(channel, &vmbus_connection.ChannelList, listentry) { list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
if (!memcmp(&channel->offermsg.offer.if_type, if (!memcmp(&channel->offermsg.offer.if_type,
&newchannel->offermsg.offer.if_type, &newchannel->offermsg.offer.if_type,
sizeof(struct hv_guid)) && sizeof(struct hv_guid)) &&
@ -377,7 +377,7 @@ static void vmbus_process_offer(struct work_struct *work)
if (fnew) if (fnew)
list_add_tail(&newchannel->listentry, list_add_tail(&newchannel->listentry,
&vmbus_connection.ChannelList); &vmbus_connection.chn_list);
spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags); spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
@ -579,7 +579,7 @@ static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
*/ */
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_for_each(curr, &vmbus_connection.ChannelMsgList) { list_for_each(curr, &vmbus_connection.chn_msg_list) {
/* FIXME: this should probably use list_entry() instead */ /* FIXME: this should probably use list_entry() instead */
msginfo = (struct vmbus_channel_msginfo *)curr; msginfo = (struct vmbus_channel_msginfo *)curr;
requestheader = requestheader =
@ -627,7 +627,7 @@ static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
*/ */
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_for_each(curr, &vmbus_connection.ChannelMsgList) { list_for_each(curr, &vmbus_connection.chn_msg_list) {
/* FIXME: this should probably use list_entry() instead */ /* FIXME: this should probably use list_entry() instead */
msginfo = (struct vmbus_channel_msginfo *)curr; msginfo = (struct vmbus_channel_msginfo *)curr;
requestheader = requestheader =
@ -675,7 +675,7 @@ static void vmbus_ongpadl_torndown(
*/ */
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_for_each(curr, &vmbus_connection.ChannelMsgList) { list_for_each(curr, &vmbus_connection.chn_msg_list) {
/* FIXME: this should probably use list_entry() instead */ /* FIXME: this should probably use list_entry() instead */
msginfo = (struct vmbus_channel_msginfo *)curr; msginfo = (struct vmbus_channel_msginfo *)curr;
requestheader = requestheader =
@ -717,7 +717,7 @@ static void vmbus_onversion_response(
version_response = (struct vmbus_channel_version_response *)hdr; version_response = (struct vmbus_channel_version_response *)hdr;
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_for_each(curr, &vmbus_connection.ChannelMsgList) { list_for_each(curr, &vmbus_connection.chn_msg_list) {
/* FIXME: this should probably use list_entry() instead */ /* FIXME: this should probably use list_entry() instead */
msginfo = (struct vmbus_channel_msginfo *)curr; msginfo = (struct vmbus_channel_msginfo *)curr;
requestheader = requestheader =
@ -859,7 +859,7 @@ void vmbus_release_unattached_channels(void)
spin_lock_irqsave(&vmbus_connection.channel_lock, flags); spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
list_for_each_entry_safe(channel, pos, &vmbus_connection.ChannelList, list_for_each_entry_safe(channel, pos, &vmbus_connection.chn_list,
listentry) { listentry) {
if (channel == start) if (channel == start)
break; break;

View File

@ -29,9 +29,9 @@
#include "vmbus_private.h" #include "vmbus_private.h"
struct VMBUS_CONNECTION vmbus_connection = { struct vmbus_connection vmbus_connection = {
.ConnectState = Disconnected, .conn_state = DISCONNECTED,
.NextGpadlHandle = ATOMIC_INIT(0xE1E10), .next_gpadl_handle = ATOMIC_INIT(0xE1E10),
}; };
/* /*
@ -45,44 +45,44 @@ int vmbus_connect(void)
unsigned long flags; unsigned long flags;
/* Make sure we are not connecting or connected */ /* Make sure we are not connecting or connected */
if (vmbus_connection.ConnectState != Disconnected) if (vmbus_connection.conn_state != DISCONNECTED)
return -1; return -1;
/* Initialize the vmbus connection */ /* Initialize the vmbus connection */
vmbus_connection.ConnectState = Connecting; vmbus_connection.conn_state = CONNECTING;
vmbus_connection.WorkQueue = create_workqueue("hv_vmbus_con"); vmbus_connection.work_queue = create_workqueue("hv_vmbus_con");
if (!vmbus_connection.WorkQueue) { if (!vmbus_connection.work_queue) {
ret = -1; ret = -1;
goto Cleanup; goto Cleanup;
} }
INIT_LIST_HEAD(&vmbus_connection.ChannelMsgList); INIT_LIST_HEAD(&vmbus_connection.chn_msg_list);
spin_lock_init(&vmbus_connection.channelmsg_lock); spin_lock_init(&vmbus_connection.channelmsg_lock);
INIT_LIST_HEAD(&vmbus_connection.ChannelList); INIT_LIST_HEAD(&vmbus_connection.chn_list);
spin_lock_init(&vmbus_connection.channel_lock); spin_lock_init(&vmbus_connection.channel_lock);
/* /*
* Setup the vmbus event connection for channel interrupt * Setup the vmbus event connection for channel interrupt
* abstraction stuff * abstraction stuff
*/ */
vmbus_connection.InterruptPage = osd_page_alloc(1); vmbus_connection.int_page = osd_page_alloc(1);
if (vmbus_connection.InterruptPage == NULL) { if (vmbus_connection.int_page == NULL) {
ret = -1; ret = -1;
goto Cleanup; goto Cleanup;
} }
vmbus_connection.RecvInterruptPage = vmbus_connection.InterruptPage; vmbus_connection.recv_int_page = vmbus_connection.int_page;
vmbus_connection.SendInterruptPage = vmbus_connection.send_int_page =
(void *)((unsigned long)vmbus_connection.InterruptPage + (void *)((unsigned long)vmbus_connection.int_page +
(PAGE_SIZE >> 1)); (PAGE_SIZE >> 1));
/* /*
* Setup the monitor notification facility. The 1st page for * Setup the monitor notification facility. The 1st page for
* parent->child and the 2nd page for child->parent * parent->child and the 2nd page for child->parent
*/ */
vmbus_connection.MonitorPages = osd_page_alloc(2); vmbus_connection.monitor_pages = osd_page_alloc(2);
if (vmbus_connection.MonitorPages == NULL) { if (vmbus_connection.monitor_pages == NULL) {
ret = -1; ret = -1;
goto Cleanup; goto Cleanup;
} }
@ -105,10 +105,10 @@ int vmbus_connect(void)
msg->header.msgtype = CHANNELMSG_INITIATE_CONTACT; msg->header.msgtype = CHANNELMSG_INITIATE_CONTACT;
msg->vmbus_version_requested = VMBUS_REVISION_NUMBER; msg->vmbus_version_requested = VMBUS_REVISION_NUMBER;
msg->interrupt_page = virt_to_phys(vmbus_connection.InterruptPage); msg->interrupt_page = virt_to_phys(vmbus_connection.int_page);
msg->monitor_page1 = virt_to_phys(vmbus_connection.MonitorPages); msg->monitor_page1 = virt_to_phys(vmbus_connection.monitor_pages);
msg->monitor_page2 = virt_to_phys( msg->monitor_page2 = virt_to_phys(
(void *)((unsigned long)vmbus_connection.MonitorPages + (void *)((unsigned long)vmbus_connection.monitor_pages +
PAGE_SIZE)); PAGE_SIZE));
/* /*
@ -117,7 +117,7 @@ int vmbus_connect(void)
*/ */
spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
list_add_tail(&msginfo->msglistentry, list_add_tail(&msginfo->msglistentry,
&vmbus_connection.ChannelMsgList); &vmbus_connection.chn_msg_list);
spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
@ -141,7 +141,7 @@ int vmbus_connect(void)
/* Check if successful */ /* Check if successful */
if (msginfo->response.version_response.version_supported) { if (msginfo->response.version_response.version_supported) {
DPRINT_INFO(VMBUS, "Vmbus connected!!"); DPRINT_INFO(VMBUS, "Vmbus connected!!");
vmbus_connection.ConnectState = Connected; vmbus_connection.conn_state = CONNECTED;
} else { } else {
DPRINT_ERR(VMBUS, "Vmbus connection failed!!..." DPRINT_ERR(VMBUS, "Vmbus connection failed!!..."
@ -156,19 +156,19 @@ int vmbus_connect(void)
return 0; return 0;
Cleanup: Cleanup:
vmbus_connection.ConnectState = Disconnected; vmbus_connection.conn_state = DISCONNECTED;
if (vmbus_connection.WorkQueue) if (vmbus_connection.work_queue)
destroy_workqueue(vmbus_connection.WorkQueue); destroy_workqueue(vmbus_connection.work_queue);
if (vmbus_connection.InterruptPage) { if (vmbus_connection.int_page) {
osd_page_free(vmbus_connection.InterruptPage, 1); osd_page_free(vmbus_connection.int_page, 1);
vmbus_connection.InterruptPage = NULL; vmbus_connection.int_page = NULL;
} }
if (vmbus_connection.MonitorPages) { if (vmbus_connection.monitor_pages) {
osd_page_free(vmbus_connection.MonitorPages, 2); osd_page_free(vmbus_connection.monitor_pages, 2);
vmbus_connection.MonitorPages = NULL; vmbus_connection.monitor_pages = NULL;
} }
if (msginfo) { if (msginfo) {
@ -189,7 +189,7 @@ int vmbus_disconnect(void)
struct vmbus_channel_message_header *msg; struct vmbus_channel_message_header *msg;
/* Make sure we are connected */ /* Make sure we are connected */
if (vmbus_connection.ConnectState != Connected) if (vmbus_connection.conn_state != CONNECTED)
return -1; return -1;
msg = kzalloc(sizeof(struct vmbus_channel_message_header), GFP_KERNEL); msg = kzalloc(sizeof(struct vmbus_channel_message_header), GFP_KERNEL);
@ -203,12 +203,12 @@ int vmbus_disconnect(void)
if (ret != 0) if (ret != 0)
goto Cleanup; goto Cleanup;
osd_page_free(vmbus_connection.InterruptPage, 1); osd_page_free(vmbus_connection.int_page, 1);
/* TODO: iterate thru the msg list and free up */ /* TODO: iterate thru the msg list and free up */
destroy_workqueue(vmbus_connection.WorkQueue); destroy_workqueue(vmbus_connection.work_queue);
vmbus_connection.ConnectState = Disconnected; vmbus_connection.conn_state = DISCONNECTED;
DPRINT_INFO(VMBUS, "Vmbus disconnected!!"); DPRINT_INFO(VMBUS, "Vmbus disconnected!!");
@ -228,7 +228,7 @@ struct vmbus_channel *relid2channel(u32 relid)
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&vmbus_connection.channel_lock, flags); spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
list_for_each_entry(channel, &vmbus_connection.ChannelList, listentry) { list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
if (channel->offermsg.child_relid == relid) { if (channel->offermsg.child_relid == relid) {
found_channel = channel; found_channel = channel;
break; break;
@ -276,7 +276,7 @@ void vmbus_on_event(void)
int maxdword = MAX_NUM_CHANNELS_SUPPORTED >> 5; int maxdword = MAX_NUM_CHANNELS_SUPPORTED >> 5;
int bit; int bit;
int relid; int relid;
u32 *recv_int_page = vmbus_connection.RecvInterruptPage; u32 *recv_int_page = vmbus_connection.recv_int_page;
/* Check events */ /* Check events */
if (recv_int_page) { if (recv_int_page) {
@ -326,7 +326,7 @@ int vmbus_set_event(u32 child_relid)
{ {
/* Each u32 represents 32 channels */ /* Each u32 represents 32 channels */
set_bit(child_relid & 31, set_bit(child_relid & 31,
(unsigned long *)vmbus_connection.SendInterruptPage + (unsigned long *)vmbus_connection.send_int_page +
(child_relid >> 5)); (child_relid >> 5));
return hv_signal_event(); return hv_signal_event();

View File

@ -239,7 +239,7 @@ static void vmbus_on_msg_dpc(struct hv_driver *drv)
continue; continue;
INIT_WORK(&ctx->work, vmbus_onmessage_work); INIT_WORK(&ctx->work, vmbus_onmessage_work);
memcpy(&ctx->msg, msg, sizeof(*msg)); memcpy(&ctx->msg, msg, sizeof(*msg));
queue_work(vmbus_connection.WorkQueue, &ctx->work); queue_work(vmbus_connection.work_queue, &ctx->work);
} }
msg->header.message_type = HVMSG_NONE; msg->header.message_type = HVMSG_NONE;

View File

@ -45,19 +45,19 @@
#define MAX_NUM_CHANNELS_SUPPORTED 256 #define MAX_NUM_CHANNELS_SUPPORTED 256
enum VMBUS_CONNECT_STATE { enum vmbus_connect_state {
Disconnected, DISCONNECTED,
Connecting, CONNECTING,
Connected, CONNECTED,
Disconnecting DISCONNECTING
}; };
#define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT #define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT
struct VMBUS_CONNECTION { struct vmbus_connection {
enum VMBUS_CONNECT_STATE ConnectState; enum vmbus_connect_state conn_state;
atomic_t NextGpadlHandle; atomic_t next_gpadl_handle;
/* /*
* Represents channel interrupts. Each bit position represents a * Represents channel interrupts. Each bit position represents a
@ -66,39 +66,39 @@ struct VMBUS_CONNECTION {
* event. The other end receives the port event and parse the * event. The other end receives the port event and parse the
* recvInterruptPage to see which bit is set * recvInterruptPage to see which bit is set
*/ */
void *InterruptPage; void *int_page;
void *SendInterruptPage; void *send_int_page;
void *RecvInterruptPage; void *recv_int_page;
/* /*
* 2 pages - 1st page for parent->child notification and 2nd * 2 pages - 1st page for parent->child notification and 2nd
* is child->parent notification * is child->parent notification
*/ */
void *MonitorPages; void *monitor_pages;
struct list_head ChannelMsgList; struct list_head chn_msg_list;
spinlock_t channelmsg_lock; spinlock_t channelmsg_lock;
/* List of channels */ /* List of channels */
struct list_head ChannelList; struct list_head chn_list;
spinlock_t channel_lock; spinlock_t channel_lock;
struct workqueue_struct *WorkQueue; struct workqueue_struct *work_queue;
}; };
struct VMBUS_MSGINFO { struct vmbus_msginfo {
/* Bookkeeping stuff */ /* Bookkeeping stuff */
struct list_head MsgListEntry; struct list_head msglist_entry;
/* Synchronize the request/response if needed */ /* Synchronize the request/response if needed */
struct osd_waitevent *WaitEvent; struct osd_waitevent *wait_event;
/* The message itself */ /* The message itself */
unsigned char Msg[0]; unsigned char msg[0];
}; };
extern struct VMBUS_CONNECTION vmbus_connection; extern struct vmbus_connection vmbus_connection;
/* General vmbus interface */ /* General vmbus interface */