From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Ingo Molnar <mingo@redhat.com>,
Joel Fernandes <joelaf@google.com>,
Paul Burton <paulburton@google.com>,
"Steven Rostedt (VMware)" <rostedt@goodmis.org>
Subject: [PATCH 4.14 199/251] tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT
Date: Wed, 24 Nov 2021 12:57:21 +0100 [thread overview]
Message-ID: <20211124115717.182800413@linuxfoundation.org> (raw)
In-Reply-To: <20211124115710.214900256@linuxfoundation.org>
From: Paul Burton <paulburton@google.com>
commit 4030a6e6a6a4a42ff8c18414c9e0c93e24cc70b8 upstream.
Currently tgid_map is sized at PID_MAX_DEFAULT entries, which means that
on systems where pid_max is configured higher than PID_MAX_DEFAULT the
ftrace record-tgid option doesn't work so well. Any tasks with PIDs
higher than PID_MAX_DEFAULT are simply not recorded in tgid_map, and
don't show up in the saved_tgids file.
In particular since systemd v243 & above configure pid_max to its
highest possible 1<<22 value by default on 64 bit systems this renders
the record-tgids option of little use.
Increase the size of tgid_map to the configured pid_max instead,
allowing it to cover the full range of PIDs up to the maximum value of
PID_MAX_LIMIT if the system is configured that way.
On 64 bit systems with pid_max == PID_MAX_LIMIT this will increase the
size of tgid_map from 256KiB to 16MiB. Whilst this 64x increase in
memory overhead sounds significant 64 bit systems are presumably best
placed to accommodate it, and since tgid_map is only allocated when the
record-tgid option is actually used presumably the user would rather it
spends sufficient memory to actually record the tgids they expect.
The size of tgid_map could also increase for CONFIG_BASE_SMALL=y
configurations, but these seem unlikely to be systems upon which people
are both configuring a large pid_max and running ftrace with record-tgid
anyway.
Of note is that we only allocate tgid_map once, the first time that the
record-tgid option is enabled. Therefore its size is only set once, to
the value of pid_max at the time the record-tgid option is first
enabled. If a user increases pid_max after that point, the saved_tgids
file will not contain entries for any tasks with pids beyond the earlier
value of pid_max.
Link: https://lkml.kernel.org/r/20210701172407.889626-2-paulburton@google.com
Fixes: d914ba37d714 ("tracing: Add support for recording tgid of tasks")
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Joel Fernandes <joelaf@google.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Paul Burton <paulburton@google.com>
[ Fixed comment coding style ]
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
kernel/trace/trace.c | 62 ++++++++++++++++++++++++++++++++++++++-------------
1 file changed, 47 insertions(+), 15 deletions(-)
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -1723,8 +1723,15 @@ void tracing_reset_all_online_cpus(void)
}
}
+/*
+ * The tgid_map array maps from pid to tgid; i.e. the value stored at index i
+ * is the tgid last observed corresponding to pid=i.
+ */
static int *tgid_map;
+/* The maximum valid index into tgid_map. */
+static size_t tgid_map_max;
+
#define SAVED_CMDLINES_DEFAULT 128
#define NO_CMDLINE_MAP UINT_MAX
static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
@@ -1996,24 +2003,41 @@ void trace_find_cmdline(int pid, char co
preempt_enable();
}
+static int *trace_find_tgid_ptr(int pid)
+{
+ /*
+ * Pairs with the smp_store_release in set_tracer_flag() to ensure that
+ * if we observe a non-NULL tgid_map then we also observe the correct
+ * tgid_map_max.
+ */
+ int *map = smp_load_acquire(&tgid_map);
+
+ if (unlikely(!map || pid > tgid_map_max))
+ return NULL;
+
+ return &map[pid];
+}
+
int trace_find_tgid(int pid)
{
- if (unlikely(!tgid_map || !pid || pid > PID_MAX_DEFAULT))
- return 0;
+ int *ptr = trace_find_tgid_ptr(pid);
- return tgid_map[pid];
+ return ptr ? *ptr : 0;
}
static int trace_save_tgid(struct task_struct *tsk)
{
+ int *ptr;
+
/* treat recording of idle task as a success */
if (!tsk->pid)
return 1;
- if (unlikely(!tgid_map || tsk->pid > PID_MAX_DEFAULT))
+ ptr = trace_find_tgid_ptr(tsk->pid);
+ if (!ptr)
return 0;
- tgid_map[tsk->pid] = tsk->tgid;
+ *ptr = tsk->tgid;
return 1;
}
@@ -4353,6 +4377,8 @@ int trace_keep_overwrite(struct tracer *
int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
{
+ int *map;
+
if ((mask == TRACE_ITER_RECORD_TGID) ||
(mask == TRACE_ITER_RECORD_CMD))
lockdep_assert_held(&event_mutex);
@@ -4375,9 +4401,19 @@ int set_tracer_flag(struct trace_array *
trace_event_enable_cmd_record(enabled);
if (mask == TRACE_ITER_RECORD_TGID) {
- if (!tgid_map)
- tgid_map = kzalloc((PID_MAX_DEFAULT + 1) * sizeof(*tgid_map),
- GFP_KERNEL);
+ if (!tgid_map) {
+ tgid_map_max = pid_max;
+ map = kzalloc((tgid_map_max + 1) * sizeof(*tgid_map),
+ GFP_KERNEL);
+
+ /*
+ * Pairs with smp_load_acquire() in
+ * trace_find_tgid_ptr() to ensure that if it observes
+ * the tgid_map we just allocated then it also observes
+ * the corresponding tgid_map_max value.
+ */
+ smp_store_release(&tgid_map, map);
+ }
if (!tgid_map) {
tr->trace_flags &= ~TRACE_ITER_RECORD_TGID;
return -ENOMEM;
@@ -4752,18 +4788,14 @@ static void *saved_tgids_next(struct seq
{
int pid = ++(*pos);
- if (pid > PID_MAX_DEFAULT)
- return NULL;
-
- return &tgid_map[pid];
+ return trace_find_tgid_ptr(pid);
}
static void *saved_tgids_start(struct seq_file *m, loff_t *pos)
{
- if (!tgid_map || *pos > PID_MAX_DEFAULT)
- return NULL;
+ int pid = *pos;
- return &tgid_map[*pos];
+ return trace_find_tgid_ptr(pid);
}
static void saved_tgids_stop(struct seq_file *m, void *v)
next prev parent reply other threads:[~2021-11-24 12:44 UTC|newest]
Thread overview: 262+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-24 11:54 [PATCH 4.14 000/251] 4.14.256-rc1 review Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 001/251] xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 002/251] binder: use euid from cred instead of using task Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 003/251] binder: use cred instead of task for selinux checks Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 004/251] Input: elantench - fix misreporting trackpoint coordinates Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 005/251] Input: i8042 - Add quirk for Fujitsu Lifebook T725 Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 006/251] libata: fix read log timeout value Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 007/251] ocfs2: fix data corruption on truncate Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 008/251] mmc: dw_mmc: Dont wait for DRTO on Write RSP error Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 009/251] parisc: Fix ptrace check on syscall return Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 010/251] tpm: Check for integer overflow in tpm2_map_response_body() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 011/251] media: ite-cir: IR receiver stop working after receive overflow Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 012/251] ALSA: ua101: fix division by zero at probe Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 013/251] ALSA: 6fire: fix control and bulk message timeouts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 014/251] ALSA: line6: fix control and interrupt " Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 015/251] ALSA: synth: missing check for possible NULL after the call to kstrdup Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 016/251] ALSA: timer: Fix use-after-free problem Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 017/251] ALSA: timer: Unconditionally unlink slave instances, too Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 018/251] fuse: fix page stealing Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 019/251] x86/irq: Ensure PI wakeup handler is unregistered before module unload Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 020/251] cavium: Return negative value when pci_alloc_irq_vectors() fails Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 021/251] scsi: qla2xxx: Fix unmap of already freed sgl Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 022/251] cavium: Fix return values of the probe function Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 023/251] sfc: Dont use netif_info before net_device setup Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 024/251] hyperv/vmbus: include linux/bitops.h Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 025/251] mmc: winbond: dont build on M68K Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 026/251] bpf: Prevent increasing bpf_jit_limit above max Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 027/251] xen/netfront: stop tx queues during live migration Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 028/251] spi: spl022: fix Microwire full duplex mode Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 029/251] watchdog: Fix OMAP watchdog early handling Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 030/251] vmxnet3: do not stop tx queues after netif_device_detach() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 031/251] btrfs: fix lost error handling when replaying directory deletes Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 032/251] hwmon: (pmbus/lm25066) Add offset coefficients Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 033/251] regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 034/251] regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 035/251] EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 036/251] mwifiex: fix division by zero in fw download path Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 037/251] ath6kl: fix division by zero in send path Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 038/251] ath6kl: fix control-message timeout Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 039/251] ath10k: " Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 040/251] ath10k: fix division by zero in send path Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 041/251] PCI: Mark Atheros QCA6174 to avoid bus reset Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 042/251] rtl8187: fix control-message timeouts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 043/251] evm: mark evm_fixmode as __ro_after_init Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 044/251] wcn36xx: Fix HT40 capability for 2Ghz band Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 045/251] mwifiex: Read a PCI register after writing the TX ring write pointer Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 046/251] libata: fix checking of DMA state Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 047/251] wcn36xx: handle connection loss indication Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 048/251] RDMA/qedr: Fix NULL deref for query_qp on the GSI QP Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 049/251] signal: Remove the bogus sigkill_pending in ptrace_stop Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 050/251] signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 051/251] power: supply: max17042_battery: Prevent int underflow in set_soc_threshold Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 052/251] power: supply: max17042_battery: use VFSOC for capacity when no rsns Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 053/251] powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 054/251] serial: core: Fix initializing and restoring termios speed Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 055/251] ALSA: mixer: oss: Fix racy access to slots Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 056/251] ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.14 057/251] xen/balloon: add late_initcall_sync() for initial ballooning done Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 058/251] PCI: aardvark: Do not clear status bits of masked interrupts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 059/251] PCI: aardvark: Do not unmask unused interrupts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 060/251] PCI: aardvark: Fix return value of MSI domain .alloc() method Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 061/251] PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 062/251] quota: check block number when reading the block in quota file Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 063/251] quota: correct error number in free_dqentry() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 064/251] pinctrl: core: fix possible memory leak in pinctrl_enable() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 065/251] iio: dac: ad5446: Fix ad5622_write() return value Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 066/251] USB: serial: keyspan: fix memleak on probe errors Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 067/251] USB: iowarrior: fix control-message timeouts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 068/251] Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 069/251] Bluetooth: fix use-after-free error in lock_sock_nested() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 070/251] platform/x86: wmi: do not fail if disabling fails Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 071/251] MIPS: lantiq: dma: add small delay after reset Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 072/251] MIPS: lantiq: dma: reset correct number of channel Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 073/251] locking/lockdep: Avoid RCU-induced noinstr fail Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 074/251] smackfs: Fix use-after-free in netlbl_catmap_walk() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 075/251] x86: Increase exception stack sizes Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 076/251] mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 077/251] mwifiex: Properly initialize private structure on interface type changes Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 078/251] media: mt9p031: Fix corrupted frame after restarting stream Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 079/251] media: netup_unidvb: handle interrupt properly according to the firmware Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 080/251] media: uvcvideo: Set capability in s_param Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 081/251] media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 082/251] media: s5p-mfc: Add checking to s5p_mfc_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 083/251] media: mceusb: return without resubmitting URB in case of -EPROTO error Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 084/251] ia64: dont do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 085/251] ACPICA: Avoid evaluating methods too early during system resume Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 086/251] media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 087/251] tracefs: Have tracefs directories not set OTH permission bits by default Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 088/251] ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 089/251] ACPI: battery: Accept charges over the design capacity as full Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 090/251] leaking_addresses: Always print a trailing newline Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 091/251] memstick: r592: Fix a UAF bug when removing the driver Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 092/251] lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 093/251] lib/xz: Validate the value before assigning it to an enum variable Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 094/251] tracing/cfi: Fix cmp_entries_* functions signature mismatch Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 095/251] mwl8k: Fix use-after-free in mwl8k_fw_state_machine() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 096/251] PM: hibernate: Get block device exclusively in swsusp_check() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 097/251] iwlwifi: mvm: disable RX-diversity in powersave Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 098/251] smackfs: use __GFP_NOFAIL for smk_cipso_doi() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 099/251] ARM: clang: Do not rely on lr register for stacktrace Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 100/251] gre/sit: Dont generate link-local addr if addr_gen_mode is IN6_ADDR_GEN_MODE_NONE Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 101/251] ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 102/251] spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 103/251] parisc: fix warning in flush_tlb_all Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 104/251] task_stack: Fix end_of_stack() for architectures with upwards-growing stack Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 105/251] parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 106/251] cgroup: Make rebind_subsystems() disable v2 controllers all at once Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 107/251] media: dvb-usb: fix ununit-value in az6027_rc_query Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 108/251] media: mtk-vpu: Fix a resource leak in the error handling path of mtk_vpu_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 109/251] media: si470x: Avoid card name truncation Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 110/251] media: cx23885: Fix snd_card_free call on null card pointer Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 111/251] cpuidle: Fix kobject memory leaks in error paths Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 112/251] ath9k: Fix potential interrupt storm on queue reset Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 113/251] crypto: qat - detect PFVF collision after ACK Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 114/251] crypto: qat - disregard spurious PFVF interrupts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 115/251] hwrng: mtk - Force runtime pm ops for sleep ops Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 116/251] b43legacy: fix a lower bounds test Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.14 117/251] b43: " Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 118/251] memstick: avoid out-of-range warning Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 119/251] memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 120/251] hwmon: Fix possible memleak in __hwmon_device_register() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 121/251] ath10k: fix max antenna gain unit Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 122/251] drm/msm: uninitialized variable in msm_gem_import() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 123/251] net: stream: dont purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 124/251] mmc: mxs-mmc: disable regulator on error and in the remove function Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 125/251] platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 126/251] mwifiex: Send DELBA requests according to spec Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 127/251] phy: micrel: ksz8041nl: do not use power down mode Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 128/251] PM: hibernate: fix sparse warnings Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 129/251] smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 130/251] s390/gmap: dont unconditionally call pte_unmap_unlock() in __gmap_zap() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 131/251] irq: mips: avoid nested irq_enter() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 132/251] samples/kretprobes: Fix return value if register_kretprobe() failed Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 133/251] libertas_tf: Fix possible memory leak in probe and disconnect Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 134/251] libertas: " Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 135/251] net: amd-xgbe: Toggle PLL settings during rate change Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 136/251] net: phylink: avoid mvneta warning when setting pause parameters Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 137/251] crypto: pcrypt - Delay write to padata->info Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 138/251] ibmvnic: Process crqs after enabling interrupts Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 139/251] RDMA/rxe: Fix wrong port_cap_flags Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 140/251] ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 141/251] ARM: dts: at91: tse850: the emac<->phy interface is rmii Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 142/251] scsi: dc395: Fix error case unwinding Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 143/251] MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 144/251] JFS: fix memleak in jfs_mount Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 145/251] ALSA: hda: Reduce udelay() at SKL+ position reporting Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 146/251] arm: dts: omap3-gta04a4: accelerometer irq fix Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 147/251] soc/tegra: Fix an error handling path in tegra_powergate_power_up() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 148/251] memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 149/251] video: fbdev: chipsfb: use memset_io() instead of memset() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 150/251] serial: 8250_dw: Drop wrong use of ACPI_PTR() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 151/251] usb: gadget: hid: fix error code in do_config() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 152/251] =?UTF-8?q?power:=20supply:=20rt5033=5Fbattery:=20Change=20voltage?= =?UTF-8?q?=20values=20to=20=C2=B5V?= Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 153/251] scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 154/251] RDMA/mlx4: Return missed an error if device doesnt support steering Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 155/251] ASoC: cs42l42: Correct some register default values Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 156/251] ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 157/251] serial: xilinx_uartps: Fix race condition causing stuck TX Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 158/251] mips: cm: Convert to bitfield API to fix out-of-bounds access Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 159/251] power: supply: bq27xxx: Fix kernel crash on IRQ handler register error Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 160/251] apparmor: fix error check Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 161/251] rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 162/251] pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 163/251] drm/plane-helper: fix uninitialized variable reference Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 164/251] PCI: aardvark: Dont spam about PIO Response Status Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 165/251] NFS: Fix deadlocks in nfs_scan_commit_list() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 166/251] fs: orangefs: fix error return code of orangefs_revalidate_lookup() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 167/251] mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 168/251] dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 169/251] auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 170/251] auxdisplay: ht16k33: Connect backlight to fbdev Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 171/251] auxdisplay: ht16k33: Fix frame buffer device blanking Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 172/251] netfilter: nfnetlink_queue: fix OOB when mac header was cleared Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 173/251] dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 174/251] m68k: set a default value for MEMORY_RESERVE Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 175/251] watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 176/251] ar7: fix kernel builds for compiler test Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.14 177/251] scsi: qla2xxx: Turn off target reset during issue_lip Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 178/251] i2c: xlr: Fix a resource leak in the error handling path of xlr_i2c_probe() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 179/251] xen-pciback: Fix return in pm_ctrl_init() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 180/251] net: davinci_emac: Fix interrupt pacing disable Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 181/251] net: vlan: fix a UAF in vlan_dev_real_dev() Greg Kroah-Hartman
2021-11-24 12:50 ` Jason Gunthorpe
2021-11-24 13:15 ` Greg Kroah-Hartman
2021-11-24 13:27 ` Jason Gunthorpe
2021-11-24 13:45 ` Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 182/251] ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 183/251] bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 184/251] mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 185/251] llc: fix out-of-bound array index in llc_sk_dev_hash() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 186/251] nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 187/251] vsock: prevent unnecessary refcnt inc for nonblocking connect Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 188/251] USB: chipidea: fix interrupt deadlock Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 189/251] ARM: 9155/1: fix early early_iounmap() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 190/251] ARM: 9156/1: drop cc-option fallbacks for architecture selection Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 191/251] powerpc/lib: Add helper to check if offset is within conditional branch range Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 192/251] powerpc/bpf: Validate branch ranges Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 193/251] powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 194/251] mm, oom: pagefault_out_of_memory: dont force global OOM for dying tasks Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 195/251] mm, oom: do not trigger out_of_memory from the #PF Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 196/251] s390/cio: check the subchannel validity for dev_busid Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 197/251] PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 198/251] ext4: fix lazy initialization next schedule time computation in more granular unit Greg Kroah-Hartman
2021-11-24 11:57 ` Greg Kroah-Hartman [this message]
2021-11-24 11:57 ` [PATCH 4.14 200/251] parisc/entry: fix trace test in syscall exit path Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 201/251] PCI/MSI: Destroy sysfs before freeing entries Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 202/251] arm64: zynqmp: Fix serial compatible string Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 203/251] scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 204/251] usb: musb: tusb6010: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 205/251] scsi: advansys: Fix kernel pointer leak Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 206/251] ARM: dts: omap: fix gpmc,mux-add-data type Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 207/251] usb: host: ohci-tmio: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 208/251] tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 209/251] MIPS: sni: Fix the build Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 210/251] scsi: target: Fix ordered tag handling Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 211/251] scsi: target: Fix alua_tg_pt_gps_count tracking Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 212/251] powerpc/5200: dts: fix memory node unit name Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 213/251] ALSA: gus: fix null pointer dereference on pointer block Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 214/251] powerpc/dcr: Use cmplwi instead of 3-argument cmpli Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 215/251] sh: check return code of request_irq Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 216/251] maple: fix wrong return value of maple_bus_init() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 217/251] sh: fix kconfig unmet dependency warning for FRAME_POINTER Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 218/251] sh: define __BIG_ENDIAN for math-emu Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 219/251] mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 220/251] sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 221/251] net: bnx2x: fix variable dereferenced before check Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 222/251] iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 223/251] MIPS: generic/yamon-dt: fix uninitialized variable error Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 224/251] mips: bcm63xx: add support for clk_get_parent() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 225/251] mips: lantiq: " Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 226/251] platform/x86: hp_accel: Fix an error handling path in lis3lv02d_probe() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 227/251] net: virtio_net_hdr_to_skb: count transport header in UFO Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 228/251] i40e: Fix NULL ptr dereference on VSI filter sync Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 229/251] NFC: reorganize the functions in nci_request Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 230/251] NFC: reorder the logic in nfc_{un,}register_device Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 231/251] perf bench: Fix two memory leaks detected with ASan Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 232/251] perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 233/251] perf/x86/intel/uncore: Fix IIO event constraints for " Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 234/251] tun: fix bonding active backup with arp monitoring Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 235/251] hexagon: export raw I/O routines for modules Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 236/251] mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.14 237/251] btrfs: fix memory ordering between normal and ordered work functions Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 238/251] parisc/sticon: fix reverse colors Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 239/251] cfg80211: call cfg80211_stop_ap when switch from P2P_GO type Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 240/251] drm/udl: fix control-message timeout Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 241/251] drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga and dvi connectors Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 242/251] perf/core: Avoid put_page() when GUP fails Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 243/251] batman-adv: mcast: fix duplicate mcast packets in BLA backbone from LAN Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 244/251] batman-adv: mcast: fix duplicate mcast packets from BLA backbone to mesh Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 245/251] batman-adv: Consider fragmentation for needed_headroom Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 246/251] batman-adv: Reserve needed_*room for fragments Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 247/251] batman-adv: Dont always reallocate the fragmentation skb head Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 248/251] RDMA/netlink: Add __maybe_unused to static inline in C file Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 249/251] ASoC: DAPM: Cover regression by kctl change notification fix Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 250/251] usb: max-3421: Use driver data instead of maintaining a list of bound devices Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.14 251/251] hugetlbfs: flush TLBs correctly after huge_pmd_unshare Greg Kroah-Hartman
2021-11-24 17:42 ` [PATCH 4.14 000/251] 4.14.256-rc1 review Guenter Roeck
2021-11-25 1:38 ` Guenter Roeck
2021-11-25 12:55 ` Greg Kroah-Hartman
2021-11-25 13:07 ` Greg Kroah-Hartman
2021-11-25 3:41 ` Naresh Kamboju
2021-11-25 11:16 ` Greg Kroah-Hartman
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=20211124115717.182800413@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=joelaf@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=paulburton@google.com \
--cc=rostedt@goodmis.org \
--cc=stable@vger.kernel.org \
/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