search for: msg00081

Displaying 7 results from an estimated 7 matches for "msg00081".

Did you mean: msg00011
2018 Nov 13
1
Re: [PATCH v4 1/3] v2v: refactor copy_drivers() in Windows_virtio
...rom_virtio_win g inspect "/" driverdir virtio_iso_path_matches_guest_os > + ) > 0 Any reason not to change this to copy_from_virtio_win ... <> [] as described in the previous comment on this patch? More comments here: https://www.redhat.com/archives/libguestfs/2018-November/msg00081.html Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. h...
2020 May 13
0
Sometimes commands do not terminate after upgrading to R 4.0 and Ubuntu 20.04
...18 that | no longer support certain commands. | | I hope someone can help. Yes! See an email thread here started on the (Debian "internal" but of course public) list debian-science by me on April 30 and carried into May so you need both https://lists.debian.org/debian-science/2020/04/msg00081.html https://lists.debian.org/debian-science/2020/05/msg00000.html as the thread spanse two months. It appears to be a bad OpenMP and and OpenBLAS interaction you can (for now) avoid) by replacing the 'pthread' variant of OpenBLAS with the OpenMP version (see the thread for details). D...
2019 Jan 23
3
Why -pie option force LLD to output shared obj file type, not executable?
Hello Rui, I'm enabling the LLD in the Uefi firmware edk2 build. I meet a problem about the -pie option and cannot output the executable type obj file correctly. I need your advice. The Uefi firmware executable binary is the position independent + small code mode in 64bits. So we always add the options "-Wl,-pie -mcmodel=small" in our clang build toolchain. These options work well
2020 May 13
3
Sometimes commands do not terminate after upgrading to R 4.0 and Ubuntu 20.04
I have upgraded R (from 3.6 to 4.0) and RStudio (from 1.1 to 1.2.5) a few days ago, and Ubuntu from 18.04 to 20.04 yesterday. Since then, R sometimes never terminates when executing certain commands: ivreg (from package AER), summary (of a logit regression) and logitmfx (from package mfx). Sometimes these commands run fine, but most of the time I have to kill the process because R won't
2018 Nov 13
8
[PATCH v4 0/3] Install QEMU-GA from oVirt guest tools ISO on Linux
changes in v4: - fix call to install_local changes in v2: - moved copy_drivers above copy_files - renamed copy_files to copy_from_virtio_win - renamed install to install_local - use rpm instead of yum This installs packages with QEMU Guest Agent when converting Linux machine. The packages should be available on guest tools ISO. The patches work "as-is" but probably deserve some more
2011 Mar 10
1
[PATCH for discussion only] New event API (RHBZ#664558).
...e than one callback to be registered for each event, makes it possible to call the API from other languages, and allows debug and trace messages to be rerouted from stderr. An older version of this API was discussed on the mailing list here: https://www.redhat.com/archives/libguestfs/2010-December/msg00081.html https://www.redhat.com/archives/libguestfs/2011-January/msg00012.html --- generator/.depend | 8 +- generator/Makefile.am | 1 + generator/generator_c.ml | 34 +++++ generator/generator_events.ml | 40 ++++++ po/POTFILES.in | 1 + src/Makef...
2020 Feb 11
4
[PATCH nbdkit v2 0/3] server: Remove explicit connection parameter.
v1 was here: https://www.redhat.com/archives/libguestfs/2020-February/msg00081.html v2 replaces struct connection *conn = GET_CONN; with GET_CONN; which sets conn implicitly and asserts that it is non-NULL. If we actually want to test if conn is non-NULL or behave differently, then you must use threadlocal_get_conn() instead, and some existing uses do that. Rich.