Displaying 20 results from an estimated 400 matches similar to: "[PATCH] daemon/file.c: remove duplicate absolute-path check"
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change.
I'll get back to that series shortly ;-)
It turned into a factorization and constification exercise
during which I got a taste of ocaml. Thanks to Rich Jones
for help with a few snippets in generator.ml.
The overall result is that many previously-manually-maintained
bits from daemon/*.c functions are now hoisted into the automatically-
2015 Jul 26
2
[PATCH] ssh-agent: Add support to load additional certificates
Add support to load additional certificates
for already loaded private keys. Useful
if the private key is on a PKCS#11 hardware token.
The private keys inside ssh-agent are now using a refcount
to share the private parts between "Identities".
The reason for this change was that the PKCS#11 code
might have redirected ("wrap") the RSA functions to a hardware token.
We don't
2008 Feb 05
1
[LLVMdev] Working on getting MingW32/native tools-only source build up
Using MingW32/GCC 4.2.1 binary release, mix of Cygwin and MingW32
auxilliary tools, ActivePerl's Perl 5.8.8; operating system Vista. I'm
not going to worry about bootstrapping llvm-gcc until I know I can
bootstrap gcc.
1) ActivePerl uses the wrong shell (cmd.exe rather than sh.exe) when
doing backticks. I had to moderately rewrite llvm-config to use the Cwd
module's abs_path
2017 Dec 08
0
[PATCH v2 2/2] v2v: -i vmx: Enhance VMX support with ability to use ‘-it ssh’ transport.
This enhances the existing VMX input support allowing it to be
used over SSH to the ESXi server.
The original command (for local .vmx files) was:
$ virt-v2v -i vmx guest.vmx -o local -os /var/tmp
Adding ‘-it ssh’ and using an SSH remote path gives the new syntax:
$ virt-v2v \
-i vmx -it ssh \
"root@esxi.example.com:/vmfs/volumes/datastore1/guest/guest.vmx" \
-o local
2015 Aug 10
0
[PATCH 3/4] v2v: copy virtio drivers without guestfs handle leak
Refactor copying of virtio windows drivers into the guest so that the
matching of the drivers to the guest os flavor and copying the files
happens one next to the other in a single function, and no guestfs
handle (nor any other irrelevant info) is leaked outside.
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
---
v2v/convert_windows.ml | 77 ++++++++++-------
v2v/utils.ml |
2011 May 30
2
[LLVMdev] Build error for llvm-2.9 on RHEL5
Oh ok. Here it is:
#!/apollo/env/envImprovement/bin/perl
On Sun, May 29, 2011 at 5:07 PM, Eli Friedman <eli.friedman at gmail.com>wrote:
> On Sun, May 29, 2011 at 5:05 PM, Arjun Singri <arjunsingri at gmail.com>
> wrote:
> > Thank you for replying. These are the first few lines from llvm-config:
> > use 5.006;
> > use strict;
> > use warnings;
2011 May 30
2
[LLVMdev] Build error for llvm-2.9 on RHEL5
Thank you for replying. These are the first few lines from llvm-config:
use 5.006;
use strict;
use warnings;
use Cwd 'abs_path';
#---- begin autoconf values ----
my $PACKAGE_NAME = q{llvm};
On Sun, May 29, 2011 at 5:00 PM, Eli Friedman <eli.friedman at gmail.com>wrote:
> On Sun, May 29, 2011 at 4:37 PM, Arjun Singri <arjunsingri at gmail.com>
>
2011 May 30
0
[LLVMdev] Build error for llvm-2.9 on RHEL5
On Sun, May 29, 2011 at 5:05 PM, Arjun Singri <arjunsingri at gmail.com> wrote:
> Thank you for replying. These are the first few lines from llvm-config:
> use 5.006;
> use strict;
> use warnings;
> use Cwd 'abs_path';
> #---- begin autoconf values ----
> my $PACKAGE_NAME = q{llvm};
No, the very first line (which on my computer, looks like
2011 May 30
0
[LLVMdev] Build error for llvm-2.9 on RHEL5
On Sun, May 29, 2011 at 5:13 PM, Arjun Singri <arjunsingri at gmail.com> wrote:
> Oh ok. Here it is:
> #!/apollo/env/envImprovement/bin/perl
Okay, now what's the output of "/apollo/env/envImprovement/bin/perl --version"?
-Eli
> On Sun, May 29, 2011 at 5:07 PM, Eli Friedman <eli.friedman at gmail.com>
> wrote:
>>
>> On Sun, May 29, 2011 at 5:05
2011 May 30
1
[LLVMdev] Build error for llvm-2.9 on RHEL5
*This is perl, v5.8.8 built for Linux-2.6c2.5-i686-64int*
Thanks,
Arjun
On Sun, May 29, 2011 at 5:46 PM, Eli Friedman <eli.friedman at gmail.com>wrote:
> On Sun, May 29, 2011 at 5:13 PM, Arjun Singri <arjunsingri at gmail.com>
> wrote:
> > Oh ok. Here it is:
> > #!/apollo/env/envImprovement/bin/perl
>
> Okay, now what's the output of
2011 Sep 21
1
[LLVMdev] [PATCH] llvm-config: Add support for LIBDIR_SUFFIX.
On Tuesday 20 September 2011 11:50:07 Eric Christopher wrote:
>
> On Sep 20, 2011, at 11:46 AM, Johannes Obermayr wrote:
>
> > On Tuesday 20 September 2011 11:23:05 Eric Christopher wrote:
> >> Why?
> >>
> >> -eric
> >>
> >
> > Because openSUSE and many other linux distributions put all things to /usr/lib (i586) and /usr/lib64
2015 Oct 13
2
[PATCH v2 2/4] v2v: copy virtio drivers without guestfs handle leak
Refactor copying of virtio windows drivers into the guest so that the
matching of the drivers to the guest os flavor and copying the files
happens one next to the other in a single function, and no guestfs
handle (nor any other irrelevant info) is leaked outside.
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
---
changes since v1:
- former patch #3
- updated usage of string functions
2015 Jun 23
0
[PATCH v2] v2v: Support loading virtio-win drivers from virtio-win.iso (RHBZ#1234351).
This makes several changes to the handling of virtio-win drivers:
The VIRTIO_WIN_DIR environment variable has been renamed
VIRTIO_WIN (but you can still use the old name).
You can point the VIRTIO_WIN either at a RHEL virtio-win directory
(ie. /usr/share/virtio-win), OR at a loopback-mounted virtio-win ISO,
OR at the virtio-win.iso file itself. In the latter case, libguestfs
is used to open the
2009 Aug 12
1
factorization would be nice
Hi Rich,
I've changed part of generator.ml to look like this:
(match snd style with
| [] -> ()
| args ->
pr " memset (&args, 0, sizeof args);\n";
pr "\n";
pr " if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
pr " reply_with_error (\"%%s: daemon failed to decode
2009 Aug 11
1
[PATCH libguestfs] daemon/ls: make do_ll require root, like all the rest
per IRC discussion,
>From a1d982bf49e166341096902fc4c103d4397ce0e3 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Tue, 11 Aug 2009 13:16:27 +0200
Subject: [PATCH libguestfs] daemon/ls: make do_ll require root, like all the rest
* ls.c (do_ll): Do invoke "NEED_ROOT" here, and add a FIXME to
provide a "debug ll" command with the semantics
2011 Sep 20
2
[LLVMdev] [PATCH] llvm-config: Add support for LIBDIR_SUFFIX.
On Tuesday 20 September 2011 11:23:05 Eric Christopher wrote:
> Why?
>
> -eric
>
Because openSUSE and many other linux distributions put all things to /usr/lib (i586) and /usr/lib64 (x86_64) or /usr/lib32.
So it is possible to install x86 and x86_64 versions at the same time ...
(See also http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-July/042068.html and
2009 Aug 11
1
[PATCH libguestfs] generator.ml: constify do_mkdtemp
Not useful from a testing standpoint (since this presumes
a metric ton of other changes), but mostly a heads-up where I'm going.
>From 62cbebffe9859046019b500e4bcdb0e44e575755 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Tue, 11 Aug 2009 17:17:08 +0200
Subject: [PATCH libguestfs] generator.ml: constify do_mkdtemp
* daemon/dir.c (do_mkdtemp): Rewrite
2008 Feb 05
1
[LLVMdev] Working on getting MingW32/native tools-only source build up
Hello, Kenneth
> Using MingW32/GCC 4.2.1 binary release, mix of Cygwin and MingW32
> auxilliary tools, ActivePerl's Perl 5.8.8; operating system Vista. I'm
> not going to worry about bootstrapping llvm-gcc until I know I can
> bootstrap gcc.
Don't do this. Use either pure cygwin or pure mingw (with msys + msysDTK)
installation. This will save bunch of time for you.
2017 Jul 14
0
[PATCH 03/27] daemon: Reimplement ‘file’ API in OCaml.
‘file’ is a small, self-contained API which runs a single command, so
it's a good test case for reimplementing APIs.
---
daemon/Makefile.am | 2 ++
daemon/file.c | 80 -----------------------------------------------
daemon/file.ml | 60 +++++++++++++++++++++++++++++++++++
daemon/file.mli | 19 +++++++++++
generator/actions_core.ml | 1 +
5 files
2011 Sep 20
0
[LLVMdev] [PATCH] llvm-config: Add support for LIBDIR_SUFFIX.
Why?
-eric
On Sep 20, 2011, at 9:14 AM, Johannes Obermayr wrote:
> ---
> autoconf/configure.ac | 4 +++-
> cmake/modules/LLVMConfig.cmake.in | 3 ++-
> configure | 4 +++-
> tools/llvm-config/Makefile | 6 ++++++
> tools/llvm-config/llvm-config.in.in | 3 ++-
> 5 files changed, 16 insertions(+), 4 deletions(-)