search for: 28,7

Displaying 20 results from an estimated 678 matches for "28,7".

Did you mean: 24,7
2008 Aug 13
4
MinGW Patch
Hello, I was trying to compile Flac on MinGW/Msys but got an error stating SIZE_T_MAX is undefined. To fix this error I edited the file "flac-1.2.1/include/share/alloc.h" and made the following change: Starting at line #36 I changed: #ifndef SIZE_MAX # ifndef SIZE_T_MAX # ifdef _MSC_VER # define SIZE_T_MAX UINT_MAX # else # error # endif # endif # define SIZE_MAX SIZE_T_MAX
2012 Jul 23
2
[PATCH V2] qemu-xen-traditionnal, Fix dirty logging during migration.
...int is_write, target_phys_addr_t access_len) { - qemu_invalidate_entry(buffer); + qemu_invalidate_entry(buffer, access_len, is_write); cpu_notify_map_clients(); } diff --git a/qemu-xen.h b/qemu-xen.h index d50c89f..54159bf 100644 --- a/qemu-xen.h +++ b/qemu-xen.h @@ -28,7 +28,7 @@ extern int vga_ram_size; #endif uint8_t *qemu_map_cache(target_phys_addr_t phys_addr, uint8_t lock); -void qemu_invalidate_entry(uint8_t *buffer); +void qemu_invalidate_entry(uint8_t *buffer, target_phys_addr_t len, int w); void qemu_invalidate_map_cache(void); #defin...
2006 Jun 07
4
[patch] s390: vfork support
...gt; vfork support for s390/s390x. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> --- diff -purN a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def --- a/usr/klibc/SYSCALLS.def 2006-06-07 09:44:33.000000000 +0200 +++ b/usr/klibc/SYSCALLS.def 2006-06-07 13:01:54.000000000 +0200 @@ -28,7 +28,7 @@ void _exit,exit::_exit(int) ; A lot of architectures need architecture-specific vfork ; stubs, due to the no-stack requirement. These are the ; architectures which don't. -<alpha,m32r,ppc,ppc64,sh> pid_t vfork() +<alpha,m32r,ppc,ppc64,sh,s390,s390x> pid_t vfork() &lt...
2004 Oct 20
3
iproute2-2.6.9-041019 compiling error
While compiling the new release i´ll get this error: gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g -I../include -DRESOLVE_HOSTNAMES -c -o ipxfrm.o ipxfrm.c ipxfrm.c: In function `xfrm_selector_print'': ipxfrm.c:395: error: `IPPROTO_SCTP'' undeclared (first use in this function) ipxfrm.c:395: error: (Each undeclared identifier is reported only once ipxfrm.c:395: error: for
2019 Sep 27
1
[PATCH] v2v: -o rhv-upload: make -oo rhv-cafile optional
...ke -oo rhv-cafile optional, requiring it only when -oo rhv-verifypeer is enabled. --- v2v/output_rhv_upload.ml | 16 +++++++++------- v2v/virt-v2v-output-rhv.pod | 2 ++ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/v2v/output_rhv_upload.ml b/v2v/output_rhv_upload.ml index 24a289169..d08502826 100644 --- a/v2v/output_rhv_upload.ml +++ b/v2v/output_rhv_upload.ml @@ -28,7 +28,7 @@ open Types open Utils type rhv_options = { - rhv_cafile : string; + rhv_cafile : string option; rhv_cluster : string option; rhv_direct : bool; rhv_verifypeer : bool; @@ -76,15 +76,1...
2018 Oct 01
2
[PATCH] v2v: -o rhv-upload: skip test-v2v-o-rhv-upload.sh w/o nbdkit
...it, so skip this test if it is not installed. --- v2v/test-v2v-o-rhv-upload.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/v2v/test-v2v-o-rhv-upload.sh b/v2v/test-v2v-o-rhv-upload.sh index 8bda7cc0b..29214a9db 100755 --- a/v2v/test-v2v-o-rhv-upload.sh +++ b/v2v/test-v2v-o-rhv-upload.sh @@ -28,6 +28,7 @@ set -x $TEST_FUNCTIONS skip_if_skipped skip_if_backend uml +skip_unless nbdkit file --version skip_unless_phony_guest windows.img libvirt_uri="test://$abs_top_builddir/test-data/phony-guests/guests.xml" -- 2.17.1
2016 Jun 04
0
[PATCH] Wedding gift, removing double l from auxilliary
...XTLINUX, but the infrastructure is there for the other derivatives, assuming a suitable storage location can be found. diff --git a/com32/elflink/ldlinux/adv.c b/com32/elflink/ldlinux/adv.c index 0cbbe27..8ce73c3 100644 --- a/com32/elflink/ldlinux/adv.c +++ b/com32/elflink/ldlinux/adv.c @@ -28,7 +28,7 @@ /* * syslinux/adv.c * - * Access the syslinux auxilliary data vector + * Access the syslinux auxiliary data vector */ #include <syslinux/adv.h> diff --git a/com32/elflink/ldlinux/getadv.c b/com32/elflink/ldlinux/getadv.c index 1c27f1b..9baeba1 100644 --- a/com32/elflink/l...
2019 Oct 03
1
[PATCH 07/11] vhost: convert vhost_umem_interval_tree to half closed intervals
...t; --- drivers/vhost/vhost.c | 19 +++++++++---------- drivers/vhost/vhost.h | 4 ++-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 36ca2cf419bf..80c3cca24dc7 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -28,7 +28,7 @@ #include <linux/sort.h> #include <linux/sched/mm.h> #include <linux/sched/signal.h> -#include <linux/interval_tree_generic.h> +#include <linux/interval_tree_gen.h> #include <linux/nospec.h> #include "vhost.h" @@ -51,7 +51,7 @@ enum {...
2012 Jan 10
1
[PATCH] Prepend local library path to LD_LIBRARY_PATH for tests, instead of replacing it
...LIBRARY_PATH=$(top_builddir)/src/.libs${if ${LD_LIBRARY_PATH},:${LD_LIBRARY_PATH},} \ LIBGUESTFS_PATH=$(top_builddir)/appliance \ TMPDIR=$(top_builddir) diff --git a/haskell/Makefile.am b/haskell/Makefile.am index 5c1ff98..58bb30c 100644 --- a/haskell/Makefile.am +++ b/haskell/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = $(generator_built) *.hs run-bindtests if HAVE_HASKELL TESTS_ENVIRONMENT = \ - LD_LIBRARY_PATH=$(top_builddir)/src/.libs \ + LD_LIBRARY_PATH=$(top_builddir)/src/.libs${if ${LD_LIBRARY_PATH},:${LD_LIBRARY_PATH},} \ LIBGUESTFS_PATH=$(top_builddir)/appliance \ TMPDIR=$(t...
2020 Jan 10
2
SUGGESTION: Settings to disable forked processing in R, e.g. parallel::mclapply()
...ns) port <- getClusterOption("port", options) Index: src/library/parallel/R/unix/mclapply.R =================================================================== --- src/library/parallel/R/unix/mclapply.R (revision 77648) +++ src/library/parallel/R/unix/mclapply.R (working copy) @@ -28,7 +28,7 @@ stop("'mc.cores' must be >= 1") .check_ncores(cores) - if (isChild() && !isTRUE(mc.allow.recursive)) + if (!allowFork() || (isChild() && !isTRUE(mc.allow.recursive))) return(lapply(X = X, FUN = FUN, ...)) ## Follow...
2002 May 22
0
[PATCH] connect() timeout
..._addr, ai->ai_addrlen, + connection_timeout) >= 0) { /* Successful connection. */ memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen); restore_uid(); --- openssh-3.2.2p1/sshconnect.h.ORIG Wed Oct 10 07:07:45 2001 +++ openssh-3.2.2p1/sshconnect.h Tue May 21 15:40:06 2002 @@ -28,7 +28,7 @@ int ssh_connect(const char *, struct sockaddr_storage *, u_short, int, int, - int, struct passwd *, const char *); + int, int, struct passwd *, const char *); void ssh_login(Key **, int, const char *, struct sockaddr *, struct passwd *); -------------- next part -----------...
2013 Jan 03
20
[PATCH] Switch to poll in xenconsoled's io loop.
...-- tools/console/daemon/io.c | 90 +++++++++++++++++++++++++-------------------- 1 file changed, 50 insertions(+), 40 deletions(-) diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c index 48fe151..4e3c55c 100644 --- a/tools/console/daemon/io.c +++ b/tools/console/daemon/io.c @@ -28,7 +28,7 @@ #include <stdlib.h> #include <errno.h> #include <string.h> -#include <sys/select.h> +#include <poll.h> #include <fcntl.h> #include <unistd.h> #include <termios.h> @@ -930,7 +930,6 @@ static void handle_log_reload(void) void handle_...
2016 Jan 06
1
Backport request for commit 579b7c582 (drm/nouveau/pmu: do not assume a PMU is present)
...-off-by: Ben Skeggs <bskeggs at redhat.com> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c b/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c index 27a79c0..d95eb86 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c @@ -28,7 +28,7 @@ void nvkm_pmu_pgob(struct nvkm_pmu *pmu, bool enable) { - if (pmu->func->pgob) + if (pmu && pmu->func->pgob) pmu->func->pgob(pmu, enable); }
2015 Oct 05
1
[PATCH] lib: include <sys/socket.h> for accept4
...e.g. FreeBSD. This reverts the change to this file of commit 3b17152ec399acb35b23331d2c3b4f424a68824a. --- src/conn-socket.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/conn-socket.c b/src/conn-socket.c index a935cc4..05177ca 100644 --- a/src/conn-socket.c +++ b/src/conn-socket.c @@ -28,6 +28,7 @@ #include <errno.h> #include <poll.h> #include <sys/stat.h> +#include <sys/socket.h> /* accept4 */ #include <sys/types.h> #include <assert.h> #include <libintl.h> -- 2.1.0
2016 Mar 08
1
[PATCH] sleuthkit availability check renamed
...progress = true; cancellable = true; shortdesc = "download a file to the local machine given its inode"; longdesc = "\ diff --git a/tests/tsk/test-icat.sh b/tests/tsk/test-icat.sh index e1fdc5a..3b0fca4 100755 --- a/tests/tsk/test-icat.sh +++ b/tests/tsk/test-icat.sh @@ -28,7 +28,7 @@ fi rm -f test-mft.bin # Skip if TSK is not supported by the appliance. -if ! guestfish add /dev/null : run : available "icat"; then +if ! guestfish add /dev/null : run : available "sleuthkit"; then echo "$0: skipped because TSK is not available in the app...
2017 Feb 07
0
[PATCH v2 4/7] builder: rename docs test script
...r-docs.sh => test-docs.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename builder/{test-virt-builder-docs.sh => test-docs.sh} (100%) diff --git a/builder/Makefile.am b/builder/Makefile.am index d56b394b7..218f64b4c 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = \ test-simplestreams/streams/v1/index.json \ test-simplestreams/streams/v1/net.cirros-cloud_released_download.json \ test-virt-builder.sh \ - test-virt-builder-docs.sh \ + test-docs.sh \ test-virt-builder-list.sh \ test-virt-builder-list-simplestreams.sh \ test-v...
2017 Mar 23
0
[PATCH v5 04/10] builder: rename docs test script
...r-docs.sh => test-docs.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename builder/{test-virt-builder-docs.sh => test-docs.sh} (100%) diff --git a/builder/Makefile.am b/builder/Makefile.am index d56b394b7..218f64b4c 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = \ test-simplestreams/streams/v1/index.json \ test-simplestreams/streams/v1/net.cirros-cloud_released_download.json \ test-virt-builder.sh \ - test-virt-builder-docs.sh \ + test-docs.sh \ test-virt-builder-list.sh \ test-virt-builder-list-simplestreams.sh \ test-v...
2017 Jul 14
0
[hivex PATCH 2/2] build: do not ignore pod2man error codes
...E)-$(PACKAGE_VERSION)" \ - $< > $@-t; mv $@-t $@ + $< > $@-t && mv $@-t $@ noinst_DATA = \ $(top_builddir)/html/hivex.3.html diff --git a/regedit/Makefile.am b/regedit/Makefile.am index 476c059..749c221 100644 --- a/regedit/Makefile.am +++ b/regedit/Makefile.am @@ -28,7 +28,7 @@ hivexregedit.1: hivexregedit -c "Windows Registry" \ --name "hivexregedit" \ --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ - $< > $@-t; mv $@-t $@ + $< > $@-t && mv $@-t $@ noinst_DATA = \ $(top_builddir)/html/hive...
2017 Sep 12
0
[PATCH v8 2/7] builder: rename docs test script
...r-docs.sh => test-docs.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename builder/{test-virt-builder-docs.sh => test-docs.sh} (100%) diff --git a/builder/Makefile.am b/builder/Makefile.am index cb3e0a055..cd653dcd3 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = \ test-simplestreams/streams/v1/index.json \ test-simplestreams/streams/v1/net.cirros-cloud_released_download.json \ test-virt-builder.sh \ - test-virt-builder-docs.sh \ + test-docs.sh \ test-virt-builder-list.sh \ test-virt-builder-list-simplestreams.sh \ test-v...
2017 Sep 18
0
[PATCH v9 2/7] builder: rename docs test script
...r-docs.sh => test-docs.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename builder/{test-virt-builder-docs.sh => test-docs.sh} (100%) diff --git a/builder/Makefile.am b/builder/Makefile.am index cb3e0a055..cd653dcd3 100644 --- a/builder/Makefile.am +++ b/builder/Makefile.am @@ -28,7 +28,7 @@ EXTRA_DIST = \ test-simplestreams/streams/v1/index.json \ test-simplestreams/streams/v1/net.cirros-cloud_released_download.json \ test-virt-builder.sh \ - test-virt-builder-docs.sh \ + test-docs.sh \ test-virt-builder-list.sh \ test-virt-builder-list-simplestreams.sh \ test-v...