Displaying 20 results from an estimated 2389 matches for "recv".
2002 May 04
2
Failure to update differing file
...ath=openssl-engine-0.9.6a.tar.gz.BAD
cmd=. openssl-engine-0.9.6a.tar.gz.BAD
make_file(4,openssl-engine-0.9.6a.tar.gz)
expand file_list to 4000 bytes, did move
[32089] i=0 <NULL> openssl-engine-0.9.6a.tar.gz mode=0100644 len=2185324
send_file_list done
file list sent
send_files starting
server_recv(2) starting pid=32090
recv_file_name(openssl-engine-0.9.6a.tar.gz)
received 1 names
[32090] i=0 <NULL> openssl-engine-0.9.6a.tar.gz mode=0100600 len=2185324
recv_file_list done
get_local_name count=1 openssl-engine-0.9.6a.tar.gz.BAD
generator starting pid=32090 count=1
recv_generator(openssl-...
2005 Jul 20
0
rsync breaks suddenly
...15 minutes I am getting an error. I've
copied the last lines of my log:
set modtime of 9.0/suse/i586/.boost-devel-1.30.2-40.i586.rpm.aEs2YN to
(1065139708) Fri Oct 3 02:08:28 2003
renaming 9.0/suse/i586/.boost-devel-1.30.2-40.i586.rpm.aEs2YN to
9.0/suse/i586/boost-devel-1.30.2-40.i586.rpm
recv_files(9.0/suse/i586/boost-doc-1.30.2-40.i586.rpm)
9.0/suse/i586/boost-doc-1.30.2-40.i586.rpm
0 0% 0.00kB/s 0:00:00
data recv 32768 at 0
data recv 32768 at 32768
65536 3% 63.62kB/s 0:00:27
data recv 32768 at 65536
data recv 32768 at 98304
data recv 32768 at 131072
da...
2018 Mar 01
29
[Bug 13317] New: rsync returns success when target filesystem is full
https://bugzilla.samba.org/show_bug.cgi?id=13317
Bug ID: 13317
Summary: rsync returns success when target filesystem is full
Product: rsync
Version: 3.1.2
Hardware: x64
OS: FreeBSD
Status: NEW
Severity: major
Priority: P5
Component: core
Assignee: wayned at samba.org
2008 Jul 29
3
ipfw "bug" - recv any = not recv any
I hesitate to call this a "bug" as I don't know all the history behind
the ipfw2 decisions, so let me toss this out there and see I'm just
missing something.
Overview
========
The negated operator, "not recv any" was taken to mean "any packet never
received by an interface" believed to be equivalent to "any packet that
originated on the current machine's interfaces"
My logic being:
* If "recv any" means "received by any interface"
* then "not re...
2006 Nov 12
0
[ wxruby-Bugs-6632 ] Linux crash on NoteBook in bigdemo.rb
...text=@0x82296f8, bSelect=true, imageId=0)
at /usr/local/include/wx-2.6/wx/bookctrl.h:154
#3 0xb77b9916 in _wrap_wxNotebook_AddPage (argc=4, argv=0xbf81a2b0,
self=3043848000) at src/Notebook.cpp:3472
#4 0x08055146 in call_cfunc (func=0xb77b9800 <_wrap_wxNotebook_AddPage>,
recv=3043848000, len=0, argc=0, argv=0xbf81a2b0) at eval.c:5654
#5 0x0805d8cb in rb_call0 (klass=3063385500, recv=3043848000, id=11233,
oid=11233, argc=1, argv=0xbf81a2b0, body=0xb6978d10, flags=0)
at eval.c:5810
#6 0x0805e521 in rb_call (klass=3063385500, recv=3043848000, mid=11233,
arg...
2015 Nov 14
1
[PATCH v2] pmu: fix queued messages while getting no IRQ
I encountered while stresstesting the reclocking code, that rarely (1 out of
20.000+ requests) we don't get any IRQ in nvkm_pmu_intr.
This means we have a queued message on the pmu, but nouveau doesn't read it and
waits infinitely in nvkm_pmu_send:
if (reply) {
wait_event(pmu->recv.wait, (pmu->recv.process == 0));
therefore let us use wait_event_timeout with a 1s timeout frame and just check
whether there is a message queued and handle it if there is one.
Return -ETIMEDOUT whenever we timed out and there is no message queued or when
we hit another timeout while trying to...
2007 Feb 05
2
recv vs. read in HTTPRequest#read_socket
Hello all,
The following change to Mongrel::HttpRequest:
def read_socket(len)
if !@socket.closed?
data = @socket.recv(len) # <--- formerly @socket.read(len)
if !data
raise "Socket read return nil"
elsif data.length != len
raise "Socket read returned insufficient data: #{data.length}"
else
data
end
else
raise "Socket already closed when reading.&qu...
2001 Dec 20
0
Annoying error (read_socket_data: recv failure for 4)
...had this problem, nor is it the
first site. This is a win98 box I'm having troubles with now - it fails
trying to log onto the domain... although I'm fairly sure it affects
connecting to shares too.
- samj
[2001/10/18 11:30:57, 0] lib/util_sock.c:read_socket_data(478)
read_socket_data: recv failure for 4. Error = Connection reset by peer
[2001/10/23 02:31:10, 0] lib/util_sock.c:read_socket_data(478)
read_socket_data: recv failure for 4. Error = Connection reset by peer
[2001/10/25 21:36:17, 0] lib/util_sock.c:read_socket_data(478)
read_socket_data: recv failure for 4. Error = Conn...
2015 Nov 14
0
[PATCH] pmu: fix queued messages while getting no IRQ
I encountered while stresstesting the reclocking code, that rarely (1 out of
20.000+ requests) we don't get any IRQ in nvkm_pmu_intr.
This means we have a queued message on the pmu, but nouveau doesn't read it and
waits infinitely in nvkm_pmu_send:
if (reply) {
wait_event(pmu->recv.wait, (pmu->recv.process == 0));
therefore let us use wait_event_timeout with a 1s timeout frame and just check
whether there is a message queued and handle it if there is one.
Return -ETIMEDOUT whenever we timed out and there is no message queued or when
we hit another timeout while trying to...
2015 Nov 14
0
[PATCH v3] pmu: fix queued messages while getting no IRQ
I encountered while stresstesting the reclocking code, that rarely (1 out of
20.000+ requests) we don't get any IRQ in nvkm_pmu_intr.
This means we have a queued message on the pmu, but nouveau doesn't read it and
waits infinitely in nvkm_pmu_send:
if (reply) {
wait_event(pmu->recv.wait, (pmu->recv.process == 0));
therefore let us use wait_event_timeout with a 1s timeout frame and just check
whether there is a message queued and handle it if there is one.
Return -ETIMEDOUT whenever we timed out and there is no message queued or when
we hit another timeout while trying to...
2004 Jan 21
0
Samba ver 2.2.2 - socket read - WinXP
...n,
and Win XP Pro, I have problems. Periodically, they get abruptly kicked out.
I get syslog errors which look like:
kforce-adm-# tail syslog
Jan 7 16:29:09 hforce smbd[29915]: [2004/01/07 16:29:09, 0] lib/util_sock.c:read_socket_data(478)
Jan 7 16:29:09 hforce smbd[29915]: read_socket_data: recv failure for 4. Error = Connection reset by peer
Jan 7 16:29:50 hforce smbd[14128]: [2004/01/07 16:29:50, 0] lib/util_sock.c:read_socket_data(478)
Jan 7 16:29:50 hforce smbd[14128]: read_socket_data: recv failure for 4. Error = Connection reset by peer
Jan 7 16:30:44 hforce smbd[3310]: [2004/01...
2016 Mar 01
2
[PATCH 0/2] PMU communications improvements
Both patches should make the communicating with the PMU more stable.
Karol Herbst (2):
pmu: fix queued messages while getting no IRQ
pmu: be more strict about locking
drm/nouveau/nvkm/subdev/pmu/base.c | 49 ++++++++++++++++++++++++++++++++------
1 file changed, 42 insertions(+), 7 deletions(-)
--
2.7.2
2009 Apr 01
0
[ANNOUNCE] conntrack-tools 0.9.12 released
...and multicast are
supported. Now you can add your favourite protocol to propagate
state-changes. An example of the multi-dedicated link over multicast
support:
# conntrackd -s link
multicast traffic device=eth3 status=RUNNING role=ACTIVE:
129181080 Bytes sent 198577788 Bytes recv
273376 Pckts sent 268759 Pckts recv
0 Error send 0 Error recv
multicast traffic device=eth2 status=RUNNING role=BACKUP:
42063284 Bytes sent 16864344 Bytes recv
94980 Pckts sent 4...
2011 Oct 04
1
libvir: Remote error : cannot recv data: : Connection reset by peer
...ame. My program is such that periodic discovery of active VMs is done using
Libvirt's functions.
However, when I try to perform any VM related operations while the Java code
connecting to Qemu is running such as shutdown, start VM using virsh, I end
up with :
'libvir: Remote error : cannot recv data: : Connection reset by peer' on my
Java IDE and 'error: cannot recv data: : Connection reset by peer error:
failed to connect to the hypervisor' on the terminal running virsh.
I'm using QEMU emulator version 0.14.0 (qemu-kvm-0.14.0) and Libvirt version
0.4.7 on Ubuntu 11.04....
2018 Dec 21
1
[nbdkit PATCH] connections: Don't use uninit memory on early client EOF
...ror message:
$ printf %s $'000\1IHAVEOPT000\6'$'000\7'$'000\1x00' | tr 0 '\0' |
./nbdkit -s memory size=1m >/dev/null
nbdkit: memory: error: client exceeded maximum number of options (32)
The culprit? The client is hanging up on a message boundary,
so conn->recv() returns 0 for EOF instead of -1 for read error,
and our code blindly continues on in a for loop (re-)parsing
the leftover data from the previous option.
Let's fix things to uniformly quit trying to negotiate with a client
that has early EOF at a message boundary, just as we do for one that
q...
2019 Jun 03
0
[PATCH libnbd discussion only 3/5] lib: Pass handle to socket recv and send calls.
...letions(-)
diff --git a/generator/states-reply.c b/generator/states-reply.c
index 5be3431..f0ef47c 100644
--- a/generator/states-reply.c
+++ b/generator/states-reply.c
@@ -36,7 +36,7 @@
h->rbuf = &h->sbuf;
h->rlen = sizeof h->sbuf.simple_reply;
- r = h->sock->ops->recv (h->sock, h->rbuf, h->rlen);
+ r = h->sock->ops->recv (h, h->sock, h->rbuf, h->rlen);
if (r == -1) {
/* This should never happen because when we enter this state we
* should have notification that the socket is ready to read.
diff --git a/generator/states.c...
2009 Sep 04
2
Xen & netperf
...and my Linux box at home. Dom0 and DomU are
connected by a public network (100 Mbps link) and a private network (1
Gbps link). All netperf tests were run with defaults (w/o any extra
options).
Dom0 to Dom0 (local)
TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to () port 0
AF_INET : demo
Recv Send Send
Socket Socket Message Elapsed
Size Size Size Time Throughput
bytes bytes bytes secs. 10^6bits/sec
87380 16384 16384 10.00 5859.30
DomU to DomU (local)
TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to () port 0
AF_INET : demo
Recv Send S...
2003 May 02
1
WARNING (Sipsock_read) Recv error: Resource temporaily unavailable
Greetings
I am receiving following error message. Any idea as to why?
WARNING[147466]: File chan_sip.c, Line 4530 (sipsock_read): Recv error:
Resource temporarily unavailable
WARNING[147466]: File chan_sip.c, Line 4530 (sipsock_read): Recv error:
Resource temporarily unavailable
Frank...
2013 Oct 20
1
backup maildir mailbox bugs
...): Error: Raw backtrace:
/usr/lib/dovecot/libdovecot.so.0(+0x59e6a) [0x7f91ad185e6a] ->
/usr/lib/dovecot/libdovecot.so.0(default_fatal_handler+0x2a)
[0x7f91ad185f2a] -> /usr/lib/dovecot/libdovecot.so.0(i_fatal+0)
[0x7f91ad144b89] -> doveadm [user at example.com Printing Quotes send:mailbox
recv:mailbox](dsync_mailbox_export_init+0x8b8) [0x434028] -> doveadm [
user at example.com Printing Quotes send:mailbox
recv:mailbox](dsync_brain_sync_mailbox_open+0x233) [0x42ba83] -> doveadm [
user at example.com Printing Quotes send:mailbox
recv:mailbox](dsync_brain_slave_recv_mailbox+0x125) [0...
2009 Nov 19
3
ZFS send / recv to a lower ZFS version
Hi,
We are using multiple opensolaris 06/09 and solaris 10 servers.
Currently we are ''dumping'' (incremental)backups to a backup server. I
wonder if anybody knows what happens when I send/recv a zfs volume from
version 15 to a (backup) system with version 14. I''ve the feeling it''s
not very wise to do, but is it doable and what kind of caveats can be
expected. Probably we will upgrade the backup system to version 15
sometime soon.
I did a search run on the maillist...