<HTML dir=ltr><HEAD>
<META http-equiv=Content-Type content="text/html; charset=unicode">
<META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial color=#000000 size=2>Vlad,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Can you please pull qlvnictools.git before you build RC3 ?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT size=2>git://git.openfabrics.org/~ramachandrak/qlvnictools.git</FONT><BR></DIV>
<DIV><FONT face=Arial size=2>This contains a small fix to the vnic_parser.pl script (diff included below for your reference) that adds a check to enable configuration of </FONT><FONT face=Arial size=2>VNIC interfaces only for mthca as VNIC driver currently supports only MTHCA.</FONT></DIV>
<DIV><FONT face=Arial size=2>[This is a work around to prevent a kernel panic if user tries to configure VNIC interfaces with ipath</FONT><FONT face=Arial size=2>]</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Regards,</FONT></DIV>
<DIV><FONT face=Arial size=2>Ram</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT size=2>vnic_parser.pl |    5 +++++<BR> 1 files changed, 5 insertions(+), 0 deletions(-)<BR><BR>diff --git a/vnic_parser.pl b/vnic_parser.pl<BR>index cae63b2..bf44d69 100755<BR>--- a/vnic_parser.pl<BR>+++ b/vnic_parser.pl<BR>@@ -457,6 +457,11 @@ sub write_to_file{<BR>        $ioc_guid_found = 0;<BR>        if ($list =~ /.*$hca-$port/ ) {<BR>                $filename = $path.$&;<BR>+               if ($filename !~ /mthca/){<BR>+                       print_err("Error! HCA is incompatible with VNIC driver - currently only MTHCA is supported");<BR>+                       print_err("Aborting configuration of VNIC interfaces");<BR>+                       exit_check();<BR>+               }<BR>                if ( -d $filename){<BR>                        if( $_[3] == 1 ){<BR>                                $filename = $filename.$primary_file;</FONT></DIV></BODY></HTML>