Skip to content

Commit cc10f87

Browse files
JoePerchesdavem330
authored andcommitted
xen-netback: Fix logging message with spurious period after newline
Using a period after a newline causes bad output. Signed-off-by: Joe Perches <joe@perches.com> Reviewed-by: Paul Durrant <paul.durrant@citrix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 134059f commit cc10f87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/xen-netback/interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
186186
/* Obtain the queue to be used to transmit this packet */
187187
index = skb_get_queue_mapping(skb);
188188
if (index >= num_queues) {
189-
pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n.",
189+
pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n",
190190
index, vif->dev->name);
191191
index %= num_queues;
192192
}

0 commit comments

Comments
 (0)