search for: kick

Displaying 20 results from an estimated 5902 matches for "kick".

2004 Aug 06
0
Problems with 1.3.11 and Ices 0.22
...tory_touch_xa([yp.icecast.org:80]) completed...server id = 69 [26/Aug/2001:16:05:04] [1:Calendar Thread] directory_touch_xa([yp.mp3.de:80]) completed...server id = 69 [26/Aug/2001:16:05:04] [1:Calendar Thread] directory_touch([yp.shoutcast.com]) completed... [26/Aug/2001:16:05:11] [4:Source Thread] Kicking client 23 [209.226.122.117] [Client signed off] [listener], connected for 39 seconds, 110573 bytes transfered. 7 clients connected 209.226.122.117 - - [26/Aug/2001:16:05:11 -0700] "GET /lofi HTTP/1.0" 200 110573 "-" "WinampMPEG/2.7" 39 [26/Aug/2001:16:05:17] [34:Con...
2012 May 08
1
deploying class *only* via puppet kick
I''m trying to set up a system in which the web devs can deploy new websites via puppet kick. I''m not having a problem with puppet kick itself, but rather figuring out how to make my "webserver::sitelist" class *only* get deployed via puppet kick, and not have it regularly evaluated in the nodes.pp file. I don''t want webserver::sitelist to ever get automatica...
2012 May 06
2
puppet kick without LDAP
Hi, Is there a way of issuing a puppet kick to multiple hosts without LDAP? I see the puppet kick options suports this with "all" and "class" but only with LDAP at present. I have a number of hosts so specifying each host using it''s FQDN is a bit messy. I''ve tried using "--no-fqdn" but get:...
2017 May 12
2
[BUG] doveadm kick doesn't play well with hibernate
Hello, Dovecot 2.2.27 (Debian Jessie backports). When issuing a "doveadm kick" for a specific user I was greeted by: --- "warning: other connections would also be kicked from following users:" --- and a list of 22odd thousand users. As it turns out, kick wants to smack the hibernation proces(ses) that have hibernated sessions for this user, obviously the wron...
2007 May 03
2
"you have been kicked my this conference"
How do I stop the "you have been kicked by this conference" message from speaking? I first had MeetMe(conf, l) and I get the kicked message. I tried Meetme(CONF, lq) and I still get he kicked message. and it still says it. Thanks, Jerry
2013 Apr 02
1
puppet kick question
Hello, I have basically two questions regarding *puppet kick* (old puppetrun) when calling a "puppet kick host1.com host2.com host3.com" : first question) does puppet kick deploy the catalogue on the three hosts serially or in parallel?? and 2) what happens if for any reason the deployment fails on host1 ?? will puppet continuing deploying...
2014 Oct 21
1
[asterisk-user] Confbridge Kick Action
Hi All, I am working on Asterisk 12.6.0 with ConfBridge module, when there are multiple user like admin and normal participant running with conference. When I try to kicked 2 user (Normal User), it play file "conf-kicked" and again join conference My scenario in confbridge like. 1] Admin User (e.g. SIP/8484-00000000) 2] Normal User (e.g. SIP/8484-00000001) 3] Admin User (e.g. SIP/8484-00000002) When I try to execute confbridge kick using below AMI. Acti...
2012 Jun 21
1
doveadm proxy kick in director setups
Something I noticed on a 2.1.7 director test cluster (two directors, three backends): 'doveadm proxy kick user' will kick all connections for that user on that director only. Any additional connections on other directors will remain active unless the command is run on all directors. Are the proxy and director sub-commands intended to be separate and distinct in their operation? If so, then this ma...
2004 Aug 06
2
kicking sources
Hi, I've just seen a new thread asking about kicking clients off the server and wondered, if there is a feature to kick sources off the server as well. This would be very useful if the server is used by multiple djs on a radio-station with a timetable. So when a dj forgets to stop his livestream the next dj could just kick the source instead of k...
2018 Dec 06
7
[PATCH RFC 1/2] virtio-net: bql support
...virtqueue_napi_complete(napi, sq->vq, 0); > @@ -1505,13 +1509,15 @@ static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) > struct send_queue *sq = &vi->sq[qnum]; > int err; > struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); > - bool kick = !skb->xmit_more; > + bool more = skb->xmit_more; > bool use_napi = sq->napi.weight; > + unsigned int bytes = skb->len; > + bool kick; > > /* Free up any pending old buffers before queueing new ones. */ > - free_old_xmit_skbs(sq); > + free_old_xmit_skbs...
2018 Dec 06
7
[PATCH RFC 1/2] virtio-net: bql support
...virtqueue_napi_complete(napi, sq->vq, 0); > @@ -1505,13 +1509,15 @@ static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev) > struct send_queue *sq = &vi->sq[qnum]; > int err; > struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum); > - bool kick = !skb->xmit_more; > + bool more = skb->xmit_more; > bool use_napi = sq->napi.weight; > + unsigned int bytes = skb->len; > + bool kick; > > /* Free up any pending old buffers before queueing new ones. */ > - free_old_xmit_skbs(sq); > + free_old_xmit_skbs...
2011 Sep 07
3
[RFC v2 0/2] virtio: Support releasing lock during kick
This patch allows virtio-blk to release its block queue lock while kicking the host. This improves scalability on SMP guests who would otherwise spin on the lock while another vCPU is kicking the host. This approach can be used for other virtio devices too. It simply splits the virtqueue_kick() operation into a prepare step which requires that the lock be held and t...
2011 Sep 07
3
[RFC v2 0/2] virtio: Support releasing lock during kick
This patch allows virtio-blk to release its block queue lock while kicking the host. This improves scalability on SMP guests who would otherwise spin on the lock while another vCPU is kicking the host. This approach can be used for other virtio devices too. It simply splits the virtqueue_kick() operation into a prepare step which requires that the lock be held and t...
2012 Jun 01
4
[PATCH v3] virtio_blk: unlock vblk->lock during kick
Holding the vblk->lock across kick causes poor scalability in SMP guests. If one CPU is doing virtqueue kick and another CPU touches the vblk->lock it will have to spin until virtqueue kick completes. This patch reduces system% CPU utilization in SMP guests that are running multithreaded I/O-bound workloads. The improvements a...
2012 Jun 01
4
[PATCH v3] virtio_blk: unlock vblk->lock during kick
Holding the vblk->lock across kick causes poor scalability in SMP guests. If one CPU is doing virtqueue kick and another CPU touches the vblk->lock it will have to spin until virtqueue kick completes. This patch reduces system% CPU utilization in SMP guests that are running multithreaded I/O-bound workloads. The improvements a...
2016 Mar 01
2
[PATCH] fifo/gk104: kick channel upon removal
A channel may still be processed by the PBDMA even after removal, unless it is properly kicked. Some chips are more sensible to this than others, with GM20B triggering the issue very easily (the PBDMA will try to fetch methods from the previously-removed channel after a new one is added). Make sure this cannot happen by kicking the channel right after it is disabled, and before the new ru...
2010 Sep 07
1
Help with "puppet kick"
We would like to avoid pre-scheduled updates in our production environment by puppet. The solution I''ve come across is to instruct the puppet agent not to update on a schedule and instead use "puppet kick" from the puppet master to force updates when we''re ready to deploy them. I can''t seem to get this to work. I have asked around the IRC channel and received a few pointers, but it''s still not working correctly. I''ve added the "listen = true" lin...
2015 Oct 10
2
[PATCH] nouveau: avoid emitting new fences unnecessarily
Right now we emit on every kick, but this is only necessary if something will ever be able to observe that the fence completed. If there are no refs, leave the fence alone and emit it another day. This also happens to work around an issue for the kick handler -- a kick can be a result of e.g. nouveau_bo_wait or explicit kick, or...
2007 Jul 08
2
Auto Fall Through when kicking users in MeetMe
...Channel: Zap/23-1 (unmonitored)00:00:32 User #: 02 john john Channel: SIP/john-b7800468 (unmonitored) 00:00:28 User #: 03 6463875998 <no name> Channel: Zap/22-1 (unmonitored)00:00:19 3 users in that conference. When I run the command from CLI "meetme kick 1234 2" so that I can kick out the second user out of the conference CLI> meetme kick 1234 2 I get the following debug message and nothing happens == Auto fallthrough, channel 'SIP/john-b7800468' status is 'UNKNOWN' -- Executing [h at internal:1] MeetMe("SIP/jo...
2015 Mar 07
4
[PATCH] virtio_rpmsg: set DRIVER_OK before using device
virtio spec requires that all drivers set DRIVER_OK before using devices. While rpmsg isn't yet included in the virtio 1 spec, previous spec versions also required this. virtio rpmsg violates this rule: is calls kick before setting DRIVER_OK. The fix isn't trivial since simply calling virtio_device_ready earlier would mean we might get an interrupt in parallel with adding buffers. Instead, split kick out to prepare+notify calls. prepare before virtio_device_ready - when we know we won't get interrupt...