Re: [Qemu-devel] [PATCH v2 5/5] slirp: add a fake NC-SI backend

2017-04-13 Thread Cédric Le Goater
On 04/13/2017 04:08 PM, Samuel Thibault wrote: > Hello, > > Philippe Mathieu-Daudé, on jeu. 13 avril 2017 08:45:23 -0300, wrote: >>> The NCSI header file comes from mainline Linux > > Please mention within the file which file it comes from exactly. OK. >>> +case NCSI_PKT_CMD_SMA: >>> +

Re: [Qemu-devel] [PATCH v2 5/5] slirp: add a fake NC-SI backend

2017-04-13 Thread Cédric Le Goater
On 04/13/2017 01:45 PM, Philippe Mathieu-Daudé wrote: > > > On 04/13/2017 06:41 AM, Cédric Le Goater wrote: >> NC-SI (Network Controller Sideband Interface) enables a BMC to manage >> a set of NICs on a system. This model takes the simplest approach and >> reverses the NC-SI packets to pretend a

Re: [Qemu-devel] [PATCH v2 5/5] slirp: add a fake NC-SI backend

2017-04-13 Thread Samuel Thibault
Hello, Philippe Mathieu-Daudé, on jeu. 13 avril 2017 08:45:23 -0300, wrote: > > The NCSI header file comes from mainline Linux Please mention within the file which file it comes from exactly. > > +case NCSI_PKT_CMD_SMA: > > +rnh->common.length = htons(4); > > +break; > > +

Re: [Qemu-devel] [PATCH v2 5/5] slirp: add a fake NC-SI backend

2017-04-13 Thread Philippe Mathieu-Daudé
On 04/13/2017 06:41 AM, Cédric Le Goater wrote: NC-SI (Network Controller Sideband Interface) enables a BMC to manage a set of NICs on a system. This model takes the simplest approach and reverses the NC-SI packets to pretend a NIC is present and exercise the Linux driver. The NCSI header

[Qemu-devel] [PATCH v2 5/5] slirp: add a fake NC-SI backend

2017-04-13 Thread Cédric Le Goater
NC-SI (Network Controller Sideband Interface) enables a BMC to manage a set of NICs on a system. This model takes the simplest approach and reverses the NC-SI packets to pretend a NIC is present and exercise the Linux driver. The NCSI header file comes from mainline Linux and was untabified.