Displaying 20 results from an estimated 88 matches for "error0".
Did you mean:
error
2004 Aug 06
2
improved error.log output --diff
...DEBUG1("Sending XSLT (%s), %s", fullpath_xslt_template, client->con->ip);
xslt_transform(doc, fullpath_xslt_template, client);
free(fullpath_xslt_template);
}
@@ -227,19 +227,19 @@
int command;
if(strncmp("/admin/", uri, 7)) {
- ERROR0("Internal error: admin request isn't");
+ ERROR0("Internal error: admin request isn't, %s", client->con->ip);
client_send_401(client);
return;
}
command_string = uri + 7;
- DEBUG1("Got command (%s)", command_strin...
2019 Sep 11
0
[PATCH nbdkit] tests: Convert some tests to use nbdsh instead of qemu-io.
...- allows us to more finely control NBD commands, such as
making subsector-sized requests and controlling how
many commands are sent on the wire
- can write controlled patterns
- can read NBD export flags
---
README | 2 ++
tests/Makefile.am | 5 +++--
tests/test-error0.sh | 13 +++++++------
tests/test-error100.sh | 19 ++++++++++++-------
tests/test-full.sh | 32 +++++++++++++++++++++++---------
5 files changed, 47 insertions(+), 24 deletions(-)
diff --git a/README b/README
index b78f490..187da49 100644
--- a/README
+++ b/README
@@ -164,6 +164,8 @@ For no...
2012 May 02
4
[PATCH 0/4] fish: Allow the glob command to expand device patterns (RHBZ#635971).
This patch set fixes a two year old bug in guestfish, namely that the
'glob' command does not expand /dev/* patterns.
https://bugzilla.redhat.com/show_bug.cgi?id=635971
Rich.
2006 Jun 24
0
Samba installation error on multi-processor server machines with Linux 2.6 SMP kernel
...samba installation.
scmsamba:~# apt-get install samba winbind krb5-doc krb5-user krb5-config
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
busybox grub klibc-utils libc6 libcupsys2 libgcrypt11 libgnutls12
libgnutls13 libgpg-error0 libkadm55 libklibc libkrb53
libldap2 libncurses5 libopencdk8 libsasl2 libselinux1 libsepol1
libtasn1-3 libvolume-id0 locales lsb-base makedev
module-init-tools samba-common tzdata
Suggested packages:
grub-doc grubconf glibc-doc rng-tools gnutls-bin
Recommended packages:
libsasl2-modul...
2019 Jan 23
0
[PATCH v2 nbdkit] tests: Add generic ‘requires’ function for test prerequisites.
...--------
tests/test-data-7E.sh | 8 ++------
tests/test-data-base64.sh | 12 ++++--------
tests/test-data-file.sh | 8 ++------
tests/test-data-raw.sh | 8 ++------
tests/test-eflags.sh | 13 +++++--------
tests/test-error0.sh | 6 +-----
tests/test-error10.sh | 6 +-----
tests/test-error100.sh | 6 +-----
tests/test-full.sh | 8 ++------
tests/test-ip.sh | 21 ++++++---------------
tests/test-memory-largest-for-qemu.sh |...
2010 Jul 30
33
[PATCHES] Smartjog PatchDump
Hello,
I work at SmarctJog.com, we have here some patches on IceCast for
performance and reliability, these are mostly client/connection/source
cleanups (a slave merge is underway, and some more good stuff (c)),
but we'd like this to be merged in before the list gets any longer.
Please find attached a list of our patches with a short desc:
This one is actually not from us/me, it was found
2020 Apr 09
0
[PATCH nbdkit v2 3/3] tmpdisk: Implement this plugin using fileops.
...o create a temporary directory
* under tmpdir that only the current user can access. If we
@@ -303,20 +251,20 @@ tmpdisk_open (int readonly)
*/
if (asprintf (&dir, "%s/tmpdiskXXXXXX", tmpdir) == -1) {
nbdkit_error ("asprintf: %m");
- goto error;
+ goto error0;
}
if (mkdtemp (dir) == NULL) {
nbdkit_error ("%s: %m", dir);
- goto error;
+ goto error0;
}
if (asprintf (&disk, "%s/disk", dir) == -1) {
nbdkit_error ("asprintf: %m");
- goto error;
+ goto error1;
}
/* Now run the mkfs co...
2012 Aug 27
2
EROR connection/wait_for_serversock signalfd descriptor became invalid
...l 9 08:39:20 CEST 2012 i686
GNU/Linux
root at stream:~# icecast2 -v
Icecast 2.3.3-kh2
googling only resulted in the source code of the error:
http://svn.xiph.org/icecast/branches/kh/icecast/src/connection.c
<snip>
if (ufds[i].revents & (POLLNVAL|POLLERR))
{
ERROR0 ("signalfd descriptor became invalid, doing thread
restart");
slave_restart(); // something odd happened
}
</snip>
any ideas what my be the cause of my problems?
thanks
rob
2019 Jan 23
2
[PATCH v2 nbdkit] tests: Add generic requires.
v1 was here:
https://www.redhat.com/archives/libguestfs/2019-January/thread.html#00198
For v2 I changed most existing prerequisite tests to use the new
mechanism.
I only changed simple tests. There are a few more complex tests that
don't fit the “requires model” and those are not changed.
I normalized qemu-io/qemu-img testing to always use the --version
flag, where previously we used a mix
2019 Sep 11
4
[PATCH nbdkit] tests: Convert some tests to use nbdsh instead of qemu-io.
Very much a work in progress as there are still many tests using
qemu-io which are candidates for conversion.
You'll notice at the end of test-full.sh that the new test has some
duplicated code which looks as if it ought to be refactored into a
Python function. When I tried to do that, I got loads of strange
Python problems which may indicate bugs in nbdsh itself or problems
with my
2018 Oct 30
2
Re: [PATCH nbdkit 4/4] Add floppy plugin.
...Note that the root
> + * directory will always be at dirs[0].
> + */
> + di = floppy->nr_dirs;
> + np = realloc (floppy->dirs, sizeof (struct dir) * (di+1));
More operator spacing.
> + if (np == NULL) {
> + nbdkit_error ("realloc: %m");
> + goto error0;
> + }
> + floppy->dirs = np;
> + floppy->nr_dirs++;
> + memset (&floppy->dirs[di], 0, sizeof (struct dir));
> +
> + /* Because this is called from config_complete, before nbdkit
> + * daemonizes or starts any threads, it's safe to use chdir here and
>...
2012 Jul 31
0
No subject
...ot at stream:~# icecast2 -v
> Icecast 2.3.3-kh2
>
> googling only resulted in the source code of the error:
> http://svn.xiph.org/icecast/branches/kh/icecast/src/connection.c
>
> <snip>
> if (ufds[i].revents & (POLLNVAL|POLLERR))
> {
> ERROR0 ("signalfd descriptor became invalid, doing thread
> restart");
> slave_restart(); // something odd happened
> }
> </snip>
>
> any ideas what my be the cause of my problems?
>
> thanks
>
> rob
>
>
> __________________...
2012 Aug 27
1
EROR connection/wait_for_serversock signalfd descriptor became invalid
...ast 2.3.3-kh2
>>
>> googling only resulted in the source code of the error:
>> http://svn.xiph.org/icecast/branches/kh/icecast/src/connection.c
>>
>> <snip>
>> if (ufds[i].revents& (POLLNVAL|POLLERR))
>> {
>> ERROR0 ("signalfd descriptor became invalid, doing thread
>> restart");
>> slave_restart(); // something odd happened
>> }
>> </snip>
>>
>> any ideas what my be the cause of my problems?
>>
>> thanks
>>
&...
2018 Oct 28
6
[PATCH nbdkit 0/4] Add floppy plugin.
Add nbdkit-floppy-plugin, “inspired” by qemu's VVFAT driver, but
without the ability to handle writes.
The implementation is pretty complete, supporting FAT32, LFNs, volume
labels, timestamps, etc, and it passes both ‘make check’ and ‘make
check-valgrind’.
Usage is simple; to serve the current directory:
$ nbdkit floppy .
Then using guestfish (or any NBD client):
$ guestfish --ro
2005 Nov 11
0
[PATCH] icecast video preview 2
...ULL);
+
+
+#ifdef WITH_PNG
+ free_video_preview (theora -> video_preview);
+ theora_clear(&theora -> td);
+#endif
theora_info_clear (&theora->ti);
theora_comment_clear (&theora->tc);
ogg_stream_clear (&codec->os);
@@ -112,8 +127,32 @@
ERROR0 ("Not enough header packets");
return NULL;
}
- if (theora_packet_iskeyframe (&packet))
- has_keyframe = 1;
+ if (theora_packet_iskeyframe (&packet)) {
+#ifdef WITH_PNG
+ if(config_get_config()->video_preview == 1 ) {
+ config_r...
2005 Nov 11
2
[PATCH] icecast video preview 2
Updated version of video preview covering frame writing every 3 keyframe
and a xsl typo.
Best regards :)
kysucix
--
Make things as simple as possible, but no simpler. - Albert Einstein
2005 Nov 11
1
[PATCH] icecast video preview
Hi. Here it is my patch to put a video preview of a theora stream in
status.xsl.
I just added a:
<video-preview>1</video-preview>
parameters in icecast.xml.in that control the previewing function.
It encodes a png in $webroot/$mountname.tmp and then move it to
$webroot/$mountname.png
As for now it saves a frame every theora keyframe, which is probably
too heavy for the server but
2019 Mar 28
0
[PATCH nbdkit v5 FINAL 15/19] file: Implement extents.
...EEK_HOLE
+ .can_extents = file_can_extents,
+ .extents = file_extents,
+#endif
.errno_is_preserved = 1,
};
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 174da29..64b2c45 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -64,6 +64,7 @@ EXTRA_DIST = \
test-error0.sh \
test-error10.sh \
test-error100.sh \
+ test-file-extents.sh \
test-floppy.sh \
test-foreground.sh \
test-fua.sh \
@@ -419,6 +420,10 @@ test_file_block_SOURCES = test-file-block.c test.h
test_file_block_CFLAGS = $(WARNINGS_CFLAGS) $(LIBGUESTFS_CFLAGS)
test_file_block_LDADD = libtest...
2018 Oct 28
0
[PATCH nbdkit 4/4] Add floppy plugin.
...tatbuf;
+
+ /* Allocate a new index in the directory array. Note that the root
+ * directory will always be at dirs[0].
+ */
+ di = floppy->nr_dirs;
+ np = realloc (floppy->dirs, sizeof (struct dir) * (di+1));
+ if (np == NULL) {
+ nbdkit_error ("realloc: %m");
+ goto error0;
+ }
+ floppy->dirs = np;
+ floppy->nr_dirs++;
+ memset (&floppy->dirs[di], 0, sizeof (struct dir));
+
+ /* Because this is called from config_complete, before nbdkit
+ * daemonizes or starts any threads, it's safe to use chdir here and
+ * greatly simplifies the code. Ho...
2012 Feb 10
3
[PATCH 0/3] Fix guestfish edit command.
This is a further, more comprehensive fix for
https://bugzilla.redhat.com/show_bug.cgi?id=788641
The guestfish 'edit' command (aka 'emacs', 'vi') suffered from the
same problems as virt-edit and more. It could have failed and left a
partially overwritten file, and it didn't preserve permissions etc
from the original file.
These three patches fix all this. The first