Displaying 20 results from an estimated 4591 matches for "rx".
2015 Jun 30
4
Outlook 2013 not fetching new mail/synchronization issues
...rosoft Unified
Security Protocol Provider'.
IMAP: 08:53:03 [db] OnNotify: asOld = 4, asNew = 6, ae = 2
IMAP: 08:53:03 [db] OnNotify: asOld = 6, asNew = 6, ae = 4
IMAP: 08:53:03 [db] OnNotify: asOld = 6, asNew = 5, ae = 2
IMAP: 08:53:04 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 08:53:04 [rx] * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR
LOGIN-REFERRALS ID ENABLE IDLE AUTH=PLAIN AUTH=LOGIN] Dovecot ready.
IMAP: 08:53:04 [tx] ozzj CAPABILITY
IMAP: 08:53:04 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 08:53:04 [rx] * CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS
ID ENABLE IDLE...
2003 Dec 30
1
Accuracy: Correct sums in rowSums(), colSums() (PR#6196)
...intended to be applied against R-1.7.1/src/main/array.c
--------- Cut here ----------
*** array.c.old Mon Dec 15 17:33:23 2003
--- array.c Mon Dec 15 17:33:45 2003
***************
*** 1016,1022 ****
int OP, n, p, cnt = 0, i, j, type;
Rboolean NaRm, keepNA;
int *ix;
! double *rx, sum = 0.0;
checkArity(op, args);
x = CAR(args); args = CDR(args);
--- 1016,1022 ----
int OP, n, p, cnt = 0, i, j, type;
Rboolean NaRm, keepNA;
int *ix;
! double *rx, sum = 0.0, correction = 0.0;
checkArity(op, args);
x = CAR(args); args = CDR(arg...
2006 Jun 20
9
no eth0 on guest
...n@yoda:~> /sbin/ifconfig
eth0 Lien encap:Ethernet HWaddr 00:15:F2:39:D4:DF
inet adr:10.1.1.158 Bcast:10.1.1.255 Masque:255.255.255.0
adr inet6: fe80::215:f2ff:fe39:d4df/64 Scope:Lien
UP BROADCAST NOTRAILERS RUNNING MULTICAST MTU:1500 Metric:1
RX packets:744 errors:0 dropped:0 overruns:0 frame:0
TX packets:507 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission:0
RX bytes:56573 (55.2 Kb) TX bytes:73911 (72.1 Kb)
lo Lien encap:Boucle locale
inet adr:127.0.0.1 Masque:...
2007 Sep 06
1
Dead SIP channels
...mmand only show 5 channels. What cause these dead channels? How can I clean out these dead channels? Will they pose any problem to my * server if left alone? What does this (d) mean?
Here is the output from 'sip show channels':
Peer User/ANR Call ID Seq (Tx/Rx) Form Hold Last Message
195.7.123.234 +180924402 3c3c4cee419 00102/00000 alaw No Tx: ACK
9.9.94.9 6478517573 2752611-195 00101/00001 ulaw No Rx: ACK
136.59.30.19 8787041796 76775e35788 00102/00000 ulaw No Tx: ACK
9.9.95.13 90570...
2015 Jun 30
0
Outlook 2013 not fetching new mail/synchronization issues
...rosoft Unified
Security Protocol Provider'.
IMAP: 08:53:03 [db] OnNotify: asOld = 4, asNew = 6, ae = 2
IMAP: 08:53:03 [db] OnNotify: asOld = 6, asNew = 6, ae = 4
IMAP: 08:53:03 [db] OnNotify: asOld = 6, asNew = 5, ae = 2
IMAP: 08:53:04 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 08:53:04 [rx] * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR
LOGIN-REFERRALS ID ENABLE IDLE AUTH=PLAIN AUTH=LOGIN] Dovecot ready.
IMAP: 08:53:04 [tx] ozzj CAPABILITY
IMAP: 08:53:04 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 08:53:04 [rx] * CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS
ID ENABLE IDLE...
2018 Aug 02
6
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...gt;>>> +static void vhost_net_busy_poll_check(struct vhost_net *net,
>>>> + struct vhost_virtqueue *rvq,
>>>> + struct vhost_virtqueue *tvq,
>>>> + bool rx)
>>>> +{
>>>> + struct socket *sock = rvq->private_data;
>>>> +
>>>> + if (rx)
>>>> + vhost_net_busy_poll_try_queue(net, tvq);
>>>> + else if (sock && sk_has_rx_data(sock->sk))
>>>...
2018 Aug 02
6
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...gt;>>> +static void vhost_net_busy_poll_check(struct vhost_net *net,
>>>> + struct vhost_virtqueue *rvq,
>>>> + struct vhost_virtqueue *tvq,
>>>> + bool rx)
>>>> +{
>>>> + struct socket *sock = rvq->private_data;
>>>> +
>>>> + if (rx)
>>>> + vhost_net_busy_poll_try_queue(net, tvq);
>>>> + else if (sock && sk_has_rx_data(sock->sk))
>>>...
2018 Jul 04
2
[PATCH net-next v5 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
On 2018/07/04 13:31, xiangxia.m.yue at gmail.com wrote:
...
> +static void vhost_net_busy_poll(struct vhost_net *net,
> + struct vhost_virtqueue *rvq,
> + struct vhost_virtqueue *tvq,
> + bool rx)
> +{
> + unsigned long uninitialized_var(endtime);
> + unsigned long busyloop_timeout;
> + struct socket *sock;
> + struct vhost_virtqueue *vq = rx ? tvq : rvq;
> +
> + mutex_lock_nested(&vq->mutex, rx ? VHOST_NET_VQ_TX: VHOST_NET_VQ_RX);
> +
> + vhost_disable_not...
2018 Jul 04
2
[PATCH net-next v5 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
On 2018/07/04 13:31, xiangxia.m.yue at gmail.com wrote:
...
> +static void vhost_net_busy_poll(struct vhost_net *net,
> + struct vhost_virtqueue *rvq,
> + struct vhost_virtqueue *tvq,
> + bool rx)
> +{
> + unsigned long uninitialized_var(endtime);
> + unsigned long busyloop_timeout;
> + struct socket *sock;
> + struct vhost_virtqueue *vq = rx ? tvq : rvq;
> +
> + mutex_lock_nested(&vq->mutex, rx ? VHOST_NET_VQ_TX: VHOST_NET_VQ_RX);
> +
> + vhost_disable_not...
2003 Mar 31
2
iax problems
...e Retry[000] -- Seqno: 00 Type: IAX Subclass: NEW
Timestamp: 00001ms Callno: 00032 DCall: -00001
[192.168.222.245:5036]
-- Called vcch@sassafras/619
Tx-Frame Retry[000] -- Seqno: 01 Type: VOICE Subclass: 2
Timestamp: 00014ms Callno: 00032 DCall: -00001
[192.168.222.245:5036]
Rx-Frame Retry[N/A] -- Seqno: 00 Type: IAX Subclass: ACK
Timestamp: 00001ms Callno: 00045 DCall: 00032 [10.1.0.7:5036]
Rx-Frame Retry[N/A] -- Seqno: 00 Type: IAX Subclass: ACCEPT
Timestamp: 00001ms Callno: 00045 DCall: 00032 [10.1.0.7:5036]
Rx-Frame Retry[N/A] -- Seqno: 01 Type: I...
2018 Aug 03
2
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
..._check(struct vhost_net *net,
>>>>>>>> + struct vhost_virtqueue *rvq,
>>>>>>>> + struct vhost_virtqueue *tvq,
>>>>>>>> + bool rx)
>>>>>>>> +{
>>>>>>>> + struct socket *sock = rvq->private_data;
>>>>>>>> +
>>>>>>>> + if (rx)
>>>>>>>> + vhost_net_busy_poll_try_queue(net, tvq);
>>&...
2018 Aug 03
3
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...void vhost_net_busy_poll_check(struct vhost_net *net,
>>>>>> + struct vhost_virtqueue *rvq,
>>>>>> + struct vhost_virtqueue *tvq,
>>>>>> + bool rx)
>>>>>> +{
>>>>>> + struct socket *sock = rvq->private_data;
>>>>>> +
>>>>>> + if (rx)
>>>>>> + vhost_net_busy_poll_try_queue(net, tvq);
>>>>>> + else if (sock &...
2018 Aug 03
2
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
..._check(struct vhost_net *net,
>>>>>>>> + struct vhost_virtqueue *rvq,
>>>>>>>> + struct vhost_virtqueue *tvq,
>>>>>>>> + bool rx)
>>>>>>>> +{
>>>>>>>> + struct socket *sock = rvq->private_data;
>>>>>>>> +
>>>>>>>> + if (rx)
>>>>>>>> + vhost_net_busy_poll_try_queue(net, tvq);
>>&...
2018 Aug 03
3
[PATCH net-next v7 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...void vhost_net_busy_poll_check(struct vhost_net *net,
>>>>>> + struct vhost_virtqueue *rvq,
>>>>>> + struct vhost_virtqueue *tvq,
>>>>>> + bool rx)
>>>>>> +{
>>>>>> + struct socket *sock = rvq->private_data;
>>>>>> +
>>>>>> + if (rx)
>>>>>> + vhost_net_busy_poll_try_queue(net, tvq);
>>>>>> + else if (sock &...
2017 Nov 01
2
Centos and xen network bridge issue
...guestname
vif0.3
peth3
======
#ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:22:19:5E:F9:F8
inet6 addr: fe80::222:19ff:fe5e:f9f8/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:100820 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:9736214 (9.2 MiB) TX bytes:492 (492.0 b)
Interrupt:24 Memory:ce000000-ce012800
eth1 Link encap:Ethernet...
2006 Aug 30
0
ping out of domU OK ping in to domU not OK
...''s the output of ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:17:31:EC:CF:D6
inet addr:10.0.0.146 Bcast:10.0.0.255 Mask:255.255.255.0
inet6 addr: fe80::217:31ff:feec:cfd6/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2104 errors:0 dropped:0 overruns:0 frame:0
TX packets:262 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:148886 (145.3 KiB) TX bytes:35778 (34.9 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0...
2015 Jun 29
3
Outlook 2013 not fetching new mail/synchronization issues
Hi all,
Dovecot 2.2.10 CentOS 6 64 bit.
We are having terrible synchronization issues with Outlook 2013 (all
updates) on Windows 7 SP1 and 8.1 hosts (all updates).
Scenario:
1. Emails were sent since user closed Outlook
2. Next day: start computer, open outlook
3. No new email (even though email were sent overnight)
4. half a day later Outlook fetches
2006 May 04
2
No networking in DomU - Ubuntu
...0 listed at all, dom) looks good.
DomU:
eth0 Link encap:Ethernet HWaddr 00:06:5B:15:C5:0B
inet addr:10.99.99.5 Bcast:10.99.99.7 Mask:255.255.255.248
inet6 addr: fe80::206:5bff:fe15:c50b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:3014 errors:0 dropped:0 overruns:0 frame:0
TX packets:2744 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:2290550 (2.1 MiB) TX bytes:393169 (383.9 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0...
2011 Feb 25
2
1.8.2.4: SIP dialogs not killed?
Hi,
I'm wondering if this is normal asterisk behaviour:
asterisk*CLI> sip show channels
Peer User/ANR Call ID Format Hold Last Message Expiry Peer
10.12.0.2 (None) 3c2f7ff2975e-wp 0x0 (nothing) No Rx: PUBLISH <guest>
10.12.0.2 (None) 3c2f7f21b71b-9q 0x0 (nothing) No Rx: PUBLISH <guest>
10.12.0.2 (None) 3c2f98afd6d8-6f 0x0 (nothing) No Rx: PUBLISH <guest>
10.12.0.2 (None)...
2018 Jul 04
1
[PATCH net-next v5 3/4] net: vhost: factor out busy polling logic to vhost_net_busy_poll()
...yue at gmail.com wrote:
> > ...
> >> +static void vhost_net_busy_poll(struct vhost_net *net,
> >> + struct vhost_virtqueue *rvq,
> >> + struct vhost_virtqueue *tvq,
> >> + bool rx)
> >> +{
> >> + unsigned long uninitialized_var(endtime);
> >> + unsigned long busyloop_timeout;
> >> + struct socket *sock;
> >> + struct vhost_virtqueue *vq = rx ? tvq : rvq;
> >> +
> >> + mutex_lock_nested(&vq->...