similar to: [PATCH] Fix error handling in 'zero' function.

Displaying 20 results from an estimated 100000 matches similar to: "[PATCH] Fix error handling in 'zero' function."

2010 Mar 21
10
[PATCH 0/10] Miscellaneous patches to fix some compile problems on Mac OS X
Patches 1-6 are general code quality improvements. Note that Guido previously asked us for the ability to build libguestfs without building the appliance. Patches 7-10 are specific to Mac OS X, but shouldn't break the build for existing platforms. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports
2009 Nov 27
10
[PATCH 0/9] FOR DISCUSSION ONLY: daemon error handling
The more I look at this patch, the less I like it. I would summarise why I think it's wrong here, but it's better if you look at the message I posted on the gnulib mailing list here first: http://lists.gnu.org/archive/html/bug-gnulib/2009-11/msg00434.html Directly accessing errno on Windows is wrong: you won't see the true reasons for an error by doing that. However depending on
2010 Oct 21
2
[PATCH 0/2] First part of fix for CVE-2010-3851
These two patches implement the first (and hardest) part of the fix for CVE-2010-3851. This adds a way to specify the format when adding a drive, avoiding qemu's auto-detection. In order to avoid an explosion of different add_drive_* functions (we have 4 already), we have implemented a way to specify optional arguments to functions, so all we need is a single new 'add_drive_opts'
2009 Sep 22
1
[PATCH] Change handling of spaces on Linux kernel command line
-- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html -------------- next part -------------- >From 38588ad8f237f1a9987c832add6ed8ca07177194 Mon Sep 17
2010 Jun 04
3
[PATCH 0/3] some guestfish sub commands can not handle special files properly (RHBZ#582484)
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html
2010 Feb 23
0
[PATCH hivex] hivex: Fix allocations that may move C heap buffer.
This is quite a serious issue in hivex, since large/complex modifications will typically segfault unless this patch is applied. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do:
2011 Jan 17
1
Assigning qemu process to cgroups
I had a go at writing a patch, but I think it's possible already without any patch. After launch you can get the PID of the qemu subprocess: guestfs_get_pid (g); --> returns PID You can use Linux to map this to a list of thread IDs: ls /proc/$PID/task/ --> returns a list of thread IDs [Yes, this is potentially racy, but in reality qemu has already started up fully after
2009 Sep 17
1
[PATCH] Fix code which looked for leaked FDs between each command.
-- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html -------------- next part -------------- >From d5fad33b4eaa39722ea1dc96de9446ffc4805e01 Mon Sep 17
2009 Aug 22
1
[PATCH] Add waitpid along guestfs_close path (RHBZ#518747)
Not quite sure what happened to the waitpid()s which were along that path, but at some point they seem to have got deleted. This is a fix for: https://bugzilla.redhat.com/show_bug.cgi?id=518747 I haven't been able to run the tests yet however, because currently Rawhide is broken (ntfsprogs has missing dependencies). Rich. -- Richard Jones, Emerging Technologies, Red Hat
2010 Apr 08
1
libguestfs 1.2.x (stable series) and 1.3.x (development series) created
As proposed earlier: https://www.redhat.com/archives/libguestfs/2010-April/msg00005.html I have created libguestfs 1.2 stable series and 1.3 development series. I have released tarballs for libguestfs 1.2.0 and 1.3.0. These are exactly the same as version 1.0.89 (I didn't even change the version number inside them). http://libguestfs.org/download/?C=M;O=D This is just to get things
2010 Jul 16
3
[PATCH 0/3] Build fixes for gcc 4.5
Various build fixes for gcc 4.5. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html
2009 Nov 02
4
[PATCH 0/3 VERSION 3 FOR DISCUSSION ONLY] FUSE support for libguestfs
This is the third version of the FUSE bindings for libguestfs. Still, read and write calls don't work, but you can now navigate through the filesystem hierarchy efficiently. Rich. .gitignore | 3 + HACKING | 3 + Makefile.am | 5 + README | 2 + TODO | 37 +-- bindtests | 13 + bootstrap | 2 +
2009 Oct 30
1
[PATCH] appliance: Don't rebuild the appliance every time configure runs
Whenever config.status / configure runs it touches appliance/make.sh (even if the file hasn't changed) and that causes the appliance to be rebuilt completely. This patch breaks that dependency because building the appliance is time-consuming (since dracut was added) so we should try not to build it each time. Rich. -- Richard Jones, Virtualization Group, Red Hat
2009 Nov 10
0
ANNOUNCE: libguestfs 1.0.78 released
I'm pleased to announce the release of libguestfs 1.0.78. Libguestfs is a library for accessing and modifying virtual machine disk images. Home page: http://libguestfs.org/ Source: http://libguestfs.org/download/ Binaries: http://libguestfs.org/FAQ.html#binaries A Fedora build is available in Koji here: http://koji.fedoraproject.org/koji/packageinfo?packageID=8391 (These release
2010 May 18
0
[PATCH] New API: Implement pwrite system call (partial fix for RHBZ#592883).
-- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do: http://et.redhat.com/~rjones/libguestfs/recipes.html -------------- next part -------------- >From d634c9780b55b6bb21bffc997e483e5b12491eb8 Mon Sep 17
2010 May 06
1
[PATCH v2v] Pass config handle through to converter modules.
Existing modules will just ignore this extra parameter, but we'll be using it for Windows conversions. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages. http://et.redhat.com/~rjones/libguestfs/ See what it can do:
2009 Nov 25
0
Building guestfs_protocol.o in the daemon
Recently we changed the daemon so it builds guestfs_protocol.o by this rule: $(libsrcdir)/guestfs_protocol.o: force $(MAKE) -C $(libsrcdir) guestfs_protocol.o guestfsd_LDADD = \ $(libsrcdir)/guestfs_protocol.o \ #... The problem with doing this when building on Windows is that the toplevel src/ directory will be configured differently from the daemon/ directory. This means that
2009 Aug 20
1
libguestfs / virt-v2v split, new repo for virt-v2v
We've split off virt-v2v components into a separate repository: http://gitorious.org/virt-v2v/ (Previously they were part of the libguestfs repository). So virt-v2v stuff will disappear from the libguestfs repository shortly. You can get it from the link above instead. Rich. -- Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones libguestfs lets you edit virtual
2010 Apr 10
9
[PATCH 0/9] Enhance virt-resize so it can really expand Linux and Windows guests
This is a set of bugfixes and enhancements to allow virt-resize to really expand Linux and Windows guests. Previously there were lots of bugs. This version has been tested on a variety of guests successfully. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones libguestfs lets you edit virtual machines. Supports shell scripting, bindings from many languages.
2009 Oct 19
5
[PATCH 0/5] Add new tools virt-tar and virt-ls and tidy up the tools code
This patch series starts by tidying up the code for the virt-cat, virt-df, virt-edit, etc tools, moving them into a single directory and making the build system much simpler as a consequence. Then we add two new tools, virt-tar (a general purpose archive and upload tool) and virt-ls (for listing directories). No new functionality is enabled by these tools -- that is to say, you can do everything