<div dir="ltr"><div>   If a device returns an empty string for inquiry data the current multipath tool ignores it on reload.  I added the following patch and I can hotplug these devices that don't return all the proper data.<br><br>diff --git a/libmultipath/util.c b/libmultipath/util.c<br>index ac0d1b2..045e660 100644<br>--- a/libmultipath/util.c<br>+++ b/libmultipath/util.c<br>@@ -17,6 +17,10 @@ strchop(char *str)<br> <br>        for (i=strlen(str)-1; i >=0 && isspace(str[i]); --i) ;<br>        str[++i] = '\0';<br>+       if(strlen(str)==0)<br>+       {<br>+               strcpy(str,"none");<br>+       }<br>        return strlen(str);<br> }<br><br></div>James Shoemaker<br></div>