lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Sat, 27 Jun 2020 13:40:13 +0200
From:   Greg KH <gregkh@...uxfoundation.org>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
Cc:     Andrew Morton <akpm@...ux-foundation.org>,
        linux-kernel@...r.kernel.org, linux-usb@...r.kernel.org
Subject: [GIT PULL] USB driver fixes for 5.8-rc3

The following changes since commit 48778464bb7d346b47157d21ffde2af6b2d39110:

  Linux 5.8-rc2 (2020-06-21 15:45:29 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git tags/usb-5.8-rc3

for you to fetch changes up to ed8fa04243e22f7b8f470d08e5806c9f8c6a460a:

  Merge tag 'fixes-for-v5.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus (2020-06-26 17:16:52 +0200)

----------------------------------------------------------------
USB fixes for 5.8-rc3

Here are some small USB fixes for 5.8-rc3 to resolve some reported
issues.

Nothing major here:
	- gadget driver fixes
	- cdns3 driver fixes
	- xhci fixes
	- renesas_usbhs driver fixes
	- some new device support with ids
	- documentation update

All of these have been in linux-next with no reported issues.

Signed-off-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>

----------------------------------------------------------------
Aditya Pakki (1):
      usb: dwc3: pci: Fix reference count leak in dwc3_pci_resume_work

Al Cooper (1):
      xhci: Fix enumeration issue when setting max packet size for FS devices.

Anand Moon (2):
      Revert "usb: dwc3: exynos: Add support for Exynos5422 suspend clk"
      Revert "usb: dwc3: exynos: Add support for Exynos5422 suspend clk"

Chuhong Yuan (1):
      USB: ohci-sm501: Add missed iounmap() in remove

Dan Carpenter (1):
      usb: gadget: udc: Potential Oops in error handling code

Fabio Estevam (1):
      Documentation: ABI: usb: chipidea: Update Li Jun's e-mail

Greg Kroah-Hartman (2):
      Merge 5.8-rc2 into usb-linus
      Merge tag 'fixes-for-v5.8-rc2' of git://git.kernel.org/.../balbi/usb into usb-linus

Heikki Krogerus (1):
      usb: typec: mux: intel_pmc_mux: Fix DP alternate mode entry

Joakim Tjernlund (1):
      cdc-acm: Add DISABLE_ECHO quirk for Microchip/SMSC chip

Kai-Heng Feng (2):
      xhci: Return if xHCI doesn't support LPM
      xhci: Poll for U0 after disabling USB2 LPM

Li Jun (1):
      usb: typec: tcpci_rt1711h: avoid screaming irq causing boot hangs

Longfang Liu (1):
      USB: ehci: reopen solution for Synopsys HC bug

Macpaul Lin (1):
      usb: host: xhci-mtk: avoid runtime suspend when removing hcd

Mathias Nyman (1):
      xhci: Fix incorrect EP_STATE_MASK

Minas Harutyunyan (1):
      usb: dwc2: Postponed gadget registration to the udc class driver

Peter Chen (6):
      usb: cdns3: ep0: fix the test mode set incorrectly
      usb: cdns3: trace: using correct dir value
      usb: cdns3: ep0: add spinlock for cdns3_check_new_setup
      usb: cdns3: ep0: fix the test mode set incorrectly
      usb: cdns3: trace: using correct dir value
      usb: cdns3: ep0: add spinlock for cdns3_check_new_setup

Tang Bin (2):
      usb: host: ehci-exynos: Fix error check in exynos_ehci_probe()
      usb: phy: tegra: Fix unnecessary check in tegra_usb_phy_probe()

Tomasz MeresiƄski (1):
      usb: add USB_QUIRK_DELAY_INIT for Logitech C922

Yoshihiro Shimoda (1):
      usb: renesas_usbhs: getting residue from callback_result

Zqiang (1):
      usb: usbtest: fix missing kfree(dev->buf) in usbtest_disconnect

 .../ABI/testing/sysfs-platform-chipidea-usb-otg    |  8 +++---
 drivers/usb/cdns3/ep0.c                            | 10 ++++---
 drivers/usb/cdns3/trace.h                          |  2 +-
 drivers/usb/class/cdc-acm.c                        |  2 ++
 drivers/usb/core/quirks.c                          |  3 ++-
 drivers/usb/dwc2/gadget.c                          |  6 -----
 drivers/usb/dwc2/platform.c                        | 11 ++++++++
 drivers/usb/dwc3/dwc3-exynos.c                     |  9 -------
 drivers/usb/dwc3/dwc3-pci.c                        |  4 ++-
 drivers/usb/gadget/udc/mv_udc_core.c               |  3 ++-
 drivers/usb/host/ehci-exynos.c                     |  5 ++--
 drivers/usb/host/ehci-pci.c                        |  7 +++++
 drivers/usb/host/ohci-sm501.c                      |  1 +
 drivers/usb/host/xhci-mtk.c                        |  5 ++--
 drivers/usb/host/xhci.c                            |  9 ++++++-
 drivers/usb/host/xhci.h                            |  2 +-
 drivers/usb/misc/usbtest.c                         |  1 +
 drivers/usb/phy/phy-tegra-usb.c                    |  6 +----
 drivers/usb/renesas_usbhs/fifo.c                   | 23 +++++++++-------
 drivers/usb/renesas_usbhs/fifo.h                   |  2 +-
 drivers/usb/typec/mux/intel_pmc_mux.c              | 13 +++++++--
 drivers/usb/typec/tcpm/tcpci_rt1711h.c             | 31 +++++++---------------
 22 files changed, 90 insertions(+), 73 deletions(-)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ