Displaying 20 results from an estimated 45 matches for "175,10".
Did you mean:
145,10
2011 Jan 25
1
[PATCH] Fix a Windows conversion error when C:\Temp exists in the guest
...indows.pm | 21 ++++++++++++++-------
1 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/lib/Sys/VirtV2V/Converter/Windows.pm b/lib/Sys/VirtV2V/Converter/Windows.pm
index 3050f47..144782b 100644
--- a/lib/Sys/VirtV2V/Converter/Windows.pm
+++ b/lib/Sys/VirtV2V/Converter/Windows.pm
@@ -175,10 +175,6 @@ sub _preconvert
# Note: disks are already mounted by main virt-v2v script.
- # Create directory to store firstboot service temporarily.
- eval { $g->mkdir ("/temp"); };
- eval { $g->mkdir ("/temp/v2v"); };
-
_upload_files ($g, $tmpdir, $...
2015 Feb 02
0
[PATCH 7/7] customize: add copy-in operation (RHBZ#1135585).
...quires_execute_on_guest then
error (f_"sorry, cannot run commands on a guest with a different architecture");
diff --git a/customize/customize_run.ml b/customize/customize_run.ml
index fed905b..3c82cb4 100644
--- a/customize/customize_run.ml
+++ b/customize/customize_run.ml
@@ -175,6 +175,10 @@ exec >>%s 2>&1
* read when their arguments are met. *)
()
+ | `CopyIn (localpath, remotedir) ->
+ msg (f_"Copying: %s to %s") localpath remotedir;
+ g#copy_in localpath remotedir
+
| `Delete path ->
msg (f_"Del...
2019 Dec 12
0
[PATCH v2 3/3] virtio-gpu: use damage info for display updates.
...u_obj(plane->state->fb->obj[0]);
if (bo->dumb)
- virtio_gpu_update_dumb_bo(vgdev, bo, plane->state);
+ virtio_gpu_update_dumb_bo(vgdev, plane->state, &rect);
if (plane->state->fb != old_state->fb ||
plane->state->src_w != old_state->src_w ||
@@ -175,10 +182,10 @@ static void virtio_gpu_primary_plane_update(struct drm_plane *plane,
}
virtio_gpu_cmd_resource_flush(vgdev, bo->hw_res_handle,
- plane->state->src_x >> 16,
- plane->state->src_y >> 16,
- plane->state->src_w >> 16,...
2001 Oct 29
0
signal messages
...ange_signal = 0;
static volatile int received_signal = 0;
+/* send signal to remote program: 0 disabled, 1 enabled, 2 pending */
+static volatile int send_signal = 0;
/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
static int in_non_blocking_mode = 0;
@@ -173,7 +175,10 @@
signal_handler(int sig)
{
received_signal = sig;
- quit_pending = 1;
+ if (send_signal == 1)
+ send_signal = 2;
+ else
+ quit_pending = 1;
}
/*
@@ -765,6 +770,26 @@
leave_raw_mode();
}
+static char *
+sig2name(int sig)
+{
+#define SIG(x) if (sig == SIG ## x) return #x
+ SIG(AB...
2020 Apr 03
5
[supermin PATCH 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an
output when checking whether the appliance must be rebuilt using
--if-newer.
At the moment it is implemented only for the build mode, and for its
ext2 output format.
Pino Toscano (4):
build: factor ext2 filenames
Tighten Unix_error check for missing outputdir
Extend modes with list of outputs
build: set
2020 Apr 03
0
[supermin PATCH 3/4] Extend modes with list of outputs
...e.ml
@@ -21,7 +21,7 @@ open Printf
open Package_handler
open Utils
-let prepare debug (copy_kernel, format, host_cpu,
+let rec prepare debug (copy_kernel, format, host_cpu,
packager_config, tmpdir, use_installed, size,
include_packagelist)
inputs outputdir =
@@ -175,3 +175,10 @@ let prepare debug (copy_kernel, format, host_cpu,
(* No config files to copy, so do not create base.tar.gz. *)
if debug >= 1 then printf "supermin: not creating base.tar.gz\n%!";
)
+
+and get_outputs
+ (copy_kernel, format, host_cpu,
+ packager_config,...
2018 Jan 23
1
[PATCH nbdkit] Change the default protocol to newstyle.
...lies I<--foreground>.
=item B<--exportname> EXPORTNAME
-Set the exportname and use the newstyle protocol (implies I<-n>).
+Set the exportname.
If not set, exportname C<""> (empty string) is used. Exportnames are
not allowed with the oldstyle protocol.
@@ -175,8 +175,10 @@ interfaces. See also I<-p>.
=item B<--newstyle>
-Use the newstyle NBD protocol instead of the default (oldstyle)
-protocol. See L</NEW STYLE VS OLD STYLE PROTOCOL> below.
+Use the newstyle NBD protocol protocol. This is the default in nbdkit
+E<ge> 1.1.2...
2020 Apr 03
2
Re: [supermin PATCH 3/4] Extend modes with list of outputs
...Package_handler
> open Utils
>
> -let prepare debug (copy_kernel, format, host_cpu,
> +let rec prepare debug (copy_kernel, format, host_cpu,
> packager_config, tmpdir, use_installed, size,
> include_packagelist)
> inputs outputdir =
> @@ -175,3 +175,10 @@ let prepare debug (copy_kernel, format, host_cpu,
> (* No config files to copy, so do not create base.tar.gz. *)
> if debug >= 1 then printf "supermin: not creating base.tar.gz\n%!";
> )
> +
> +and get_outputs
> + (copy_kernel, format, hos...
2019 Jun 26
0
[PATCH 15/25] memremap: provide an optional internal refcount in struct dev_pagemap
...be
+ * 'live' on entry and will be killed and reaped at
+ * devm_memremap_pages_release() time, or if this routine fails.
*
* 4/ res is expected to be a host memory range that could feasibly be
* treated as a "System RAM" range, i.e. not a device mmio range, but
@@ -175,10 +202,21 @@ void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
break;
}
- if (!pgmap->ref || !pgmap->ops || !pgmap->ops->kill ||
- !pgmap->ops->cleanup) {
- WARN(1, "Missing reference count teardown definition\n");
- return ERR_PTR(-E...
2019 Jun 26
1
[PATCH 15/25] memremap: provide an optional internal refcount in struct dev_pagemap
...on entry and will be killed and reaped at
> + * devm_memremap_pages_release() time, or if this routine fails.
> *
> * 4/ res is expected to be a host memory range that could feasibly be
> * treated as a "System RAM" range, i.e. not a device mmio range, but
> @@ -175,10 +202,21 @@ void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
> break;
> }
>
> - if (!pgmap->ref || !pgmap->ops || !pgmap->ops->kill ||
> - !pgmap->ops->cleanup) {
> - WARN(1, "Missing reference count teardown definition\...
2002 Jan 31
4
signal transmission in ssh2
...static volatile sig_atomic_t received_signal = 0;
+/* send signal to remote program: 0 disabled, 1 enabled, 2 pending */
+static volatile sig_atomic_t send_signal = 0;
/* Flag indicating whether the user\'s terminal is in non-blocking mode. */
static int in_non_blocking_mode = 0;
@@ -173,7 +175,10 @@
signal_handler(int sig)
{
received_signal = sig;
- quit_pending = 1;
+ if (send_signal == 1)
+ send_signal = 2;
+ else
+ quit_pending = 1;
}
/*
@@ -765,6 +770,26 @@
leave_raw_mode();
}
+static char *
+sig2name(int sig)
+{
+#define SIG(x) if (sig == SIG ## x) return #x
+ SIG(AB...
2006 Jan 08
3
Allow --without-privsep build.
...auth_debug_reset();
ret = auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
+#ifdef USE_PRIVSEP
if (!use_privsep)
+#endif
auth_debug_send();
return ret;
}
--- openssh-4.2p1/auth2.c~ 2005-07-17 08:26:44.000000000 +0100
+++ openssh-4.2p1/auth2.c 2006-01-07 18:52:24.000000000 +0000
@@ -175,8 +175,10 @@ input_userauth_request(int type, u_int32
use_privsep ? " [net]" : "");
authctxt->service = xstrdup(service);
authctxt->style = style ? xstrdup(style) : NULL;
+#ifdef USE_PRIVSEP
if (use_privsep)
mm_inform_authserv(service, style);
+#endif...
2023 Apr 07
2
[PATCH 0/2] vdpa_sim_blk: support shared backend
This series is mainly for testing live migration between 2 vdpa_sim_blk
devices.
The first patch is preparation and moves the buffer allocation into devices,
the second patch adds the `shared_buffer_mutex` parameter to vdpa_sim_blk to
use the same ramdisk for all devices.
Tested with QEMU v8.0.0-rc2 in this way:
modprobe vhost_vdpa
modprobe vdpa_sim_blk shared_backend=true
vdpa dev add mgmtdev
2006 May 11
11
[PATCH] Integrating applications into Mini-OS
...s/kernel.c 2006-05-09 08:18:33.000000000 -0400
@@ -38,6 +38,10 @@
#include <xen/features.h>
#include <xen/version.h>
+#if defined INIT_APP
+ void init_app(void);
+#endif
+
/*
* Shared page for communicating with the hypervisor.
* Events flags go here, for example.
@@ -171,6 +175,10 @@
/* Init XenBus from a separate thread */
create_thread("init_xs", init_xs, NULL);
+#if defined INIT_APP
+ init_app();
+#endif
+
/* Everything initialised, start idle thread */
run_idle_thread();
}
diff -ur oxen-unstable/extras/mini-os/lib/printf.c xen-unsta...
2013 Apr 16
1
update config.guess and config.sub to support aarch64
Hello,
would it be possible to update config.sub and config.guess to the latest versions (or at least version
from automake-1.13.1) in order to support new architectures based on the ARM 64 bit CPU?
Patch: http://plautrba.fedorapeople.org/openssh/openssh-latest-config.sub-config.guess.patch
Related Fedora bug: https://bugzilla.redhat.com/show_bug.cgi?id=926284
Thanks,
Petr
2015 Feb 02
8
[PATCH 0/7 v2] Make copy_in & copy_out APIs, and use copy_in in customize
Hi,
attached there is the second version of the patch series adding
copy_in and copy_out in the library, mostly moving them from guestfish.
It also adds the copy_in usage in virt-customize, as aid in a new image
building.
Thanks,
Pino Toscano (7):
cmd: add a way to run (and wait) asynchronously commands
cmd: add a child-setup callback
cmd: add the possibility to get a fd to the process
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
...\
- pci/readb.o pci/readw.o pci/readl.o \
- pci/writeb.o pci/writew.o pci/writel.o \
- \
- sys/x86_init_fpu.o math/pow.o math/strtod.o \
- syslinux/disk.o \
- \
- syslinux/setup_data.o
+ getcwd.o fdopendir.o
## CORE OBJECTS, INCLUDED IN THE ROOT COM32 MODULE
LIBENTRY_OBJS = \
@@ -175,10 +202,16 @@ LIBZLIB_OBJS = \
zlib/inflate.o zlib/infback.o zlib/inftrees.o zlib/inffast.o \
sys/zfile.o sys/zfopen.o
+LIBDISK_OBJS = \
+ syslinux/disk/common.o \
+ syslinux/disk/$(FW_SUBDIR)/disk.o
+
MINLIBOBJS = \
$(addprefix $(OBJ)/,syslinux/ipappend.o \
syslinux/dsinfo.o \
$(LIBOT...
2008 Oct 20
13
[PATCH 00/13] ia64/pv_ops, xen: more paravirtualization.
This patchset is for more paravirtualization on ia64/pv_ops.
- paravirtualize fsys call (fsys.S) by multi compile
- paravirtualize gate page (gate.S) by multi compile
- support save/restore
For this purpose, the followings needs to be paravirtualized
- ar.itc instruction
- sched_clock()
This is because timer may changed before/after saving/restoring.
For convenience the working full
2008 Oct 20
13
[PATCH 00/13] ia64/pv_ops, xen: more paravirtualization.
This patchset is for more paravirtualization on ia64/pv_ops.
- paravirtualize fsys call (fsys.S) by multi compile
- paravirtualize gate page (gate.S) by multi compile
- support save/restore
For this purpose, the followings needs to be paravirtualized
- ar.itc instruction
- sched_clock()
This is because timer may changed before/after saving/restoring.
For convenience the working full
2008 Nov 25
13
[PATCH 00/13] ia64/pv_ops, xen: more paravirtualization. TAKE 2
This patchset is for more paravirtualization on ia64/xen domU.
- paravirtualize fsys call (fsys.S) by multi compile
- paravirtualize gate page (gate.S) by multi compile
- support save/restore
For this purpose, the followings needs to be paravirtualized
- ar.itc instruction
- sched_clock()
This is because timer may changed before/after saving/restoring.
For convenience the working full