search for: urgent

Displaying 20 results from an estimated 1965 matches for "urgent".

2014 Sep 22
2
[PATCH RFC 2/2] vhost: support urgent descriptors
On 09/20/2014 06:00 PM, Paolo Bonzini wrote: > Il 19/09/2014 09:10, Jason Wang ha scritto: >>>> >>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >> So the urgent descriptor only work when event index was not enabled? >> This seems suboptimal, we may still want to benefit from event index >> even if urgent descriptor is used. Looks like we need return true here >>...
2014 Sep 22
2
[PATCH RFC 2/2] vhost: support urgent descriptors
On 09/20/2014 06:00 PM, Paolo Bonzini wrote: > Il 19/09/2014 09:10, Jason Wang ha scritto: >>>> >>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >> So the urgent descriptor only work when event index was not enabled? >> This seems suboptimal, we may still want to benefit from event index >> even if urgent descriptor is used. Looks like we need return true here >>...
2004 Aug 23
2
Question about dial out via Zap
Group When I dial a phone number that should go out to the telco my local phone rings. Does anyone have any hits ? Thanks Asterisk Ready. *CLI> -- Called g1/6144196143 Urgent handler Urgent handler -- Starting simple switch on 'Zap/2-1' Urgent handler Urgent handler -- Called 6149236651 Urgent handler -- SIP/6149236651-1d93 is ringing Urgent handler -- Zap/1-1 answered SIP/6149236651-eafb Urgent handler -- Hungup 'Zap/1-1' Urgent hand...
2005 Oct 08
2
No incoming calls from chan_capi 0.6
...ectly but for incoming calls it doesn't work. I tried to set an extension to dial my from-pstn context and it works. So I think there's a problem with my capi.conf or something... Here's a debug when calling -- CONNECT_IND (PLCI=0x101,DID=9100,CID=46720XXXX,CIP=0x4,CONTROLLER=0x1) Urgent handler == numeris1: Incoming call '046720XXXX' -> '9100' Urgent handler -- numeris1: info element PI 84 83 Urgent handler -- numeris1: info element CALLED PARTY NUMBER Urgent handler -- numeris1: info element CHANNEL IDENTIFICATION 89 Urgent handler -- numeris1...
2014 Sep 19
2
[PATCH RFC 2/2] vhost: support urgent descriptors
...GPL(vhost_add_used_n); > @@ -1433,12 +1439,13 @@ static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq) > unlikely(vq->avail_idx == vq->last_avail_idx)) > return true; > > - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { > + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { So the urgent descriptor only work when event index was not enabled? This seems suboptimal, we may still want to benefit from event index even if urgent descriptor is used. Looks like we need return true here when vq->urgent is true? Anothe...
2014 Sep 19
2
[PATCH RFC 2/2] vhost: support urgent descriptors
...GPL(vhost_add_used_n); > @@ -1433,12 +1439,13 @@ static bool vhost_notify(struct vhost_dev *dev, struct vhost_virtqueue *vq) > unlikely(vq->avail_idx == vq->last_avail_idx)) > return true; > > - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { > + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { So the urgent descriptor only work when event index was not enabled? This seems suboptimal, we may still want to benefit from event index even if urgent descriptor is used. Looks like we need return true here when vq->urgent is true? Anothe...
2014 Sep 22
1
[PATCH RFC 2/2] vhost: support urgent descriptors
...14 at 11:30:23AM +0800, Jason Wang wrote: >> On 09/20/2014 06:00 PM, Paolo Bonzini wrote: >>> Il 19/09/2014 09:10, Jason Wang ha scritto: >>>>>> >>>>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>> So the urgent descriptor only work when event index was not enabled? >>>> This seems suboptimal, we may still want to benefit from event index >>>> even if urgent descriptor is used. Looks like we need re...
2014 Sep 22
1
[PATCH RFC 2/2] vhost: support urgent descriptors
...14 at 11:30:23AM +0800, Jason Wang wrote: >> On 09/20/2014 06:00 PM, Paolo Bonzini wrote: >>> Il 19/09/2014 09:10, Jason Wang ha scritto: >>>>>> >>>>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { >>>> So the urgent descriptor only work when event index was not enabled? >>>> This seems suboptimal, we may still want to benefit from event index >>>> even if urgent descriptor is used. Looks like we need re...
2014 Jul 01
0
[PATCH RFC 2/2] vhost: support urgent descriptors
...ons(+), 32 deletions(-) diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 3eda654..61ca542 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -96,6 +96,9 @@ struct vhost_virtqueue { /* Last used index value we have signalled on */ bool signalled_used_valid; + /* Urgent descriptor was used */ + bool urgent; + /* Log writes to used structure. */ bool log_used; u64 log_addr; @@ -138,20 +141,24 @@ long vhost_vring_ioctl(struct vhost_dev *d, int ioctl, void __user *argp); int vhost_vq_access_ok(struct vhost_virtqueue *vq); int vhost_log_access_ok(struct vhost_...
2014 Jul 01
5
[PATCH RFC 1/2] virtio: support for urgent descriptors
...early review/feedback. Compiled-only at this point. event idx feature allows us to defer interrupts until a specific # of descriptors were used. Sometimes it might be useful to get an interrupt after a specific descriptor, regardless. This adds a descriptor flag for this, and an API to create an urgent output descriptor. This is still an RFC: we'll need a feature bit for drivers to detect this, but we've run out of feature bits for virtio 0.X. For experimentation purposes, drivers can assume this is set, or add a driver-specific feature bit. Signed-off-by: Michael S. Tsirkin <mst at r...
2014 Jul 01
5
[PATCH RFC 1/2] virtio: support for urgent descriptors
...early review/feedback. Compiled-only at this point. event idx feature allows us to defer interrupts until a specific # of descriptors were used. Sometimes it might be useful to get an interrupt after a specific descriptor, regardless. This adds a descriptor flag for this, and an API to create an urgent output descriptor. This is still an RFC: we'll need a feature bit for drivers to detect this, but we've run out of feature bits for virtio 0.X. For experimentation purposes, drivers can assume this is set, or add a driver-specific feature bit. Signed-off-by: Michael S. Tsirkin <mst at r...
2009 May 12
3
forms & link css classes - not working
I used a scaffold to create an interface. I''m trying to style it and I''m having trouble. In my css I have: #content a, a:link, a:visited{ color: #ff8400; } #content a:hover{ background: #ff8400; color: #FFFFFF; } #content a.urgent, a.urgent:link, a.urgent:visited { color: #FF0000; } #content a.urgent:hover { color: #FFFFFF; background: #FF0000; } #content input.m_title{ font-weight: bold; font-size: 28px; padding: 3px; } The style for the links works, but not for the .urgent class. Also the style for the input.m_...
2014 Sep 22
0
[PATCH RFC 2/2] vhost: support urgent descriptors
...Mon, Sep 22, 2014 at 11:30:23AM +0800, Jason Wang wrote: > On 09/20/2014 06:00 PM, Paolo Bonzini wrote: > > Il 19/09/2014 09:10, Jason Wang ha scritto: > >>>> > >>>> - if (!vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { > >>>> + if (vq->urgent || !vhost_has_feature(vq, VIRTIO_RING_F_EVENT_IDX)) { > >> So the urgent descriptor only work when event index was not enabled? > >> This seems suboptimal, we may still want to benefit from event index > >> even if urgent descriptor is used. Looks like we need return true...
2004 Dec 31
0
manager API / weird queue
...ve my Queue/Problem? here is the detail: 1. I can login as an Agent with that extension: [cc-queues] ; nos queues exten => s,1,Answer exten => s,2,Queue(queue1) exten => s,3,Hangup asterisk console log: -- Executing AgentLogin("SIP/samuel-b5fd", "11") in new stack Urgent handler -- Playing 'agent-pass' (language 'en') Urgent handler -- Playing 'agent-loginok' (language 'en') Urgent handler -- Started music on hold, class 'default', on SIP/samuel-b5fd Urgent handler == Agent '11' logged in (format ulaw/sl...
2005 Jun 02
1
Newbie :Call Forwarding problem
...ten => s,4,Voicemail(u${ARG1}) exten => s,5,Hangup exten => s,104,Voicemail(b${ARG1}) ; busy exten => s,105,Hangup the output on the CLI during this process was: *CLI> -- Executing DBdel("SIP/777-a77c", "CF/777") in new stack -- DBdel: family=CF, key=777 Urgent handler -- Executing Hangup("SIP/777-a77c", "") in new stack Urgent handler -- Executing DBput("SIP/777-ad46", "CF/777=888") in new stack -- DBput: family=CF, key=777, value=888 Urgent handler -- Executing Hangup("SIP/777-ad46", &quo...
2014 Oct 11
10
[PATCH net-next RFC 0/3] virtio-net: Conditionally enable tx interrupt
...disable such things more or less since sk_wmem_alloc was not accurate. This lead extra low throughput for TCP stream of small writes. This series tries to solve this issue by enable tx interrupts for all TCP packets other than the ones with push bit or pure ACK. This is done through the support of urgent descriptor which can force an interrupt for a specified packet. If tx interrupt was enabled for a packet, there's no need to orphan it in ndo_start_xmit(), we can free it tx napi which is scheduled by tx interrupt. Then sk_wmem_alloc was more accurate than before and TCP can batch more for smal...
2014 Oct 11
10
[PATCH net-next RFC 0/3] virtio-net: Conditionally enable tx interrupt
...disable such things more or less since sk_wmem_alloc was not accurate. This lead extra low throughput for TCP stream of small writes. This series tries to solve this issue by enable tx interrupts for all TCP packets other than the ones with push bit or pure ACK. This is done through the support of urgent descriptor which can force an interrupt for a specified packet. If tx interrupt was enabled for a packet, there's no need to orphan it in ndo_start_xmit(), we can free it tx napi which is scheduled by tx interrupt. Then sk_wmem_alloc was more accurate than before and TCP can batch more for smal...
2005 Mar 21
0
Cdr_odbc asterisk 1.0.6
Asterisk Ready. *CLI> -- Executing route("SIP/7408-02e3", "370263") in new stack -- odbcquery: query=370263 > Query = 370263 : SQLcmd = select routing, ring_timer from ddi_pool where ddi_inbound = '370263' Urgent handler > app_route: Query Successful! -- Varname= 55 -- odbcquery: set route 721017101 -- odbcquery: set timer 15 Urgent handler -- Executing Dial("SIP/7408-02e3", "OH323/721017101@*.*.*.*|15") in new stack -- H.323 call to 721017101@*.*.*.* with...
2010 Jul 27
2
urgent:how to transfer a call using asterisk FAGI
...dial plan as follows. exten==>1500,1,AGI("localhost//hello.agi" So when i dial extenstion 1500 the script hello.agi is invoked which in turn plays a welcome message. I now want to transfer the call now to operator. How can i achieve this???Please help me in this regard as this is very urgent. Thanks & Regards, Jahnavi. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100727/4299e8f7/attachment.htm
2014 Oct 12
0
[PATCH net-next RFC 1/3] virtio: support for urgent descriptors
...y review/feedback. > > event idx feature allows us to defer interrupts until > a specific # of descriptors were used. > Sometimes it might be useful to get an interrupt after > a specific descriptor, regardless. > This adds a descriptor flag for this, and an API > to create an urgent output descriptor. > This is still an RFC: > we'll need a feature bit for drivers to detect this, > but we've run out of feature bits for virtio 0.X. > For experimentation purposes, drivers can assume > this is set, or add a driver-specific feature bit. > > Signed-off-...