Displaying 7 results from an estimated 7 matches for "pipe_buf".
Did you mean:
page_buf
2010 Jun 10
1
null errors from 2.0.beta5
When my dovecot-2.0.beta5 auth module logs a 552-byte debug message, the message is split into two lines and also a null error message:
Wed Jun 9 23:44:29 gromit dovecot[58892]: auth: Error:
I think this has to do with the use of PIPE_BUF (512) sized buffers in the logging code, and the !line_is_ok() case in i_failure_parse_line().
Could you please remove the null error message? Just a nuisance, nothing serious. Thanks.
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
...d: run_err("%s: %s", np, strerror(errno));
+ continue;
+ }
}
(void) atomicio(write, remout, "", 1);
@@ -891,4 +920,12 @@ bad: run_err("%s: %s", np, strerror(er
if (showprogress)
progressmeter(1);
+ if (buf[0] == 'L') {
+ if (size >= PIPE_BUF)
+ SCREWUP("symlink bigger than PIPE_BUF");
+ bp[size] = '\0';
+ wrerr = (symlink(bp, np) < 0) ? YES : NO;
+ wrerrno = errno;
+ goto done;
+ }
if (count != 0 && wrerr == NO &&
(j = atomicio(write, ofd, bp, count)) != count) {
@@ -917,5 +954...
2012 Feb 28
3
Flac HiRes decoding problems
Hi Eric.
On Tue, Feb 28, 2012 at 7:57 AM, Erik de Castro Lopo
<mle+la at mega-nerd.com>wrote:
> Hi Klaus,
>
> I'm not really sure where to start with this one.
>
> Klaus Schulz wrote:
>
> > My first post over here.
> >
> > While working on a music server optimzation (which ususally goes hand in
> > hand with running pretty low buffers on
2000 Nov 29
1
HP-UX 11.00 truncating remote commands
hello all,
i hope someone can help me out with this little nasty. i have openssh
2.3.0p1 installed on some hp-ux 11.00 boxes and a single linux box. i'm
trying desperately to replace trusted hosts on these machines with something
a little more secure. running some remote commands between the hp boxes,
i'm getting different results with ssh than with remsh.
root at hp1# remsh hp2 cat
2008 May 21
11
[Bug 1467] New: SFTP stalls
https://bugzilla.mindrot.org/show_bug.cgi?id=1467
Summary: SFTP stalls
Classification: Unclassified
Product: Portable OpenSSH
Version: 5.0p1
Platform: Other
OS/Version: Other
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo: bitbucket at mindrot.org
ReportedBy: sconeu
2013 Apr 18
39
Xen blktap driver for Ceph RBD : Anybody wants to test ? :p
Hi,
I''ve been working on getting a working blktap driver allowing to
access ceph RBD block devices without relying on the RBD kernel driver
and it finally got to a point where, it works and is testable.
Some of the advantages are:
- Easier to update to newer RBD version
- Allows functionality only available in the userspace RBD library
(write cache, layering, ...)
- Less issue when
2007 Aug 23
0
[git patch] klibc dash 0.5.4 update
...44
--- a/usr/dash/redir.c
+++ b/usr/dash/redir.c
@@ -57,7 +57,10 @@
#include "error.h"
+#define REALLY_CLOSED -3 /* fd that was closed and still is */
#define EMPTY -2 /* marks an unused slot in redirtab */
+#define CLOSED -1 /* fd opened for redir needs to be closed */
+
#ifndef PIPE_BUF
# define PIPESIZE 4096 /* amount of buffering in a pipe */
#else
@@ -135,14 +138,29 @@ redirect(union node *redir, int flags)
continue; /* redirect from/to same file descriptor */
newfd = openredirect(n);
+
+ if (sv) {
+ p = &sv->renamed[fd];
+ i = *p;
+
+ if (likely(i ==...