Displaying 13 results from an estimated 13 matches for "nictype".
Did you mean:
nctype
2012 Nov 23
1
[PATCH] nictype.c32: PXELINUX module to display UNDI NIC bus type...
Applies to Syslinux 4.06. Attached, below, and available at:
Repository: git://git.zytor.com/users/sha0/syslinux.git
Branch: nictype
- Shao Miller
-----
From 2764e260e12d9769e3b699e4213b9a164e64924a Mon Sep 17 00:00:00 2001
From: Shao Miller <sha0.miller at gmail.com>
Date: Thu, 22 Nov 2012 20:43:25 -0500
Subject: [PATCH] nictype.c32: PXELINUX module to display UNDI NIC bus
type...
...and optionally load a config-fil...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 4/7] userspace virtio
From bf5361f9b8b00f85e93cddf853f8f7f449c8d8c2 Mon Sep 17 00:00:00 2001
From: Dor Laor <dor.laor@qumranet.com>
Date: Sun, 9 Dec 2007 12:17:36 +0200
Subject: [PATCH] Add NIC vendor option to kvm python script
It allows picking other NIC vendors than rtl8139.
Use --nictype=xxx, the ddefault is rtl8139.
Signed-off-by: Dor Laor <dor.laor@qumranet.com>
---
kvm | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/kvm b/kvm
index 0374fbc..2a7dc85 100755
--- a/kvm
+++ b/kvm
@@ -55,6 +55,12 @@ optparser.add_option('--no-tap',...
2007 Dec 21
0
[Virtio-for-kvm] [PATCH 4/7] userspace virtio
From bf5361f9b8b00f85e93cddf853f8f7f449c8d8c2 Mon Sep 17 00:00:00 2001
From: Dor Laor <dor.laor@qumranet.com>
Date: Sun, 9 Dec 2007 12:17:36 +0200
Subject: [PATCH] Add NIC vendor option to kvm python script
It allows picking other NIC vendors than rtl8139.
Use --nictype=xxx, the ddefault is rtl8139.
Signed-off-by: Dor Laor <dor.laor@qumranet.com>
---
kvm | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/kvm b/kvm
index 0374fbc..2a7dc85 100755
--- a/kvm
+++ b/kvm
@@ -55,6 +55,12 @@ optparser.add_option('--no-tap',...
2018 Sep 14
0
virsh doesn't support vtpm using XEN?
..."nics": [
{
"devid": 0,
"mac": "00:16:3e:7c:04:3a",
"bridge": "bc_br0",
"script": "vif-bridge",
"nictype": "vif_ioemu"
},
{
"devid": 1,
"mac": "00:16:3e:b4:c1:c6",
"bridge": "mgmt_br0",
"script": "vif-bridge"...
2012 Aug 14
4
[PATCH] libxl: fix usage of backend parameter and run_hotplug_scripts
...in conjunction "
+ "with run_hotplug_scripts, please set run_hotplug_scripts "
+ "to 0 in xl.conf");
+ return ERROR_FAIL;
+ }
+
switch (libxl__domain_type(gc, domid)) {
case LIBXL_DOMAIN_TYPE_HVM:
if (!nic->nictype)
--
1.7.7.5 (Apple Git-26)
2011 Jan 11
0
[PATCH, v2]: xl: move domain struct init functions to libxl
...r[1];
+ nic_info->mac[5] = r[2];
+ nic_info->ifname = NULL;
+ nic_info->bridge = strdup("xenbr0");
+ if ( asprintf(&nic_info->script, "%s/vif-bridge",
+ libxl_xen_script_dir_path()) < 0 )
+ return ERROR_FAIL;
+ nic_info->nictype = NICTYPE_IOEMU;
+ return 0;
+}
+
int libxl_device_nic_add(libxl_ctx *ctx, uint32_t domid, libxl_device_nic *nic)
{
libxl__gc gc = LIBXL_INIT_GC(ctx);
@@ -1182,6 +1211,34 @@ err:
}
/******************************************************************************/
+void libxl_device_net2...
2013 Nov 25
22
[PATCH 0/4] Coverity fixes for tools/libxl
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
--
1.7.10.4
2010 Jun 28
8
[PATCH] add xl ocaml bindings
...E_QCOW
+ | PHYSTYPE_QCOW2
+ | PHYSTYPE_VHD
+ | PHYSTYPE_AIO
+ | PHYSTYPE_FILE
+ | PHYSTYPE_PHY
+
+type disk_info =
+{
+ backend_domid : domid;
+ physpath : string;
+ phystype : disk_phystype;
+ virtpath : string;
+ unpluggable : bool;
+ readwrite : bool;
+ is_cdrom : bool;
+}
+
+type nic_type =
+ | NICTYPE_IOEMU
+ | NICTYPE_VIF
+
+type nic_info =
+{
+ backend_domid : domid;
+ devid : int;
+ mtu : int;
+ model : string;
+ mac : int array;
+ bridge : string;
+ ifname : string;
+ script : string;
+ nictype : nic_type;
+}
+
+type console_type =
+ | CONSOLETYPE_XENCONSOLED
+ | CONSOLETYPE_IOEMU
+
+type co...
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in
the libxl interface followed by auto-generation of a destructor
function for each type. In the future it may be possible to use the
related data structures for other purposes, for example auto-generation
of the functions to marshal between C and language binding data types.
tools/_libxl_types.h should be identical both before
2013 Dec 01
70
[PATCH 00/13] Coverity fixes for libxl
Matthew Daley (13):
libxl: fix unsigned less-than-0 comparison in e820_sanitize
libxl: check for xc_domain_setmaxmem failure in libxl__build_pre
libxl: correct file open success check in libxl__device_pci_reset
libxl: don''t leak p in libxl__wait_for_backend
libxl: remove unsigned less-than-0 comparison
libxl: actually abort if initializing a ctx''s lock fails
libxl:
2012 May 20
2
Remus network buffering problem
...;vifs":[{"backend_domid":0,"devid":0,"mtu":0,"model":null,"mac":"00:16:3e:c4:65:79","ip":"192.168.2.201","bridge":"xenbr0","ifname":null,"script":"vif-bridge","nictype":null,"rate_bytes_per_interval":0,"rate_interval_usecs":0}],"pcidevs":[],"vfbs":[],"vkbs":[],"on_poweroff":"destroy","on_reboot":"restart","on_watchdog":"destroy","on_crash":...
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...avail");
- flexarray_set(dm_args, num++, libxl_sprintf(ctx, "0x%x", info->vcpu_avail));
+ flexarray_set(dm_args, num++, libxl_sprintf(gc, "0x%x", info->vcpu_avail));
}
for (i = 0; i < num_vifs; i++) {
if (vifs[i].nictype == NICTYPE_IOEMU) {
- char *smac = libxl_sprintf(ctx, "%02x:%02x:%02x:%02x:%02x:%02x",
+ char *smac = libxl_sprintf(gc, "%02x:%02x:%02x:%02x:%02x:%02x",
vifs[i].mac[0], vifs[i].mac[1], vifs[i].mac[2],...
2013 Oct 21
36
[PATCH 0 of 5 V3] Remus/Libxl: Network buffering support
This patch series adds support for network buffering in the Remus
codebase in libxl.
Changes in V3:
[1/5] Fix redundant checks in configure scripts
(based on Ian Campbell''s suggestions)
[2/5] Introduce locking in the script, during IFB setup.
Add xenstore paths used by netbuf scripts
to xenstore-paths.markdown
[3/5] Hotplug scripts setup/teardown invocations are now