summaryrefslogtreecommitdiffstats
path: root/src/guestfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Add 'add_drive_ro' call. Fix up documentation. Plus a couple of minor code ↵Richard Jones2009-06-021-0/+21
| | | | improvements in the tests.
* Correctly handle malloc/realloc(0)Richard W.M. Jones2009-05-291-2/+2
| | | | | - malloc and realloc(0) are valid requests. Some implementations may return NULL for these, which would not indicate an error.
* Gettextize the source, make library strings translatable.Richard Jones2009-05-211-58/+70
|
* Don't stash strings in the handle.Richard W.M. Jones2009-05-131-17/+36
| | | | | - makes it impossible to write bindings for set_{path,qemu,append} functions
* Add 'append', LIBGUESTFS_APPEND to set additional kernel options.Richard W.M. Jones2009-05-131-2/+21
|
* Increase the wait time for vmchannel socket to appear (fix for slow / ↵Richard Jones2009-05-131-3/+3
| | | | heavily-loaded) machines.
* Handle EINTR, EAGAIN in select main loop.Richard Jones2009-05-101-0/+2
|
* Fix four memory leaks in guestfs.c revealed by valgrind.Richard Jones2009-05-091-0/+7
|
* Allow recovery from guest failure.Richard Jones2009-05-081-28/+57
|
* Change memory calculation to choose a generous amount of memory.Richard Jones2009-05-081-33/+7
|
* Force qemu quit when kernel panics (Charles Duffy).Richard Jones2009-05-081-1/+2
|
* Use unsigned type for lengths.Richard Jones2009-05-071-9/+12
|
* Handle EINTR and EAGAIN in reads.Richard Jones2009-05-071-4/+11
|
* Replace rtl8139 network card with virtio-net.Richard Jones2009-04-301-1/+1
|
* Autosync now runs umount-all; syncRichard Jones2009-04-301-1/+3
|
* Multiple callbacks during file transfers could cause data corruption - FIXED.Richard Jones2009-04-261-34/+84
|
* More checks.Richard Jones2009-04-261-0/+5
|
* Experimental recovery process should help with not cleaning up qemu.Richard Jones2009-04-241-1/+43
|
* Don't allocate file chunks on the stack.Richard W.M. Jones2009-04-241-19/+25
|
* Don't use large message buffer on the stack (fixes Java/i386 segfault).Richard W.M. Jones2009-04-241-9/+23
|
* Fix 64 bit memsize overhead.1.0.11Richard Jones2009-04-231-2/+2
|
* Reduce the amount of memory allocated to guests based on some testing.Richard W.M. Jones2009-04-231-2/+42
|
* Force a specific network NIC model (allows to work with latest qemu from SVN).Richard Jones2009-04-221-1/+1
|
* Allow qemu binary to be overridden at runtime.Richard Jones2009-04-221-5/+24
|
* Allow selection of qemu using --with-qemuRichard Jones2009-04-221-1/+1
|
* Various fixes to build and test in Koji.1.0.4Richard Jones2009-04-201-0/+2
|
* Make daemon cancellation really work.Richard Jones2009-04-201-3/+14
|
* Implement upload and download commands.Richard Jones2009-04-201-58/+180
|
* Implement _send_sync, _send_file_sync and _receive_file_sync.Richard Jones2009-04-191-98/+236
|
* Begin to add the upload and download commands.Richard Jones2009-04-181-2/+16
|
* Split out send and reply operations into separate callbacks.Richard Jones2009-04-181-43/+56
|
* guestfs_send -> guestfs__send, in case we want a future command called "send".Richard Jones2009-04-181-1/+1
|
* Separate out the high-level API actions.Richard Jones2009-04-181-118/+160
| | | | | | - Split out the high-level API actions so that they are in a separate file, and use the defined guestfs C API, instead of fiddling around with internal structures.
* Rewrite of main loop impl, start of FileIn/FileOut support.Richard Jones2009-04-181-128/+304
|
* Lots, mainly Python bindings.Richard Jones2009-04-131-6/+20
|
* Added Augeas support.Richard Jones2009-04-091-0/+6
|
* Many non-daemon functions are now auto-generated.Richard Jones2009-04-081-5/+8
|
* pvs/vgs/lvs commands working now.Richard Jones2009-04-071-2/+59
|
* guest_add_{drive,cdrom} now test if the files exist.Richard Jones2009-04-041-0/+10
|
* Fix parsing of paths with more than one element.Richard Jones2009-04-041-3/+4
|
* LIBGUESTFS_PATH implementation.Richard Jones2009-04-041-17/+85
|
* Implemented autosync, make it the default for guestfish.Richard Jones2009-04-041-0/+17
|
* Implemented 'mount' and 'touch' commands.Richard Jones2009-04-031-0/+45
|
* Parses return values and returned errors properly.Richard Jones2009-04-031-0/+32
|
* Pass -no-kqemu parameter to avoid warning about kqemu.Richard Jones2009-04-031-1/+2
|
* Makes a series of non-trivial calls.Richard Jones2009-04-031-4/+9
|
* Daemon and library are mostly talking to each other now.Richard Jones2009-04-031-7/+171
|
* Start the generated code and code generator.Richard Jones2009-04-031-1/+2
|
* Correctly handle the case when select runs out of filehandles.Richard Jones2009-04-021-0/+10
|
* Code to handle the daemon communications socket.Richard Jones2009-04-021-4/+112
|