search for: wakeups

Displaying 20 results from an estimated 826 matches for "wakeups".

Did you mean: wakeup
2009 Oct 21
2
too many wakeups/sec?
Hi, I would have filed this as a bug but bugs.xiph.org doesn't seem to work (despite quite enthusiastically claiming to :)). So here goes: I'm seeing quite a few wakeups/sec in icecast2 2.3.2 on Debian Testing. In fact, whether icecast is doing anything or not, powertop reports 44.3 wakeups per second. This is pretty big number, on my laptop it means icecast alone is responsible for every third wakeup on idle. I have no time to start digging through the code rig...
2009 Oct 21
2
too many wakeups/sec?
On Wed, Oct 21, 2009 at 5:53 PM, Karl Heyes <karl at xiph.org> wrote: >> I'm seeing quite a few wakeups/sec in icecast2 2.3.2 on Debian Testing. >> In fact, whether icecast is doing anything or not, powertop reports 44.3 >> wakeups per second. This is pretty big number, on my laptop it means >> icecast alone is responsible for every third wakeup on idle. > > This will vary dep...
2004 Jun 01
5
Some (lack of) answers regarding the wakeup call application...
Since I only seem to get questions, and no feedback, from the Wiki page, I'll ask here. There seems to be no lack of opinions here... I have a working wakeup call system on my home * system. The architecture is something I'm not perfectly happy with, though. There are two AGI scripts, written in Perl, which handle (a) scheduling, confirming, and cancelling a wakeup call, and (b) the
2012 Feb 08
28
[PATCH v3 0/6] initial suspend support
This patch series makes suspend support in qemu alot more useful. Right now the guest can put itself into s3, but qemu will wakeup the guest instantly. With this patch series applied the guest will stay suspended instead and there are a few events which can kick the guest out of suspend state: A monitor command, ps/2 input, serial input, rtc. Not much yet, but it''s a start with the
2006 Jan 16
1
making wakeup feature call phone number, not extension?
How would one go about setting up the wakeup feature of Asterisk to NOT call an extension, but to call a phone number? My setup works great for wakeup on local extensions, but I'd like to set it up to call external phone numbers automatically and play a specific sound file (to remind people of upcoming hair stylist appointments). I suppose either there'd have to be a web interface to
2018 Aug 03
2
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...in the dev work list. So two kinds of work, tx kick or tx wakeup. For tx kick, we check vhost_vq_avail_empty() and avoid unnecessary kicks by not enabling kick if we found something is pending on txq. For tx wakeup, yes, the commit does not consider it. And that's why we want to disable tx wakeups during busy polling. Thanks > >> So here's the needed changes: >> >> 1) Split the wakeup disabling to another patch >> 2) Squash the vhost_net_busy_poll_try_queue() and >> vhost_net_busy_poll_check() into vhost_net_busy_poll() and reduce >> duplicated ch...
2018 Aug 03
2
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...in the dev work list. So two kinds of work, tx kick or tx wakeup. For tx kick, we check vhost_vq_avail_empty() and avoid unnecessary kicks by not enabling kick if we found something is pending on txq. For tx wakeup, yes, the commit does not consider it. And that's why we want to disable tx wakeups during busy polling. Thanks > >> So here's the needed changes: >> >> 1) Split the wakeup disabling to another patch >> 2) Squash the vhost_net_busy_poll_try_queue() and >> vhost_net_busy_poll_check() into vhost_net_busy_poll() and reduce >> duplicated ch...
2010 Aug 31
1
fetchmail wakeup
Does someone know, if in the new release of dovecot 2.x.x there is a feature implemented, that wakes fetchmail or any other program on a client request, or is the "fetchmail wakeup" plugin still the only way to do this (at least I've not found any other, and that plugin never worked for me),.. Yours Peter
2013 Jan 31
4
[RFC][PATCH 2/2] Btrfs: implement unlocked dio write
This idea is from ext4. By this patch, we can make the dio write parallel, and improve the performance. We needn''t worry about the race between dio write and truncate, because the truncate need wait untill all the dio write end. And we also needn''t worry about the race between dio write and punch hole, because we have extent lock to protect our operation. I ran fio to test the
2017 Apr 29
1
[PATCH] tools/virtio: fix spelling mistake: "wakeus" -> "wakeups"
...ols/virtio/virtio_test.c @@ -202,7 +202,7 @@ static void run_test(struct vdev_info *dev, struct vq_info *vq, test = 0; r = ioctl(dev->control, VHOST_TEST_RUN, &test); assert(r >= 0); - fprintf(stderr, "spurious wakeus: 0x%llx\n", spurious); + fprintf(stderr, "spurious wakeups: 0x%llx\n", spurious); } const char optstring[] = "h"; -- 2.11.0
2017 Apr 29
1
[PATCH] tools/virtio: fix spelling mistake: "wakeus" -> "wakeups"
...ols/virtio/virtio_test.c @@ -202,7 +202,7 @@ static void run_test(struct vdev_info *dev, struct vq_info *vq, test = 0; r = ioctl(dev->control, VHOST_TEST_RUN, &test); assert(r >= 0); - fprintf(stderr, "spurious wakeus: 0x%llx\n", spurious); + fprintf(stderr, "spurious wakeups: 0x%llx\n", spurious); } const char optstring[] = "h"; -- 2.11.0
2006 Jun 05
0
Recurring Wakeup Call Schedule & play Weather Forecast
I use Asterisk as a wakeup service for home and regularly dial for weather forecast after waking up. I'd like to be able to setup a recurring wakeup call M-F and have it play the weather forecast rather than moh. I'm using AAH that has had all components recently upgraded. Has anyone done this sort of thing? Thanks, David -------------- next part -------------- An HTML attachment was
2001 May 02
1
Problems getting Diablo2 to run
Hello everyone, I'm trying to run Diablo2 version 1.06 on SuSE Linux 6.4 (kernel 2.4.2) with WINE 20010418. Both the contents of the windoze installation and the game have been copied over the network from another machine where everything works happily. When I run the game nothing really seems to be happening. With tracing enabled I can see that after some initialization the game just spins
2018 Aug 03
1
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...rk, tx kick or tx wakeup. >> >> For tx kick, we check vhost_vq_avail_empty() and avoid unnecessary kicks >> by not enabling kick if we found something is pending on txq. For tx >> wakeup, yes, the commit does not consider it. And that's why we want to >> disable tx wakeups during busy polling. > And in the handle_rx but not busy polling, the tx can wakeup anytime > and the tx work will be added to dev work list. In that case, if we > add > the rx poll to the queue, it is necessary ? the commit be294a51a may > check whether the rx work is in the dev wor...
2008 Dec 01
1
Unitek Self Protek Mistral 1000ipF
Hi, just try the Unitek Self Protek Mistral 1000ipF with nut and I doesn't work. How can I correctly configure it (if the driver support it). Best regards, In my dmesg: [42953293.620000] usb 1-2: new low speed USB device using uhci_hcd and address 7 [42953293.760000] usb 1-2: no configurations [42953293.760000] usb 1-2: can't read configurations, error -22 [42953293.880000] usb 1-2: new
2008 Feb 06
0
ohci_hcd 0000:00:0f.2: wakeup
Hi, I had successfully installed CentOS 5.1 fully updated in old Fujitsu Primergy MS610 server. There was no problem except that during startup, I found many message saying "ohci_hcd 0000:00:0f.2: wakeup". Searched the internet and did what is written to avoid this to no avail. Anyone have ideas on how to resolve this? It seems that it was related to USB port which, I will not use
2006 Nov 30
4
evtchn_upcall_mask for PV-on-HVM
We seem to find an interesting bug, but not for sure. Each time before xen returns to hvm domain, it checks local_events_need_delivery to see whether any events pending and if yes, inject event by callback_irq into the virtual interrupt controller. However, the interesting point is, we never found any place, either in xen or in PV drivers, to clear evtchn_upcall_mask at any time. The initial
2007 Feb 14
4
[PATCH 3/12] Provide basic Xen PM infrastructure
Add basic infrastructure for xen power management. Now only S3 (suspend to ram) is supported. Signed-off-by Ke Yu <ke.yu@intel.com> Signed-off-by Kevin Tian <kevin.tian@intel.com> diff -r 13e258a58044 xen/arch/x86/acpi/Makefile --- a/xen/arch/x86/acpi/Makefile Wed Feb 14 11:13:40 2007 +0800 +++ b/xen/arch/x86/acpi/Makefile Wed Feb 14 11:13:40 2007 +0800 @@ -1,1 +1,2 @@ obj-y +=
2018 Aug 03
3
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
On 2018?08?03? 10:51, Tonghao Zhang wrote: > On Thu, Aug 2, 2018 at 5:23 PM Jason Wang <jasowang at redhat.com> wrote: >> >> >> On 2018?08?02? 16:41, Toshiaki Makita wrote: >>> On 2018/08/02 17:18, Jason Wang wrote: >>>> On 2018?08?01? 17:52, Tonghao Zhang wrote: >>>>>> +static void vhost_net_busy_poll_check(struct vhost_net *net,
2018 Aug 03
3
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
On 2018?08?03? 10:51, Tonghao Zhang wrote: > On Thu, Aug 2, 2018 at 5:23 PM Jason Wang <jasowang at redhat.com> wrote: >> >> >> On 2018?08?02? 16:41, Toshiaki Makita wrote: >>> On 2018/08/02 17:18, Jason Wang wrote: >>>> On 2018?08?01? 17:52, Tonghao Zhang wrote: >>>>>> +static void vhost_net_busy_poll_check(struct vhost_net *net,