All of lore.kernel.org
 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,
	Mathieu Poirier <mathieu.poirier@linaro.org>,
	Leo Yan <leo.yan@linaro.org>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Jiri Olsa <jolsa@redhat.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Suzuki Poulouse <suzuki.poulose@arm.com>,
	linux-arm-kernel@lists.infradead.org,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 054/271] perf cs-etm: Properly set the value of old and head in snapshot mode
Date: Wed, 24 Jul 2019 21:18:43 +0200	[thread overview]
Message-ID: <20190724191659.776669335@linuxfoundation.org> (raw)
In-Reply-To: <20190724191655.268628197@linuxfoundation.org>

[ Upstream commit e45c48a9a4d20ebc7b639a62c3ef8f4b08007027 ]

This patch adds the necessary intelligence to properly compute the value
of 'old' and 'head' when operating in snapshot mode.  That way we can
get the latest information in the AUX buffer and be compatible with the
generic AUX ring buffer mechanic.

Tester notes:

> Leo, have you had the chance to test/review this one? Suzuki?

Sure.  I applied this patch on the perf/core branch (with latest
commit 3e4fbf36c1e3 'perf augmented_raw_syscalls: Move reading
filename to the loop') and passed testing with below steps:

  # perf record -e cs_etm/@tmc_etr0/ -S -m,64 --per-thread ./sort &
  [1] 19097
  Bubble sorting array of 30000 elements

  # kill -USR2 19097
  # kill -USR2 19097
  # kill -USR2 19097
  [ perf record: Woken up 4 times to write data ]
  [ perf record: Captured and wrote 0.753 MB perf.data ]

Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Tested-by: Leo Yan <leo.yan@linaro.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Suzuki Poulouse <suzuki.poulose@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/20190605161633.12245-1-mathieu.poirier@linaro.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/perf/arch/arm/util/cs-etm.c | 127 +++++++++++++++++++++++++++++-
 1 file changed, 123 insertions(+), 4 deletions(-)

diff --git a/tools/perf/arch/arm/util/cs-etm.c b/tools/perf/arch/arm/util/cs-etm.c
index 2f595cd73da6..16af6c3b1365 100644
--- a/tools/perf/arch/arm/util/cs-etm.c
+++ b/tools/perf/arch/arm/util/cs-etm.c
@@ -32,6 +32,8 @@ struct cs_etm_recording {
 	struct auxtrace_record	itr;
 	struct perf_pmu		*cs_etm_pmu;
 	struct perf_evlist	*evlist;
+	int			wrapped_cnt;
+	bool			*wrapped;
 	bool			snapshot_mode;
 	size_t			snapshot_size;
 };
@@ -495,16 +497,131 @@ static int cs_etm_info_fill(struct auxtrace_record *itr,
 	return 0;
 }
 
-static int cs_etm_find_snapshot(struct auxtrace_record *itr __maybe_unused,
+static int cs_etm_alloc_wrapped_array(struct cs_etm_recording *ptr, int idx)
+{
+	bool *wrapped;
+	int cnt = ptr->wrapped_cnt;
+
+	/* Make @ptr->wrapped as big as @idx */
+	while (cnt <= idx)
+		cnt++;
+
+	/*
+	 * Free'ed in cs_etm_recording_free().  Using realloc() to avoid
+	 * cross compilation problems where the host's system supports
+	 * reallocarray() but not the target.
+	 */
+	wrapped = realloc(ptr->wrapped, cnt * sizeof(bool));
+	if (!wrapped)
+		return -ENOMEM;
+
+	wrapped[cnt - 1] = false;
+	ptr->wrapped_cnt = cnt;
+	ptr->wrapped = wrapped;
+
+	return 0;
+}
+
+static bool cs_etm_buffer_has_wrapped(unsigned char *buffer,
+				      size_t buffer_size, u64 head)
+{
+	u64 i, watermark;
+	u64 *buf = (u64 *)buffer;
+	size_t buf_size = buffer_size;
+
+	/*
+	 * We want to look the very last 512 byte (chosen arbitrarily) in
+	 * the ring buffer.
+	 */
+	watermark = buf_size - 512;
+
+	/*
+	 * @head is continuously increasing - if its value is equal or greater
+	 * than the size of the ring buffer, it has wrapped around.
+	 */
+	if (head >= buffer_size)
+		return true;
+
+	/*
+	 * The value of @head is somewhere within the size of the ring buffer.
+	 * This can be that there hasn't been enough data to fill the ring
+	 * buffer yet or the trace time was so long that @head has numerically
+	 * wrapped around.  To find we need to check if we have data at the very
+	 * end of the ring buffer.  We can reliably do this because mmap'ed
+	 * pages are zeroed out and there is a fresh mapping with every new
+	 * session.
+	 */
+
+	/* @head is less than 512 byte from the end of the ring buffer */
+	if (head > watermark)
+		watermark = head;
+
+	/*
+	 * Speed things up by using 64 bit transactions (see "u64 *buf" above)
+	 */
+	watermark >>= 3;
+	buf_size >>= 3;
+
+	/*
+	 * If we find trace data at the end of the ring buffer, @head has
+	 * been there and has numerically wrapped around at least once.
+	 */
+	for (i = watermark; i < buf_size; i++)
+		if (buf[i])
+			return true;
+
+	return false;
+}
+
+static int cs_etm_find_snapshot(struct auxtrace_record *itr,
 				int idx, struct auxtrace_mmap *mm,
-				unsigned char *data __maybe_unused,
+				unsigned char *data,
 				u64 *head, u64 *old)
 {
+	int err;
+	bool wrapped;
+	struct cs_etm_recording *ptr =
+			container_of(itr, struct cs_etm_recording, itr);
+
+	/*
+	 * Allocate memory to keep track of wrapping if this is the first
+	 * time we deal with this *mm.
+	 */
+	if (idx >= ptr->wrapped_cnt) {
+		err = cs_etm_alloc_wrapped_array(ptr, idx);
+		if (err)
+			return err;
+	}
+
+	/*
+	 * Check to see if *head has wrapped around.  If it hasn't only the
+	 * amount of data between *head and *old is snapshot'ed to avoid
+	 * bloating the perf.data file with zeros.  But as soon as *head has
+	 * wrapped around the entire size of the AUX ring buffer it taken.
+	 */
+	wrapped = ptr->wrapped[idx];
+	if (!wrapped && cs_etm_buffer_has_wrapped(data, mm->len, *head)) {
+		wrapped = true;
+		ptr->wrapped[idx] = true;
+	}
+
 	pr_debug3("%s: mmap index %d old head %zu new head %zu size %zu\n",
 		  __func__, idx, (size_t)*old, (size_t)*head, mm->len);
 
-	*old = *head;
-	*head += mm->len;
+	/* No wrap has occurred, we can just use *head and *old. */
+	if (!wrapped)
+		return 0;
+
+	/*
+	 * *head has wrapped around - adjust *head and *old to pickup the
+	 * entire content of the AUX buffer.
+	 */
+	if (*head >= mm->len) {
+		*old = *head - mm->len;
+	} else {
+		*head += mm->len;
+		*old = *head - mm->len;
+	}
 
 	return 0;
 }
@@ -545,6 +662,8 @@ static void cs_etm_recording_free(struct auxtrace_record *itr)
 {
 	struct cs_etm_recording *ptr =
 			container_of(itr, struct cs_etm_recording, itr);
+
+	zfree(&ptr->wrapped);
 	free(ptr);
 }
 
-- 
2.20.1




WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Sasha Levin <sashal@kernel.org>,
	Mathieu Poirier <mathieu.poirier@linaro.org>,
	Suzuki Poulouse <suzuki.poulose@arm.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Leo Yan <leo.yan@linaro.org>, Jiri Olsa <jolsa@redhat.com>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4.19 054/271] perf cs-etm: Properly set the value of old and head in snapshot mode
Date: Wed, 24 Jul 2019 21:18:43 +0200	[thread overview]
Message-ID: <20190724191659.776669335@linuxfoundation.org> (raw)
In-Reply-To: <20190724191655.268628197@linuxfoundation.org>

[ Upstream commit e45c48a9a4d20ebc7b639a62c3ef8f4b08007027 ]

This patch adds the necessary intelligence to properly compute the value
of 'old' and 'head' when operating in snapshot mode.  That way we can
get the latest information in the AUX buffer and be compatible with the
generic AUX ring buffer mechanic.

Tester notes:

> Leo, have you had the chance to test/review this one? Suzuki?

Sure.  I applied this patch on the perf/core branch (with latest
commit 3e4fbf36c1e3 'perf augmented_raw_syscalls: Move reading
filename to the loop') and passed testing with below steps:

  # perf record -e cs_etm/@tmc_etr0/ -S -m,64 --per-thread ./sort &
  [1] 19097
  Bubble sorting array of 30000 elements

  # kill -USR2 19097
  # kill -USR2 19097
  # kill -USR2 19097
  [ perf record: Woken up 4 times to write data ]
  [ perf record: Captured and wrote 0.753 MB perf.data ]

Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Tested-by: Leo Yan <leo.yan@linaro.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Suzuki Poulouse <suzuki.poulose@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/20190605161633.12245-1-mathieu.poirier@linaro.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/perf/arch/arm/util/cs-etm.c | 127 +++++++++++++++++++++++++++++-
 1 file changed, 123 insertions(+), 4 deletions(-)

diff --git a/tools/perf/arch/arm/util/cs-etm.c b/tools/perf/arch/arm/util/cs-etm.c
index 2f595cd73da6..16af6c3b1365 100644
--- a/tools/perf/arch/arm/util/cs-etm.c
+++ b/tools/perf/arch/arm/util/cs-etm.c
@@ -32,6 +32,8 @@ struct cs_etm_recording {
 	struct auxtrace_record	itr;
 	struct perf_pmu		*cs_etm_pmu;
 	struct perf_evlist	*evlist;
+	int			wrapped_cnt;
+	bool			*wrapped;
 	bool			snapshot_mode;
 	size_t			snapshot_size;
 };
@@ -495,16 +497,131 @@ static int cs_etm_info_fill(struct auxtrace_record *itr,
 	return 0;
 }
 
-static int cs_etm_find_snapshot(struct auxtrace_record *itr __maybe_unused,
+static int cs_etm_alloc_wrapped_array(struct cs_etm_recording *ptr, int idx)
+{
+	bool *wrapped;
+	int cnt = ptr->wrapped_cnt;
+
+	/* Make @ptr->wrapped as big as @idx */
+	while (cnt <= idx)
+		cnt++;
+
+	/*
+	 * Free'ed in cs_etm_recording_free().  Using realloc() to avoid
+	 * cross compilation problems where the host's system supports
+	 * reallocarray() but not the target.
+	 */
+	wrapped = realloc(ptr->wrapped, cnt * sizeof(bool));
+	if (!wrapped)
+		return -ENOMEM;
+
+	wrapped[cnt - 1] = false;
+	ptr->wrapped_cnt = cnt;
+	ptr->wrapped = wrapped;
+
+	return 0;
+}
+
+static bool cs_etm_buffer_has_wrapped(unsigned char *buffer,
+				      size_t buffer_size, u64 head)
+{
+	u64 i, watermark;
+	u64 *buf = (u64 *)buffer;
+	size_t buf_size = buffer_size;
+
+	/*
+	 * We want to look the very last 512 byte (chosen arbitrarily) in
+	 * the ring buffer.
+	 */
+	watermark = buf_size - 512;
+
+	/*
+	 * @head is continuously increasing - if its value is equal or greater
+	 * than the size of the ring buffer, it has wrapped around.
+	 */
+	if (head >= buffer_size)
+		return true;
+
+	/*
+	 * The value of @head is somewhere within the size of the ring buffer.
+	 * This can be that there hasn't been enough data to fill the ring
+	 * buffer yet or the trace time was so long that @head has numerically
+	 * wrapped around.  To find we need to check if we have data at the very
+	 * end of the ring buffer.  We can reliably do this because mmap'ed
+	 * pages are zeroed out and there is a fresh mapping with every new
+	 * session.
+	 */
+
+	/* @head is less than 512 byte from the end of the ring buffer */
+	if (head > watermark)
+		watermark = head;
+
+	/*
+	 * Speed things up by using 64 bit transactions (see "u64 *buf" above)
+	 */
+	watermark >>= 3;
+	buf_size >>= 3;
+
+	/*
+	 * If we find trace data at the end of the ring buffer, @head has
+	 * been there and has numerically wrapped around at least once.
+	 */
+	for (i = watermark; i < buf_size; i++)
+		if (buf[i])
+			return true;
+
+	return false;
+}
+
+static int cs_etm_find_snapshot(struct auxtrace_record *itr,
 				int idx, struct auxtrace_mmap *mm,
-				unsigned char *data __maybe_unused,
+				unsigned char *data,
 				u64 *head, u64 *old)
 {
+	int err;
+	bool wrapped;
+	struct cs_etm_recording *ptr =
+			container_of(itr, struct cs_etm_recording, itr);
+
+	/*
+	 * Allocate memory to keep track of wrapping if this is the first
+	 * time we deal with this *mm.
+	 */
+	if (idx >= ptr->wrapped_cnt) {
+		err = cs_etm_alloc_wrapped_array(ptr, idx);
+		if (err)
+			return err;
+	}
+
+	/*
+	 * Check to see if *head has wrapped around.  If it hasn't only the
+	 * amount of data between *head and *old is snapshot'ed to avoid
+	 * bloating the perf.data file with zeros.  But as soon as *head has
+	 * wrapped around the entire size of the AUX ring buffer it taken.
+	 */
+	wrapped = ptr->wrapped[idx];
+	if (!wrapped && cs_etm_buffer_has_wrapped(data, mm->len, *head)) {
+		wrapped = true;
+		ptr->wrapped[idx] = true;
+	}
+
 	pr_debug3("%s: mmap index %d old head %zu new head %zu size %zu\n",
 		  __func__, idx, (size_t)*old, (size_t)*head, mm->len);
 
-	*old = *head;
-	*head += mm->len;
+	/* No wrap has occurred, we can just use *head and *old. */
+	if (!wrapped)
+		return 0;
+
+	/*
+	 * *head has wrapped around - adjust *head and *old to pickup the
+	 * entire content of the AUX buffer.
+	 */
+	if (*head >= mm->len) {
+		*old = *head - mm->len;
+	} else {
+		*head += mm->len;
+		*old = *head - mm->len;
+	}
 
 	return 0;
 }
@@ -545,6 +662,8 @@ static void cs_etm_recording_free(struct auxtrace_record *itr)
 {
 	struct cs_etm_recording *ptr =
 			container_of(itr, struct cs_etm_recording, itr);
+
+	zfree(&ptr->wrapped);
 	free(ptr);
 }
 
-- 
2.20.1




_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-07-24 20:06 UTC|newest]

Thread overview: 289+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-24 19:17 [PATCH 4.19 000/271] 4.19.61-stable review Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 001/271] MIPS: ath79: fix ar933x uart parity mode Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 002/271] MIPS: fix build on non-linux hosts Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 003/271] arm64/efi: Mark __efistub_stext_offset as an absolute symbol explicitly Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 004/271] scsi: iscsi: set auth_protocol back to NULL if CHAP_A value is not supported Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 005/271] dmaengine: imx-sdma: fix use-after-free on probe error path Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 006/271] wil6210: fix potential out-of-bounds read Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 007/271] ath10k: Do not send probe response template for mesh Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 008/271] ath9k: Check for errors when reading SREV register Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 009/271] ath6kl: add some bounds checking Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 4.19 010/271] ath10k: add peer id check in ath10k_peer_find_by_id Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 011/271] wil6210: fix spurious interrupts in 3-msi Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 012/271] ath: DFS JP domain W56 fixed pulse type 3 RADAR detection Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 013/271] regmap: debugfs: Fix memory leak in regmap_debugfs_init Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 014/271] batman-adv: fix for leaked TVLV handler Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 015/271] media: dvb: usb: fix use after free in dvb_usb_device_exit Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 016/271] media: spi: IR LED: add missing of table registration Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 017/271] crypto: talitos - fix skcipher failure due to wrong output IV Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 018/271] media: ov7740: avoid invalid framesize setting Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 019/271] media: marvell-ccic: fix DMA s/g desc number calculation Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 020/271] media: vpss: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 021/271] media: media_device_enum_links32: clean a reserved field Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 022/271] net: stmmac: dwmac1000: Clear unused address entries Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 023/271] net: stmmac: dwmac4/5: " Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 024/271] qed: Set the doorbell address correctly Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 025/271] signal/pid_namespace: Fix reboot_pid_ns to use send_sig not force_sig Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 026/271] signal/cifs: Fix cifs_put_tcp_session to call send_sig instead of force_sig Greg Kroah-Hartman
2019-07-24 20:51   ` Steve French
2019-07-24 19:18 ` [PATCH 4.19 027/271] af_key: fix leaks in key_pol_get_resp and dump_sp Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 028/271] xfrm: Fix xfrm sel prefix length validation Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 029/271] fscrypt: clean up some BUG_ON()s in block encryption/decryption Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 030/271] perf annotate TUI browser: Do not use member from variable within its own initialization Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 031/271] media: mc-device.c: dont memset __user pointer contents Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 032/271] media: saa7164: fix remove_proc_entry warning Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 033/271] media: staging: media: davinci_vpfe: - Fix for memory leak if decoder initialization fails Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 034/271] net: phy: Check against net_device being NULL Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 035/271] crypto: talitos - properly handle split ICV Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 036/271] crypto: talitos - Align SEC1 accesses to 32 bits boundaries Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 037/271] tua6100: Avoid build warnings Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 038/271] batman-adv: Fix duplicated OGMs on NETDEV_UP Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 039/271] locking/lockdep: Fix merging of hlocks with non-zero references Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 040/271] media: wl128x: Fix some error handling in fm_v4l2_init_video_device() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 041/271] net: hns3: set ops to null when unregister ad_dev Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 042/271] cpupower : frequency-set -r option misses the last cpu in related cpu list Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 043/271] arm64: mm: make CONFIG_ZONE_DMA32 configurable Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 044/271] perf jvmti: Address gcc string overflow warning for strncpy() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 045/271] net: stmmac: dwmac4: fix flow control issue Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 046/271] net: stmmac: modify default value of tx-frames Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 047/271] crypto: inside-secure - do not rely on the hardware last bit for result descriptors Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 048/271] net: fec: Do not use netdev messages too early Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 049/271] net: axienet: Fix race condition causing TX hang Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 050/271] s390/qdio: handle PENDING state for QEBSM devices Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 051/271] RAS/CEC: Fix pfn insertion Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 052/271] net: sfp: add mutex to prevent concurrent state checks Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 053/271] ipset: Fix memory accounting for hash types on resize Greg Kroah-Hartman
2019-07-24 19:18 ` Greg Kroah-Hartman [this message]
2019-07-24 19:18   ` [PATCH 4.19 054/271] perf cs-etm: Properly set the value of old and head in snapshot mode Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 055/271] perf test 6: Fix missing kvm module load for s390 Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 056/271] perf report: Fix OOM error in TUI mode on s390 Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 057/271] irqchip/meson-gpio: Add support for Meson-G12A SoC Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 058/271] media: uvcvideo: Fix access to uninitialized fields on probe error Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 059/271] media: fdp1: Support M3N and E3 platforms Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 060/271] iommu: Fix a leak in iommu_insert_resv_region Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 061/271] gpio: omap: fix lack of irqstatus_raw0 for OMAP4 Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 062/271] gpio: omap: ensure irq is enabled before wakeup Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 063/271] regmap: fix bulk writes on paged registers Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 064/271] bpf: silence warning messages in core Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 065/271] media: s5p-mfc: fix reading min scratch buffer size on MFC v6/v7 Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 066/271] selinux: fix empty write to keycreate file Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 067/271] x86/cpu: Add Ice Lake NNPI to Intel family Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 068/271] ASoC: meson: axg-tdm: fix sample clock inversion Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 069/271] rcu: Force inlining of rcu_read_lock() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 4.19 070/271] x86/cpufeatures: Add FDP_EXCPTN_ONLY and ZERO_FCS_FDS Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 071/271] qed: iWARP - Fix tc for MPA ll2 connection Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 072/271] net: hns3: fix for skb leak when doing selftest Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 073/271] block: null_blk: fix race condition for null_del_dev Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 074/271] blkcg, writeback: dead memcgs shouldnt contribute to writeback ownership arbitration Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 075/271] xfrm: fix sa selector validation Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 076/271] sched/core: Add __sched tag for io_schedule() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 077/271] sched/fair: Fix "runnable_avg_yN_inv" not used warnings Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 078/271] perf/x86/intel/uncore: Handle invalid event coding for free-running counter Greg Kroah-Hartman
2019-07-26 17:59   ` Pavel Machek
2019-07-24 19:19 ` [PATCH 4.19 079/271] x86/atomic: Fix smp_mb__{before,after}_atomic() Greg Kroah-Hartman
2019-07-26 10:18   ` Jari Ruusu
2019-07-26 11:01     ` Peter Zijlstra
2019-07-26 14:07       ` Jari Ruusu
2019-07-24 19:19 ` [PATCH 4.19 080/271] perf evsel: Make perf_evsel__name() accept a NULL argument Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 081/271] vhost_net: disable zerocopy by default Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 082/271] ipoib: correcly show a VF hardware address Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 083/271] x86/cacheinfo: Fix a -Wtype-limits warning Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 084/271] blk-iolatency: only account submitted bios Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 085/271] ACPICA: Clear status of GPEs on first direct enable Greg Kroah-Hartman
2019-07-26 17:57   ` Pavel Machek
2019-07-27 10:51     ` Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 086/271] EDAC/sysfs: Fix memory leak when creating a csrow object Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 087/271] nvme: fix possible io failures when removing multipathed ns Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 088/271] nvme-pci: properly report state change failure in nvme_reset_work Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 089/271] nvme-pci: set the errno on ctrl state change error Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 090/271] lightnvm: pblk: fix freeing of merged pages Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 091/271] arm64: Do not enable IRQs for ct_user_exit Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 092/271] ipsec: select crypto ciphers for xfrm_algo Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 093/271] ipvs: defer hook registration to avoid leaks Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 094/271] media: s5p-mfc: Make additional clocks optional Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 095/271] media: i2c: fix warning same module names Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 096/271] ntp: Limit TAI-UTC offset Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 097/271] timer_list: Guard procfs specific code Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 098/271] acpi/arm64: ignore 5.1 FADTs that are reported as 5.0 Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 099/271] media: coda: fix mpeg2 sequence number handling Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 100/271] media: coda: fix last buffer handling in V4L2_ENC_CMD_STOP Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 101/271] media: coda: increment sequence offset for the last returned frame Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 102/271] media: vimc: cap: check v4l2_fill_pixfmt return value Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 103/271] media: hdpvr: fix locking and a missing msleep Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 104/271] net: stmmac: sun8i: force select external PHY when no internal one Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 105/271] rtlwifi: rtl8192cu: fix error handle when usb probe failed Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 106/271] mt7601u: do not schedule rx_tasklet when the device has been disconnected Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 107/271] x86/build: Add set -e to mkcapflags.sh to delete broken capflags.c Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 108/271] mt7601u: fix possible memory leak when the device is disconnected Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 109/271] ipvs: fix tinfo memory leak in start_sync_thread Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 110/271] ath10k: add missing error handling Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 111/271] ath10k: fix PCIE device wake up failed Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 112/271] perf tools: Increase MAX_NR_CPUS and MAX_CACHES Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 113/271] ASoC: Intel: hdac_hdmi: Set ops to NULL on remove Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 114/271] libata: dont request sense data on !ZAC ATA devices Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 115/271] clocksource/drivers/exynos_mct: Increase priority over ARM arch timer Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 116/271] xsk: Properly terminate assignment in xskq_produce_flush_desc Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 117/271] rslib: Fix decoding of shortened codes Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 118/271] rslib: Fix handling of of caller provided syndrome Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 119/271] ixgbe: Check DDM existence in transceiver before access Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 120/271] crypto: serpent - mark __serpent_setkey_sbox noinline Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 121/271] crypto: asymmetric_keys - select CRYPTO_HASH where needed Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 122/271] wil6210: drop old event after wmi_call timeout Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 123/271] EDAC: Fix global-out-of-bounds write when setting edac_mc_poll_msec Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 124/271] bcache: check CACHE_SET_IO_DISABLE in allocator code Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 125/271] bcache: check CACHE_SET_IO_DISABLE bit in bch_journal() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 126/271] bcache: acquire bch_register_lock later in cached_dev_free() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 127/271] bcache: check c->gc_thread by IS_ERR_OR_NULL in cache_set_flush() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 128/271] bcache: fix potential deadlock in cached_def_free() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 129/271] net: hns3: fix a -Wformat-nonliteral compile warning Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 4.19 130/271] net: hns3: add some error checking in hclge_tm module Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 131/271] ath10k: destroy sdio workqueue while remove sdio module Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 132/271] net: mvpp2: prs: Dont override the sign bit in SRAM parser shift Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 133/271] igb: clear out skb->tstamp after reading the txtime Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 134/271] iwlwifi: mvm: Drop large non sta frames Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 135/271] bpf: fix uapi bpf_prog_info fields alignment Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 136/271] perf stat: Make metric event lookup more robust Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 137/271] perf stat: Fix group lookup for metric group Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 138/271] bnx2x: Prevent ptp_task to be rescheduled indefinitely Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 139/271] net: usb: asix: init MAC address buffers Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 140/271] rxrpc: Fix oops in tracepoint Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 141/271] bpf, libbpf, smatch: Fix potential NULL pointer dereference Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 142/271] selftests: bpf: fix inlines in test_lwt_seg6local Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 143/271] bonding: validate ip header before check IPPROTO_IGMP Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 144/271] gpiolib: Fix references to gpiod_[gs]et_*value_cansleep() variants Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 145/271] tools: bpftool: Fix json dump crash on powerpc Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 146/271] Bluetooth: hci_bcsp: Fix memory leak in rx_skb Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 147/271] Bluetooth: Add new 13d3:3491 QCA_ROME device Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 148/271] Bluetooth: Add new 13d3:3501 " Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 149/271] Bluetooth: 6lowpan: search for destination address in all peers Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 150/271] perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 151/271] Bluetooth: Check state in l2cap_disconnect_rsp Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 152/271] gtp: add missing gtp_encap_disable_sock() in gtp_encap_enable() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 153/271] Bluetooth: validate BLE connection interval updates Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 154/271] gtp: fix suspicious RCU usage Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 155/271] gtp: fix Illegal context switch in RCU read-side critical section Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 156/271] gtp: fix use-after-free in gtp_encap_destroy() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 157/271] gtp: fix use-after-free in gtp_newlink() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 158/271] net: mvmdio: defer probe of orion-mdio if a clock is not ready Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 159/271] iavf: fix dereference of null rx_buffer pointer Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 160/271] floppy: fix div-by-zero in setup_format_params Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 161/271] floppy: fix out-of-bounds read in next_valid_format Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 162/271] floppy: fix invalid pointer dereference in drive_name Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 163/271] floppy: fix out-of-bounds read in copy_buffer Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 164/271] xen: let alloc_xenballooned_pages() fail if not enough memory free Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 165/271] scsi: NCR5380: Reduce goto statements in NCR5380_select() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 166/271] scsi: NCR5380: Always re-enable reselection interrupt Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 167/271] Revert "scsi: ncr5380: Increase register polling limit" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 168/271] scsi: core: Fix race on creating sense cache Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 169/271] scsi: megaraid_sas: Fix calculation of target ID Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 170/271] scsi: mac_scsi: Increase PIO/PDMA transfer length threshold Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 171/271] scsi: mac_scsi: Fix pseudo DMA implementation, take 2 Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 172/271] crypto: ghash - fix unaligned memory access in ghash_setkey() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 173/271] crypto: ccp - Validate the the error value used to index error messages Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 174/271] crypto: arm64/sha1-ce - correct digest for empty data in finup Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 175/271] crypto: arm64/sha2-ce " Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 176/271] crypto: chacha20poly1305 - fix atomic sleep when using async algorithm Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 177/271] crypto: crypto4xx - fix AES CTR blocksize value Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 178/271] crypto: crypto4xx - fix blocksize for cfb and ofb Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 179/271] crypto: crypto4xx - block ciphers should only accept complete blocks Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 180/271] crypto: ccp - memset structure fields to zero before reuse Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 181/271] crypto: ccp/gcm - use const time tag comparison Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 182/271] crypto: crypto4xx - fix a potential double free in ppc4xx_trng_probe Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 183/271] Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 184/271] bcache: Revert "bcache: fix high CPU occupancy during journal" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 185/271] bcache: Revert "bcache: free heap cache_set->flush_btree in bch_journal_free" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 186/271] bcache: ignore read-ahead request failure on backing device Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 187/271] bcache: fix mistaken sysfs entry for io_error counter Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 188/271] bcache: destroy dc->writeback_write_wq if failed to create dc->writeback_thread Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 189/271] Input: gtco - bounds check collection indent level Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 4.19 190/271] Input: alps - dont handle ALPS cs19 trackpoint-only device Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 191/271] Input: synaptics - whitelist Lenovo T580 SMBus intertouch Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 192/271] Input: alps - fix a mismatch between a condition check and its comment Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 193/271] regulator: s2mps11: Fix buck7 and buck8 wrong voltages Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 194/271] arm64: tegra: Update Jetson TX1 GPU regulator timings Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 195/271] iwlwifi: pcie: dont service an interrupt that was masked Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 196/271] iwlwifi: pcie: fix ALIVE interrupt handling for gen2 devices w/o MSI-X Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 197/271] iwlwifi: dont WARN when calling iwl_get_shared_mem_conf with RF-Kill Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 198/271] iwlwifi: fix RF-Kill interrupt while FW load for gen2 devices Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 199/271] NFSv4: Handle the special Linux file open access mode Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 200/271] pnfs/flexfiles: Fix PTR_ERR() dereferences in ff_layout_track_ds_error Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 201/271] pNFS: Fix a typo in pnfs_update_layout Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 202/271] pnfs: Fix a problem where we gratuitously start doing I/O through the MDS Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 203/271] lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 204/271] ASoC: dapm: Adapt for debugfs API change Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 205/271] raid5-cache: Need to do start() part job after adding journal device Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 206/271] ALSA: seq: Break too long mutex context in the write loop Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 207/271] ALSA: hda/realtek - Fixed Headphone Mic cant record on Dell platform Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 208/271] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 209/271] media: v4l2: Test type instead of cfg->type in v4l2_ctrl_new_custom() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 210/271] media: coda: Remove unbalanced and unneeded mutex unlock Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 211/271] media: videobuf2-core: Prevent size alignment wrapping buffer size to 0 Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 212/271] media: videobuf2-dma-sg: Prevent size from overflowing Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 213/271] KVM: x86/vPMU: refine kvm_pmu err msg when event creation failed Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 214/271] arm64: tegra: Fix AGIC register range Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 215/271] fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 216/271] kconfig: fix missing choice values in auto.conf Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 217/271] drm/nouveau/i2c: Enable i2c pads & busses during preinit Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 218/271] padata: use smp_mb in padata_reorder to avoid orphaned padata jobs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 219/271] dm zoned: fix zone state management race Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 220/271] xen/events: fix binding user event channels to cpus Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 221/271] 9p/xen: Add cleanup path in p9_trans_xen_init Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 222/271] 9p/virtio: Add cleanup path in p9_virtio_init Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 223/271] x86/boot: Fix memory leak in default_get_smp_config() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 224/271] perf/x86/intel: Fix spurious NMI on fixed counter Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 225/271] perf/x86/amd/uncore: Do not set ThreadMask and SliceMask for non-L3 PMCs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 226/271] perf/x86/amd/uncore: Set the thread mask for F17h L3 PMCs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 227/271] drm/edid: parse CEA blocks embedded in DisplayID Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 228/271] intel_th: pci: Add Ice Lake NNPI support Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 229/271] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 230/271] PCI: Do not poll for PME if the device is in D3cold Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 231/271] PCI: qcom: Ensure that PERST is asserted for at least 100 ms Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 232/271] Btrfs: fix data loss after inode eviction, renaming it, and fsync it Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 233/271] Btrfs: fix fsync not persisting dentry deletions due to inode evictions Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 234/271] Btrfs: add missing inode version, ctime and mtime updates when punching hole Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 235/271] IB/mlx5: Report correctly tag matching rendezvous capability Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 236/271] HID: wacom: generic: only switch the mode on devices with LEDs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 237/271] HID: wacom: generic: Correct pad syncing Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 238/271] HID: wacom: correct touch resolution x/y typo Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 239/271] libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 240/271] coda: pass the host file in vma->vm_file on mmap Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 241/271] include/asm-generic/bug.h: fix "cut here" for WARN_ON for __WARN_TAINT architectures Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 242/271] xfs: fix pagecache truncation prior to reflink Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 243/271] xfs: flush removing page cache in xfs_reflink_remap_prep Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 244/271] xfs: dont overflow xattr listent buffer Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 245/271] xfs: rename m_inotbt_nores to m_finobt_nores Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 246/271] xfs: dont ever put nlink > 0 inodes on the unlinked list Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 247/271] xfs: reserve blocks for ifree transaction during log recovery Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 248/271] xfs: fix reporting supported extra file attributes for statx() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 249/271] xfs: serialize unaligned dio writes against all other dio writes Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 4.19 250/271] xfs: abort unaligned nowait directio early Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 251/271] gpu: ipu-v3: ipu-ic: Fix saturation bit offset in TPMEM Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 252/271] crypto: caam - limit output IV to CBC to work around CTR mode DMA issue Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 253/271] parisc: Ensure userspace privilege for ptraced processes in regset functions Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 254/271] parisc: Fix kernel panic due invalid values in IAOQ0 or IAOQ1 Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 255/271] powerpc/32s: fix suspend/resume when IBATs 4-7 are used Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 256/271] powerpc/watchpoint: Restore NV GPRs while returning from exception Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 257/271] powerpc/powernv/npu: Fix reference leak Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 258/271] powerpc/pseries: Fix oops in hotplug memory notifier Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 259/271] mmc: sdhci-msm: fix mutex while in spinlock Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 260/271] eCryptfs: fix a couple type promotion bugs Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 261/271] mtd: rawnand: mtk: Correct low level time calculation of r/w cycle Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 262/271] mtd: spinand: read returns badly if the last page has bitflips Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 263/271] intel_th: msu: Fix single mode with disabled IOMMU Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 264/271] Bluetooth: Add SMP workaround Microsoft Surface Precision Mouse bug Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 265/271] usb: Handle USB3 remote wakeup for LPM enabled devices correctly Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 266/271] blk-throttle: fix zero wait time for iops throttled group Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 267/271] blk-iolatency: clear use_delay when io.latency is set to zero Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 268/271] blkcg: update blkcg_print_stat() to handle larger outputs Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 269/271] net: mvmdio: allow up to four clocks to be specified for orion-mdio Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 270/271] dt-bindings: allow up to four clocks " Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 4.19 271/271] dm bufio: fix deadlock with loop device Greg Kroah-Hartman
2019-07-24 23:54 ` [PATCH 4.19 000/271] 4.19.61-stable review kernelci.org bot
2019-07-25  4:44 ` Naresh Kamboju
2019-07-26  7:25   ` Greg Kroah-Hartman
2019-07-25  9:02 ` Jon Hunter
2019-07-25  9:02   ` Jon Hunter
2019-07-25 14:43 ` shuah
2019-07-25 17:56 ` Guenter Roeck
2019-07-26  6:19 ` Kelsey Skunberg
2019-07-26 12:23 ` Bharath Vedartham

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=20190724191659.776669335@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=acme@redhat.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=jolsa@redhat.com \
    --cc=leo.yan@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --cc=peterz@infradead.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=suzuki.poulose@arm.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.