[PATCH] lib/test_kmod: fix kernel-doc warnings

2023-11-03 Thread Randy Dunlap
Fix all kernel-doc warnings in test_kmod.c: - Mark some enum values as private so that kernel-doc is not needed for them - s/thread_mutex/thread_lock/ in a struct's kernel-doc comments - add kernel-doc info for @task_sync test_kmod.c:67: warning: Enum value '__TEST_KMOD_INVALID' not described in

Re: [GIT PULL] livepatching for 6.7

2023-11-03 Thread pr-tracker-bot
The pull request you sent on Thu, 2 Nov 2023 12:44:10 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching > tags/livepatching-for-6.7 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/00657bb3dbecee324336e1da1ad71b670b6aee60 Thank you! --

Re: [PATCH v8 2/3] mm/memory_hotplug: split memmap_on_memory requests across memblocks

2023-11-03 Thread Verma, Vishal L
On Fri, 2023-11-03 at 09:43 -0700, fan wrote: > On Wed, Nov 01, 2023 at 04:51:52PM -0600, Vishal Verma wrote: > > [..] > >   > > +static void __ref remove_memory_blocks_and_altmaps(u64 start, u64 size) > > +{ > > +   unsigned long memblock_size = memory_block_size_bytes(); > > +   u64 cur_

Re: [PATCH v8 2/3] mm/memory_hotplug: split memmap_on_memory requests across memblocks

2023-11-03 Thread fan
On Wed, Nov 01, 2023 at 04:51:52PM -0600, Vishal Verma wrote: > The MHP_MEMMAP_ON_MEMORY flag for hotplugged memory is restricted to > 'memblock_size' chunks of memory being added. Adding a larger span of > memory precludes memmap_on_memory semantics. > > For users of hotplug such as kmem, large a

Re: [PATCH v8 1/3] mm/memory_hotplug: replace an open-coded kmemdup() in add_memory_resource()

2023-11-03 Thread fan
On Wed, Nov 01, 2023 at 04:51:51PM -0600, Vishal Verma wrote: > A review of the memmap_on_memory modifications to add_memory_resource() > revealed an instance of an open-coded kmemdup(). Replace it with > kmemdup(). > > Cc: Andrew Morton > Cc: David Hildenbrand > Cc: Michal Hocko > Cc: Oscar Sa

[PATCH] tracing: fprobe-event: Fix to check tracepoint event and return

2023-11-03 Thread Masami Hiramatsu (Google)
From: Masami Hiramatsu (Google) Fix to check the tracepoint event is not valid with $retval. The commit 08c9306fc2e3 ("tracing/fprobe-event: Assume fprobe is a return event by $retval") introduced automatic return probe conversion with $retval. But since tracepoint event does not support return p