Daniel P. Berrange wrote:

> On Thu, Mar 20, 2014 at 09:39:21AM +0100, Wojciech Macek wrote:
> > Add support for MAC address configuration no network bridge
> > interface.

s/ no / on /

> > ---
> >  src/bhyve/bhyve_command.c | 6 +++++-
> >  1 file changed, 5 insertions(+), 1 deletion(-)
> > 
> > diff --git a/src/bhyve/bhyve_command.c b/src/bhyve/bhyve_command.c
> > index 15029cd..42cab10 100644
> > --- a/src/bhyve/bhyve_command.c
> > +++ b/src/bhyve/bhyve_command.c
> > @@ -176,7 +176,11 @@ bhyveBuildNetArgStr(const virDomainDef *def, 
> > virCommandPtr cmd)
> >      }
> >  
> >      virCommandAddArg(cmd, "-s");
> > -    virCommandAddArgFormat(cmd, "1:0,virtio-net,%s", realifname);
> > +    virCommandAddArgFormat(cmd, 
> > "1:0,virtio-net,%s,mac=%02x:%02x:%02x:%02x:%02x:%02x",
> > +                           realifname,
> > +                           net->mac.addr[0], net->mac.addr[1],
> > +                           net->mac.addr[2], net->mac.addr[3],
> > +                           net->mac.addr[4], net->mac.addr[5]);
> >  
> >      return 0;
> >  }
> 
> ACK

Pushed with changing MAC address formatting to use virMacAddrFormat().

Roman Bogorodskiy

Attachment: pgpUFhHD7ZrOY.pgp
Description: PGP signature

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to