The quilt patch titled Subject: fs-proc-kcorec-fix-coccinelle-reported-error-instances-fix has been removed from the -mm tree. Its filename was fs-proc-kcorec-fix-coccinelle-reported-error-instances-fix.patch This patch was dropped because it was folded into fs-proc-kcorec-fix-coccinelle-reported-error-instances.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: fs-proc-kcorec-fix-coccinelle-reported-error-instances-fix Date: Tue Oct 29 06:25:57 PM PDT 2024 s/tmp/pos/ Cc: Alexander Gordeev <agordeev@xxxxxxxxxxxxx> Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Baoquan He <bhe@xxxxxxxxxx> Cc: "Bos, H.J." <h.j.bos@xxxxx> Cc: "Brian Johannesmeyer" <bjohannesmeyer@xxxxxxxxx> Cc: Cristiano Giuffrida <c.giuffrida@xxxxx> Cc: David Hildenbrand <david@xxxxxxxxxx> Cc: Hari Bathini <hbathini@xxxxxxxxxxxxx> Cc: Jakob Koschel <jakobkoschel@xxxxxxxxx> Cc: Mike Rapoport <rppt@xxxxxxxxxx> Cc: Mirsad Todorovac <mtodorovac69@xxxxxxxxx> Cc: Oscar Salvador <osalvador@xxxxxxx> Cc: Yang Li <yang.lee@xxxxxxxxxxxxxxxxx> Cc: Yan Zhen <yanzhen@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/kcore.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/fs/proc/kcore.c~fs-proc-kcorec-fix-coccinelle-reported-error-instances-fix +++ a/fs/proc/kcore.c @@ -493,13 +493,13 @@ static ssize_t read_kcore_iter(struct ki * the previous entry, search for a matching entry. */ if (!m || start < m->addr || start >= m->addr + m->size) { - struct kcore_list *tmp; + struct kcore_list *pos; m = NULL; - list_for_each_entry(tmp, &kclist_head, list) { - if (start >= tmp->addr && - start < tmp->addr + tmp->size) { - m = tmp; + list_for_each_entry(pos, &kclist_head, list) { + if (start >= pos->addr && + start < pos->addr + pos->size) { + m = pos; break; } } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-page_alloc-keep-track-of-free-highatomic-fix.patch mm-fix-__wp_page_copy_user-fallback-path-for-remote-mm-fix.patch bootmem-stop-using-page-index-fix.patch vma-detect-infinite-loop-in-vma-tree-fix.patch maple_tree-add-a-test-checking-storing-null-fix.patch fs-proc-kcorec-fix-coccinelle-reported-error-instances.patch