From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44260) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VAKlm-0007z6-0z for qemu-devel@nongnu.org; Fri, 16 Aug 2013 10:12:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VAKlf-000761-Vn for qemu-devel@nongnu.org; Fri, 16 Aug 2013 10:12:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39557) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VAKlf-00075n-Mc for qemu-devel@nongnu.org; Fri, 16 Aug 2013 10:12:43 -0400 From: Laszlo Ersek Date: Fri, 16 Aug 2013 16:15:00 +0200 Message-Id: <1376662507-5212-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH 0/7] introduce BSD-licensed block driver for "raw" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: pbonzini@redhat.com, aliguori@us.ibm.com, hch@lst.de, qemu-devel@nongnu.org Paolo asked me to write such a driver based on his textual specification alone. The first patch captures his email in full, the rest re-quotes parts that are being implemented. The tree compiles at each patch. The series passes "make check-block". "block/raw.c" is not removed because I wanted to keep it out of my series and out of my brain. Disclaimer: I couldn't care less if the raw block driver was public domain or AGPLv3+, as long as it qualifies as free software. I'm only trying to do what Paolo asked of me. Laszlo Ersek (7): add skeleton for BSD licensed "raw" BlockDriver raw_bsd: emit debug events in bdrv_co_readv() and bdrv_co_writev() raw_bsd: add raw_create() raw_bsd: introduce "special members" raw_bsd: add raw_create_options raw_bsd: register bdrv_raw switch raw block driver from "raw.o" to "raw_bsd.o" block/Makefile.objs | 2 +- block/raw_bsd.c | 186 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 187 insertions(+), 1 deletions(-) create mode 100644 block/raw_bsd.c