提交 383eda32 编写于 作者: J Joe Perches 提交者: David S. Miller

xen: Use more current logging styles

Instead of mixing printk and pr_<level> forms,
just use pr_<level>

Miscellaneous changes around these conversions:

Add a missing newline to avoid message interleaving,
coalesce formats, reflow modified lines to 80 columns.
Signed-off-by: NJoe Perches <joe@perches.com>
Acked-by: NIan Campbell <ian.campbell@citrix.com>
Acked-by: NKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 772e42b0
...@@ -1890,9 +1890,8 @@ static int __init netback_init(void) ...@@ -1890,9 +1890,8 @@ static int __init netback_init(void)
return -ENODEV; return -ENODEV;
if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) { if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
printk(KERN_INFO pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
"xen-netback: fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n", fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX; fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
} }
...@@ -1921,7 +1920,7 @@ static int __init netback_init(void) ...@@ -1921,7 +1920,7 @@ static int __init netback_init(void)
"netback/%u", group); "netback/%u", group);
if (IS_ERR(netbk->task)) { if (IS_ERR(netbk->task)) {
printk(KERN_ALERT "kthread_create() fails at netback\n"); pr_alert("kthread_create() fails at netback\n");
del_timer(&netbk->net_timer); del_timer(&netbk->net_timer);
rc = PTR_ERR(netbk->task); rc = PTR_ERR(netbk->task);
goto failed_init; goto failed_init;
......
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
* IN THE SOFTWARE. * IN THE SOFTWARE.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
...@@ -385,9 +387,8 @@ static void xennet_tx_buf_gc(struct net_device *dev) ...@@ -385,9 +387,8 @@ static void xennet_tx_buf_gc(struct net_device *dev)
skb = np->tx_skbs[id].skb; skb = np->tx_skbs[id].skb;
if (unlikely(gnttab_query_foreign_access( if (unlikely(gnttab_query_foreign_access(
np->grant_tx_ref[id]) != 0)) { np->grant_tx_ref[id]) != 0)) {
printk(KERN_ALERT "xennet_tx_buf_gc: warning " pr_alert("%s: warning -- grant still in use by backend domain\n",
"-- grant still in use by backend " __func__);
"domain.\n");
BUG(); BUG();
} }
gnttab_end_foreign_access_ref( gnttab_end_foreign_access_ref(
...@@ -804,14 +805,14 @@ static int xennet_set_skb_gso(struct sk_buff *skb, ...@@ -804,14 +805,14 @@ static int xennet_set_skb_gso(struct sk_buff *skb,
{ {
if (!gso->u.gso.size) { if (!gso->u.gso.size) {
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_WARNING "GSO size must not be zero.\n"); pr_warn("GSO size must not be zero\n");
return -EINVAL; return -EINVAL;
} }
/* Currently only TCPv4 S.O. is supported. */ /* Currently only TCPv4 S.O. is supported. */
if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4) { if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4) {
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_WARNING "Bad GSO type %d.\n", gso->u.gso.type); pr_warn("Bad GSO type %d\n", gso->u.gso.type);
return -EINVAL; return -EINVAL;
} }
...@@ -910,9 +911,8 @@ static int checksum_setup(struct net_device *dev, struct sk_buff *skb) ...@@ -910,9 +911,8 @@ static int checksum_setup(struct net_device *dev, struct sk_buff *skb)
break; break;
default: default:
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_ERR "Attempting to checksum a non-" pr_err("Attempting to checksum a non-TCP/UDP packet, dropping a protocol %d packet\n",
"TCP/UDP packet, dropping a protocol" iph->protocol);
" %d packet", iph->protocol);
goto out; goto out;
} }
...@@ -1359,14 +1359,14 @@ static struct net_device *xennet_create_dev(struct xenbus_device *dev) ...@@ -1359,14 +1359,14 @@ static struct net_device *xennet_create_dev(struct xenbus_device *dev)
/* A grant for every tx ring slot */ /* A grant for every tx ring slot */
if (gnttab_alloc_grant_references(TX_MAX_TARGET, if (gnttab_alloc_grant_references(TX_MAX_TARGET,
&np->gref_tx_head) < 0) { &np->gref_tx_head) < 0) {
printk(KERN_ALERT "#### netfront can't alloc tx grant refs\n"); pr_alert("can't alloc tx grant refs\n");
err = -ENOMEM; err = -ENOMEM;
goto exit_free_stats; goto exit_free_stats;
} }
/* A grant for every rx ring slot */ /* A grant for every rx ring slot */
if (gnttab_alloc_grant_references(RX_MAX_TARGET, if (gnttab_alloc_grant_references(RX_MAX_TARGET,
&np->gref_rx_head) < 0) { &np->gref_rx_head) < 0) {
printk(KERN_ALERT "#### netfront can't alloc rx grant refs\n"); pr_alert("can't alloc rx grant refs\n");
err = -ENOMEM; err = -ENOMEM;
goto exit_free_tx; goto exit_free_tx;
} }
...@@ -1430,16 +1430,14 @@ static int netfront_probe(struct xenbus_device *dev, ...@@ -1430,16 +1430,14 @@ static int netfront_probe(struct xenbus_device *dev,
err = register_netdev(info->netdev); err = register_netdev(info->netdev);
if (err) { if (err) {
printk(KERN_WARNING "%s: register_netdev err=%d\n", pr_warn("%s: register_netdev err=%d\n", __func__, err);
__func__, err);
goto fail; goto fail;
} }
err = xennet_sysfs_addif(info->netdev); err = xennet_sysfs_addif(info->netdev);
if (err) { if (err) {
unregister_netdev(info->netdev); unregister_netdev(info->netdev);
printk(KERN_WARNING "%s: add sysfs failed err=%d\n", pr_warn("%s: add sysfs failed err=%d\n", __func__, err);
__func__, err);
goto fail; goto fail;
} }
...@@ -2116,7 +2114,7 @@ static int __init netif_init(void) ...@@ -2116,7 +2114,7 @@ static int __init netif_init(void)
if (xen_hvm_domain() && !xen_platform_pci_unplug) if (xen_hvm_domain() && !xen_platform_pci_unplug)
return -ENODEV; return -ENODEV;
printk(KERN_INFO "Initialising Xen virtual ethernet driver.\n"); pr_info("Initialising Xen virtual ethernet driver\n");
return xenbus_register_frontend(&netfront_driver); return xenbus_register_frontend(&netfront_driver);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册