public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4.19 00/18] 4.19.315-rc1 review
@ 2024-05-23 13:12 Greg Kroah-Hartman
  2024-05-23 13:12 ` [PATCH 4.19 01/18] Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems" Greg Kroah-Hartman
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Greg Kroah-Hartman @ 2024-05-23 13:12 UTC (permalink / raw)
  To: stable
  Cc: Greg Kroah-Hartman, patches, linux-kernel, torvalds, akpm, linux,
	shuah, patches, lkft-triage, pavel, jonathanh, f.fainelli,
	sudipm.mukherjee, srw, rwarsow, conor, allen.lkml, broonie

This is the start of the stable review cycle for the 4.19.315 release.
There are 18 patches in this series, all will be posted as a response
to this one.  If anyone has any issues with these being applied, please
let me know.

Responses should be made by Sat, 25 May 2024 13:03:15 +0000.
Anything received after that time might be too late.

The whole patch series can be found in one patch at:
	https://www.kernel.org/pub/linux/kernel/v4.x/stable-review/patch-4.19.315-rc1.gz
or in the git tree and branch at:
	git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.19.y
and the diffstat can be found below.

thanks,

greg k-h

-------------
Pseudo-Shortlog of commits:

Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Linux 4.19.315-rc1

Akira Yokosawa <akiyks@gmail.com>
    docs: kernel_include.py: Cope with docutils 0.21

Daniel Thompson <daniel.thompson@linaro.org>
    serial: kgdboc: Fix NMI-safety problems from keyboard reset code

Tom Zanussi <tom.zanussi@linux.intel.com>
    tracing: Remove unnecessary var_ref destroy in track_data_destroy()

Tom Zanussi <tom.zanussi@linux.intel.com>
    tracing: Generalize hist trigger onmax and save action

Tom Zanussi <tom.zanussi@linux.intel.com>
    tracing: Split up onmatch action data

Tom Zanussi <tom.zanussi@linux.intel.com>
    tracing: Refactor hist trigger action code

Steven Rostedt (VMware) <rostedt@goodmis.org>
    tracing: Have the historgram use the result of str_has_prefix() for len of prefix

Steven Rostedt (VMware) <rostedt@goodmis.org>
    tracing: Use str_has_prefix() instead of using fixed sizes

Steven Rostedt (VMware) <rostedt@goodmis.org>
    tracing: Use str_has_prefix() helper for histogram code

Steven Rostedt (VMware) <rostedt@goodmis.org>
    string.h: Add str_has_prefix() helper function

Steven Rostedt (VMware) <rostedt@goodmis.org>
    tracing: Consolidate trace_add/remove_event_call back to the nolock functions

Masami Hiramatsu <mhiramat@kernel.org>
    tracing: Remove unneeded synth_event_mutex

Masami Hiramatsu <mhiramat@kernel.org>
    tracing: Use dyn_event framework for synthetic events

Masami Hiramatsu <mhiramat@kernel.org>
    tracing: Add unified dynamic event framework

Masami Hiramatsu <mhiramat@kernel.org>
    tracing: Simplify creation and deletion of synthetic events

Dominique Martinet <dominique.martinet@atmark-techno.com>
    btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks()

Mikulas Patocka <mpatocka@redhat.com>
    dm: limit the number of targets and parameter size area

Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
    Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"


-------------

Diffstat:

 Documentation/sphinx/kernel_include.py   |    1 -
 Makefile                                 |    4 +-
 drivers/md/dm-core.h                     |    2 +
 drivers/md/dm-ioctl.c                    |    3 +-
 drivers/md/dm-table.c                    |    9 +-
 drivers/tty/serial/kgdboc.c              |   30 +-
 fs/btrfs/volumes.c                       |    1 +
 include/linux/string.h                   |   20 +
 include/linux/trace_events.h             |    2 -
 kernel/trace/Kconfig                     |    4 +
 kernel/trace/Makefile                    |    1 +
 kernel/trace/trace.c                     |   26 +-
 kernel/trace/trace_dynevent.c            |  210 ++++++
 kernel/trace/trace_dynevent.h            |  119 ++++
 kernel/trace/trace_events.c              |   32 +-
 kernel/trace/trace_events_hist.c         | 1082 ++++++++++++++++++------------
 kernel/trace/trace_probe.c               |    2 +-
 kernel/trace/trace_stack.c               |    2 +-
 tools/testing/selftests/vm/map_hugetlb.c |    7 -
 19 files changed, 1068 insertions(+), 489 deletions(-)



^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2024-05-24 16:26 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-23 13:12 [PATCH 4.19 00/18] 4.19.315-rc1 review Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 01/18] Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems" Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 02/18] dm: limit the number of targets and parameter size area Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 03/18] btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 04/18] tracing: Simplify creation and deletion of synthetic events Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 05/18] tracing: Add unified dynamic event framework Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 06/18] tracing: Use dyn_event framework for synthetic events Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 07/18] tracing: Remove unneeded synth_event_mutex Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 08/18] tracing: Consolidate trace_add/remove_event_call back to the nolock functions Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 09/18] string.h: Add str_has_prefix() helper function Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 10/18] tracing: Use str_has_prefix() helper for histogram code Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 11/18] tracing: Use str_has_prefix() instead of using fixed sizes Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 12/18] tracing: Have the historgram use the result of str_has_prefix() for len of prefix Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 13/18] tracing: Refactor hist trigger action code Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 14/18] tracing: Split up onmatch action data Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 15/18] tracing: Generalize hist trigger onmax and save action Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 16/18] tracing: Remove unnecessary var_ref destroy in track_data_destroy() Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 17/18] serial: kgdboc: Fix NMI-safety problems from keyboard reset code Greg Kroah-Hartman
2024-05-23 13:12 ` [PATCH 4.19 18/18] docs: kernel_include.py: Cope with docutils 0.21 Greg Kroah-Hartman
2024-05-24  6:55 ` [PATCH 4.19 00/18] 4.19.315-rc1 review Harshit Mogalapalli
2024-05-24 11:23 ` Pavel Machek
2024-05-24 13:46 ` Anders Roxell
2024-05-24 15:19 ` Jon Hunter
2024-05-24 16:26 ` Shuah Khan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox