> Probably no need to go on the next line, you are allowed to go to 100 characters per line.
> If a second line is needed, only 2 tabs are required.
>
> Why zmalloc? Probably no need to zero it.
I figured since it was only IFNAMSIZ bytes it wouldn't matter because
this will run once at startup. I can use rte_malloc instead.
> We can use a string-specialized function, like strlcpy.
I used memcpy because it was used before this line for the same exact job.
Will post another patch with rte_malloc and strlcpy.