From 259af925d72988bd35055dfd337bf1635afd3ff7 Mon Sep 17 00:00:00 2001
From: Bob Gilligan <gilligan@vyatta.com>
Date: Tue, 8 Dec 2009 12:27:52 -0800
Subject: Bugfix 5143: Fix grep regex for NICs with >= 10 queues.

---
 scripts/vyatta-auto-irqaffin.pl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'scripts')

diff --git a/scripts/vyatta-auto-irqaffin.pl b/scripts/vyatta-auto-irqaffin.pl
index fa58420..8ba17ff 100644
--- a/scripts/vyatta-auto-irqaffin.pl
+++ b/scripts/vyatta-auto-irqaffin.pl
@@ -136,12 +136,12 @@ sub intel_func{
 	log_msg ("queue=$queue cpu=$cpu cpu_bit=$cpu_bit cpu_hex=$cpu_hex\n");
 	
 	# Get the IRQ number for RX queue
-	my $rx_irq=`grep "$ifname-rx-$queue" /proc/interrupts | awk -F: '{print \$1}'`;
+	my $rx_irq=`grep "$ifname-rx-$queue\$" /proc/interrupts | awk -F: '{print \$1}'`;
 	$rx_irq =~ s/\n//;
 	$rx_irq =~ s/ //g;
 
 	# Get the IRQ number for TX queue
-	my $tx_irq=`grep "$ifname-tx-$queue" /proc/interrupts | awk -F: '{print \$1}'`;
+	my $tx_irq=`grep "$ifname-tx-$queue\$" /proc/interrupts | awk -F: '{print \$1}'`;
 	$tx_irq =~ s/\n//;
 	$tx_irq =~ s/ //g;
 
@@ -209,7 +209,7 @@ sub broadcom_func{
 	log_msg ("queue=$queue cpu=$cpu cpu_bit=$cpu_bit cpu_hex=$cpu_hex\n");
 	
 	# Get the IRQ number for the queue
-	my $irq=`grep "$ifname-$queue" /proc/interrupts | awk -F: '{print \$1}'`;
+	my $irq=`grep "$ifname-$queue\$" /proc/interrupts | awk -F: '{print \$1}'`;
 	$irq =~ s/\n//;
 	$irq =~ s/ //g;
 
-- 
cgit v1.2.3