mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
util: minor comment/formatting changes to virNetDevTapCreate()
The comment about auto-generating names was obsoleted by recent changes, and there was an unnecessary set of braces around a single line conditional body. Signed-off-by: Laine Stump <laine@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
b36569ec77
commit
4974872abc
@ -174,15 +174,14 @@ int virNetDevTapCreate(char **ifname,
|
||||
int ret = -1;
|
||||
int fd = -1;
|
||||
|
||||
/* if ifname is "vnet%d", then auto-generate a name for the new
|
||||
/* if ifname is empty, then auto-generate a name for the new
|
||||
* device (the kernel could do this for us, but has a bad habit of
|
||||
* immediately re-using names that have just been released, which
|
||||
* can lead to race conditions).
|
||||
* if ifname is just a user-provided name, virNetDevGenerateName
|
||||
* leaves it unchanged. */
|
||||
if (virNetDevGenerateName(ifname, VIR_NET_DEV_GEN_NAME_VNET) < 0) {
|
||||
* can lead to race conditions). if ifname is just a
|
||||
* user-provided name, virNetDevGenerateName leaves it
|
||||
* unchanged. */
|
||||
if (virNetDevGenerateName(ifname, VIR_NET_DEV_GEN_NAME_VNET) < 0)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!tunpath)
|
||||
tunpath = "/dev/net/tun";
|
||||
|
Loading…
Reference in New Issue
Block a user