Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248954
b: refs/heads/master
c: 0a46618
h: refs/heads/master
v: v3
  • Loading branch information
Hank Janssen authored and Greg Kroah-Hartman committed Apr 5, 2011
1 parent 8e9e40c commit b94dec6
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 52 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8de61e31466a87cf77231db52ff9c94ddb1f758b
refs/heads/master: 0a46618d58c90f93e8b8e9a18062d1691b70297e
9 changes: 6 additions & 3 deletions trunk/drivers/staging/hv/channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* Haiyang Zhang <haiyangz@microsoft.com>
* Hank Janssen <hjanssen@microsoft.com>
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/wait.h>
Expand Down Expand Up @@ -898,7 +900,7 @@ int vmbus_recvpacket(struct vmbus_channel *channel, void *buffer,
if (userlen > bufferlen) {
spin_unlock_irqrestore(&channel->inbound_lock, flags);

DPRINT_ERR(VMBUS, "buffer too small - got %d needs %d",
pr_err("Buffer too small - got %d needs %d\n",
bufferlen, userlen);
return -1;
}
Expand Down Expand Up @@ -950,8 +952,9 @@ int vmbus_recvpacket_raw(struct vmbus_channel *channel, void *buffer,
if (packetlen > bufferlen) {
spin_unlock_irqrestore(&channel->inbound_lock, flags);

DPRINT_ERR(VMBUS, "buffer too small - needed %d bytes but "
"got space for only %d bytes", packetlen, bufferlen);
pr_err("Buffer too small - needed %d bytes but "
"got space for only %d bytes\n",
packetlen, bufferlen);
return -2;
}

Expand Down
25 changes: 12 additions & 13 deletions trunk/drivers/staging/hv/channel_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* Haiyang Zhang <haiyangz@microsoft.com>
* Hank Janssen <hjanssen@microsoft.com>
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/wait.h>
Expand Down Expand Up @@ -403,8 +405,7 @@ static void vmbus_process_offer(struct work_struct *work)
*/
ret = vmbus_child_device_register(newchannel->device_obj);
if (ret != 0) {
DPRINT_ERR(VMBUS,
"unable to add child device object (relid %d)",
pr_err("unable to add child device object (relid %d)\n",
newchannel->offermsg.child_relid);

spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Expand All @@ -430,8 +431,9 @@ static void vmbus_process_offer(struct work_struct *work)
hv_cb_utils[cnt].callback,
newchannel) == 0) {
hv_cb_utils[cnt].channel = newchannel;
DPRINT_INFO(VMBUS, "%s",
hv_cb_utils[cnt].log_msg);

pr_info("%s\n", hv_cb_utils[cnt].log_msg);

count_hv_channel();
}
}
Expand Down Expand Up @@ -472,7 +474,7 @@ static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
/* Allocate the channel object and save this offer. */
newchannel = alloc_channel();
if (!newchannel) {
DPRINT_ERR(VMBUS, "unable to allocate channel object");
pr_err("Unable to allocate channel object\n");
return;
}

Expand Down Expand Up @@ -730,8 +732,7 @@ void vmbus_onmessage(void *context)
size = msg->header.payload_size;

if (hdr->msgtype >= CHANNELMSG_COUNT) {
DPRINT_ERR(VMBUS,
"Received invalid channel message type %d size %d",
pr_err("Received invalid channel message type %d size %d\n",
hdr->msgtype, size);
print_hex_dump_bytes("", DUMP_PREFIX_NONE,
(unsigned char *)msg->u.payload, size);
Expand All @@ -741,8 +742,7 @@ void vmbus_onmessage(void *context)
if (gChannelMessageTable[hdr->msgtype].messageHandler)
gChannelMessageTable[hdr->msgtype].messageHandler(hdr);
else
DPRINT_ERR(VMBUS, "Unhandled channel message type %d",
hdr->msgtype);
pr_err("Unhandled channel message type %d\n", hdr->msgtype);
}

/*
Expand Down Expand Up @@ -770,7 +770,7 @@ int vmbus_request_offers(void)
ret = vmbus_post_msg(msg,
sizeof(struct vmbus_channel_message_header));
if (ret != 0) {
DPRINT_ERR(VMBUS, "Unable to request offers - %d", ret);
pr_err("Unable to request offers - %d\n", ret);

goto cleanup;
}
Expand Down Expand Up @@ -810,9 +810,8 @@ void vmbus_release_unattached_channels(void)

if (!channel->device_obj->drv) {
list_del(&channel->listentry);
DPRINT_INFO(VMBUS,
"Releasing unattached device object %p",
channel->device_obj);

pr_err("Releasing unattached device object\n");

vmbus_child_device_unregister(channel->device_obj);
free_channel(channel);
Expand Down
12 changes: 7 additions & 5 deletions trunk/drivers/staging/hv/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* Hank Janssen <hjanssen@microsoft.com>
*
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/wait.h>
Expand Down Expand Up @@ -153,9 +155,9 @@ int vmbus_connect(void)
if (msginfo->response.version_response.version_supported) {
vmbus_connection.conn_state = CONNECTED;
} else {
DPRINT_ERR(VMBUS, "Vmbus connection failed!!..."
"current version (%d) not supported",
VMBUS_REVISION_NUMBER);
pr_err("Unable to connect, "
"Version %d not supported by Hyper-V\n",
VMBUS_REVISION_NUMBER);
ret = -1;
goto Cleanup;
}
Expand Down Expand Up @@ -216,7 +218,7 @@ int vmbus_disconnect(void)

vmbus_connection.conn_state = DISCONNECTED;

DPRINT_INFO(VMBUS, "Vmbus disconnected!!");
pr_info("hv_vmbus disconnected\n");

Cleanup:
kfree(msg);
Expand Down Expand Up @@ -269,7 +271,7 @@ static void process_chn_event(void *context)
* (void*)channel);
*/
} else {
DPRINT_ERR(VMBUS, "channel not found for relid - %d.", relid);
pr_err("channel not found for relid - %d\n", relid);
}
}

Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/staging/hv/hv.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* Hank Janssen <hjanssen@microsoft.com>
*
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/slab.h>
Expand Down Expand Up @@ -116,7 +118,7 @@ static int query_hypervisor_info(void)
edx = 0;
op = HVCPUID_VERSION;
cpuid(op, &eax, &ebx, &ecx, &edx);
DPRINT_INFO(VMBUS, "OS Build:%d-%d.%d-%d-%d.%d",\
pr_info("Hyper-V Host OS Build:%d-%d.%d-%d-%d.%d\n",
eax,
ebx >> 16,
ebx & 0xFFFF,
Expand Down Expand Up @@ -369,17 +371,15 @@ void hv_synic_init(void *irqarg)
(void *)get_zeroed_page(GFP_ATOMIC);

if (hv_context.synic_message_page[cpu] == NULL) {
DPRINT_ERR(VMBUS,
"unable to allocate SYNIC message page!!");
pr_err("Unable to allocate SYNIC message page\n");
goto Cleanup;
}

hv_context.synic_event_page[cpu] =
(void *)get_zeroed_page(GFP_ATOMIC);

if (hv_context.synic_event_page[cpu] == NULL) {
DPRINT_ERR(VMBUS,
"unable to allocate SYNIC event page!!");
pr_err("Unable to allocate SYNIC event page\n");
goto Cleanup;
}

Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/staging/hv/ring_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* Hank Janssen <hjanssen@microsoft.com>
*
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/mm.h>
Expand Down
43 changes: 18 additions & 25 deletions trunk/drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
*
* 3/9/2011: K. Y. Srinivasan - Significant restructuring and cleanup
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
Expand Down Expand Up @@ -350,18 +352,16 @@ static int vmbus_probe(struct device *child_device)
ret = dev->probe_error =
drv->driver.probe(child_device);
if (ret != 0) {
DPRINT_ERR(VMBUS_DRV, "probe() failed for device %s "
"(%p) on driver %s (%d)...",
dev_name(child_device), child_device,
child_device->driver->name, ret);
pr_err("probe failed for device %s (%d)\n",
dev_name(child_device), ret);

INIT_WORK(&dev->probe_failed_work_item,
vmbus_probe_failed_cb);
schedule_work(&dev->probe_failed_work_item);
}
} else {
DPRINT_ERR(VMBUS_DRV, "probe() method not set for driver - %s",
child_device->driver->name);
pr_err("probe not set for driver %s\n",
dev_name(child_device));
ret = -1;
}
return ret;
Expand All @@ -386,9 +386,8 @@ static int vmbus_remove(struct device *child_device)
if (drv->driver.remove) {
ret = drv->driver.remove(child_device);
} else {
DPRINT_ERR(VMBUS_DRV,
"remove() method not set for driver - %s",
child_device->driver->name);
pr_err("remove not set for driver %s\n",
dev_name(child_device));
ret = -1;
}
}
Expand Down Expand Up @@ -572,12 +571,10 @@ static int vmbus_bus_init(struct pci_dev *pdev)
/* Hypervisor initialization...setup hypercall page..etc */
ret = hv_init();
if (ret != 0) {
DPRINT_ERR(VMBUS, "Unable to initialize the hypervisor - 0x%x",
ret);
pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
goto cleanup;
}


hv_bus.bus.name = driver_name;

/* Initialize the bus context */
Expand All @@ -599,7 +596,7 @@ static int vmbus_bus_init(struct pci_dev *pdev)
driver_name, pdev);

if (ret != 0) {
DPRINT_ERR(VMBUS_DRV, "ERROR - Unable to request IRQ %d",
pr_err("Unable to request IRQ %d\n",
pdev->irq);

bus_unregister(&hv_bus.bus);
Expand Down Expand Up @@ -669,8 +666,7 @@ int vmbus_child_driver_register(struct device_driver *drv)
{
int ret;

DPRINT_INFO(VMBUS_DRV, "child driver (%p) registering - name %s",
drv, drv->name);
pr_info("child driver registering - name %s\n", drv->name);

/* The child driver on this vmbus */
drv->bus = &hv_bus.bus;
Expand All @@ -695,8 +691,7 @@ EXPORT_SYMBOL(vmbus_child_driver_register);
*/
void vmbus_child_driver_unregister(struct device_driver *drv)
{
DPRINT_INFO(VMBUS_DRV, "child driver (%p) unregistering - name %s",
drv, drv->name);
pr_info("child driver unregistering - name %s\n", drv->name);

driver_unregister(drv);

Expand All @@ -717,8 +712,7 @@ struct hv_device *vmbus_child_device_create(struct hv_guid *type,
/* Allocate the new child device */
child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
if (!child_device_obj) {
DPRINT_ERR(VMBUS_DRV,
"unable to allocate device_context for child device");
pr_err("Unable to allocate device object for child device\n");
return NULL;
}

Expand Down Expand Up @@ -759,11 +753,10 @@ int vmbus_child_device_register(struct hv_device *child_device_obj)
ret = child_device_obj->probe_error;

if (ret)
DPRINT_ERR(VMBUS_DRV, "unable to register child device (%p)",
&child_device_obj->device);
pr_err("Unable to register child device\n");
else
DPRINT_INFO(VMBUS_DRV, "child device (%p) registered",
&child_device_obj->device);
pr_info("child device %s registered\n",
dev_name(&child_device_obj->device));

return ret;
}
Expand All @@ -780,8 +773,8 @@ void vmbus_child_device_unregister(struct hv_device *device_obj)
*/
device_unregister(&device_obj->device);

DPRINT_INFO(VMBUS_DRV, "child device (%p) unregistered",
&device_obj->device);
pr_info("child device %s unregistered\n",
dev_name(&device_obj->device));
}


Expand Down

0 comments on commit b94dec6

Please sign in to comment.