[libvirt] [PATCH for-5.0 0/4] Remove the deprecated bluetooth subsystem

Thomas Huth posted 4 patches 4 years, 4 months ago
Test asan passed
Test checkpatch passed
Test FreeBSD passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test docker-quick@centos7 passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20191120091014.16883-1-thuth@redhat.com
Maintainers: Thomas Huth <thuth@redhat.com>, Andrzej Zaborowski <balrogg@gmail.com>, "Alex Bennée" <alex.bennee@linaro.org>, Paolo Bonzini <pbonzini@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>, Fam Zheng <fam@euphon.net>, Peter Maydell <peter.maydell@linaro.org>, "Philippe Mathieu-Daudé" <philmd@redhat.com>
There is a newer version of this series
.gitlab-ci.yml                             |    2 +-
Makefile.objs                              |    2 -
bt-host.c                                  |  198 --
bt-vhci.c                                  |  167 --
configure                                  |   31 -
hw/Kconfig                                 |    1 -
hw/Makefile.objs                           |    1 -
hw/arm/nseries.c                           |   16 +-
hw/bt/Kconfig                              |    2 -
hw/bt/Makefile.objs                        |    3 -
hw/bt/core.c                               |  143 --
hw/bt/hci-csr.c                            |  512 -----
hw/bt/hci.c                                | 2263 --------------------
hw/bt/hid.c                                |  553 -----
hw/bt/l2cap.c                              | 1367 ------------
hw/bt/sdp.c                                |  989 ---------
hw/usb/Kconfig                             |    5 -
hw/usb/Makefile.objs                       |    1 -
hw/usb/dev-bluetooth.c                     |  581 -----
include/hw/bt.h                            | 2177 -------------------
include/sysemu/bt.h                        |   20 -
qemu-deprecated.texi                       |    7 -
qemu-doc.texi                              |   17 -
qemu-options.hx                            |   79 -
tests/docker/dockerfiles/fedora.docker     |    1 -
tests/docker/dockerfiles/ubuntu.docker     |    1 -
tests/docker/dockerfiles/ubuntu1804.docker |    1 -
vl.c                                       |  136 --
28 files changed, 8 insertions(+), 9268 deletions(-)
delete mode 100644 bt-host.c
delete mode 100644 bt-vhci.c
delete mode 100644 hw/bt/Kconfig
delete mode 100644 hw/bt/Makefile.objs
delete mode 100644 hw/bt/core.c
delete mode 100644 hw/bt/hci-csr.c
delete mode 100644 hw/bt/hci.c
delete mode 100644 hw/bt/hid.c
delete mode 100644 hw/bt/l2cap.c
delete mode 100644 hw/bt/sdp.c
delete mode 100644 hw/usb/dev-bluetooth.c
delete mode 100644 include/hw/bt.h
delete mode 100644 include/sysemu/bt.h
[libvirt] [PATCH for-5.0 0/4] Remove the deprecated bluetooth subsystem
Posted by Thomas Huth 4 years, 4 months ago
This patch series removes the bitrotten bluetooth subsystem. See
the patch description of the third patch for the rationale.

Thomas Huth (4):
  hw/arm/nseries: Replace the bluetooth chardev with a "null" chardev
  hw/usb: Remove the USB bluetooth dongle device
  Remove the core bluetooth code
  Remove libbluetooth / bluez from the CI tests

 .gitlab-ci.yml                             |    2 +-
 Makefile.objs                              |    2 -
 bt-host.c                                  |  198 --
 bt-vhci.c                                  |  167 --
 configure                                  |   31 -
 hw/Kconfig                                 |    1 -
 hw/Makefile.objs                           |    1 -
 hw/arm/nseries.c                           |   16 +-
 hw/bt/Kconfig                              |    2 -
 hw/bt/Makefile.objs                        |    3 -
 hw/bt/core.c                               |  143 --
 hw/bt/hci-csr.c                            |  512 -----
 hw/bt/hci.c                                | 2263 --------------------
 hw/bt/hid.c                                |  553 -----
 hw/bt/l2cap.c                              | 1367 ------------
 hw/bt/sdp.c                                |  989 ---------
 hw/usb/Kconfig                             |    5 -
 hw/usb/Makefile.objs                       |    1 -
 hw/usb/dev-bluetooth.c                     |  581 -----
 include/hw/bt.h                            | 2177 -------------------
 include/sysemu/bt.h                        |   20 -
 qemu-deprecated.texi                       |    7 -
 qemu-doc.texi                              |   17 -
 qemu-options.hx                            |   79 -
 tests/docker/dockerfiles/fedora.docker     |    1 -
 tests/docker/dockerfiles/ubuntu.docker     |    1 -
 tests/docker/dockerfiles/ubuntu1804.docker |    1 -
 vl.c                                       |  136 --
 28 files changed, 8 insertions(+), 9268 deletions(-)
 delete mode 100644 bt-host.c
 delete mode 100644 bt-vhci.c
 delete mode 100644 hw/bt/Kconfig
 delete mode 100644 hw/bt/Makefile.objs
 delete mode 100644 hw/bt/core.c
 delete mode 100644 hw/bt/hci-csr.c
 delete mode 100644 hw/bt/hci.c
 delete mode 100644 hw/bt/hid.c
 delete mode 100644 hw/bt/l2cap.c
 delete mode 100644 hw/bt/sdp.c
 delete mode 100644 hw/usb/dev-bluetooth.c
 delete mode 100644 include/hw/bt.h
 delete mode 100644 include/sysemu/bt.h

-- 
2.23.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [PATCH for-5.0 0/4] Remove the deprecated bluetooth subsystem
Posted by Paolo Bonzini 4 years, 4 months ago
On 20/11/19 10:10, Thomas Huth wrote:
> This patch series removes the bitrotten bluetooth subsystem. See
> the patch description of the third patch for the rationale.

Acked-by: Paolo Bonzini <pbonzini@redhat.com>