search for: no_pol

Displaying 4 results from an estimated 4 matches for "no_pol".

Did you mean: no_pop
2005 Apr 07
0
[OT] snmp not reporting traffic values for a network interface
...; buffer(): 35 (time P:46.14 | 0.28) 03:24:17 : H 3 : I 18 : P 60 : cisco_snmp_ping_get_rtt:rtt(): 0 -> buffer(): 36 (time P:0.43 | 0.17) 03:24:17 : H 3 : I 19 : P 60 : cisco_snmp_ping_get_rtt:rtt(): 0 -> buffer(): 37 (time P:0.18 | 0.15) 03:24:17 : H 3 : I 20 : P 60 : no_poller(): 0 -> rrd(*): storage_block_size:1024 - storage_block_count:516244 - storage_used_blocks:484896 (time P:0.21 | 21.22) 03:24:17 : H 3 : I 21 : P 60 : snmp_counter:load_average_5(.1.3..3.2): 0.10 -> buffer(): 38 (time P:47.36 | 0.21) Error in packet. Reason: notWritable (that objec...
2007 Dec 21
2
[Virtio-for-kvm] [PATCH 7/7] userspace virtio
.../ +int get_tap_fd(void *opaque); + /* SLIRP */ void do_info_slirp(void); diff --git a/qemu/vl.c b/qemu/vl.c index 26055a4..eef602a 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -3885,8 +3885,26 @@ typedef struct TAPState { VLANClientState *vc; int fd; char down_script[1024]; + int no_poll; } TAPState; +int get_tap_fd(void *opaque) +{ + TAPState *s = opaque; + + if (s) { + s->no_poll = 1; + return s->fd; + } + return -1; +} + +static int tap_read_poll(void *opaque) +{ + TAPState *s = opaque; + return (!s->no_poll); +} + static void tap_recei...
2007 Dec 21
2
[Virtio-for-kvm] [PATCH 7/7] userspace virtio
.../ +int get_tap_fd(void *opaque); + /* SLIRP */ void do_info_slirp(void); diff --git a/qemu/vl.c b/qemu/vl.c index 26055a4..eef602a 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -3885,8 +3885,26 @@ typedef struct TAPState { VLANClientState *vc; int fd; char down_script[1024]; + int no_poll; } TAPState; +int get_tap_fd(void *opaque) +{ + TAPState *s = opaque; + + if (s) { + s->no_poll = 1; + return s->fd; + } + return -1; +} + +static int tap_read_poll(void *opaque) +{ + TAPState *s = opaque; + return (!s->no_poll); +} + static void tap_recei...
2019 Apr 04
1
Proof of concept for GPU forwarding for Linux guest on Linux host.
Hi, This is a proof of concept of GPU forwarding for Linux guest on Linux host. I'd like to get comments and suggestions from community before I put more time on it. To summarize what it is: 1. It's a solution to bring GPU acceleration for Linux vm guest on Linux host. It could works with different GPU although the current proof of concept only works with Intel GPU. 2. The basic idea