Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc10f871 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

xen-netback: Fix logging message with spurious period after newline



Using a period after a newline causes bad output.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Reviewed-by: default avatarPaul Durrant <paul.durrant@citrix.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 134059fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}