Netdev List
 help / color / mirror / Atom feed
* [PATCH] xen-netback: Fix logging message with spurious period after newline
@ 2017-12-06  6:40 Joe Perches
  2017-12-06  9:30 ` Paul Durrant
  2017-12-06 20:10 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Joe Perches @ 2017-12-06  6:40 UTC (permalink / raw)
  To: Wei Liu, Paul Durrant; +Cc: xen-devel, netdev, linux-kernel

Using a period after a newline causes bad output.

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/xen-netback/interface.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c
index d6dff347f896..78ebe494fef0 100644
--- a/drivers/net/xen-netback/interface.c
+++ b/drivers/net/xen-netback/interface.c
@@ -186,7 +186,7 @@ static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
 	/* Obtain the queue to be used to transmit this packet */
 	index = skb_get_queue_mapping(skb);
 	if (index >= num_queues) {
-		pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n.",
+		pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n",
 				    index, vif->dev->name);
 		index %= num_queues;
 	}
-- 
2.15.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-12-06 20:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-06  6:40 [PATCH] xen-netback: Fix logging message with spurious period after newline Joe Perches
2017-12-06  9:30 ` Paul Durrant
2017-12-06 20:10 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox