search for: nc0

Displaying 3 results from an estimated 3 matches for "nc0".

Did you mean: c0
2003 Aug 14
0
Problem joining NT 4 PDC
...e/%U winbind uid = 10000-20000 winbind gid = 10000-20000 workgroup = RED_EINFANTIL security = domain winbind used default domain = yes password server = * log level = 0 encrypt passwords = yes I join my linux box to the Domain with: nc0:~# net join -S EINFANTIL -U Administrator [2003/08/14 11:17:11, 1] param/loadparm.c:lp_do_parameter(3114) WARNING: The "winbind uid" option is deprecated [2003/08/14 11:17:11, 1] param/loadparm.c:lp_do_parameter(3114) WARNING: The "winbind gid" option is deprecated [2003/08/...
2023 Mar 06
0
[PATCH v4 01/15] vdpa net: move iova tree creation from init to start
...any vdpa net client, get the netclient of first queue pair */ > > >>> +static VhostVDPAState *vhost_vdpa_net_first_nc_vdpa(VhostVDPAState *s) > > >>> +{ > > >>> + NICState *nic = qemu_get_nic(s->nc.peer); > > >>> + NetClientState *nc0 = qemu_get_peer(nic->ncs, 0); > > >>> + > > >>> + return DO_UPCAST(VhostVDPAState, nc, nc0); > > >>> +} > > >>> + > > >>> +static void vhost_vdpa_net_data_start_first(VhostVDPAState *s) > > >>> +{ > &...
2023 Feb 22
0
[PATCH v2 07/13] vdpa: add vdpa net migration state notifier
...vhost_vdpa vhost_vdpa; > + Notifier migration_state; > VHostNetState *vhost_net; > > /* Control commands shadow buffers */ > @@ -241,10 +243,79 @@ static VhostVDPAState *vhost_vdpa_net_first_nc_vdpa(VhostVDPAState *s) > return DO_UPCAST(VhostVDPAState, nc, nc0); > } > > +static void vhost_vdpa_net_log_global_enable(VhostVDPAState *s, bool enable) > +{ > + struct vhost_vdpa *v = &s->vhost_vdpa; > + VirtIONet *n; > + VirtIODevice *vdev; > + int data_queue_pairs, cvq, r; > + NetClientState *peer; > +...