From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45320) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYbBW-0007ol-2g for qemu-devel@nongnu.org; Tue, 31 Jan 2017 11:21:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYbBS-0000i6-2x for qemu-devel@nongnu.org; Tue, 31 Jan 2017 11:21:34 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55906) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cYbBR-0000hz-Pj for qemu-devel@nongnu.org; Tue, 31 Jan 2017 11:21:30 -0500 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 31 Jan 2017 20:20:41 +0400 Message-Id: <20170131162122.29408-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/41] Chr split patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= The following changes since commit a0def594286d9110a6035e02eef558cf3cf5d8= 47: Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into s= taging (2017-01-30 10:23:20 +0000) are available in the git repository at: https://github.com/elmarco/qemu.git tags/chr-split-pull-request for you to fetch changes up to 3766519be2843e0947425cafd1e7e205dd63f0fd: char: headers clean-up (2017-01-31 13:03:48 +0400) ---------------------------------------------------------------- ---------------------------------------------------------------- Marc-Andr=C3=A9 Lureau (41): MAINTAINERS: add myself to qemu-char.c spice-qemu-char: convert to finalize baum: convert to finalize msmouse: convert to finalize mux: convert to finalize char-udp: convert to finalize char-socket: convert to finalize char-pty: convert to finalize char-ringbuf: convert to finalize char-parallel: convert parallel to finalize char-stdio: convert to finalize char-win-stdio: convert to finalize char-win: do not override chr_free char-win: convert to finalize char-fd: convert to finalize char: remove chr_free char: get rid of CharDriver char: rename remaining CharDriver to Chardev char: remove class kind field char: move to chardev/ char: create chardev-obj-y char: make null_chr_write() the default method char: move null chardev to its own file char: move mux to its own file char: move ringbuf/memory to its own file char: rename and move to header CHR_READ_BUF_LEN char: remove unused READ_RETRIES char: move QIOChannel-related stuff to char-io.h char: move fd chardev in its own file char: move win chardev base class in its own file char: move win-stdio into its own file char: move socket chardev to its own file char: move udp chardev in its own file char: move file chardev in its own file char: move stdio in its own file char: move console in its own file char: move pipe chardev in its own file char: move pty chardev in its own file char: move serial chardev to its own file char: move parallel chardev in its own file char: headers clean-up chardev/char-fd.h | 44 + chardev/char-io.h | 46 + chardev/char-mux.h | 63 + chardev/char-parallel.h | 32 + chardev/char-serial.h | 35 + chardev/char-win-stdio.h | 29 + chardev/char-win.h | 53 + include/sysemu/char.h | 69 +- backends/baum.c | 11 +- backends/msmouse.c | 11 +- backends/testdev.c | 5 - chardev/char-console.c | 53 + chardev/char-fd.c | 170 ++ chardev/char-file.c | 139 ++ chardev/char-io.c | 192 ++ chardev/char-mux.c | 358 ++++ chardev/char-null.c | 54 + chardev/char-parallel.c | 316 +++ chardev/char-pipe.c | 191 ++ chardev/char-pty.c | 300 +++ chardev/char-ringbuf.c | 249 +++ chardev/char-serial.c | 318 +++ chardev/char-socket.c | 1017 +++++++++ chardev/char-stdio.c | 164 ++ chardev/char-udp.c | 233 +++ chardev/char-win-stdio.c | 266 +++ chardev/char-win.c | 265 +++ chardev/char.c | 1334 ++++++++++++ hmp.c | 1 + monitor.c | 1 + qemu-char.c | 5171 ----------------------------------------= ------ qmp.c | 1 + spice-qemu-char.c | 21 +- tests/vhost-user-test.c | 1 + ui/console.c | 10 +- ui/gtk.c | 9 +- MAINTAINERS | 3 +- Makefile | 4 +- Makefile.objs | 5 +- Makefile.target | 3 + chardev/Makefile.objs | 17 + tests/Makefile.include | 9 +- 42 files changed, 5999 insertions(+), 5274 deletions(-) create mode 100644 chardev/char-fd.h create mode 100644 chardev/char-io.h create mode 100644 chardev/char-mux.h create mode 100644 chardev/char-parallel.h create mode 100644 chardev/char-serial.h create mode 100644 chardev/char-win-stdio.h create mode 100644 chardev/char-win.h create mode 100644 chardev/char-console.c create mode 100644 chardev/char-fd.c create mode 100644 chardev/char-file.c create mode 100644 chardev/char-io.c create mode 100644 chardev/char-mux.c create mode 100644 chardev/char-null.c create mode 100644 chardev/char-parallel.c create mode 100644 chardev/char-pipe.c create mode 100644 chardev/char-pty.c create mode 100644 chardev/char-ringbuf.c create mode 100644 chardev/char-serial.c create mode 100644 chardev/char-socket.c create mode 100644 chardev/char-stdio.c create mode 100644 chardev/char-udp.c create mode 100644 chardev/char-win-stdio.c create mode 100644 chardev/char-win.c create mode 100644 chardev/char.c delete mode 100644 qemu-char.c create mode 100644 chardev/Makefile.objs --=20 2.11.0.295.gd7dffce1c.dirty