linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Erwin Burema <e.burema@gmail.com>,
	Takashi Iwai <tiwai@suse.de>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 143/314] ALSA: usb-audio: Add duplex sound support for USB devices using implicit feedback
Date: Tue, 23 Jun 2020 21:55:38 +0200	[thread overview]
Message-ID: <20200623195345.680842097@linuxfoundation.org> (raw)
In-Reply-To: <20200623195338.770401005@linuxfoundation.org>

From: Erwin Burema <e.burema@gmail.com>

[ Upstream commit 10ce77e4817fef99e1166be7e6685a80c63bf77f ]

For USB sound devices using implicit feedback the endpoint used for
this feedback should be able to be opened twice, once for required
feedback and second time for audio data. This way these devices can be
put in duplex audio mode. Since this only works if the settings of the
endpoint don't change a check is included for this.

This fixes bug 207023 ("MOTU M2 regression on duplex audio") and
should also fix bug 103751 ("M-Audio Fast Track Ultra usb audio device
will not operate full-duplex")

Fixes: c249177944b6 ("ALSA: usb-audio: add implicit fb quirk for MOTU M Series")
Signed-off-by: Erwin Burema <e.burema@gmail.com>
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=207023
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=103751
Link: https://lore.kernel.org/r/2410739.SCZni40SNb@alpha-wolf
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 sound/usb/card.h     |   1 +
 sound/usb/endpoint.c | 195 ++++++++++++++++++++++++++++++++++++++++++-
 sound/usb/pcm.c      |   5 ++
 3 files changed, 197 insertions(+), 4 deletions(-)

diff --git a/sound/usb/card.h b/sound/usb/card.h
index 820e564656edf..d6219fba96995 100644
--- a/sound/usb/card.h
+++ b/sound/usb/card.h
@@ -108,6 +108,7 @@ struct snd_usb_endpoint {
 	int iface, altsetting;
 	int skip_packets;		/* quirks for devices to ignore the first n packets
 					   in a stream */
+	bool is_implicit_feedback;      /* This endpoint is used as implicit feedback */
 
 	spinlock_t lock;
 	struct list_head list;
diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c
index 50104f658ed49..9bea7d3f99f88 100644
--- a/sound/usb/endpoint.c
+++ b/sound/usb/endpoint.c
@@ -522,6 +522,8 @@ struct snd_usb_endpoint *snd_usb_add_endpoint(struct snd_usb_audio *chip,
 
 	list_add_tail(&ep->list, &chip->ep_list);
 
+	ep->is_implicit_feedback = 0;
+
 __exit_unlock:
 	mutex_unlock(&chip->mutex);
 
@@ -621,6 +623,178 @@ static void release_urbs(struct snd_usb_endpoint *ep, int force)
 	ep->nurbs = 0;
 }
 
+/*
+ * Check data endpoint for format differences
+ */
+static bool check_ep_params(struct snd_usb_endpoint *ep,
+			      snd_pcm_format_t pcm_format,
+			      unsigned int channels,
+			      unsigned int period_bytes,
+			      unsigned int frames_per_period,
+			      unsigned int periods_per_buffer,
+			      struct audioformat *fmt,
+			      struct snd_usb_endpoint *sync_ep)
+{
+	unsigned int maxsize, minsize, packs_per_ms, max_packs_per_urb;
+	unsigned int max_packs_per_period, urbs_per_period, urb_packs;
+	unsigned int max_urbs;
+	int frame_bits = snd_pcm_format_physical_width(pcm_format) * channels;
+	int tx_length_quirk = (ep->chip->tx_length_quirk &&
+			       usb_pipeout(ep->pipe));
+	bool ret = 1;
+
+	if (pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE && fmt->dsd_dop) {
+		/*
+		 * When operating in DSD DOP mode, the size of a sample frame
+		 * in hardware differs from the actual physical format width
+		 * because we need to make room for the DOP markers.
+		 */
+		frame_bits += channels << 3;
+	}
+
+	ret = ret && (ep->datainterval == fmt->datainterval);
+	ret = ret && (ep->stride == frame_bits >> 3);
+
+	switch (pcm_format) {
+	case SNDRV_PCM_FORMAT_U8:
+		ret = ret && (ep->silence_value == 0x80);
+		break;
+	case SNDRV_PCM_FORMAT_DSD_U8:
+	case SNDRV_PCM_FORMAT_DSD_U16_LE:
+	case SNDRV_PCM_FORMAT_DSD_U32_LE:
+	case SNDRV_PCM_FORMAT_DSD_U16_BE:
+	case SNDRV_PCM_FORMAT_DSD_U32_BE:
+		ret = ret && (ep->silence_value == 0x69);
+		break;
+	default:
+		ret = ret && (ep->silence_value == 0);
+	}
+
+	/* assume max. frequency is 50% higher than nominal */
+	ret = ret && (ep->freqmax == ep->freqn + (ep->freqn >> 1));
+	/* Round up freqmax to nearest integer in order to calculate maximum
+	 * packet size, which must represent a whole number of frames.
+	 * This is accomplished by adding 0x0.ffff before converting the
+	 * Q16.16 format into integer.
+	 * In order to accurately calculate the maximum packet size when
+	 * the data interval is more than 1 (i.e. ep->datainterval > 0),
+	 * multiply by the data interval prior to rounding. For instance,
+	 * a freqmax of 41 kHz will result in a max packet size of 6 (5.125)
+	 * frames with a data interval of 1, but 11 (10.25) frames with a
+	 * data interval of 2.
+	 * (ep->freqmax << ep->datainterval overflows at 8.192 MHz for the
+	 * maximum datainterval value of 3, at USB full speed, higher for
+	 * USB high speed, noting that ep->freqmax is in units of
+	 * frames per packet in Q16.16 format.)
+	 */
+	maxsize = (((ep->freqmax << ep->datainterval) + 0xffff) >> 16) *
+			 (frame_bits >> 3);
+	if (tx_length_quirk)
+		maxsize += sizeof(__le32); /* Space for length descriptor */
+	/* but wMaxPacketSize might reduce this */
+	if (ep->maxpacksize && ep->maxpacksize < maxsize) {
+		/* whatever fits into a max. size packet */
+		unsigned int data_maxsize = maxsize = ep->maxpacksize;
+
+		if (tx_length_quirk)
+			/* Need to remove the length descriptor to calc freq */
+			data_maxsize -= sizeof(__le32);
+		ret = ret && (ep->freqmax == (data_maxsize / (frame_bits >> 3))
+				<< (16 - ep->datainterval));
+	}
+
+	if (ep->fill_max)
+		ret = ret && (ep->curpacksize == ep->maxpacksize);
+	else
+		ret = ret && (ep->curpacksize == maxsize);
+
+	if (snd_usb_get_speed(ep->chip->dev) != USB_SPEED_FULL) {
+		packs_per_ms = 8 >> ep->datainterval;
+		max_packs_per_urb = MAX_PACKS_HS;
+	} else {
+		packs_per_ms = 1;
+		max_packs_per_urb = MAX_PACKS;
+	}
+	if (sync_ep && !snd_usb_endpoint_implicit_feedback_sink(ep))
+		max_packs_per_urb = min(max_packs_per_urb,
+					1U << sync_ep->syncinterval);
+	max_packs_per_urb = max(1u, max_packs_per_urb >> ep->datainterval);
+
+	/*
+	 * Capture endpoints need to use small URBs because there's no way
+	 * to tell in advance where the next period will end, and we don't
+	 * want the next URB to complete much after the period ends.
+	 *
+	 * Playback endpoints with implicit sync much use the same parameters
+	 * as their corresponding capture endpoint.
+	 */
+	if (usb_pipein(ep->pipe) ||
+			snd_usb_endpoint_implicit_feedback_sink(ep)) {
+
+		urb_packs = packs_per_ms;
+		/*
+		 * Wireless devices can poll at a max rate of once per 4ms.
+		 * For dataintervals less than 5, increase the packet count to
+		 * allow the host controller to use bursting to fill in the
+		 * gaps.
+		 */
+		if (snd_usb_get_speed(ep->chip->dev) == USB_SPEED_WIRELESS) {
+			int interval = ep->datainterval;
+
+			while (interval < 5) {
+				urb_packs <<= 1;
+				++interval;
+			}
+		}
+		/* make capture URBs <= 1 ms and smaller than a period */
+		urb_packs = min(max_packs_per_urb, urb_packs);
+		while (urb_packs > 1 && urb_packs * maxsize >= period_bytes)
+			urb_packs >>= 1;
+		ret = ret && (ep->nurbs == MAX_URBS);
+
+	/*
+	 * Playback endpoints without implicit sync are adjusted so that
+	 * a period fits as evenly as possible in the smallest number of
+	 * URBs.  The total number of URBs is adjusted to the size of the
+	 * ALSA buffer, subject to the MAX_URBS and MAX_QUEUE limits.
+	 */
+	} else {
+		/* determine how small a packet can be */
+		minsize = (ep->freqn >> (16 - ep->datainterval)) *
+				(frame_bits >> 3);
+		/* with sync from device, assume it can be 12% lower */
+		if (sync_ep)
+			minsize -= minsize >> 3;
+		minsize = max(minsize, 1u);
+
+		/* how many packets will contain an entire ALSA period? */
+		max_packs_per_period = DIV_ROUND_UP(period_bytes, minsize);
+
+		/* how many URBs will contain a period? */
+		urbs_per_period = DIV_ROUND_UP(max_packs_per_period,
+				max_packs_per_urb);
+		/* how many packets are needed in each URB? */
+		urb_packs = DIV_ROUND_UP(max_packs_per_period, urbs_per_period);
+
+		/* limit the number of frames in a single URB */
+		ret = ret && (ep->max_urb_frames ==
+			DIV_ROUND_UP(frames_per_period, urbs_per_period));
+
+		/* try to use enough URBs to contain an entire ALSA buffer */
+		max_urbs = min((unsigned) MAX_URBS,
+				MAX_QUEUE * packs_per_ms / urb_packs);
+		ret = ret && (ep->nurbs == min(max_urbs,
+				urbs_per_period * periods_per_buffer));
+	}
+
+	ret = ret && (ep->datainterval == fmt->datainterval);
+	ret = ret && (ep->maxpacksize == fmt->maxpacksize);
+	ret = ret &&
+		(ep->fill_max == !!(fmt->attributes & UAC_EP_CS_ATTR_FILL_MAX));
+
+	return ret;
+}
+
 /*
  * configure a data endpoint
  */
@@ -886,10 +1060,23 @@ int snd_usb_endpoint_set_params(struct snd_usb_endpoint *ep,
 	int err;
 
 	if (ep->use_count != 0) {
-		usb_audio_warn(ep->chip,
-			 "Unable to change format on ep #%x: already in use\n",
-			 ep->ep_num);
-		return -EBUSY;
+		bool check = ep->is_implicit_feedback &&
+			check_ep_params(ep, pcm_format,
+					     channels, period_bytes,
+					     period_frames, buffer_periods,
+					     fmt, sync_ep);
+
+		if (!check) {
+			usb_audio_warn(ep->chip,
+				"Unable to change format on ep #%x: already in use\n",
+				ep->ep_num);
+			return -EBUSY;
+		}
+
+		usb_audio_dbg(ep->chip,
+			      "Ep #%x already in use as implicit feedback but format not changed\n",
+			      ep->ep_num);
+		return 0;
 	}
 
 	/* release old buffers, if any */
diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c
index e52d129085c0d..6c391e5fad2a7 100644
--- a/sound/usb/pcm.c
+++ b/sound/usb/pcm.c
@@ -386,6 +386,8 @@ add_sync_ep:
 	if (!subs->sync_endpoint)
 		return -EINVAL;
 
+	subs->sync_endpoint->is_implicit_feedback = 1;
+
 	subs->data_endpoint->sync_master = subs->sync_endpoint;
 
 	return 1;
@@ -484,12 +486,15 @@ static int set_sync_endpoint(struct snd_usb_substream *subs,
 						   implicit_fb ?
 							SND_USB_ENDPOINT_TYPE_DATA :
 							SND_USB_ENDPOINT_TYPE_SYNC);
+
 	if (!subs->sync_endpoint) {
 		if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
 			return 0;
 		return -EINVAL;
 	}
 
+	subs->sync_endpoint->is_implicit_feedback = implicit_fb;
+
 	subs->data_endpoint->sync_master = subs->sync_endpoint;
 
 	return 0;
-- 
2.25.1




  parent reply	other threads:[~2020-06-23 21:17 UTC|newest]

Thread overview: 321+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-23 19:53 [PATCH 5.4 000/314] 5.4.49-rc1 review Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 001/314] power: supply: bq24257_charger: Replace depends on REGMAP_I2C with select Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 002/314] clk: sunxi: Fix incorrect usage of round_down() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 003/314] ASoC: tegra: tegra_wm8903: Support nvidia, headset property Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 004/314] i2c: piix4: Detect secondary SMBus controller on AMD AM4 chipsets Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 005/314] ASoC: SOF: imx8: Fix randbuild error Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 006/314] iio: pressure: bmp280: Tolerate IRQ before registering Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 007/314] remoteproc: Fix IDR initialisation in rproc_alloc() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 008/314] clk: qcom: msm8916: Fix the address location of pll->config_reg Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 009/314] ASoC: fsl_esai: Disable exception interrupt before scheduling tasklet Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 010/314] backlight: lp855x: Ensure regulators are disabled on probe failure Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 011/314] ARM: dts: renesas: Fix IOMMU device node names Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 012/314] ASoC: davinci-mcasp: Fix dma_chan refcnt leak when getting dma type Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 013/314] ARM: integrator: Add some Kconfig selections Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 014/314] ARM: dts: stm32: Add missing ethernet PHY reset on AV96 Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 015/314] scsi: core: free sgtables in case command setup fails Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 016/314] scsi: qedi: Check for buffer overflow in qedi_set_path() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 017/314] arm64: dts: meson: fixup SCP sram nodes Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 018/314] ALSA: hda/realtek - Introduce polarity for micmute LED GPIO Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 019/314] ALSA: isa/wavefront: prevent out of bounds write in ioctl Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 020/314] PCI: Allow pci_resize_resource() for devices on root bus Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 021/314] scsi: qla2xxx: Fix issue with adapters stopping state Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 022/314] Input: edt-ft5x06 - fix get_default register write access Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 023/314] powerpc/kasan: Fix stack overflow by increasing THREAD_SHIFT Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 024/314] rtc: mc13xxx: fix a double-unlock issue Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 025/314] iio: bmp280: fix compensation of humidity Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 026/314] f2fs: report delalloc reserve as non-free in statfs for project quota Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 027/314] i2c: pxa: clear all master action bits in i2c_pxa_stop_message() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 028/314] remoteproc: qcom_q6v5_mss: map/unmap mpss segments before/after use Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 029/314] clk: samsung: Mark top ISP and CAM clocks on Exynos542x as critical Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 030/314] usblp: poison URBs upon disconnect Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 031/314] serial: 8250: Fix max baud limit in generic 8250 port Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 032/314] misc: fastrpc: Fix an incomplete memory release in fastrpc_rpmsg_probe() Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 033/314] misc: fastrpc: fix potential fastrpc_invoke_ctx leak Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 034/314] dm mpath: switch paths in dm_blk_ioctl() code path Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 035/314] arm64: dts: armada-3720-turris-mox: forbid SDR104 on SDIO for FCC purposes Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 036/314] arm64: dts: armada-3720-turris-mox: fix SFP binding Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 037/314] arm64: dts: juno: Fix GIC child nodes Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 038/314] pinctrl: ocelot: Fix GPIO interrupt decoding on Jaguar2 Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 039/314] clk: renesas: cpg-mssr: Fix STBCR suspend/resume handling Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 040/314] ASoC: SOF: Do nothing when DSP PM callbacks are not set Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 041/314] arm64: dts: fvp: Fix GIC child nodes Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 042/314] PCI: aardvark: Dont blindly enable ASPM L0s and dont write to read-only register Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 043/314] ps3disk: use the default segment boundary Greg Kroah-Hartman
2020-06-23 19:53 ` [PATCH 5.4 044/314] arm64: dts: fvp/juno: Fix node address fields Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 045/314] vfio/pci: fix memory leaks in alloc_perm_bits() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 046/314] coresight: tmc: Fix TMC mode read in tmc_read_prepare_etb() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 047/314] RDMA/mlx5: Add init2init as a modify command Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 048/314] scsi: hisi_sas: Do not reset phy timer to wait for stray phy up Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 049/314] PCI: pci-bridge-emul: Fix PCIe bit conflicts Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 050/314] m68k/PCI: Fix a memory leak in an error handling path Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 051/314] gpio: dwapb: Call acpi_gpiochip_free_interrupts() on GPIO chip de-registration Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 052/314] usb: gadget: core: sync interrupt before unbind the udc Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 053/314] powerpc/ptdump: Add _PAGE_COHERENT flag Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 054/314] mfd: wm8994: Fix driver operation if loaded as modules Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 055/314] scsi: cxgb3i: Fix some leaks in init_act_open() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 056/314] clk: zynqmp: fix memory leak in zynqmp_register_clocks Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 057/314] scsi: lpfc: Fix lpfc_nodelist leak when processing unsolicited event Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 058/314] scsi: vhost: Notify TCM about the maximum sg entries supported per command Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 059/314] clk: clk-flexgen: fix clock-critical handling Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 060/314] IB/mlx5: Fix DEVX support for MLX5_CMD_OP_INIT2INIT_QP command Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 061/314] powerpc/perf/hv-24x7: Fix inconsistent output values incase multiple hv-24x7 events run Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 062/314] nfsd: Fix svc_xprt refcnt leak when setup callback client failed Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 063/314] PCI: vmd: Filter resource type bits from shadow register Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 064/314] RDMA/core: Fix several reference count leaks Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 065/314] cifs: set up next DFS target before generic_ip_connect() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 066/314] ASoC: qcom: q6asm-dai: kCFI fix Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 067/314] powerpc/crashkernel: Take "mem=" option into account Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 068/314] pwm: img: Call pm_runtime_put() in pm_runtime_get_sync() failed case Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 069/314] sparc32: mm: Dont try to free page-table pages if ctor() fails Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 070/314] yam: fix possible memory leak in yam_init_driver Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 071/314] NTB: ntb_pingpong: Choose doorbells based on port number Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 072/314] NTB: Fix the default port and peer numbers for legacy drivers Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 073/314] mksysmap: Fix the mismatch of .L symbols in System.map Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 074/314] apparmor: fix introspection of of task mode for unconfined tasks Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 075/314] net: dsa: lantiq_gswip: fix and improve the unsupported interface error Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 076/314] apparmor: check/put label on apparmor_sk_clone_security() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 077/314] f2fs: handle readonly filesystem in f2fs_ioc_shutdown() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 078/314] ASoC: meson: add missing free_irq() in error path Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 079/314] bpf, sockhash: Fix memory leak when unlinking sockets in sock_hash_free Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 080/314] scsi: sr: Fix sr_probe() missing deallocate of device minor Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 081/314] scsi: ibmvscsi: Dont send host info in adapter info MAD after LPM Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 082/314] apparmor: fix nnp subset test for unconfined Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 083/314] x86/purgatory: Disable various profiling and sanitizing options Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 084/314] staging: greybus: fix a missing-check bug in gb_lights_light_config() Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 085/314] staging: rtl8712: fix multiline derefernce warnings Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 086/314] arm64: dts: mt8173: fix unit name warnings Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 087/314] scsi: qedi: Do not flush offload work if ARP not resolved Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 088/314] arm64: dts: qcom: msm8916: remove unit name for thermal trip points Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 089/314] ARM: dts: sun8i-h2-plus-bananapi-m2-zero: Fix led polarity Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 090/314] RDMA/mlx5: Fix udata response upon SRQ creation Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 091/314] gpio: dwapb: Append MODULE_ALIAS for platform driver Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 092/314] scsi: qedf: Fix crash when MFW calls for protocol stats while function is still probing Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 093/314] pinctrl: rza1: Fix wrong array assignment of rza1l_swio_entries Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 094/314] virtiofs: schedule blocking async replies in separate worker Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 095/314] arm64: dts: qcom: fix pm8150 gpio interrupts Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 096/314] firmware: qcom_scm: fix bogous abuse of dma-direct internals Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 097/314] staging: gasket: Fix mapping refcnt leak when put attribute fails Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 098/314] staging: gasket: Fix mapping refcnt leak when register/store fails Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 099/314] ALSA: usb-audio: Improve frames size computation Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 100/314] ALSA: usb-audio: Fix racy list management in output queue Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 101/314] Input: mms114 - add extra compatible for mms345l Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 102/314] s390/qdio: put thinint indicator after early error Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 103/314] tty: hvc: Fix data abort due to race in hvc_open Greg Kroah-Hartman
2020-06-23 19:54 ` [PATCH 5.4 104/314] slimbus: ngd: get drvdata from correct device Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 105/314] clk: meson: meson8b: Fix the first parent of vid_pll_in_sel Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 106/314] clk: meson: meson8b: Fix the polarity of the RESET_N lines Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 107/314] clk: meson: meson8b: Fix the vclk_div{1, 2, 4, 6, 12}_en gate bits Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 108/314] gpio: pca953x: fix handling of automatic address incrementing Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 109/314] thermal/drivers/ti-soc-thermal: Avoid dereferencing ERR_PTR Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 110/314] clk: meson: meson8b: Dont rely on u-boot to init all GP_PLL registers Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 111/314] ASoC: max98373: reorder max98373_reset() in resume Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 112/314] soundwire: slave: dont init debugfs on device registration error Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 113/314] HID: intel-ish-hid: avoid bogus uninitialized-variable warning Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 114/314] usb: dwc3: gadget: Properly handle ClearFeature(halt) Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 115/314] usb: dwc3: gadget: Properly handle failed kick_transfer Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 116/314] staging: wilc1000: Increase the size of wid_list array Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 117/314] staging: sm750fb: add missing case while setting FB_VISUAL Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 118/314] PCI: v3-semi: Fix a memory leak in v3_pci_probe() error handling paths Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 119/314] i2c: pxa: fix i2c_pxa_scream_blue_murder() debug output Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 120/314] serial: amba-pl011: Make sure we initialize the port.lock spinlock Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 121/314] drivers: base: Fix NULL pointer exception in __platform_driver_probe() if a driver developer is foolish Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 122/314] PCI: rcar: Fix incorrect programming of OB windows Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 123/314] PCI/ASPM: Allow ASPM on links to PCIe-to-PCI/PCI-X Bridges Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 124/314] scsi: qla2xxx: Fix warning after FC target reset Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 125/314] ALSA: firewire-lib: fix invalid assignment to union data for directional parameter Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 126/314] power: supply: lp8788: Fix an error handling path in lp8788_charger_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 127/314] power: supply: smb347-charger: IRQSTAT_D is volatile Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 128/314] ASoC: SOF: core: fix error return code in sof_probe_continue() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 129/314] arm64: dts: msm8996: Fix CSI IRQ types Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 130/314] scsi: target: loopback: Fix READ with data and sensebytes Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 131/314] scsi: mpt3sas: Fix double free warnings Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 132/314] SoC: rsnd: add interrupt support for SSI BUSIF buffer Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 133/314] ASoC: ux500: mop500: Fix some refcounted resources issues Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 134/314] ASoC: ti: omap-mcbsp: Fix an error handling path in asoc_mcbsp_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 135/314] pinctrl: rockchip: fix memleak in rockchip_dt_node_to_map Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 136/314] dlm: remove BUG() before panic() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 137/314] USB: ohci-sm501: fix error return code in ohci_hcd_sm501_drv_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 138/314] clk: ti: composite: fix memory leak Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 139/314] PCI: Fix pci_register_host_bridge() device_register() error handling Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 140/314] powerpc/64: Dont initialise init_task->thread.regs Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 141/314] tty: n_gsm: Fix SOF skipping Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 142/314] tty: n_gsm: Fix waking up upper tty layer when room available Greg Kroah-Hartman
2020-06-23 19:55 ` Greg Kroah-Hartman [this message]
2020-06-23 19:55 ` [PATCH 5.4 144/314] HID: Add quirks for Trust Panora Graphic Tablet Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 145/314] PCI/PM: Assume ports without DLL Link Active train links in 100 ms Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 146/314] habanalabs: increase timeout during reset Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 147/314] ipmi: use vzalloc instead of kmalloc for user creation Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 148/314] powerpc/64s/exception: Fix machine check no-loss idle wakeup Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 149/314] powerpc/pseries/ras: Fix FWNMI_VALID off by one Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 150/314] drivers: phy: sr-usb: do not use internal fsm for USB2 phy init Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 151/314] powerpc/ps3: Fix kexec shutdown hang Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 152/314] vfio-pci: Mask cap zero Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 153/314] usb/ohci-platform: Fix a warning when hibernating Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 154/314] drm/msm/mdp5: Fix mdp5_init error path for failed mdp5_kms allocation Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 155/314] ASoC: Intel: bytcr_rt5640: Add quirk for Toshiba Encore WT8-A tablet Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 156/314] USB: host: ehci-mxc: Add error handling in ehci_mxc_drv_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 157/314] tty: n_gsm: Fix bogus i++ in gsm_data_kick Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 158/314] fpga: dfl: afu: Corrected error handling levels Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 159/314] clk: samsung: exynos5433: Add IGNORE_UNUSED flag to sclk_i2s1 Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 160/314] RDMA/hns: Bugfix for querying qkey Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 161/314] RDMA/hns: Fix cmdq parameter of querying pf timer resource Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 162/314] scsi: target: tcmu: Userspace must not complete queued commands Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 163/314] firmware: imx: scu: Fix possible memory leak in imx_scu_probe() Greg Kroah-Hartman
2020-06-23 19:55 ` [PATCH 5.4 164/314] fuse: fix copy_file_range cache issues Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 165/314] fuse: copy_file_range should truncate cache Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 166/314] arm64: tegra: Fix ethernet phy-mode for Jetson Xavier Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 167/314] arm64: tegra: Fix flag for 64-bit resources in ranges property Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 168/314] powerpc/64s/pgtable: fix an undefined behaviour Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 169/314] dm zoned: return NULL if dmz_get_zone_for_reclaim() fails to find a zone Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 170/314] PCI/PTM: Inherit Switch Downstream Port PTM settings from Upstream Port Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 171/314] PCI: dwc: Fix inner MSI IRQ domain registration Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 172/314] PCI: amlogic: meson: Dont use FAST_LINK_MODE to set up link Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 173/314] IB/cma: Fix ports memory leak in cma_configfs Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 174/314] watchdog: da9062: No need to ping manually before setting timeout Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 175/314] usb: dwc2: gadget: move gadget resume after the core is in L0 state Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 176/314] USB: gadget: udc: s3c2410_udc: Remove pointless NULL check in s3c2410_udc_nuke Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 177/314] usb: gadget: lpc32xx_udc: dont dereference ep pointer before null check Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 178/314] usb: gadget: fix potential double-free in m66592_probe Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 179/314] usb: gadget: Fix issue with config_ep_by_speed function Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 180/314] scripts: headers_install: Exit with error on config leak Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 181/314] RDMA/iw_cxgb4: cleanup device debugfs entries on ULD remove Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 182/314] x86/apic: Make TSC deadline timer detection message visible Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 183/314] mfd: stmfx: Reset chip on resume as supply was disabled Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 184/314] mfd: stmfx: Fix stmfx_irq_init error path Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 185/314] mfd: stmfx: Disable IRQ in suspend to avoid spurious interrupt Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 186/314] powerpc/32s: Dont warn when mapping RO data ROX Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 187/314] ASoC: fix incomplete error-handling in img_i2s_in_probe Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 188/314] scsi: target: tcmu: Fix a use after free in tcmu_check_expired_queue_cmd() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 189/314] clk: bcm2835: Fix return type of bcm2835_register_gate Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 190/314] scsi: ufs-qcom: Fix scheduling while atomic issue Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 191/314] KVM: PPC: Book3S HV: Ignore kmemleak false positives Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 192/314] KVM: PPC: Book3S: Fix some RCU-list locks Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 193/314] clk: sprd: return correct type of value for _sprd_pll_recalc_rate Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 194/314] clk: ast2600: Fix AHB clock divider for A1 Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 195/314] misc: xilinx-sdfec: improve get_user_pages_fast() error handling Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 196/314] /dev/mem: Revoke mappings when a driver claims the region Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 197/314] net: sunrpc: Fix off-by-one issues in rpc_ntop6 Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 198/314] NFSv4.1 fix rpc_call_done assignment for BIND_CONN_TO_SESSION Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 199/314] of: Fix a refcounting bug in __of_attach_node_sysfs() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 200/314] input: i8042 - Remove special PowerPC handling Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 201/314] powerpc/4xx: Dont unmap NULL mbase Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 202/314] extcon: adc-jack: Fix an error handling path in adc_jack_probe() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 203/314] ASoC: fsl_asrc_dma: Fix dma_chan leak when config DMA channel failed Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 204/314] vfio/mdev: Fix reference count leak in add_mdev_supported_type Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 205/314] rtc: rv3028: Add missed check for devm_regmap_init_i2c() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 206/314] mailbox: zynqmp-ipi: Fix NULL vs IS_ERR() check in zynqmp_ipi_mbox_probe() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 207/314] rxrpc: Adjust /proc/net/rxrpc/calls to display call->debug_id not user_ID Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 208/314] openrisc: Fix issue with argument clobbering for clone/fork Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 209/314] drm/nouveau/disp/gm200-: fix NV_PDISP_SOR_HDMI2_CTRL(n) selection Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 210/314] ceph: dont return -ESTALE if theres still an open file Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 211/314] nfsd4: make drc_slab global, not per-net Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 212/314] gfs2: Allow lock_nolock mount to specify jid=X Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 213/314] scsi: iscsi: Fix reference count leak in iscsi_boot_create_kobj Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 214/314] scsi: ufs: Dont update urgent bkops level when toggling auto bkops Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 215/314] pinctrl: imxl: Fix an error handling path in imx1_pinctrl_core_probe() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 216/314] pinctrl: freescale: imx: Fix an error handling path in imx_pinctrl_probe() Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 217/314] pinctrl: freescale: imx: Use devm_of_iomap() to avoid a resource leak in case of error " Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 218/314] nfsd: safer handling of corrupted c_type Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 219/314] drm/amd/display: Revalidate bandwidth before commiting DC updates Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 220/314] crypto: omap-sham - add proper load balancing support for multicore Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 221/314] geneve: change from tx_error to tx_dropped on missing metadata Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 222/314] lib/zlib: remove outdated and incorrect pre-increment optimization Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 223/314] include/linux/bitops.h: avoid clang shift-count-overflow warnings Greg Kroah-Hartman
2020-06-23 19:56 ` [PATCH 5.4 224/314] selftests/vm/pkeys: fix alloc_random_pkey() to make it really random Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 225/314] blktrace: use errno instead of bi_status Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 226/314] blktrace: fix endianness in get_pdu_int() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 227/314] blktrace: fix endianness for blk_log_remap() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 228/314] gfs2: fix use-after-free on transaction ail lists Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 229/314] net: marvell: Fix OF_MDIO config check Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 230/314] ntb_perf: pass correct struct device to dma_alloc_coherent Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 231/314] ntb_tool: " Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 232/314] NTB: ntb_tool: reading the link file should not end in a NULL byte Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 233/314] NTB: Revert the change to use the NTB device dev for DMA allocations Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 234/314] NTB: perf: Dont require one more memory window than number of peers Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 235/314] NTB: perf: Fix support for hardware that doesnt have port numbers Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 236/314] NTB: perf: Fix race condition when run with ntb_test Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 237/314] NTB: ntb_test: Fix bug when counting remote files Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 238/314] i2c: icy: Fix build with CONFIG_AMIGA_PCMCIA=n Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 239/314] drivers/perf: hisi: Fix wrong value for all counters enable Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 240/314] selftests/net: in timestamping, strncpy needs to preserve null byte Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 241/314] f2fs: dont return vmalloc() memory from f2fs_kmalloc() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 242/314] afs: Fix memory leak in afs_put_sysnames() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 243/314] ASoC: core: only convert non DPCM link to DPCM link Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 244/314] ASoC: SOF: nocodec: conditionally set dpcm_capture/dpcm_playback flags Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 245/314] ASoC: Intel: bytcr_rt5640: Add quirk for Toshiba Encore WT10-A tablet Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 246/314] ASoC: rt5645: Add platform-data for Asus T101HA Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 247/314] bpf/sockmap: Fix kernel panic at __tcp_bpf_recvmsg Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 248/314] bpf, sockhash: Synchronize delete from bucket list on map free Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 249/314] tracing/probe: Fix bpf_task_fd_query() for kprobes and uprobes Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 250/314] drm/sun4i: hdmi ddc clk: Fix size of m divider Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 251/314] libbpf: Handle GCC noreturn-turned-volatile quirk Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 252/314] scsi: acornscsi: Fix an error handling path in acornscsi_probe() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 253/314] x86/idt: Keep spurious entries unset in system_vectors Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 254/314] net/filter: Permit reading NET in load_bytes_relative when MAC not set Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 255/314] nvme-pci: use simple suspend when a HMB is enabled Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 256/314] nfs: set invalid blocks after NFSv4 writes Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 257/314] xdp: Fix xsk_generic_xmit errno Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 258/314] iavf: fix speed reporting over virtchnl Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 259/314] bpf: Fix memlock accounting for sock_hash Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 260/314] usb/xhci-plat: Set PM runtime as active on resume Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 261/314] usb: host: ehci-platform: add a quirk to avoid stuck Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 262/314] usb/ehci-platform: Set PM runtime as active on resume Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 263/314] perf report: Fix NULL pointer dereference in hists__fprintf_nr_sample_events() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 264/314] perf stat: Fix NULL pointer dereference Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 265/314] ext4: stop overwrite the errcode in ext4_setup_super Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 266/314] bcache: fix potential deadlock problem in btree_gc_coalesce Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 267/314] powerpc: Fix kernel crash in show_instructions() w/DEBUG_VIRTUAL Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 268/314] afs: Fix non-setting of mtime when writing into mmap Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 269/314] afs: afs_write_end() should change i_size under the right lock Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 270/314] afs: Fix EOF corruption Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 271/314] afs: Always include dir in bulk status fetch from afs_do_lookup() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 272/314] afs: Set error flag rather than return error from file status decode Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 273/314] afs: Fix the mapping of the UAEOVERFLOW abort code Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 274/314] bnxt_en: Return from timer if interface is not in open state Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 275/314] scsi: ufs-bsg: Fix runtime PM imbalance on error Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 276/314] block: Fix use-after-free in blkdev_get() Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 277/314] mvpp2: remove module bugfix Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 278/314] arm64: hw_breakpoint: Dont invoke overflow handler on uaccess watchpoints Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 279/314] libata: Use per port sync for detach Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 280/314] drm: encoder_slave: fix refcouting error for modules Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 281/314] ext4: fix partial cluster initialization when splitting extent Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 282/314] ext4: avoid utf8_strncasecmp() with unstable name Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 283/314] drm/dp_mst: Reformat drm_dp_check_act_status() a bit Greg Kroah-Hartman
2020-06-23 19:57 ` [PATCH 5.4 284/314] drm/qxl: Use correct notify port address when creating cursor ring Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 285/314] drm/amdgpu: Replace invalid device ID with a valid device ID Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 286/314] selinux: fix double free Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 287/314] jbd2: clean __jbd2_journal_abort_hard() and __journal_abort_soft() Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 288/314] ext4: avoid race conditions when remounting with options that change dax Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 289/314] drm/dp_mst: Increase ACT retry timeout to 3s Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 290/314] drm/amd/display: Use swap() where appropriate Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 291/314] x86/boot/compressed: Relax sed symbol type regex for LLVM ld.lld Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 292/314] block: nr_sects_write(): Disable preemption on seqcount write Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 293/314] net/mlx5: DR, Fix freeing in dr_create_rc_qp() Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 294/314] f2fs: split f2fs_d_compare() from f2fs_match_name() Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 295/314] f2fs: avoid utf8_strncasecmp() with unstable name Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 296/314] s390: fix syscall_get_error for compat processes Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 297/314] drm/i915: Fix AUX power domain toggling across TypeC mode resets Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 298/314] drm/msm: Check for powered down HW in the devfreq callbacks Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 299/314] drm/i915/gem: Avoid iterating an empty list Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 300/314] drm/i915: Whitelist context-local timestamp in the gen9 cmdparser Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 301/314] drm/connector: notify userspace on hotplug after register complete Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 302/314] drm/amd/display: Use kvfree() to free coeff in build_regamma() Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 303/314] drm/i915/icl+: Fix hotplug interrupt disabling after storm detection Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 304/314] Revert "drm/amd/display: disable dcn20 abm feature for bring up" Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 305/314] crypto: algif_skcipher - Cap recv SG list at ctx->used Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 306/314] crypto: algboss - dont wait during notifier callback Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 307/314] tracing/probe: Fix memleak in fetch_op_data operations Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 308/314] kprobes: Fix to protect kick_kprobe_optimizer() by kprobe_mutex Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 309/314] kretprobe: Prevent triggering kretprobe from within kprobe_flush_task Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 310/314] e1000e: Do not wake up the system via WOL if device wakeup is disabled Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 311/314] net: octeon: mgmt: Repair filling of RX ring Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 312/314] pwm: jz4740: Enhance precision in calculation of duty cycle Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 313/314] sched/rt, net: Use CONFIG_PREEMPTION.patch Greg Kroah-Hartman
2020-06-23 19:58 ` [PATCH 5.4 314/314] net: core: device_rename: Use rwsem instead of a seqcount Greg Kroah-Hartman
2020-06-24  4:14 ` [PATCH 5.4 000/314] 5.4.49-rc1 review Nathan Chancellor
2020-06-24  5:55   ` Greg Kroah-Hartman
2020-06-24  4:47 ` Guenter Roeck
2020-06-24  5:05 ` Guenter Roeck
2020-06-24  5:55   ` Greg Kroah-Hartman
2020-06-24 21:58 ` Shuah Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200623195345.680842097@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=e.burema@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).