Commit 8ef2c3bc authored by Wei Liu's avatar Wei Liu Committed by David S. Miller

xen-netback: xenbus.c: use more current logging styles

Convert one printk to pr_<level>.

Add a missing newline in several places to avoid message interleaving,
coalesce formats, reflow modified lines to 80 columns.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarWei Liu <wei.liu2@citrix.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b48410b4
...@@ -130,7 +130,7 @@ static int netback_probe(struct xenbus_device *dev, ...@@ -130,7 +130,7 @@ static int netback_probe(struct xenbus_device *dev,
"feature-split-event-channels", "feature-split-event-channels",
"%u", separate_tx_rx_irq); "%u", separate_tx_rx_irq);
if (err) if (err)
pr_debug("Error writing feature-split-event-channels"); pr_debug("Error writing feature-split-event-channels\n");
err = xenbus_switch_state(dev, XenbusStateInitWait); err = xenbus_switch_state(dev, XenbusStateInitWait);
if (err) if (err)
...@@ -145,7 +145,7 @@ static int netback_probe(struct xenbus_device *dev, ...@@ -145,7 +145,7 @@ static int netback_probe(struct xenbus_device *dev,
xenbus_transaction_end(xbt, 1); xenbus_transaction_end(xbt, 1);
xenbus_dev_fatal(dev, err, "%s", message); xenbus_dev_fatal(dev, err, "%s", message);
fail: fail:
pr_debug("failed"); pr_debug("failed\n");
netback_remove(dev); netback_remove(dev);
return err; return err;
} }
...@@ -228,15 +228,14 @@ static void frontend_changed(struct xenbus_device *dev, ...@@ -228,15 +228,14 @@ static void frontend_changed(struct xenbus_device *dev,
{ {
struct backend_info *be = dev_get_drvdata(&dev->dev); struct backend_info *be = dev_get_drvdata(&dev->dev);
pr_debug("frontend state %s", xenbus_strstate(frontend_state)); pr_debug("frontend state %s\n", xenbus_strstate(frontend_state));
be->frontend_state = frontend_state; be->frontend_state = frontend_state;
switch (frontend_state) { switch (frontend_state) {
case XenbusStateInitialising: case XenbusStateInitialising:
if (dev->state == XenbusStateClosed) { if (dev->state == XenbusStateClosed) {
printk(KERN_INFO "%s: %s: prepare for reconnect\n", pr_info("%s: prepare for reconnect\n", dev->nodename);
__func__, dev->nodename);
xenbus_switch_state(dev, XenbusStateInitWait); xenbus_switch_state(dev, XenbusStateInitWait);
} }
break; break;
......
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