summaryrefslogtreecommitdiff
path: root/block/nbd.c
AgeCommit message (Expand)AuthorFilesLines
2014-02-21nbd: correctly propagate errorsPaolo Bonzini1-18/+16
2014-02-21nbd: produce a better error if neither host nor port is passedPaolo Bonzini1-7/+6
2014-02-17Use error_is_set() only when necessaryMarkus Armbruster1-1/+1
2014-01-06qemu-option: Remove qemu_opts_create_nofailPeter Crosthwaite1-1/+2
2013-12-16nbd: pass export name as init argumentMarc-André Lureau1-5/+8
2013-12-16Split nbd block client codeMarc-André Lureau1-345/+28
2013-09-12bdrv: Use "Error" for opening imagesMax Reitz1-1/+2
2013-08-19aio: drop io_flush argumentStefan Hajnoczi1-7/+4
2013-08-19block/nbd: drop nbd_have_request()Stefan Hajnoczi1-10/+3
2013-06-18nbd: strip braces from literal IPv6 address in URIJán Tomko1-1/+10
2013-05-12remove double semicolonsDong Xu Wang1-1/+1
2013-04-22Merge remote-tracking branch 'kwolf/for-anthony' into stagingAnthony Liguori1-2/+1
2013-04-22block: Remove filename parameter from .bdrv_file_open()Kevin Wolf1-2/+1
2013-04-15nbd: set TCP_NODELAYStefan Hajnoczi1-0/+3
2013-04-15nbd: use TCP_CORK in nbd_co_send_request()Stefan Hajnoczi1-6/+16
2013-04-15nbd: unlock mutex in nbd_co_send_request() error pathStefan Hajnoczi1-1/+1
2013-04-02oslib-posix: rename socket_set_nonblock() to qemu_set_nonblock()Stefan Hajnoczi1-1/+1
2013-03-22nbd: Check against invalid option combinationsKevin Wolf1-0/+14
2013-03-22nbd: Use default port if only host is specifiedKevin Wolf1-9/+10
2013-03-22block: Introduce .bdrv_parse_filename callbackKevin Wolf1-16/+13
2013-03-22nbd: Accept -drive options for the network connectionKevin Wolf1-52/+77
2013-03-22nbd: Keep hostname and port separateKevin Wolf1-9/+40
2013-03-22block: Add options QDict to bdrv_file_open() prototypesKevin Wolf1-1/+2
2012-12-19misc: move include files to include/qemu/Paolo Bonzini1-3/+3
2012-12-19block: move include files to include/block/Paolo Bonzini1-2/+2
2012-11-12nbd: accept URIsPaolo Bonzini1-1/+97
2012-11-12nbd: accept relative path to Unix socketPaolo Bonzini1-10/+7
2012-06-11cleanup qemu_co_sendv(), qemu_co_recvv() and friendsMichael Tokarev1-8/+10
2012-04-26nbd: Fix uninitialised use of s->sockKevin Wolf1-1/+1
2012-04-23Merge remote-tracking branch 'kwolf/for-anthony' into stagingAnthony Liguori1-4/+4
2012-04-19aio: remove process_queue callback and qemu_aio_process_queuePaolo Bonzini1-4/+4
2012-04-19nbd: do not block in nbd_wr_sync if no data at all is availablePaolo Bonzini1-2/+10
2012-04-19nbd: consistently return negative errno valuesPaolo Bonzini1-7/+6
2012-04-19nbd: consistently check for <0 or >=0Paolo Bonzini1-7/+15
2012-04-19nbd: avoid out of bounds access to recv_coroutine arrayPaolo Bonzini1-1/+5
2011-12-22nbd: add support for NBD_CMD_TRIMPaolo Bonzini1-0/+25
2011-12-22nbd: add support for NBD_CMD_FLUSHPaolo Bonzini1-8/+37
2011-12-22nbd: add support for NBD_CMD_FLAG_FUAPaolo Bonzini1-0/+4
2011-12-22nbd: allow multiple in-flight requestsPaolo Bonzini1-13/+56
2011-12-22nbd: split requestsPaolo Bonzini1-6/+46
2011-12-22nbd: switch to asynchronous operationPaolo Bonzini1-65/+123
2011-12-06fix typo: delete redundant semicolonDong Xu Wang1-2/+2
2011-10-21block: take lock around bdrv_write implementationsPaolo Bonzini1-1/+12
2011-10-21block: take lock around bdrv_read implementationsPaolo Bonzini1-1/+12
2011-10-21block: add a CoMutex to synchronous read driversPaolo Bonzini1-0/+2
2011-09-19nbd: support feature negotiationPaolo Bonzini1-2/+2
2011-09-12nbd: Clean up use of block_int.hMarkus Armbruster1-0/+1
2011-08-20Use glib memory allocation and free functionsAnthony Liguori1-9/+9
2011-05-03NBD: Avoid leaking a couple of strings when the NBD device is closedNick Thomas1-0/+4
2011-04-07NBD device: Separate out parsing configuration and opening sockets.Nick Thomas1-55/+102